blob: ddfc0fbbee2324fd54a4341ddcc10ed1d1ff6268 [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 Iwaiaa2936f2009-05-26 16:07:57 +0200127 * Send and receive a verb
128 */
129static int codec_exec_verb(struct hda_codec *codec, unsigned int cmd,
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200130 int flags, unsigned int *res)
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200131{
132 struct hda_bus *bus = codec->bus;
Takashi Iwai8dd78332009-06-02 01:16:07 +0200133 int err;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200134
Wu Fengguang6430aee2009-07-17 16:49:19 +0800135 if (cmd == ~0)
136 return -1;
137
Takashi Iwai8dd78332009-06-02 01:16:07 +0200138 again:
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200139 snd_hda_power_up(codec);
Takashi Iwaid068ebc2015-03-02 23:22:59 +0100140 mutex_lock(&bus->core.cmd_mutex);
Takashi Iwai63e51fd2013-06-06 14:20:19 +0200141 if (flags & HDA_RW_NO_RESPONSE_FALLBACK)
142 bus->no_response_fallback = 1;
Takashi Iwaid068ebc2015-03-02 23:22:59 +0100143 err = snd_hdac_bus_exec_verb_unlocked(&bus->core, codec->core.addr,
144 cmd, res);
Takashi Iwai63e51fd2013-06-06 14:20:19 +0200145 bus->no_response_fallback = 0;
Takashi Iwaid068ebc2015-03-02 23:22:59 +0100146 mutex_unlock(&bus->core.cmd_mutex);
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200147 snd_hda_power_down(codec);
Takashi Iwaid068ebc2015-03-02 23:22:59 +0100148 if (!codec_in_pm(codec) && res && err < 0 && bus->rirb_error) {
Takashi Iwai8dd78332009-06-02 01:16:07 +0200149 if (bus->response_reset) {
Takashi Iwai4e76a882014-02-25 12:21:03 +0100150 codec_dbg(codec,
151 "resetting BUS due to fatal communication error\n");
Takashi Iwai8dd78332009-06-02 01:16:07 +0200152 bus->ops.bus_reset(bus);
153 }
154 goto again;
155 }
156 /* clear reset-flag when the communication gets recovered */
Takashi Iwaid846b172012-11-24 11:58:24 +0100157 if (!err || codec_in_pm(codec))
Takashi Iwai8dd78332009-06-02 01:16:07 +0200158 bus->response_reset = 0;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200159 return err;
160}
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162/**
163 * snd_hda_codec_read - send a command and get the response
164 * @codec: the HDA codec
165 * @nid: NID to send the command
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200166 * @flags: optional bit flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 * @verb: the verb to send
168 * @parm: the parameter for the verb
169 *
170 * Send a single command and read the corresponding response.
171 *
172 * Returns the obtained response value, or -1 for an error.
173 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200174unsigned int snd_hda_codec_read(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200175 int flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 unsigned int verb, unsigned int parm)
177{
Takashi Iwai7639a062015-03-03 10:07:24 +0100178 unsigned int cmd = snd_hdac_make_cmd(&codec->core, nid, verb, parm);
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200179 unsigned int res;
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200180 if (codec_exec_verb(codec, cmd, flags, &res))
Greg Thelen9857edf2011-06-13 07:45:45 -0700181 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 return res;
183}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100184EXPORT_SYMBOL_GPL(snd_hda_codec_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186/**
187 * snd_hda_codec_write - send a single command without waiting for response
188 * @codec: the HDA codec
189 * @nid: NID to send the command
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200190 * @flags: optional bit flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 * @verb: the verb to send
192 * @parm: the parameter for the verb
193 *
194 * Send a single command without waiting for response.
195 *
196 * Returns 0 if successful, or a negative error code.
197 */
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200198int snd_hda_codec_write(struct hda_codec *codec, hda_nid_t nid, int flags,
199 unsigned int verb, unsigned int parm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Takashi Iwai7639a062015-03-03 10:07:24 +0100201 unsigned int cmd = snd_hdac_make_cmd(&codec->core, nid, verb, parm);
Takashi Iwaid068ebc2015-03-02 23:22:59 +0100202 return codec_exec_verb(codec, cmd, flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100204EXPORT_SYMBOL_GPL(snd_hda_codec_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206/**
207 * snd_hda_sequence_write - sequence writes
208 * @codec: the HDA codec
209 * @seq: VERB array to send
210 *
211 * Send the commands sequentially from the given array.
212 * The array must be terminated with NID=0.
213 */
214void snd_hda_sequence_write(struct hda_codec *codec, const struct hda_verb *seq)
215{
216 for (; seq->nid; seq++)
217 snd_hda_codec_write(codec, seq->nid, 0, seq->verb, seq->param);
218}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100219EXPORT_SYMBOL_GPL(snd_hda_sequence_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100221/* connection list element */
222struct hda_conn_list {
223 struct list_head list;
224 int len;
225 hda_nid_t nid;
226 hda_nid_t conns[0];
227};
228
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200229/* look up the cached results */
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100230static struct hda_conn_list *
231lookup_conn_list(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200232{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100233 struct hda_conn_list *p;
234 list_for_each_entry(p, &codec->conn_list, list) {
235 if (p->nid == nid)
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200236 return p;
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200237 }
238 return NULL;
239}
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200240
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100241static int add_conn_list(struct hda_codec *codec, hda_nid_t nid, int len,
242 const hda_nid_t *list)
243{
244 struct hda_conn_list *p;
245
246 p = kmalloc(sizeof(*p) + len * sizeof(hda_nid_t), GFP_KERNEL);
247 if (!p)
248 return -ENOMEM;
249 p->len = len;
250 p->nid = nid;
251 memcpy(p->conns, list, len * sizeof(hda_nid_t));
252 list_add(&p->list, &codec->conn_list);
253 return 0;
254}
255
256static void remove_conn_list(struct hda_codec *codec)
257{
258 while (!list_empty(&codec->conn_list)) {
259 struct hda_conn_list *p;
260 p = list_first_entry(&codec->conn_list, typeof(*p), list);
261 list_del(&p->list);
262 kfree(p);
263 }
264}
265
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200266/* read the connection and add to the cache */
267static int read_and_add_raw_conns(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200268{
Takashi Iwai4eea3092013-02-07 18:18:19 +0100269 hda_nid_t list[32];
270 hda_nid_t *result = list;
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200271 int len;
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200272
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200273 len = snd_hda_get_raw_connections(codec, nid, list, ARRAY_SIZE(list));
Takashi Iwai4eea3092013-02-07 18:18:19 +0100274 if (len == -ENOSPC) {
275 len = snd_hda_get_num_raw_conns(codec, nid);
276 result = kmalloc(sizeof(hda_nid_t) * len, GFP_KERNEL);
277 if (!result)
278 return -ENOMEM;
279 len = snd_hda_get_raw_connections(codec, nid, result, len);
280 }
281 if (len >= 0)
282 len = snd_hda_override_conn_list(codec, nid, len, result);
283 if (result != list)
284 kfree(result);
285 return len;
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200286}
Takashi Iwaidce20792011-06-24 14:10:28 +0200287
288/**
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100289 * snd_hda_get_conn_list - get connection list
290 * @codec: the HDA codec
291 * @nid: NID to parse
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100292 * @listp: the pointer to store NID list
293 *
294 * Parses the connection list of the given widget and stores the pointer
295 * to the list of NIDs.
296 *
297 * Returns the number of connections, or a negative error code.
298 *
299 * Note that the returned pointer isn't protected against the list
300 * modification. If snd_hda_override_conn_list() might be called
301 * concurrently, protect with a mutex appropriately.
302 */
303int snd_hda_get_conn_list(struct hda_codec *codec, hda_nid_t nid,
304 const hda_nid_t **listp)
305{
306 bool added = false;
307
308 for (;;) {
309 int err;
310 const struct hda_conn_list *p;
311
312 /* if the connection-list is already cached, read it */
313 p = lookup_conn_list(codec, nid);
314 if (p) {
315 if (listp)
316 *listp = p->conns;
317 return p->len;
318 }
319 if (snd_BUG_ON(added))
320 return -EINVAL;
321
322 err = read_and_add_raw_conns(codec, nid);
323 if (err < 0)
324 return err;
325 added = true;
326 }
327}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100328EXPORT_SYMBOL_GPL(snd_hda_get_conn_list);
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100329
330/**
Takashi Iwaidce20792011-06-24 14:10:28 +0200331 * snd_hda_get_connections - copy connection list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 * @codec: the HDA codec
333 * @nid: NID to parse
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200334 * @conn_list: connection list array; when NULL, checks only the size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 * @max_conns: max. number of connections to store
336 *
337 * Parses the connection list of the given widget and stores the list
338 * of NIDs.
339 *
340 * Returns the number of connections, or a negative error code.
341 */
342int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200343 hda_nid_t *conn_list, int max_conns)
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200344{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100345 const hda_nid_t *list;
346 int len = snd_hda_get_conn_list(codec, nid, &list);
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200347
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100348 if (len > 0 && conn_list) {
349 if (len > max_conns) {
Takashi Iwai4e76a882014-02-25 12:21:03 +0100350 codec_err(codec, "Too many connections %d for NID 0x%x\n",
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200351 len, nid);
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200352 return -EINVAL;
353 }
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100354 memcpy(conn_list, list, len * sizeof(hda_nid_t));
Takashi Iwaidce20792011-06-24 14:10:28 +0200355 }
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200356
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100357 return len;
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200358}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100359EXPORT_SYMBOL_GPL(snd_hda_get_connections);
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361/**
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200362 * snd_hda_override_conn_list - add/modify the connection-list to cache
363 * @codec: the HDA codec
364 * @nid: NID to parse
365 * @len: number of connection list entries
366 * @list: the list of connection entries
367 *
368 * Add or modify the given connection-list to the cache. If the corresponding
369 * cache already exists, invalidate it and append a new one.
370 *
371 * Returns zero or a negative error code.
372 */
373int snd_hda_override_conn_list(struct hda_codec *codec, hda_nid_t nid, int len,
374 const hda_nid_t *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100376 struct hda_conn_list *p;
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200377
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100378 p = lookup_conn_list(codec, nid);
379 if (p) {
380 list_del(&p->list);
381 kfree(p);
382 }
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200383
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100384 return add_conn_list(codec, nid, len, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100386EXPORT_SYMBOL_GPL(snd_hda_override_conn_list);
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200387
388/**
Takashi Iwai8d087c72011-06-28 12:45:47 +0200389 * snd_hda_get_conn_index - get the connection index of the given NID
390 * @codec: the HDA codec
391 * @mux: NID containing the list
392 * @nid: NID to select
393 * @recursive: 1 when searching NID recursively, otherwise 0
394 *
395 * Parses the connection list of the widget @mux and checks whether the
396 * widget @nid is present. If it is, return the connection index.
397 * Otherwise it returns -1.
398 */
399int snd_hda_get_conn_index(struct hda_codec *codec, hda_nid_t mux,
400 hda_nid_t nid, int recursive)
401{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100402 const hda_nid_t *conn;
Takashi Iwai8d087c72011-06-28 12:45:47 +0200403 int i, nums;
404
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100405 nums = snd_hda_get_conn_list(codec, mux, &conn);
Takashi Iwai8d087c72011-06-28 12:45:47 +0200406 for (i = 0; i < nums; i++)
407 if (conn[i] == nid)
408 return i;
409 if (!recursive)
410 return -1;
Takashi Iwaid94ddd82012-12-20 14:42:42 +0100411 if (recursive > 10) {
Takashi Iwai4e76a882014-02-25 12:21:03 +0100412 codec_dbg(codec, "too deep connection for 0x%x\n", nid);
Takashi Iwai8d087c72011-06-28 12:45:47 +0200413 return -1;
414 }
415 recursive++;
Takashi Iwai99e14c92011-09-13 10:33:16 +0200416 for (i = 0; i < nums; i++) {
417 unsigned int type = get_wcaps_type(get_wcaps(codec, conn[i]));
418 if (type == AC_WID_PIN || type == AC_WID_AUD_OUT)
419 continue;
Takashi Iwai8d087c72011-06-28 12:45:47 +0200420 if (snd_hda_get_conn_index(codec, conn[i], nid, recursive) >= 0)
421 return i;
Takashi Iwai99e14c92011-09-13 10:33:16 +0200422 }
Takashi Iwai8d087c72011-06-28 12:45:47 +0200423 return -1;
424}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100425EXPORT_SYMBOL_GPL(snd_hda_get_conn_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Mengdong Linf1aa0682013-08-26 21:35:21 -0400427
428/* return DEVLIST_LEN parameter of the given widget */
429static unsigned int get_num_devices(struct hda_codec *codec, hda_nid_t nid)
430{
431 unsigned int wcaps = get_wcaps(codec, nid);
432 unsigned int parm;
433
434 if (!codec->dp_mst || !(wcaps & AC_WCAP_DIGITAL) ||
435 get_wcaps_type(wcaps) != AC_WID_PIN)
436 return 0;
437
438 parm = snd_hda_param_read(codec, nid, AC_PAR_DEVLIST_LEN);
439 if (parm == -1 && codec->bus->rirb_error)
440 parm = 0;
441 return parm & AC_DEV_LIST_LEN_MASK;
442}
443
444/**
445 * snd_hda_get_devices - copy device list without cache
446 * @codec: the HDA codec
447 * @nid: NID of the pin to parse
448 * @dev_list: device list array
449 * @max_devices: max. number of devices to store
450 *
451 * Copy the device list. This info is dynamic and so not cached.
452 * Currently called only from hda_proc.c, so not exported.
453 */
454int snd_hda_get_devices(struct hda_codec *codec, hda_nid_t nid,
455 u8 *dev_list, int max_devices)
456{
457 unsigned int parm;
458 int i, dev_len, devices;
459
460 parm = get_num_devices(codec, nid);
461 if (!parm) /* not multi-stream capable */
462 return 0;
463
464 dev_len = parm + 1;
465 dev_len = dev_len < max_devices ? dev_len : max_devices;
466
467 devices = 0;
468 while (devices < dev_len) {
469 parm = snd_hda_codec_read(codec, nid, 0,
470 AC_VERB_GET_DEVICE_LIST, devices);
471 if (parm == -1 && codec->bus->rirb_error)
472 break;
473
474 for (i = 0; i < 8; i++) {
475 dev_list[devices] = (u8)parm;
476 parm >>= 4;
477 devices++;
478 if (devices >= dev_len)
479 break;
480 }
481 }
482 return devices;
483}
484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 * destructor
487 */
Takashi Iwai2565c892014-02-19 11:41:09 +0100488static void snd_hda_bus_free(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200490 if (!bus)
Takashi Iwai2565c892014-02-19 11:41:09 +0100491 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 if (bus->ops.private_free)
493 bus->ops.private_free(bus);
Takashi Iwaid068ebc2015-03-02 23:22:59 +0100494 snd_hdac_bus_exit(&bus->core);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 kfree(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100498static int snd_hda_bus_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
Takashi Iwai2565c892014-02-19 11:41:09 +0100500 snd_hda_bus_free(device->device_data);
501 return 0;
502}
503
504static int snd_hda_bus_dev_disconnect(struct snd_device *device)
505{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 struct hda_bus *bus = device->device_data;
Takashi Iwaib94d35392008-11-21 09:08:06 +0100507 bus->shutdown = 1;
Takashi Iwai2565c892014-02-19 11:41:09 +0100508 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
Takashi Iwaid068ebc2015-03-02 23:22:59 +0100511/* hdac_bus_ops translations */
512static int _hda_bus_command(struct hdac_bus *_bus, unsigned int cmd)
513{
514 struct hda_bus *bus = container_of(_bus, struct hda_bus, core);
515 return bus->ops.command(bus, cmd);
516}
517
518static int _hda_bus_get_response(struct hdac_bus *_bus, unsigned int addr,
519 unsigned int *res)
520{
521 struct hda_bus *bus = container_of(_bus, struct hda_bus, core);
522 *res = bus->ops.get_response(bus, addr);
523 return bus->rirb_error ? -EIO : 0;
524}
525
526static const struct hdac_bus_ops bus_ops = {
527 .command = _hda_bus_command,
528 .get_response = _hda_bus_get_response,
529};
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531/**
532 * snd_hda_bus_new - create a HDA bus
533 * @card: the card entry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 * @busp: the pointer to store the created bus instance
535 *
536 * Returns 0 if successful, or a negative error code.
537 */
Takashi Iwai6a0f56a2012-12-07 07:41:56 +0100538int snd_hda_bus_new(struct snd_card *card,
Takashi Iwaief744972015-02-17 13:56:29 +0100539 struct hda_bus **busp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
541 struct hda_bus *bus;
542 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100543 static struct snd_device_ops dev_ops = {
Takashi Iwai2565c892014-02-19 11:41:09 +0100544 .dev_disconnect = snd_hda_bus_dev_disconnect,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 .dev_free = snd_hda_bus_dev_free,
546 };
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (busp)
549 *busp = NULL;
550
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200551 bus = kzalloc(sizeof(*bus), GFP_KERNEL);
Takashi Iwaif4de8fe2015-02-27 16:17:18 +0100552 if (!bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Takashi Iwaid068ebc2015-03-02 23:22:59 +0100555 err = snd_hdac_bus_init(&bus->core, card->dev, &bus_ops);
556 if (err < 0) {
557 kfree(bus);
558 return err;
559 }
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 bus->card = card;
Takashi Iwai3f50ac62010-08-20 09:44:36 +0200562 mutex_init(&bus->prepare_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Takashi Iwai0ba21762007-04-16 11:29:14 +0200564 err = snd_device_new(card, SNDRV_DEV_BUS, bus, &dev_ops);
565 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 snd_hda_bus_free(bus);
567 return err;
568 }
569 if (busp)
570 *busp = bus;
571 return 0;
572}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100573EXPORT_SYMBOL_GPL(snd_hda_bus_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575/*
Takashi Iwai54d17402005-11-21 16:33:22 +0100576 * read widget caps for each widget and store in cache
577 */
578static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node)
579{
580 int i;
581 hda_nid_t nid;
582
Takashi Iwai7639a062015-03-03 10:07:24 +0100583 codec->wcaps = kmalloc(codec->core.num_nodes * 4, GFP_KERNEL);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200584 if (!codec->wcaps)
Takashi Iwai54d17402005-11-21 16:33:22 +0100585 return -ENOMEM;
Takashi Iwai7639a062015-03-03 10:07:24 +0100586 nid = codec->core.start_nid;
587 for (i = 0; i < codec->core.num_nodes; i++, nid++)
Takashi Iwai54d17402005-11-21 16:33:22 +0100588 codec->wcaps[i] = snd_hda_param_read(codec, nid,
589 AC_PAR_AUDIO_WIDGET_CAP);
590 return 0;
591}
592
Takashi Iwai3be14142009-02-20 14:11:16 +0100593/* read all pin default configurations and save codec->init_pins */
594static int read_pin_defaults(struct hda_codec *codec)
595{
Takashi Iwai7639a062015-03-03 10:07:24 +0100596 hda_nid_t nid;
Takashi Iwai3be14142009-02-20 14:11:16 +0100597
Takashi Iwai7639a062015-03-03 10:07:24 +0100598 for_each_hda_codec_node(nid, codec) {
Takashi Iwai3be14142009-02-20 14:11:16 +0100599 struct hda_pincfg *pin;
600 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwaia22d5432009-07-27 12:54:26 +0200601 unsigned int wid_type = get_wcaps_type(wcaps);
Takashi Iwai3be14142009-02-20 14:11:16 +0100602 if (wid_type != AC_WID_PIN)
603 continue;
604 pin = snd_array_new(&codec->init_pins);
605 if (!pin)
606 return -ENOMEM;
607 pin->nid = nid;
608 pin->cfg = snd_hda_codec_read(codec, nid, 0,
609 AC_VERB_GET_CONFIG_DEFAULT, 0);
Takashi Iwaiac0547d2010-07-05 16:50:13 +0200610 pin->ctrl = snd_hda_codec_read(codec, nid, 0,
611 AC_VERB_GET_PIN_WIDGET_CONTROL,
612 0);
Takashi Iwai3be14142009-02-20 14:11:16 +0100613 }
614 return 0;
615}
616
617/* look up the given pin config list and return the item matching with NID */
618static struct hda_pincfg *look_up_pincfg(struct hda_codec *codec,
619 struct snd_array *array,
620 hda_nid_t nid)
621{
622 int i;
623 for (i = 0; i < array->used; i++) {
624 struct hda_pincfg *pin = snd_array_elem(array, i);
625 if (pin->nid == nid)
626 return pin;
627 }
628 return NULL;
629}
630
Takashi Iwai3be14142009-02-20 14:11:16 +0100631/* set the current pin config value for the given NID.
632 * the value is cached, and read via snd_hda_codec_get_pincfg()
633 */
634int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list,
635 hda_nid_t nid, unsigned int cfg)
636{
637 struct hda_pincfg *pin;
638
Takashi Iwaid5657ec2013-04-18 09:59:28 +0200639 /* the check below may be invalid when pins are added by a fixup
640 * dynamically (e.g. via snd_hda_codec_update_widgets()), so disabled
641 * for now
642 */
643 /*
Takashi Iwaib82855a2009-12-27 11:24:56 +0100644 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
645 return -EINVAL;
Takashi Iwaid5657ec2013-04-18 09:59:28 +0200646 */
Takashi Iwaib82855a2009-12-27 11:24:56 +0100647
Takashi Iwai3be14142009-02-20 14:11:16 +0100648 pin = look_up_pincfg(codec, list, nid);
649 if (!pin) {
650 pin = snd_array_new(list);
651 if (!pin)
652 return -ENOMEM;
653 pin->nid = nid;
654 }
655 pin->cfg = cfg;
Takashi Iwai3be14142009-02-20 14:11:16 +0100656 return 0;
657}
658
Takashi Iwaid5191e52009-11-16 14:58:17 +0100659/**
660 * snd_hda_codec_set_pincfg - Override a pin default configuration
661 * @codec: the HDA codec
662 * @nid: NID to set the pin config
663 * @cfg: the pin default config value
664 *
665 * Override a pin default configuration value in the cache.
666 * This value can be read by snd_hda_codec_get_pincfg() in a higher
667 * priority than the real hardware value.
668 */
Takashi Iwai3be14142009-02-20 14:11:16 +0100669int snd_hda_codec_set_pincfg(struct hda_codec *codec,
670 hda_nid_t nid, unsigned int cfg)
671{
Takashi Iwai346ff702009-02-23 09:42:57 +0100672 return snd_hda_add_pincfg(codec, &codec->driver_pins, nid, cfg);
Takashi Iwai3be14142009-02-20 14:11:16 +0100673}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100674EXPORT_SYMBOL_GPL(snd_hda_codec_set_pincfg);
Takashi Iwai3be14142009-02-20 14:11:16 +0100675
Takashi Iwaid5191e52009-11-16 14:58:17 +0100676/**
677 * snd_hda_codec_get_pincfg - Obtain a pin-default configuration
678 * @codec: the HDA codec
679 * @nid: NID to get the pin config
680 *
681 * Get the current pin config value of the given pin NID.
682 * If the pincfg value is cached or overridden via sysfs or driver,
683 * returns the cached value.
684 */
Takashi Iwai3be14142009-02-20 14:11:16 +0100685unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid)
686{
687 struct hda_pincfg *pin;
688
Takashi Iwai648a8d22014-02-25 10:38:13 +0100689#ifdef CONFIG_SND_HDA_RECONFIG
Takashi Iwai09b70e82013-01-10 18:21:56 +0100690 {
691 unsigned int cfg = 0;
692 mutex_lock(&codec->user_mutex);
693 pin = look_up_pincfg(codec, &codec->user_pins, nid);
694 if (pin)
695 cfg = pin->cfg;
696 mutex_unlock(&codec->user_mutex);
697 if (cfg)
698 return cfg;
699 }
Takashi Iwai3be14142009-02-20 14:11:16 +0100700#endif
Takashi Iwai5e7b8e02009-02-23 09:45:59 +0100701 pin = look_up_pincfg(codec, &codec->driver_pins, nid);
702 if (pin)
703 return pin->cfg;
Takashi Iwai3be14142009-02-20 14:11:16 +0100704 pin = look_up_pincfg(codec, &codec->init_pins, nid);
705 if (pin)
706 return pin->cfg;
707 return 0;
708}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100709EXPORT_SYMBOL_GPL(snd_hda_codec_get_pincfg);
Takashi Iwai3be14142009-02-20 14:11:16 +0100710
Takashi Iwai95a962c2014-10-29 16:03:58 +0100711/**
712 * snd_hda_codec_set_pin_target - remember the current pinctl target value
713 * @codec: the HDA codec
714 * @nid: pin NID
715 * @val: assigned pinctl value
716 *
717 * This function stores the given value to a pinctl target value in the
718 * pincfg table. This isn't always as same as the actually written value
719 * but can be referred at any time via snd_hda_codec_get_pin_target().
720 */
Takashi Iwaid7fdc002013-01-10 08:38:04 +0100721int snd_hda_codec_set_pin_target(struct hda_codec *codec, hda_nid_t nid,
722 unsigned int val)
723{
724 struct hda_pincfg *pin;
725
726 pin = look_up_pincfg(codec, &codec->init_pins, nid);
727 if (!pin)
728 return -EINVAL;
729 pin->target = val;
730 return 0;
731}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100732EXPORT_SYMBOL_GPL(snd_hda_codec_set_pin_target);
Takashi Iwaid7fdc002013-01-10 08:38:04 +0100733
Takashi Iwai95a962c2014-10-29 16:03:58 +0100734/**
735 * snd_hda_codec_get_pin_target - return the current pinctl target value
736 * @codec: the HDA codec
737 * @nid: pin NID
738 */
Takashi Iwaid7fdc002013-01-10 08:38:04 +0100739int snd_hda_codec_get_pin_target(struct hda_codec *codec, hda_nid_t nid)
740{
741 struct hda_pincfg *pin;
742
743 pin = look_up_pincfg(codec, &codec->init_pins, nid);
744 if (!pin)
745 return 0;
746 return pin->target;
747}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100748EXPORT_SYMBOL_GPL(snd_hda_codec_get_pin_target);
Takashi Iwaid7fdc002013-01-10 08:38:04 +0100749
Takashi Iwai92ee6162009-12-27 11:18:59 +0100750/**
751 * snd_hda_shutup_pins - Shut up all pins
752 * @codec: the HDA codec
753 *
754 * Clear all pin controls to shup up before suspend for avoiding click noise.
755 * The controls aren't cached so that they can be resumed properly.
756 */
757void snd_hda_shutup_pins(struct hda_codec *codec)
758{
759 int i;
Takashi Iwaiac0547d2010-07-05 16:50:13 +0200760 /* don't shut up pins when unloading the driver; otherwise it breaks
761 * the default pin setup at the next load of the driver
762 */
763 if (codec->bus->shutdown)
764 return;
Takashi Iwai92ee6162009-12-27 11:18:59 +0100765 for (i = 0; i < codec->init_pins.used; i++) {
766 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
767 /* use read here for syncing after issuing each verb */
768 snd_hda_codec_read(codec, pin->nid, 0,
769 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
770 }
Takashi Iwaiac0547d2010-07-05 16:50:13 +0200771 codec->pins_shutup = 1;
Takashi Iwai92ee6162009-12-27 11:18:59 +0100772}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100773EXPORT_SYMBOL_GPL(snd_hda_shutup_pins);
Takashi Iwai92ee6162009-12-27 11:18:59 +0100774
Takashi Iwai2a439522011-07-26 09:52:50 +0200775#ifdef CONFIG_PM
Takashi Iwaiac0547d2010-07-05 16:50:13 +0200776/* Restore the pin controls cleared previously via snd_hda_shutup_pins() */
777static void restore_shutup_pins(struct hda_codec *codec)
778{
779 int i;
780 if (!codec->pins_shutup)
781 return;
782 if (codec->bus->shutdown)
783 return;
784 for (i = 0; i < codec->init_pins.used; i++) {
785 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
786 snd_hda_codec_write(codec, pin->nid, 0,
787 AC_VERB_SET_PIN_WIDGET_CONTROL,
788 pin->ctrl);
789 }
790 codec->pins_shutup = 0;
791}
Mike Waychison1c7276c2011-04-20 12:04:36 -0700792#endif
Takashi Iwaiac0547d2010-07-05 16:50:13 +0200793
David Henningsson26a6cb62012-10-09 15:04:21 +0200794static void hda_jackpoll_work(struct work_struct *work)
795{
796 struct hda_codec *codec =
797 container_of(work, struct hda_codec, jackpoll_work.work);
David Henningsson26a6cb62012-10-09 15:04:21 +0200798
799 snd_hda_jack_set_dirty_all(codec);
800 snd_hda_jack_poll_all(codec);
Wang Xingchao18e60622013-07-25 23:34:45 -0400801
802 if (!codec->jackpoll_interval)
803 return;
804
Takashi Iwai2f35c632015-02-27 22:43:26 +0100805 schedule_delayed_work(&codec->jackpoll_work,
806 codec->jackpoll_interval);
David Henningsson26a6cb62012-10-09 15:04:21 +0200807}
808
Takashi Iwai01751f52007-08-10 16:59:39 +0200809static void init_hda_cache(struct hda_cache_rec *cache,
810 unsigned int record_size);
Takashi Iwai1fcaee62007-08-23 00:01:09 +0200811static void free_hda_cache(struct hda_cache_rec *cache);
Takashi Iwai01751f52007-08-10 16:59:39 +0200812
Takashi Iwai3fdf1462012-11-22 08:16:31 +0100813/* release all pincfg lists */
814static void free_init_pincfgs(struct hda_codec *codec)
Takashi Iwai3be14142009-02-20 14:11:16 +0100815{
Takashi Iwai346ff702009-02-23 09:42:57 +0100816 snd_array_free(&codec->driver_pins);
Takashi Iwai648a8d22014-02-25 10:38:13 +0100817#ifdef CONFIG_SND_HDA_RECONFIG
Takashi Iwai346ff702009-02-23 09:42:57 +0100818 snd_array_free(&codec->user_pins);
Takashi Iwai3be14142009-02-20 14:11:16 +0100819#endif
Takashi Iwai3be14142009-02-20 14:11:16 +0100820 snd_array_free(&codec->init_pins);
821}
822
Takashi Iwai54d17402005-11-21 16:33:22 +0100823/*
Takashi Iwaieb541332010-08-06 13:48:11 +0200824 * audio-converter setup caches
825 */
826struct hda_cvt_setup {
827 hda_nid_t nid;
828 u8 stream_tag;
829 u8 channel_id;
830 u16 format_id;
831 unsigned char active; /* cvt is currently used */
832 unsigned char dirty; /* setups should be cleared */
833};
834
835/* get or create a cache entry for the given audio converter NID */
836static struct hda_cvt_setup *
837get_hda_cvt_setup(struct hda_codec *codec, hda_nid_t nid)
838{
839 struct hda_cvt_setup *p;
840 int i;
841
842 for (i = 0; i < codec->cvt_setups.used; i++) {
843 p = snd_array_elem(&codec->cvt_setups, i);
844 if (p->nid == nid)
845 return p;
846 }
847 p = snd_array_new(&codec->cvt_setups);
848 if (p)
849 p->nid = nid;
850 return p;
851}
852
853/*
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100854 * PCM device
855 */
856static void release_pcm(struct kref *kref)
857{
858 struct hda_pcm *pcm = container_of(kref, struct hda_pcm, kref);
859
860 if (pcm->pcm)
861 snd_device_free(pcm->codec->card, pcm->pcm);
862 clear_bit(pcm->device, pcm->codec->bus->pcm_dev_bits);
863 kfree(pcm->name);
864 kfree(pcm);
865}
866
867void snd_hda_codec_pcm_put(struct hda_pcm *pcm)
868{
869 kref_put(&pcm->kref, release_pcm);
870}
871EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_put);
872
873struct hda_pcm *snd_hda_codec_pcm_new(struct hda_codec *codec,
874 const char *fmt, ...)
875{
876 struct hda_pcm *pcm;
877 va_list args;
878
879 va_start(args, fmt);
880 pcm = kzalloc(sizeof(*pcm), GFP_KERNEL);
881 if (!pcm)
882 return NULL;
883
884 pcm->codec = codec;
885 kref_init(&pcm->kref);
886 pcm->name = kvasprintf(GFP_KERNEL, fmt, args);
887 if (!pcm->name) {
888 kfree(pcm);
889 return NULL;
890 }
891
892 list_add_tail(&pcm->list, &codec->pcm_list_head);
893 return pcm;
894}
895EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_new);
896
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100897/*
898 * codec destructor
899 */
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100900static void codec_release_pcms(struct hda_codec *codec)
901{
902 struct hda_pcm *pcm, *n;
903
904 list_for_each_entry_safe(pcm, n, &codec->pcm_list_head, list) {
905 list_del_init(&pcm->list);
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100906 if (pcm->pcm)
907 snd_device_disconnect(codec->card, pcm->pcm);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100908 snd_hda_codec_pcm_put(pcm);
909 }
910}
911
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100912void snd_hda_codec_cleanup_for_unbind(struct hda_codec *codec)
913{
914 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100915 if (!codec->in_freeing)
916 snd_hda_ctls_clear(codec);
917 codec_release_pcms(codec);
918 snd_hda_detach_beep_device(codec);
919 memset(&codec->patch_ops, 0, sizeof(codec->patch_ops));
920 snd_hda_jack_tbl_clear(codec);
921 codec->proc_widget_hook = NULL;
922 codec->spec = NULL;
923
924 free_hda_cache(&codec->amp_cache);
925 free_hda_cache(&codec->cmd_cache);
926 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
927 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
928
929 /* 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);
940}
941
Takashi Iwaid8193872012-08-31 07:54:38 -0700942static unsigned int hda_set_power_state(struct hda_codec *codec,
Takashi Iwaibb6ac722009-03-13 09:02:42 +0100943 unsigned int power_state);
944
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100945static int snd_hda_codec_dev_register(struct snd_device *device)
946{
947 struct hda_codec *codec = device->device_data;
948
Takashi Iwaid604b392014-02-28 13:42:09 +0100949 snd_hda_register_beep_device(codec);
Takashi Iwaibb573922015-02-20 09:26:04 +0100950 if (device_is_registered(hda_codec_dev(codec)))
Takashi Iwaicc72da72015-02-19 16:00:22 +0100951 pm_runtime_enable(hda_codec_dev(codec));
Takashi Iwai709949f2015-02-20 09:58:14 +0100952 /* it was powered up in snd_hda_codec_new(), now all done */
953 snd_hda_power_down(codec);
Takashi Iwaid604b392014-02-28 13:42:09 +0100954 return 0;
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100955}
956
957static int snd_hda_codec_dev_disconnect(struct snd_device *device)
958{
959 struct hda_codec *codec = device->device_data;
960
Takashi Iwaid604b392014-02-28 13:42:09 +0100961 snd_hda_detach_beep_device(codec);
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100962 return 0;
963}
964
Takashi Iwai2565c892014-02-19 11:41:09 +0100965static int snd_hda_codec_dev_free(struct snd_device *device)
966{
Takashi Iwaid56db742015-02-27 23:25:35 +0100967 struct hda_codec *codec = device->device_data;
968
969 codec->in_freeing = 1;
970 if (device_is_registered(hda_codec_dev(codec)))
971 device_del(hda_codec_dev(codec));
972 put_device(hda_codec_dev(codec));
Takashi Iwai2565c892014-02-19 11:41:09 +0100973 return 0;
974}
975
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100976static void snd_hda_codec_dev_release(struct device *dev)
977{
Takashi Iwaid56db742015-02-27 23:25:35 +0100978 struct hda_codec *codec = dev_to_hda_codec(dev);
979
980 free_init_pincfgs(codec);
Takashi Iwai7639a062015-03-03 10:07:24 +0100981 snd_hdac_device_exit(&codec->core);
Takashi Iwaid56db742015-02-27 23:25:35 +0100982 snd_hda_sysfs_clear(codec);
983 free_hda_cache(&codec->amp_cache);
984 free_hda_cache(&codec->cmd_cache);
Takashi Iwaid56db742015-02-27 23:25:35 +0100985 kfree(codec->modelname);
986 kfree(codec->wcaps);
Takashi Iwaid56db742015-02-27 23:25:35 +0100987 kfree(codec);
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100988}
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990/**
991 * snd_hda_codec_new - create a HDA codec
992 * @bus: the bus to assign
993 * @codec_addr: the codec address
994 * @codecp: the pointer to store the generated codec
995 *
996 * Returns 0 if successful, or a negative error code.
997 */
Takashi Iwai6efdd852015-02-27 16:09:22 +0100998int snd_hda_codec_new(struct hda_bus *bus, struct snd_card *card,
999 unsigned int codec_addr, struct hda_codec **codecp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
1001 struct hda_codec *codec;
Jaroslav Kyselaba443682008-08-13 20:55:32 +02001002 char component[31];
Takashi Iwaid8193872012-08-31 07:54:38 -07001003 hda_nid_t fg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 int err;
Takashi Iwai2565c892014-02-19 11:41:09 +01001005 static struct snd_device_ops dev_ops = {
Takashi Iwai13aeaf62014-02-25 07:53:47 +01001006 .dev_register = snd_hda_codec_dev_register,
1007 .dev_disconnect = snd_hda_codec_dev_disconnect,
Takashi Iwai2565c892014-02-19 11:41:09 +01001008 .dev_free = snd_hda_codec_dev_free,
1009 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Takashi Iwaida3cec32008-08-08 17:12:14 +02001011 if (snd_BUG_ON(!bus))
1012 return -EINVAL;
1013 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
1014 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
Takashi Iwaie560d8d2005-09-09 14:21:46 +02001016 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
Takashi Iwaif4de8fe2015-02-27 16:17:18 +01001017 if (!codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Takashi Iwai7639a062015-03-03 10:07:24 +01001020 sprintf(component, "hdaudioC%dD%d", card->number, codec_addr);
1021 err = snd_hdac_device_init(&codec->core, &bus->core, component,
1022 codec_addr);
1023 if (err < 0) {
1024 kfree(codec);
1025 return err;
1026 }
Takashi Iwaid068ebc2015-03-02 23:22:59 +01001027
Takashi Iwai7639a062015-03-03 10:07:24 +01001028 codec->core.dev.release = snd_hda_codec_dev_release;
1029 codec->core.type = HDA_DEV_LEGACY;
Takashi Iwai13aeaf62014-02-25 07:53:47 +01001030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 codec->bus = bus;
Takashi Iwai6efdd852015-02-27 16:09:22 +01001032 codec->card = card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 codec->addr = codec_addr;
Ingo Molnar62932df2006-01-16 16:34:20 +01001034 mutex_init(&codec->spdif_mutex);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001035 mutex_init(&codec->control_mutex);
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001036 mutex_init(&codec->hash_mutex);
Takashi Iwai01751f52007-08-10 16:59:39 +02001037 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001038 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001039 snd_array_init(&codec->mixers, sizeof(struct hda_nid_item), 32);
1040 snd_array_init(&codec->nids, sizeof(struct hda_nid_item), 32);
Takashi Iwai3be14142009-02-20 14:11:16 +01001041 snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwai346ff702009-02-23 09:42:57 +01001042 snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwaieb541332010-08-06 13:48:11 +02001043 snd_array_init(&codec->cvt_setups, sizeof(struct hda_cvt_setup), 8);
Stephen Warren7c9359762011-06-01 11:14:17 -06001044 snd_array_init(&codec->spdif_out, sizeof(struct hda_spdif_out), 16);
Takashi Iwai361dab32012-05-09 14:35:27 +02001045 snd_array_init(&codec->jacktbl, sizeof(struct hda_jack_tbl), 16);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +01001046 snd_array_init(&codec->verbs, sizeof(struct hda_verb *), 8);
Takashi Iwaiee8e7652013-01-03 15:25:11 +01001047 INIT_LIST_HEAD(&codec->conn_list);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01001048 INIT_LIST_HEAD(&codec->pcm_list_head);
Takashi Iwaiee8e7652013-01-03 15:25:11 +01001049
David Henningsson26a6cb62012-10-09 15:04:21 +02001050 INIT_DELAYED_WORK(&codec->jackpoll_work, hda_jackpoll_work);
Mengdong Lin7f132922013-11-29 01:48:45 -05001051 codec->depop_delay = -1;
David Henningssonf5662e12014-07-22 14:09:34 +02001052 codec->fixup_id = HDA_FIXUP_ID_NOT_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Takashi Iwai83012a72012-08-24 18:38:08 +02001054#ifdef CONFIG_PM
Takashi Iwaicc72da72015-02-19 16:00:22 +01001055 codec->power_jiffies = jiffies;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001056#endif
1057
Takashi Iwai648a8d22014-02-25 10:38:13 +01001058 snd_hda_sysfs_init(codec);
1059
Takashi Iwaic382a9f2012-05-07 15:01:02 +02001060 if (codec->bus->modelname) {
1061 codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL);
1062 if (!codec->modelname) {
Takashi Iwai13aeaf62014-02-25 07:53:47 +01001063 err = -ENODEV;
1064 goto error;
Takashi Iwaic382a9f2012-05-07 15:01:02 +02001065 }
1066 }
1067
Takashi Iwai7639a062015-03-03 10:07:24 +01001068 fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
Takashi Iwaid8193872012-08-31 07:54:38 -07001069 err = read_widget_caps(codec, fg);
Takashi Iwaif4de8fe2015-02-27 16:17:18 +01001070 if (err < 0)
Takashi Iwai3be14142009-02-20 14:11:16 +01001071 goto error;
Takashi Iwai3be14142009-02-20 14:11:16 +01001072 err = read_pin_defaults(codec);
1073 if (err < 0)
1074 goto error;
Takashi Iwai54d17402005-11-21 16:33:22 +01001075
Takashi Iwaibb6ac722009-03-13 09:02:42 +01001076 /* power-up all before initialization */
Takashi Iwaid8193872012-08-31 07:54:38 -07001077 hda_set_power_state(codec, AC_PWRST_D0);
Takashi Iwaibb6ac722009-03-13 09:02:42 +01001078
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001079 snd_hda_codec_proc_new(codec);
1080
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001081 snd_hda_create_hwdep(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001082
Takashi Iwai7639a062015-03-03 10:07:24 +01001083 sprintf(component, "HDA:%08x,%08x,%08x", codec->core.vendor_id,
1084 codec->core.subsystem_id, codec->core.revision_id);
Takashi Iwai6efdd852015-02-27 16:09:22 +01001085 snd_component_add(card, component);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001086
Takashi Iwai6efdd852015-02-27 16:09:22 +01001087 err = snd_device_new(card, SNDRV_DEV_CODEC, codec, &dev_ops);
Takashi Iwai2565c892014-02-19 11:41:09 +01001088 if (err < 0)
1089 goto error;
1090
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001091 if (codecp)
1092 *codecp = codec;
1093 return 0;
Takashi Iwai3be14142009-02-20 14:11:16 +01001094
1095 error:
Takashi Iwai7639a062015-03-03 10:07:24 +01001096 pm_runtime_put_noidle(hda_codec_dev(codec));
Takashi Iwaid56db742015-02-27 23:25:35 +01001097 put_device(hda_codec_dev(codec));
Takashi Iwai3be14142009-02-20 14:11:16 +01001098 return err;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001099}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001100EXPORT_SYMBOL_GPL(snd_hda_codec_new);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001101
Takashi Iwai95a962c2014-10-29 16:03:58 +01001102/**
1103 * snd_hda_codec_update_widgets - Refresh widget caps and pin defaults
1104 * @codec: the HDA codec
1105 *
1106 * Forcibly refresh the all widget caps and the init pin configurations of
1107 * the given codec.
1108 */
Mengdong Lina15d05d2013-02-08 17:09:31 -05001109int snd_hda_codec_update_widgets(struct hda_codec *codec)
1110{
1111 hda_nid_t fg;
1112 int err;
1113
Takashi Iwai7639a062015-03-03 10:07:24 +01001114 err = snd_hdac_refresh_widgets(&codec->core);
1115 if (err < 0)
1116 return err;
1117
Mengdong Lina15d05d2013-02-08 17:09:31 -05001118 /* Assume the function group node does not change,
1119 * only the widget nodes may change.
1120 */
1121 kfree(codec->wcaps);
Takashi Iwai7639a062015-03-03 10:07:24 +01001122 fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
Mengdong Lina15d05d2013-02-08 17:09:31 -05001123 err = read_widget_caps(codec, fg);
Takashi Iwaif4de8fe2015-02-27 16:17:18 +01001124 if (err < 0)
Mengdong Lina15d05d2013-02-08 17:09:31 -05001125 return err;
Mengdong Lina15d05d2013-02-08 17:09:31 -05001126
1127 snd_array_free(&codec->init_pins);
1128 err = read_pin_defaults(codec);
1129
1130 return err;
1131}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001132EXPORT_SYMBOL_GPL(snd_hda_codec_update_widgets);
Mengdong Lina15d05d2013-02-08 17:09:31 -05001133
Takashi Iwaied360812012-08-08 17:12:52 +02001134/* update the stream-id if changed */
1135static void update_pcm_stream_id(struct hda_codec *codec,
1136 struct hda_cvt_setup *p, hda_nid_t nid,
1137 u32 stream_tag, int channel_id)
1138{
1139 unsigned int oldval, newval;
1140
1141 if (p->stream_tag != stream_tag || p->channel_id != channel_id) {
1142 oldval = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0);
1143 newval = (stream_tag << 4) | channel_id;
1144 if (oldval != newval)
1145 snd_hda_codec_write(codec, nid, 0,
1146 AC_VERB_SET_CHANNEL_STREAMID,
1147 newval);
1148 p->stream_tag = stream_tag;
1149 p->channel_id = channel_id;
1150 }
1151}
1152
1153/* update the format-id if changed */
1154static void update_pcm_format(struct hda_codec *codec, struct hda_cvt_setup *p,
1155 hda_nid_t nid, int format)
1156{
1157 unsigned int oldval;
1158
1159 if (p->format_id != format) {
1160 oldval = snd_hda_codec_read(codec, nid, 0,
1161 AC_VERB_GET_STREAM_FORMAT, 0);
1162 if (oldval != format) {
1163 msleep(1);
1164 snd_hda_codec_write(codec, nid, 0,
1165 AC_VERB_SET_STREAM_FORMAT,
1166 format);
1167 }
1168 p->format_id = format;
1169 }
1170}
1171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172/**
1173 * snd_hda_codec_setup_stream - set up the codec for streaming
1174 * @codec: the CODEC to set up
1175 * @nid: the NID to set up
1176 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
1177 * @channel_id: channel id to pass, zero based.
1178 * @format: stream format.
1179 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001180void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
1181 u32 stream_tag,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 int channel_id, int format)
1183{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001184 struct hda_codec *c;
Takashi Iwaieb541332010-08-06 13:48:11 +02001185 struct hda_cvt_setup *p;
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001186 int type;
Takashi Iwaieb541332010-08-06 13:48:11 +02001187 int i;
1188
Takashi Iwai0ba21762007-04-16 11:29:14 +02001189 if (!nid)
Takashi Iwaid21b37e2005-04-20 13:45:55 +02001190 return;
1191
Takashi Iwai4e76a882014-02-25 12:21:03 +01001192 codec_dbg(codec,
1193 "hda_codec_setup_stream: NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
1194 nid, stream_tag, channel_id, format);
Takashi Iwaieb541332010-08-06 13:48:11 +02001195 p = get_hda_cvt_setup(codec, nid);
Takashi Iwai6c35ae32013-05-10 13:39:50 +02001196 if (!p)
Takashi Iwaieb541332010-08-06 13:48:11 +02001197 return;
Takashi Iwaied360812012-08-08 17:12:52 +02001198
Takashi Iwaie6feb5d2015-03-16 21:32:11 +01001199 if (codec->patch_ops.stream_pm)
1200 codec->patch_ops.stream_pm(codec, nid, true);
Takashi Iwaied360812012-08-08 17:12:52 +02001201 if (codec->pcm_format_first)
1202 update_pcm_format(codec, p, nid, format);
1203 update_pcm_stream_id(codec, p, nid, stream_tag, channel_id);
1204 if (!codec->pcm_format_first)
1205 update_pcm_format(codec, p, nid, format);
1206
Takashi Iwaieb541332010-08-06 13:48:11 +02001207 p->active = 1;
1208 p->dirty = 0;
1209
1210 /* make other inactive cvts with the same stream-tag dirty */
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001211 type = get_wcaps_type(get_wcaps(codec, nid));
Takashi Iwaid068ebc2015-03-02 23:22:59 +01001212 list_for_each_codec(c, codec->bus) {
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001213 for (i = 0; i < c->cvt_setups.used; i++) {
1214 p = snd_array_elem(&c->cvt_setups, i);
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001215 if (!p->active && p->stream_tag == stream_tag &&
David Henningsson54c2a892012-02-01 12:05:41 +01001216 get_wcaps_type(get_wcaps(c, p->nid)) == type)
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001217 p->dirty = 1;
1218 }
Takashi Iwaieb541332010-08-06 13:48:11 +02001219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001221EXPORT_SYMBOL_GPL(snd_hda_codec_setup_stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Takashi Iwaif0cea792010-08-13 11:56:53 +02001223static void really_cleanup_stream(struct hda_codec *codec,
1224 struct hda_cvt_setup *q);
1225
Takashi Iwaid5191e52009-11-16 14:58:17 +01001226/**
Takashi Iwaif0cea792010-08-13 11:56:53 +02001227 * __snd_hda_codec_cleanup_stream - clean up the codec for closing
Takashi Iwaid5191e52009-11-16 14:58:17 +01001228 * @codec: the CODEC to clean up
1229 * @nid: the NID to clean up
Takashi Iwaif0cea792010-08-13 11:56:53 +02001230 * @do_now: really clean up the stream instead of clearing the active flag
Takashi Iwaid5191e52009-11-16 14:58:17 +01001231 */
Takashi Iwaif0cea792010-08-13 11:56:53 +02001232void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid,
1233 int do_now)
Takashi Iwai888afa12008-03-18 09:57:50 +01001234{
Takashi Iwaieb541332010-08-06 13:48:11 +02001235 struct hda_cvt_setup *p;
1236
Takashi Iwai888afa12008-03-18 09:57:50 +01001237 if (!nid)
1238 return;
1239
Takashi Iwai0e7adbe2010-10-25 10:37:11 +02001240 if (codec->no_sticky_stream)
1241 do_now = 1;
1242
Takashi Iwai4e76a882014-02-25 12:21:03 +01001243 codec_dbg(codec, "hda_codec_cleanup_stream: NID=0x%x\n", nid);
Takashi Iwaieb541332010-08-06 13:48:11 +02001244 p = get_hda_cvt_setup(codec, nid);
Takashi Iwai6c35ae32013-05-10 13:39:50 +02001245 if (p) {
Takashi Iwaif0cea792010-08-13 11:56:53 +02001246 /* here we just clear the active flag when do_now isn't set;
1247 * actual clean-ups will be done later in
1248 * purify_inactive_streams() called from snd_hda_codec_prpapre()
1249 */
1250 if (do_now)
1251 really_cleanup_stream(codec, p);
1252 else
1253 p->active = 0;
1254 }
Takashi Iwai888afa12008-03-18 09:57:50 +01001255}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001256EXPORT_SYMBOL_GPL(__snd_hda_codec_cleanup_stream);
Takashi Iwai888afa12008-03-18 09:57:50 +01001257
Takashi Iwaieb541332010-08-06 13:48:11 +02001258static void really_cleanup_stream(struct hda_codec *codec,
1259 struct hda_cvt_setup *q)
1260{
1261 hda_nid_t nid = q->nid;
Takashi Iwai218264a2011-09-27 17:33:45 +02001262 if (q->stream_tag || q->channel_id)
1263 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
1264 if (q->format_id)
1265 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0
1266);
Takashi Iwaieb541332010-08-06 13:48:11 +02001267 memset(q, 0, sizeof(*q));
1268 q->nid = nid;
Takashi Iwaie6feb5d2015-03-16 21:32:11 +01001269 if (codec->patch_ops.stream_pm)
1270 codec->patch_ops.stream_pm(codec, nid, false);
Takashi Iwaieb541332010-08-06 13:48:11 +02001271}
1272
1273/* clean up the all conflicting obsolete streams */
1274static void purify_inactive_streams(struct hda_codec *codec)
1275{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001276 struct hda_codec *c;
Takashi Iwaieb541332010-08-06 13:48:11 +02001277 int i;
1278
Takashi Iwaid068ebc2015-03-02 23:22:59 +01001279 list_for_each_codec(c, codec->bus) {
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001280 for (i = 0; i < c->cvt_setups.used; i++) {
1281 struct hda_cvt_setup *p;
1282 p = snd_array_elem(&c->cvt_setups, i);
1283 if (p->dirty)
1284 really_cleanup_stream(c, p);
1285 }
Takashi Iwaieb541332010-08-06 13:48:11 +02001286 }
1287}
1288
Takashi Iwai2a439522011-07-26 09:52:50 +02001289#ifdef CONFIG_PM
Takashi Iwaieb541332010-08-06 13:48:11 +02001290/* clean up all streams; called from suspend */
1291static void hda_cleanup_all_streams(struct hda_codec *codec)
1292{
1293 int i;
1294
1295 for (i = 0; i < codec->cvt_setups.used; i++) {
1296 struct hda_cvt_setup *p = snd_array_elem(&codec->cvt_setups, i);
1297 if (p->stream_tag)
1298 really_cleanup_stream(codec, p);
1299 }
1300}
Mike Waychison1c7276c2011-04-20 12:04:36 -07001301#endif
Takashi Iwaieb541332010-08-06 13:48:11 +02001302
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303/*
1304 * amp access functions
1305 */
1306
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001307/* FIXME: more better hash key? */
Norberto Lopes28aedaf2010-02-28 20:16:53 +01001308#define HDA_HASH_KEY(nid, dir, idx) (u32)((nid) + ((idx) << 16) + ((dir) << 24))
Takashi Iwai1327a322009-03-23 13:07:47 +01001309#define HDA_HASH_PINCAP_KEY(nid) (u32)((nid) + (0x02 << 24))
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001310#define HDA_HASH_PARPCM_KEY(nid) (u32)((nid) + (0x03 << 24))
1311#define HDA_HASH_PARSTR_KEY(nid) (u32)((nid) + (0x04 << 24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312#define INFO_AMP_CAPS (1<<0)
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001313#define INFO_AMP_VOL(ch) (1 << (1 + (ch)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315/* initialize the hash table */
Takashi Iwai6a0f56a2012-12-07 07:41:56 +01001316static void init_hda_cache(struct hda_cache_rec *cache,
Takashi Iwai01751f52007-08-10 16:59:39 +02001317 unsigned int record_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
Takashi Iwai01751f52007-08-10 16:59:39 +02001319 memset(cache, 0, sizeof(*cache));
1320 memset(cache->hash, 0xff, sizeof(cache->hash));
Takashi Iwai603c4012008-07-30 15:01:44 +02001321 snd_array_init(&cache->buf, record_size, 64);
Takashi Iwai01751f52007-08-10 16:59:39 +02001322}
1323
Takashi Iwai1fcaee62007-08-23 00:01:09 +02001324static void free_hda_cache(struct hda_cache_rec *cache)
Takashi Iwai01751f52007-08-10 16:59:39 +02001325{
Takashi Iwai603c4012008-07-30 15:01:44 +02001326 snd_array_free(&cache->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327}
1328
1329/* query the hash. allocate an entry if not found. */
Takashi Iwaia68d5a52010-03-30 18:03:44 +02001330static struct hda_cache_head *get_hash(struct hda_cache_rec *cache, u32 key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331{
Takashi Iwai01751f52007-08-10 16:59:39 +02001332 u16 idx = key % (u16)ARRAY_SIZE(cache->hash);
1333 u16 cur = cache->hash[idx];
1334 struct hda_cache_head *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 while (cur != 0xffff) {
Takashi Iwaif43aa022008-11-10 16:24:26 +01001337 info = snd_array_elem(&cache->buf, cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 if (info->key == key)
1339 return info;
1340 cur = info->next;
1341 }
Takashi Iwaia68d5a52010-03-30 18:03:44 +02001342 return NULL;
1343}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Takashi Iwaia68d5a52010-03-30 18:03:44 +02001345/* query the hash. allocate an entry if not found. */
1346static struct hda_cache_head *get_alloc_hash(struct hda_cache_rec *cache,
1347 u32 key)
1348{
1349 struct hda_cache_head *info = get_hash(cache, key);
1350 if (!info) {
1351 u16 idx, cur;
1352 /* add a new hash entry */
1353 info = snd_array_new(&cache->buf);
1354 if (!info)
1355 return NULL;
1356 cur = snd_array_index(&cache->buf, info);
1357 info->key = key;
1358 info->val = 0;
Takashi Iwaic370dd62012-12-13 18:30:04 +01001359 info->dirty = 0;
Takashi Iwaia68d5a52010-03-30 18:03:44 +02001360 idx = key % (u16)ARRAY_SIZE(cache->hash);
1361 info->next = cache->hash[idx];
1362 cache->hash[idx] = cur;
1363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 return info;
1365}
1366
Takashi Iwai01751f52007-08-10 16:59:39 +02001367/* query and allocate an amp hash entry */
1368static inline struct hda_amp_info *
1369get_alloc_amp_hash(struct hda_codec *codec, u32 key)
1370{
1371 return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key);
1372}
1373
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001374/* overwrite the value with the key in the caps hash */
1375static int write_caps_hash(struct hda_codec *codec, u32 key, unsigned int val)
1376{
1377 struct hda_amp_info *info;
1378
1379 mutex_lock(&codec->hash_mutex);
1380 info = get_alloc_amp_hash(codec, key);
1381 if (!info) {
1382 mutex_unlock(&codec->hash_mutex);
1383 return -EINVAL;
1384 }
1385 info->amp_caps = val;
1386 info->head.val |= INFO_AMP_CAPS;
1387 mutex_unlock(&codec->hash_mutex);
1388 return 0;
1389}
1390
1391/* query the value from the caps hash; if not found, fetch the current
1392 * value from the given function and store in the hash
1393 */
1394static unsigned int
1395query_caps_hash(struct hda_codec *codec, hda_nid_t nid, int dir, u32 key,
1396 unsigned int (*func)(struct hda_codec *, hda_nid_t, int))
1397{
1398 struct hda_amp_info *info;
1399 unsigned int val;
1400
1401 mutex_lock(&codec->hash_mutex);
1402 info = get_alloc_amp_hash(codec, key);
1403 if (!info) {
1404 mutex_unlock(&codec->hash_mutex);
1405 return 0;
1406 }
1407 if (!(info->head.val & INFO_AMP_CAPS)) {
1408 mutex_unlock(&codec->hash_mutex); /* for reentrance */
1409 val = func(codec, nid, dir);
1410 write_caps_hash(codec, key, val);
1411 } else {
1412 val = info->amp_caps;
1413 mutex_unlock(&codec->hash_mutex);
1414 }
1415 return val;
1416}
1417
1418static unsigned int read_amp_cap(struct hda_codec *codec, hda_nid_t nid,
1419 int direction)
1420{
1421 if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
Takashi Iwai7639a062015-03-03 10:07:24 +01001422 nid = codec->core.afg;
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001423 return snd_hda_param_read(codec, nid,
1424 direction == HDA_OUTPUT ?
1425 AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP);
1426}
1427
Takashi Iwaid5191e52009-11-16 14:58:17 +01001428/**
1429 * query_amp_caps - query AMP capabilities
1430 * @codec: the HD-auio codec
1431 * @nid: the NID to query
1432 * @direction: either #HDA_INPUT or #HDA_OUTPUT
1433 *
1434 * Query AMP capabilities for the given widget and direction.
1435 * Returns the obtained capability bits.
1436 *
1437 * When cap bits have been already read, this doesn't read again but
1438 * returns the cached value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 */
Matthew Ranostay09a99952008-01-24 11:49:21 +01001440u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001442 return query_caps_hash(codec, nid, direction,
1443 HDA_HASH_KEY(nid, direction, 0),
1444 read_amp_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001446EXPORT_SYMBOL_GPL(query_amp_caps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Takashi Iwaid5191e52009-11-16 14:58:17 +01001448/**
David Henningsson861a04e2014-09-23 10:38:17 +02001449 * snd_hda_check_amp_caps - query AMP capabilities
1450 * @codec: the HD-audio codec
1451 * @nid: the NID to query
1452 * @dir: either #HDA_INPUT or #HDA_OUTPUT
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001453 * @bits: bit mask to check the result
David Henningsson861a04e2014-09-23 10:38:17 +02001454 *
1455 * Check whether the widget has the given amp capability for the direction.
1456 */
1457bool snd_hda_check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
1458 int dir, unsigned int bits)
1459{
1460 if (!nid)
1461 return false;
1462 if (get_wcaps(codec, nid) & (1 << (dir + 1)))
1463 if (query_amp_caps(codec, nid, dir) & bits)
1464 return true;
1465 return false;
1466}
1467EXPORT_SYMBOL_GPL(snd_hda_check_amp_caps);
1468
1469/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01001470 * snd_hda_override_amp_caps - Override the AMP capabilities
1471 * @codec: the CODEC to clean up
1472 * @nid: the NID to clean up
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001473 * @dir: either #HDA_INPUT or #HDA_OUTPUT
Takashi Iwaid5191e52009-11-16 14:58:17 +01001474 * @caps: the capability bits to set
1475 *
1476 * Override the cached AMP caps bits value by the given one.
1477 * This function is useful if the driver needs to adjust the AMP ranges,
1478 * e.g. limit to 0dB, etc.
1479 *
1480 * Returns zero if successful or a negative error code.
1481 */
Takashi Iwai897cc182007-05-29 19:01:37 +02001482int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
1483 unsigned int caps)
1484{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001485 return write_caps_hash(codec, HDA_HASH_KEY(nid, dir, 0), caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001486}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001487EXPORT_SYMBOL_GPL(snd_hda_override_amp_caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001488
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001489static unsigned int read_pin_cap(struct hda_codec *codec, hda_nid_t nid,
1490 int dir)
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001491{
1492 return snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP);
1493}
1494
Takashi Iwaid5191e52009-11-16 14:58:17 +01001495/**
1496 * snd_hda_query_pin_caps - Query PIN capabilities
1497 * @codec: the HD-auio codec
1498 * @nid: the NID to query
1499 *
1500 * Query PIN capabilities for the given widget.
1501 * Returns the obtained capability bits.
1502 *
1503 * When cap bits have been already read, this doesn't read again but
1504 * returns the cached value.
1505 */
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001506u32 snd_hda_query_pin_caps(struct hda_codec *codec, hda_nid_t nid)
1507{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001508 return query_caps_hash(codec, nid, 0, HDA_HASH_PINCAP_KEY(nid),
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001509 read_pin_cap);
1510}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001511EXPORT_SYMBOL_GPL(snd_hda_query_pin_caps);
Takashi Iwai1327a322009-03-23 13:07:47 +01001512
Wu Fengguang864f92b2009-11-18 12:38:02 +08001513/**
Takashi Iwaif57c2562011-08-15 12:49:07 +02001514 * snd_hda_override_pin_caps - Override the pin capabilities
1515 * @codec: the CODEC
1516 * @nid: the NID to override
1517 * @caps: the capability bits to set
1518 *
1519 * Override the cached PIN capabilitiy bits value by the given one.
1520 *
1521 * Returns zero if successful or a negative error code.
1522 */
1523int snd_hda_override_pin_caps(struct hda_codec *codec, hda_nid_t nid,
1524 unsigned int caps)
1525{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001526 return write_caps_hash(codec, HDA_HASH_PINCAP_KEY(nid), caps);
Takashi Iwaif57c2562011-08-15 12:49:07 +02001527}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001528EXPORT_SYMBOL_GPL(snd_hda_override_pin_caps);
Takashi Iwaif57c2562011-08-15 12:49:07 +02001529
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001530/* read or sync the hash value with the current value;
1531 * call within hash_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 */
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001533static struct hda_amp_info *
1534update_amp_hash(struct hda_codec *codec, hda_nid_t nid, int ch,
Takashi Iwai280e57d2012-12-14 10:32:21 +01001535 int direction, int index, bool init_only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001537 struct hda_amp_info *info;
1538 unsigned int parm, val = 0;
1539 bool val_read = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001541 retry:
1542 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, index));
1543 if (!info)
1544 return NULL;
1545 if (!(info->head.val & INFO_AMP_VOL(ch))) {
1546 if (!val_read) {
1547 mutex_unlock(&codec->hash_mutex);
1548 parm = ch ? AC_AMP_GET_RIGHT : AC_AMP_GET_LEFT;
1549 parm |= direction == HDA_OUTPUT ?
1550 AC_AMP_GET_OUTPUT : AC_AMP_GET_INPUT;
1551 parm |= index;
1552 val = snd_hda_codec_read(codec, nid, 0,
Takashi Iwai0ba21762007-04-16 11:29:14 +02001553 AC_VERB_GET_AMP_GAIN_MUTE, parm);
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001554 val &= 0xff;
1555 val_read = true;
1556 mutex_lock(&codec->hash_mutex);
1557 goto retry;
1558 }
1559 info->vol[ch] = val;
1560 info->head.val |= INFO_AMP_VOL(ch);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001561 } else if (init_only)
1562 return NULL;
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001563 return info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564}
1565
1566/*
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001567 * write the current volume in info to the h/w
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 */
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01001569static void put_vol_mute(struct hda_codec *codec, unsigned int amp_caps,
Takashi Iwai0ba21762007-04-16 11:29:14 +02001570 hda_nid_t nid, int ch, int direction, int index,
1571 int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
1573 u32 parm;
1574
1575 parm = ch ? AC_AMP_SET_RIGHT : AC_AMP_SET_LEFT;
1576 parm |= direction == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT;
1577 parm |= index << AC_AMP_SET_INDEX_SHIFT;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01001578 if ((val & HDA_AMP_MUTE) && !(amp_caps & AC_AMPCAP_MUTE) &&
1579 (amp_caps & AC_AMPCAP_MIN_MUTE))
Takashi Iwai38681372012-02-27 15:00:58 +01001580 ; /* set the zero value as a fake mute */
1581 else
1582 parm |= val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, parm);
1584}
1585
Takashi Iwaid5191e52009-11-16 14:58:17 +01001586/**
1587 * snd_hda_codec_amp_read - Read AMP value
1588 * @codec: HD-audio codec
1589 * @nid: NID to read the AMP value
1590 * @ch: channel (left=0 or right=1)
1591 * @direction: #HDA_INPUT or #HDA_OUTPUT
1592 * @index: the index value (only for input direction)
1593 *
1594 * Read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 */
Takashi Iwai834be882006-03-01 14:16:17 +01001596int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch,
1597 int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001599 struct hda_amp_info *info;
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001600 unsigned int val = 0;
1601
1602 mutex_lock(&codec->hash_mutex);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001603 info = update_amp_hash(codec, nid, ch, direction, index, false);
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001604 if (info)
1605 val = info->vol[ch];
1606 mutex_unlock(&codec->hash_mutex);
1607 return val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001609EXPORT_SYMBOL_GPL(snd_hda_codec_amp_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Takashi Iwai280e57d2012-12-14 10:32:21 +01001611static int codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch,
1612 int direction, int idx, int mask, int val,
Takashi Iwai781c7b92015-02-20 10:26:25 +01001613 bool init_only, bool cache_only)
Takashi Iwai280e57d2012-12-14 10:32:21 +01001614{
1615 struct hda_amp_info *info;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01001616 unsigned int caps;
Takashi Iwai280e57d2012-12-14 10:32:21 +01001617
1618 if (snd_BUG_ON(mask & ~0xff))
1619 mask &= 0xff;
1620 val &= mask;
1621
1622 mutex_lock(&codec->hash_mutex);
1623 info = update_amp_hash(codec, nid, ch, direction, idx, init_only);
1624 if (!info) {
1625 mutex_unlock(&codec->hash_mutex);
1626 return 0;
1627 }
1628 val |= info->vol[ch] & ~mask;
1629 if (info->vol[ch] == val) {
1630 mutex_unlock(&codec->hash_mutex);
1631 return 0;
1632 }
1633 info->vol[ch] = val;
Takashi Iwai781c7b92015-02-20 10:26:25 +01001634 info->head.dirty |= cache_only;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01001635 caps = info->amp_caps;
Takashi Iwai280e57d2012-12-14 10:32:21 +01001636 mutex_unlock(&codec->hash_mutex);
Takashi Iwaide1e37b2012-12-20 11:00:21 +01001637 if (!cache_only)
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01001638 put_vol_mute(codec, caps, nid, ch, direction, idx, val);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001639 return 1;
1640}
1641
Takashi Iwaid5191e52009-11-16 14:58:17 +01001642/**
1643 * snd_hda_codec_amp_update - update the AMP value
1644 * @codec: HD-audio codec
1645 * @nid: NID to read the AMP value
1646 * @ch: channel (left=0 or right=1)
1647 * @direction: #HDA_INPUT or #HDA_OUTPUT
1648 * @idx: the index value (only for input direction)
1649 * @mask: bit mask to set
1650 * @val: the bits value to set
1651 *
1652 * Update the AMP value with a bit mask.
1653 * Returns 0 if the value is unchanged, 1 if changed.
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001654 */
Takashi Iwai834be882006-03-01 14:16:17 +01001655int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch,
1656 int direction, int idx, int mask, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657{
Takashi Iwai781c7b92015-02-20 10:26:25 +01001658 return codec_amp_update(codec, nid, ch, direction, idx, mask, val,
1659 false, codec->cached_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001661EXPORT_SYMBOL_GPL(snd_hda_codec_amp_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Takashi Iwaid5191e52009-11-16 14:58:17 +01001663/**
1664 * snd_hda_codec_amp_stereo - update the AMP stereo values
1665 * @codec: HD-audio codec
1666 * @nid: NID to read the AMP value
1667 * @direction: #HDA_INPUT or #HDA_OUTPUT
1668 * @idx: the index value (only for input direction)
1669 * @mask: bit mask to set
1670 * @val: the bits value to set
1671 *
1672 * Update the AMP values like snd_hda_codec_amp_update(), but for a
1673 * stereo widget with the same mask and value.
Takashi Iwai47fd8302007-08-10 17:11:07 +02001674 */
1675int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
1676 int direction, int idx, int mask, int val)
1677{
1678 int ch, ret = 0;
Takashi Iwai467126462010-03-29 09:19:38 +02001679
1680 if (snd_BUG_ON(mask & ~0xff))
1681 mask &= 0xff;
Takashi Iwai47fd8302007-08-10 17:11:07 +02001682 for (ch = 0; ch < 2; ch++)
1683 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
1684 idx, mask, val);
1685 return ret;
1686}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001687EXPORT_SYMBOL_GPL(snd_hda_codec_amp_stereo);
Takashi Iwai47fd8302007-08-10 17:11:07 +02001688
Takashi Iwai95a962c2014-10-29 16:03:58 +01001689/**
1690 * snd_hda_codec_amp_init - initialize the AMP value
1691 * @codec: the HDA codec
1692 * @nid: NID to read the AMP value
1693 * @ch: channel (left=0 or right=1)
1694 * @dir: #HDA_INPUT or #HDA_OUTPUT
1695 * @idx: the index value (only for input direction)
1696 * @mask: bit mask to set
1697 * @val: the bits value to set
1698 *
1699 * Works like snd_hda_codec_amp_update() but it writes the value only at
Takashi Iwai280e57d2012-12-14 10:32:21 +01001700 * the first access. If the amp was already initialized / updated beforehand,
1701 * this does nothing.
1702 */
1703int snd_hda_codec_amp_init(struct hda_codec *codec, hda_nid_t nid, int ch,
1704 int dir, int idx, int mask, int val)
1705{
Takashi Iwai781c7b92015-02-20 10:26:25 +01001706 return codec_amp_update(codec, nid, ch, dir, idx, mask, val, true,
1707 codec->cached_write);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001708}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001709EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001710
Takashi Iwai95a962c2014-10-29 16:03:58 +01001711/**
1712 * snd_hda_codec_amp_init_stereo - initialize the stereo AMP value
1713 * @codec: the HDA codec
1714 * @nid: NID to read the AMP value
1715 * @dir: #HDA_INPUT or #HDA_OUTPUT
1716 * @idx: the index value (only for input direction)
1717 * @mask: bit mask to set
1718 * @val: the bits value to set
1719 *
1720 * Call snd_hda_codec_amp_init() for both stereo channels.
1721 */
Takashi Iwai280e57d2012-12-14 10:32:21 +01001722int snd_hda_codec_amp_init_stereo(struct hda_codec *codec, hda_nid_t nid,
1723 int dir, int idx, int mask, int val)
1724{
1725 int ch, ret = 0;
1726
1727 if (snd_BUG_ON(mask & ~0xff))
1728 mask &= 0xff;
1729 for (ch = 0; ch < 2; ch++)
1730 ret |= snd_hda_codec_amp_init(codec, nid, ch, dir,
1731 idx, mask, val);
1732 return ret;
1733}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001734EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init_stereo);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001735
Takashi Iwaid5191e52009-11-16 14:58:17 +01001736/**
1737 * snd_hda_codec_resume_amp - Resume all AMP commands from the cache
1738 * @codec: HD-audio codec
1739 *
1740 * Resume the all amp commands from the cache.
1741 */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001742void snd_hda_codec_resume_amp(struct hda_codec *codec)
1743{
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001744 int i;
1745
Takashi Iwaic370dd62012-12-13 18:30:04 +01001746 mutex_lock(&codec->hash_mutex);
Takashi Iwaiaa88a352012-12-20 11:02:00 +01001747 codec->cached_write = 0;
Takashi Iwaic370dd62012-12-13 18:30:04 +01001748 for (i = 0; i < codec->amp_cache.buf.used; i++) {
1749 struct hda_amp_info *buffer;
1750 u32 key;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001751 hda_nid_t nid;
1752 unsigned int idx, dir, ch;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01001753 struct hda_amp_info info;
Takashi Iwaic370dd62012-12-13 18:30:04 +01001754
1755 buffer = snd_array_elem(&codec->amp_cache.buf, i);
Takashi Iwai8565f052012-12-20 12:54:18 +01001756 if (!buffer->head.dirty)
1757 continue;
1758 buffer->head.dirty = 0;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01001759 info = *buffer;
1760 key = info.head.key;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001761 if (!key)
1762 continue;
1763 nid = key & 0xff;
1764 idx = (key >> 16) & 0xff;
1765 dir = (key >> 24) & 0xff;
1766 for (ch = 0; ch < 2; ch++) {
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01001767 if (!(info.head.val & INFO_AMP_VOL(ch)))
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001768 continue;
Takashi Iwaic370dd62012-12-13 18:30:04 +01001769 mutex_unlock(&codec->hash_mutex);
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01001770 put_vol_mute(codec, info.amp_caps, nid, ch, dir, idx,
1771 info.vol[ch]);
Takashi Iwaic370dd62012-12-13 18:30:04 +01001772 mutex_lock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001773 }
1774 }
Takashi Iwaic370dd62012-12-13 18:30:04 +01001775 mutex_unlock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001776}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001777EXPORT_SYMBOL_GPL(snd_hda_codec_resume_amp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001779static u32 get_amp_max_value(struct hda_codec *codec, hda_nid_t nid, int dir,
1780 unsigned int ofs)
1781{
1782 u32 caps = query_amp_caps(codec, nid, dir);
1783 /* get num steps */
1784 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1785 if (ofs < caps)
1786 caps -= ofs;
1787 return caps;
1788}
1789
Takashi Iwaid5191e52009-11-16 14:58:17 +01001790/**
1791 * snd_hda_mixer_amp_volume_info - Info callback for a standard AMP mixer
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001792 * @kcontrol: referred ctl element
1793 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001794 *
1795 * The control element is supposed to have the private_value field
1796 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1797 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001798int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
1799 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800{
1801 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1802 u16 nid = get_amp_nid(kcontrol);
1803 u8 chs = get_amp_channels(kcontrol);
1804 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001805 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001807 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1808 uinfo->count = chs == 3 ? 2 : 1;
1809 uinfo->value.integer.min = 0;
1810 uinfo->value.integer.max = get_amp_max_value(codec, nid, dir, ofs);
1811 if (!uinfo->value.integer.max) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001812 codec_warn(codec,
1813 "num_steps = 0 for NID=0x%x (ctl = %s)\n",
1814 nid, kcontrol->id.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 return -EINVAL;
1816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 return 0;
1818}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001819EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001821
1822static inline unsigned int
1823read_amp_value(struct hda_codec *codec, hda_nid_t nid,
1824 int ch, int dir, int idx, unsigned int ofs)
1825{
1826 unsigned int val;
1827 val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx);
1828 val &= HDA_AMP_VOLMASK;
1829 if (val >= ofs)
1830 val -= ofs;
1831 else
1832 val = 0;
1833 return val;
1834}
1835
1836static inline int
1837update_amp_value(struct hda_codec *codec, hda_nid_t nid,
1838 int ch, int dir, int idx, unsigned int ofs,
1839 unsigned int val)
1840{
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001841 unsigned int maxval;
1842
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001843 if (val > 0)
1844 val += ofs;
Takashi Iwai7ccc3ef2010-07-26 17:00:15 +02001845 /* ofs = 0: raw max value */
1846 maxval = get_amp_max_value(codec, nid, dir, 0);
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001847 if (val > maxval)
1848 val = maxval;
Takashi Iwai781c7b92015-02-20 10:26:25 +01001849 return codec_amp_update(codec, nid, ch, dir, idx, HDA_AMP_VOLMASK, val,
1850 false, !hda_codec_is_power_on(codec));
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001851}
1852
Takashi Iwaid5191e52009-11-16 14:58:17 +01001853/**
1854 * snd_hda_mixer_amp_volume_get - Get callback for a standard AMP mixer volume
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001855 * @kcontrol: ctl element
1856 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001857 *
1858 * The control element is supposed to have the private_value field
1859 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1860 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001861int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
1862 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863{
1864 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1865 hda_nid_t nid = get_amp_nid(kcontrol);
1866 int chs = get_amp_channels(kcontrol);
1867 int dir = get_amp_direction(kcontrol);
1868 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001869 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 long *valp = ucontrol->value.integer.value;
1871
1872 if (chs & 1)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001873 *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001875 *valp = read_amp_value(codec, nid, 1, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 return 0;
1877}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001878EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Takashi Iwaid5191e52009-11-16 14:58:17 +01001880/**
1881 * snd_hda_mixer_amp_volume_put - Put callback for a standard AMP mixer volume
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001882 * @kcontrol: ctl element
1883 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001884 *
1885 * The control element is supposed to have the private_value field
1886 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1887 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001888int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
1889 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890{
1891 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1892 hda_nid_t nid = get_amp_nid(kcontrol);
1893 int chs = get_amp_channels(kcontrol);
1894 int dir = get_amp_direction(kcontrol);
1895 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001896 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 long *valp = ucontrol->value.integer.value;
1898 int change = 0;
1899
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001900 if (chs & 1) {
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001901 change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001902 valp++;
1903 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001904 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001905 change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 return change;
1907}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001908EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
Takashi Iwaid5191e52009-11-16 14:58:17 +01001910/**
1911 * snd_hda_mixer_amp_volume_put - TLV callback for a standard AMP mixer volume
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001912 * @kcontrol: ctl element
1913 * @op_flag: operation flag
1914 * @size: byte size of input TLV
1915 * @_tlv: TLV data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001916 *
1917 * The control element is supposed to have the private_value field
1918 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1919 */
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001920int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1921 unsigned int size, unsigned int __user *_tlv)
1922{
1923 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1924 hda_nid_t nid = get_amp_nid(kcontrol);
1925 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001926 unsigned int ofs = get_amp_offset(kcontrol);
Clemens Ladischde8c85f2010-10-15 10:32:50 +02001927 bool min_mute = get_amp_min_mute(kcontrol);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001928 u32 caps, val1, val2;
1929
1930 if (size < 4 * sizeof(unsigned int))
1931 return -ENOMEM;
1932 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001933 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1934 val2 = (val2 + 1) * 25;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001935 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001936 val1 += ofs;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001937 val1 = ((int)val1) * ((int)val2);
Takashi Iwai38681372012-02-27 15:00:58 +01001938 if (min_mute || (caps & AC_AMPCAP_MIN_MUTE))
Takashi Iwaic08d9162010-10-17 10:40:53 +02001939 val2 |= TLV_DB_SCALE_MUTE;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001940 if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv))
1941 return -EFAULT;
1942 if (put_user(2 * sizeof(unsigned int), _tlv + 1))
1943 return -EFAULT;
1944 if (put_user(val1, _tlv + 2))
1945 return -EFAULT;
1946 if (put_user(val2, _tlv + 3))
1947 return -EFAULT;
1948 return 0;
1949}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001950EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_tlv);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001951
Takashi Iwaid5191e52009-11-16 14:58:17 +01001952/**
1953 * snd_hda_set_vmaster_tlv - Set TLV for a virtual master control
1954 * @codec: HD-audio codec
1955 * @nid: NID of a reference widget
1956 * @dir: #HDA_INPUT or #HDA_OUTPUT
1957 * @tlv: TLV data to be stored, at least 4 elements
1958 *
1959 * Set (static) TLV data for a virtual master volume using the AMP caps
1960 * obtained from the reference NID.
1961 * The volume range is recalculated as if the max volume is 0dB.
Takashi Iwai2134ea42008-01-10 16:53:55 +01001962 */
1963void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
1964 unsigned int *tlv)
1965{
1966 u32 caps;
1967 int nums, step;
1968
1969 caps = query_amp_caps(codec, nid, dir);
1970 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1971 step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1972 step = (step + 1) * 25;
1973 tlv[0] = SNDRV_CTL_TLVT_DB_SCALE;
1974 tlv[1] = 2 * sizeof(unsigned int);
1975 tlv[2] = -nums * step;
1976 tlv[3] = step;
1977}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001978EXPORT_SYMBOL_GPL(snd_hda_set_vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001979
1980/* find a mixer control element with the given name */
Takashi Iwai09f99702008-02-04 12:31:13 +01001981static struct snd_kcontrol *
Takashi Iwaidcda5802012-10-12 17:24:51 +02001982find_mixer_ctl(struct hda_codec *codec, const char *name, int dev, int idx)
Takashi Iwai2134ea42008-01-10 16:53:55 +01001983{
1984 struct snd_ctl_elem_id id;
1985 memset(&id, 0, sizeof(id));
1986 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Takashi Iwaidcda5802012-10-12 17:24:51 +02001987 id.device = dev;
Takashi Iwai09f99702008-02-04 12:31:13 +01001988 id.index = idx;
Takashi Iwai18cb7102009-04-16 10:22:24 +02001989 if (snd_BUG_ON(strlen(name) >= sizeof(id.name)))
1990 return NULL;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001991 strcpy(id.name, name);
Takashi Iwai6efdd852015-02-27 16:09:22 +01001992 return snd_ctl_find_id(codec->card, &id);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001993}
1994
Takashi Iwaid5191e52009-11-16 14:58:17 +01001995/**
1996 * snd_hda_find_mixer_ctl - Find a mixer control element with the given name
1997 * @codec: HD-audio codec
1998 * @name: ctl id name string
1999 *
2000 * Get the control element with the given id string and IFACE_MIXER.
2001 */
Takashi Iwai09f99702008-02-04 12:31:13 +01002002struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
2003 const char *name)
2004{
Takashi Iwaidcda5802012-10-12 17:24:51 +02002005 return find_mixer_ctl(codec, name, 0, 0);
Takashi Iwai09f99702008-02-04 12:31:13 +01002006}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002007EXPORT_SYMBOL_GPL(snd_hda_find_mixer_ctl);
Takashi Iwai09f99702008-02-04 12:31:13 +01002008
Takashi Iwaidcda5802012-10-12 17:24:51 +02002009static int find_empty_mixer_ctl_idx(struct hda_codec *codec, const char *name,
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002010 int start_idx)
Takashi Iwai1afe2062010-12-23 10:17:52 +01002011{
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002012 int i, idx;
2013 /* 16 ctlrs should be large enough */
2014 for (i = 0, idx = start_idx; i < 16; i++, idx++) {
2015 if (!find_mixer_ctl(codec, name, 0, idx))
Takashi Iwai1afe2062010-12-23 10:17:52 +01002016 return idx;
2017 }
2018 return -EBUSY;
2019}
2020
Takashi Iwaid5191e52009-11-16 14:58:17 +01002021/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002022 * snd_hda_ctl_add - Add a control element and assign to the codec
Takashi Iwaid5191e52009-11-16 14:58:17 +01002023 * @codec: HD-audio codec
2024 * @nid: corresponding NID (optional)
2025 * @kctl: the control element to assign
2026 *
2027 * Add the given control element to an array inside the codec instance.
2028 * All control elements belonging to a codec are supposed to be added
2029 * by this function so that a proper clean-up works at the free or
2030 * reconfiguration time.
2031 *
2032 * If non-zero @nid is passed, the NID is assigned to the control element.
2033 * The assignment is shown in the codec proc file.
2034 *
2035 * snd_hda_ctl_add() checks the control subdev id field whether
2036 * #HDA_SUBDEV_NID_FLAG bit is set. If set (and @nid is zero), the lower
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002037 * bits value is taken as the NID to assign. The #HDA_NID_ITEM_AMP bit
2038 * specifies if kctl->private_value is a HDA amplifier value.
Takashi Iwaid5191e52009-11-16 14:58:17 +01002039 */
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002040int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid,
2041 struct snd_kcontrol *kctl)
Takashi Iwaid13bd412008-07-30 15:01:45 +02002042{
2043 int err;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002044 unsigned short flags = 0;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002045 struct hda_nid_item *item;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002046
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002047 if (kctl->id.subdevice & HDA_SUBDEV_AMP_FLAG) {
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002048 flags |= HDA_NID_ITEM_AMP;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002049 if (nid == 0)
2050 nid = get_amp_nid_(kctl->private_value);
2051 }
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002052 if ((kctl->id.subdevice & HDA_SUBDEV_NID_FLAG) != 0 && nid == 0)
2053 nid = kctl->id.subdevice & 0xffff;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002054 if (kctl->id.subdevice & (HDA_SUBDEV_NID_FLAG|HDA_SUBDEV_AMP_FLAG))
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01002055 kctl->id.subdevice = 0;
Takashi Iwai6efdd852015-02-27 16:09:22 +01002056 err = snd_ctl_add(codec->card, kctl);
Takashi Iwaid13bd412008-07-30 15:01:45 +02002057 if (err < 0)
2058 return err;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002059 item = snd_array_new(&codec->mixers);
2060 if (!item)
Takashi Iwaid13bd412008-07-30 15:01:45 +02002061 return -ENOMEM;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002062 item->kctl = kctl;
2063 item->nid = nid;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002064 item->flags = flags;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002065 return 0;
2066}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002067EXPORT_SYMBOL_GPL(snd_hda_ctl_add);
Takashi Iwaid13bd412008-07-30 15:01:45 +02002068
Takashi Iwaid5191e52009-11-16 14:58:17 +01002069/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002070 * snd_hda_add_nid - Assign a NID to a control element
2071 * @codec: HD-audio codec
2072 * @nid: corresponding NID (optional)
2073 * @kctl: the control element to assign
2074 * @index: index to kctl
2075 *
2076 * Add the given control element to an array inside the codec instance.
2077 * This function is used when #snd_hda_ctl_add cannot be used for 1:1
2078 * NID:KCTL mapping - for example "Capture Source" selector.
2079 */
2080int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl,
2081 unsigned int index, hda_nid_t nid)
2082{
2083 struct hda_nid_item *item;
2084
2085 if (nid > 0) {
2086 item = snd_array_new(&codec->nids);
2087 if (!item)
2088 return -ENOMEM;
2089 item->kctl = kctl;
2090 item->index = index;
2091 item->nid = nid;
2092 return 0;
2093 }
Takashi Iwai4e76a882014-02-25 12:21:03 +01002094 codec_err(codec, "no NID for mapping control %s:%d:%d\n",
2095 kctl->id.name, kctl->id.index, index);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002096 return -EINVAL;
2097}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002098EXPORT_SYMBOL_GPL(snd_hda_add_nid);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002099
2100/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01002101 * snd_hda_ctls_clear - Clear all controls assigned to the given codec
2102 * @codec: HD-audio codec
2103 */
Takashi Iwaid13bd412008-07-30 15:01:45 +02002104void snd_hda_ctls_clear(struct hda_codec *codec)
2105{
2106 int i;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002107 struct hda_nid_item *items = codec->mixers.list;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002108 for (i = 0; i < codec->mixers.used; i++)
Takashi Iwai6efdd852015-02-27 16:09:22 +01002109 snd_ctl_remove(codec->card, items[i].kctl);
Takashi Iwaid13bd412008-07-30 15:01:45 +02002110 snd_array_free(&codec->mixers);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002111 snd_array_free(&codec->nids);
Takashi Iwaid13bd412008-07-30 15:01:45 +02002112}
2113
Takashi Iwai95a962c2014-10-29 16:03:58 +01002114/**
2115 * snd_hda_lock_devices - pseudo device locking
2116 * @bus: the BUS
2117 *
Takashi Iwaia65d6292009-02-23 16:57:04 +01002118 * toggle card->shutdown to allow/disallow the device access (as a hack)
2119 */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002120int snd_hda_lock_devices(struct hda_bus *bus)
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002121{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002122 struct snd_card *card = bus->card;
2123 struct hda_codec *codec;
2124
Takashi Iwaia65d6292009-02-23 16:57:04 +01002125 spin_lock(&card->files_lock);
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002126 if (card->shutdown)
2127 goto err_unlock;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002128 card->shutdown = 1;
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002129 if (!list_empty(&card->ctl_files))
2130 goto err_clear;
2131
Takashi Iwaid068ebc2015-03-02 23:22:59 +01002132 list_for_each_codec(codec, bus) {
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01002133 struct hda_pcm *cpcm;
2134 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002135 if (!cpcm->pcm)
2136 continue;
2137 if (cpcm->pcm->streams[0].substream_opened ||
2138 cpcm->pcm->streams[1].substream_opened)
2139 goto err_clear;
2140 }
2141 }
Takashi Iwaia65d6292009-02-23 16:57:04 +01002142 spin_unlock(&card->files_lock);
2143 return 0;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002144
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002145 err_clear:
2146 card->shutdown = 0;
2147 err_unlock:
2148 spin_unlock(&card->files_lock);
2149 return -EINVAL;
2150}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002151EXPORT_SYMBOL_GPL(snd_hda_lock_devices);
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002152
Takashi Iwai95a962c2014-10-29 16:03:58 +01002153/**
2154 * snd_hda_unlock_devices - pseudo device unlocking
2155 * @bus: the BUS
2156 */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002157void snd_hda_unlock_devices(struct hda_bus *bus)
Takashi Iwaia65d6292009-02-23 16:57:04 +01002158{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002159 struct snd_card *card = bus->card;
2160
Takashi Iwaia65d6292009-02-23 16:57:04 +01002161 spin_lock(&card->files_lock);
2162 card->shutdown = 0;
2163 spin_unlock(&card->files_lock);
2164}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002165EXPORT_SYMBOL_GPL(snd_hda_unlock_devices);
Takashi Iwaia65d6292009-02-23 16:57:04 +01002166
Takashi Iwaid5191e52009-11-16 14:58:17 +01002167/**
2168 * snd_hda_codec_reset - Clear all objects assigned to the codec
2169 * @codec: HD-audio codec
2170 *
2171 * This frees the all PCM and control elements assigned to the codec, and
2172 * clears the caches and restores the pin default configurations.
2173 *
2174 * When a device is being used, it returns -EBSY. If successfully freed,
2175 * returns zero.
2176 */
Takashi Iwaia65d6292009-02-23 16:57:04 +01002177int snd_hda_codec_reset(struct hda_codec *codec)
2178{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002179 struct hda_bus *bus = codec->bus;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002180
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002181 if (snd_hda_lock_devices(bus) < 0)
Takashi Iwaia65d6292009-02-23 16:57:04 +01002182 return -EBUSY;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002183
2184 /* OK, let it free */
Takashi Iwaid8a766a2015-02-17 15:25:37 +01002185 if (device_is_registered(hda_codec_dev(codec)))
2186 device_del(hda_codec_dev(codec));
2187
Takashi Iwaia65d6292009-02-23 16:57:04 +01002188 /* allow device access again */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002189 snd_hda_unlock_devices(bus);
Takashi Iwaia65d6292009-02-23 16:57:04 +01002190 return 0;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002191}
2192
Takashi Iwai6194b992014-06-06 18:12:16 +02002193typedef int (*map_slave_func_t)(struct hda_codec *, void *, struct snd_kcontrol *);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002194
2195/* apply the function to all matching slave ctls in the mixer list */
2196static int map_slaves(struct hda_codec *codec, const char * const *slaves,
Takashi Iwai9322ca52012-02-03 14:28:01 +01002197 const char *suffix, map_slave_func_t func, void *data)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002198{
2199 struct hda_nid_item *items;
2200 const char * const *s;
2201 int i, err;
2202
2203 items = codec->mixers.list;
2204 for (i = 0; i < codec->mixers.used; i++) {
2205 struct snd_kcontrol *sctl = items[i].kctl;
Takashi Iwaica16ec02013-10-28 12:00:35 +01002206 if (!sctl || sctl->id.iface != SNDRV_CTL_ELEM_IFACE_MIXER)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002207 continue;
2208 for (s = slaves; *s; s++) {
Takashi Iwai9322ca52012-02-03 14:28:01 +01002209 char tmpname[sizeof(sctl->id.name)];
2210 const char *name = *s;
2211 if (suffix) {
2212 snprintf(tmpname, sizeof(tmpname), "%s %s",
2213 name, suffix);
2214 name = tmpname;
2215 }
Takashi Iwai9322ca52012-02-03 14:28:01 +01002216 if (!strcmp(sctl->id.name, name)) {
Takashi Iwai6194b992014-06-06 18:12:16 +02002217 err = func(codec, data, sctl);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002218 if (err)
2219 return err;
2220 break;
2221 }
2222 }
2223 }
2224 return 0;
2225}
2226
Takashi Iwai6194b992014-06-06 18:12:16 +02002227static int check_slave_present(struct hda_codec *codec,
2228 void *data, struct snd_kcontrol *sctl)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002229{
2230 return 1;
2231}
2232
Takashi Iwai18478e82012-03-09 17:51:10 +01002233/* guess the value corresponding to 0dB */
Takashi Iwai6194b992014-06-06 18:12:16 +02002234static int get_kctl_0dB_offset(struct hda_codec *codec,
2235 struct snd_kcontrol *kctl, int *step_to_check)
Takashi Iwai18478e82012-03-09 17:51:10 +01002236{
2237 int _tlv[4];
2238 const int *tlv = NULL;
2239 int val = -1;
2240
2241 if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
2242 /* FIXME: set_fs() hack for obtaining user-space TLV data */
2243 mm_segment_t fs = get_fs();
2244 set_fs(get_ds());
2245 if (!kctl->tlv.c(kctl, 0, sizeof(_tlv), _tlv))
2246 tlv = _tlv;
2247 set_fs(fs);
2248 } else if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_READ)
2249 tlv = kctl->tlv.p;
Takashi Iwaia4e7a122013-11-04 15:44:09 +01002250 if (tlv && tlv[0] == SNDRV_CTL_TLVT_DB_SCALE) {
2251 int step = tlv[3];
2252 step &= ~TLV_DB_SCALE_MUTE;
2253 if (!step)
2254 return -1;
Takashi Iwai485e3e02013-11-04 15:51:00 +01002255 if (*step_to_check && *step_to_check != step) {
Takashi Iwai6194b992014-06-06 18:12:16 +02002256 codec_err(codec, "Mismatching dB step for vmaster slave (%d!=%d)\n",
Takashi Iwai4e76a882014-02-25 12:21:03 +01002257- *step_to_check, step);
Takashi Iwai485e3e02013-11-04 15:51:00 +01002258 return -1;
2259 }
2260 *step_to_check = step;
Takashi Iwaia4e7a122013-11-04 15:44:09 +01002261 val = -tlv[2] / step;
2262 }
Takashi Iwai18478e82012-03-09 17:51:10 +01002263 return val;
2264}
2265
2266/* call kctl->put with the given value(s) */
2267static int put_kctl_with_value(struct snd_kcontrol *kctl, int val)
2268{
2269 struct snd_ctl_elem_value *ucontrol;
2270 ucontrol = kzalloc(sizeof(*ucontrol), GFP_KERNEL);
2271 if (!ucontrol)
2272 return -ENOMEM;
2273 ucontrol->value.integer.value[0] = val;
2274 ucontrol->value.integer.value[1] = val;
2275 kctl->put(kctl, ucontrol);
2276 kfree(ucontrol);
2277 return 0;
2278}
2279
2280/* initialize the slave volume with 0dB */
Takashi Iwai6194b992014-06-06 18:12:16 +02002281static int init_slave_0dB(struct hda_codec *codec,
2282 void *data, struct snd_kcontrol *slave)
Takashi Iwai18478e82012-03-09 17:51:10 +01002283{
Takashi Iwai6194b992014-06-06 18:12:16 +02002284 int offset = get_kctl_0dB_offset(codec, slave, data);
Takashi Iwai18478e82012-03-09 17:51:10 +01002285 if (offset > 0)
2286 put_kctl_with_value(slave, offset);
2287 return 0;
2288}
2289
2290/* unmute the slave */
Takashi Iwai6194b992014-06-06 18:12:16 +02002291static int init_slave_unmute(struct hda_codec *codec,
2292 void *data, struct snd_kcontrol *slave)
Takashi Iwai18478e82012-03-09 17:51:10 +01002293{
2294 return put_kctl_with_value(slave, 1);
2295}
2296
Takashi Iwaie8750942014-06-30 14:02:39 +02002297static int add_slave(struct hda_codec *codec,
2298 void *data, struct snd_kcontrol *slave)
2299{
2300 return snd_ctl_add_slave(data, slave);
2301}
2302
Takashi Iwaid5191e52009-11-16 14:58:17 +01002303/**
Takashi Iwai95a962c2014-10-29 16:03:58 +01002304 * __snd_hda_add_vmaster - create a virtual master control and add slaves
Takashi Iwaid5191e52009-11-16 14:58:17 +01002305 * @codec: HD-audio codec
2306 * @name: vmaster control name
2307 * @tlv: TLV data (optional)
2308 * @slaves: slave control names (optional)
Takashi Iwai9322ca52012-02-03 14:28:01 +01002309 * @suffix: suffix string to each slave name (optional)
Takashi Iwai18478e82012-03-09 17:51:10 +01002310 * @init_slave_vol: initialize slaves to unmute/0dB
Takashi Iwai29e58532012-03-12 12:25:03 +01002311 * @ctl_ret: store the vmaster kcontrol in return
Takashi Iwaid5191e52009-11-16 14:58:17 +01002312 *
2313 * Create a virtual master control with the given name. The TLV data
2314 * must be either NULL or a valid data.
2315 *
2316 * @slaves is a NULL-terminated array of strings, each of which is a
2317 * slave control name. All controls with these names are assigned to
2318 * the new virtual master control.
2319 *
2320 * This function returns zero if successful or a negative error code.
2321 */
Takashi Iwai18478e82012-03-09 17:51:10 +01002322int __snd_hda_add_vmaster(struct hda_codec *codec, char *name,
Takashi Iwai9322ca52012-02-03 14:28:01 +01002323 unsigned int *tlv, const char * const *slaves,
Takashi Iwai29e58532012-03-12 12:25:03 +01002324 const char *suffix, bool init_slave_vol,
2325 struct snd_kcontrol **ctl_ret)
Takashi Iwai2134ea42008-01-10 16:53:55 +01002326{
2327 struct snd_kcontrol *kctl;
Takashi Iwai2134ea42008-01-10 16:53:55 +01002328 int err;
2329
Takashi Iwai29e58532012-03-12 12:25:03 +01002330 if (ctl_ret)
2331 *ctl_ret = NULL;
2332
Takashi Iwai9322ca52012-02-03 14:28:01 +01002333 err = map_slaves(codec, slaves, suffix, check_slave_present, NULL);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002334 if (err != 1) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01002335 codec_dbg(codec, "No slave found for %s\n", name);
Takashi Iwai2f085542008-02-22 18:43:50 +01002336 return 0;
2337 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01002338 kctl = snd_ctl_make_virtual_master(name, tlv);
2339 if (!kctl)
2340 return -ENOMEM;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002341 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai2134ea42008-01-10 16:53:55 +01002342 if (err < 0)
2343 return err;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002344
Takashi Iwaie8750942014-06-30 14:02:39 +02002345 err = map_slaves(codec, slaves, suffix, add_slave, kctl);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002346 if (err < 0)
2347 return err;
Takashi Iwai18478e82012-03-09 17:51:10 +01002348
2349 /* init with master mute & zero volume */
2350 put_kctl_with_value(kctl, 0);
Takashi Iwai485e3e02013-11-04 15:51:00 +01002351 if (init_slave_vol) {
2352 int step = 0;
Takashi Iwai18478e82012-03-09 17:51:10 +01002353 map_slaves(codec, slaves, suffix,
Takashi Iwai485e3e02013-11-04 15:51:00 +01002354 tlv ? init_slave_0dB : init_slave_unmute, &step);
2355 }
Takashi Iwai18478e82012-03-09 17:51:10 +01002356
Takashi Iwai29e58532012-03-12 12:25:03 +01002357 if (ctl_ret)
2358 *ctl_ret = kctl;
Takashi Iwai2134ea42008-01-10 16:53:55 +01002359 return 0;
2360}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002361EXPORT_SYMBOL_GPL(__snd_hda_add_vmaster);
Takashi Iwai2134ea42008-01-10 16:53:55 +01002362
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002363/*
2364 * mute-LED control using vmaster
2365 */
2366static int vmaster_mute_mode_info(struct snd_kcontrol *kcontrol,
2367 struct snd_ctl_elem_info *uinfo)
2368{
2369 static const char * const texts[] = {
David Henningssonc86c2d42013-01-03 14:12:29 +01002370 "On", "Off", "Follow Master"
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002371 };
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002372
Takashi Iwai3ff72212014-10-20 18:17:28 +02002373 return snd_ctl_enum_info(uinfo, 1, 3, texts);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002374}
2375
2376static int vmaster_mute_mode_get(struct snd_kcontrol *kcontrol,
2377 struct snd_ctl_elem_value *ucontrol)
2378{
2379 struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol);
2380 ucontrol->value.enumerated.item[0] = hook->mute_mode;
2381 return 0;
2382}
2383
2384static int vmaster_mute_mode_put(struct snd_kcontrol *kcontrol,
2385 struct snd_ctl_elem_value *ucontrol)
2386{
2387 struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol);
2388 unsigned int old_mode = hook->mute_mode;
2389
2390 hook->mute_mode = ucontrol->value.enumerated.item[0];
2391 if (hook->mute_mode > HDA_VMUTE_FOLLOW_MASTER)
2392 hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER;
2393 if (old_mode == hook->mute_mode)
2394 return 0;
2395 snd_hda_sync_vmaster_hook(hook);
2396 return 1;
2397}
2398
2399static struct snd_kcontrol_new vmaster_mute_mode = {
2400 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2401 .name = "Mute-LED Mode",
2402 .info = vmaster_mute_mode_info,
2403 .get = vmaster_mute_mode_get,
2404 .put = vmaster_mute_mode_put,
2405};
2406
Takashi Iwai95a962c2014-10-29 16:03:58 +01002407/**
2408 * snd_hda_add_vmaster_hook - Add a vmaster hook for mute-LED
2409 * @codec: the HDA codec
2410 * @hook: the vmaster hook object
2411 * @expose_enum_ctl: flag to create an enum ctl
2412 *
2413 * Add a mute-LED hook with the given vmaster switch kctl.
2414 * When @expose_enum_ctl is set, "Mute-LED Mode" control is automatically
2415 * created and associated with the given hook.
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002416 */
2417int snd_hda_add_vmaster_hook(struct hda_codec *codec,
Takashi Iwaif29735c2012-03-13 07:55:10 +01002418 struct hda_vmaster_mute_hook *hook,
2419 bool expose_enum_ctl)
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002420{
2421 struct snd_kcontrol *kctl;
2422
2423 if (!hook->hook || !hook->sw_kctl)
2424 return 0;
2425 snd_ctl_add_vmaster_hook(hook->sw_kctl, hook->hook, codec);
2426 hook->codec = codec;
2427 hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER;
Takashi Iwaif29735c2012-03-13 07:55:10 +01002428 if (!expose_enum_ctl)
2429 return 0;
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002430 kctl = snd_ctl_new1(&vmaster_mute_mode, hook);
2431 if (!kctl)
2432 return -ENOMEM;
2433 return snd_hda_ctl_add(codec, 0, kctl);
2434}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002435EXPORT_SYMBOL_GPL(snd_hda_add_vmaster_hook);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002436
Takashi Iwai95a962c2014-10-29 16:03:58 +01002437/**
2438 * snd_hda_sync_vmaster_hook - Sync vmaster hook
2439 * @hook: the vmaster hook
2440 *
2441 * Call the hook with the current value for synchronization.
2442 * Should be called in init callback.
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002443 */
2444void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook *hook)
2445{
2446 if (!hook->hook || !hook->codec)
2447 return;
Takashi Iwai594813f2013-04-17 18:16:05 +02002448 /* don't call vmaster hook in the destructor since it might have
2449 * been already destroyed
2450 */
2451 if (hook->codec->bus->shutdown)
2452 return;
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002453 switch (hook->mute_mode) {
2454 case HDA_VMUTE_FOLLOW_MASTER:
2455 snd_ctl_sync_vmaster_hook(hook->sw_kctl);
2456 break;
2457 default:
2458 hook->hook(hook->codec, hook->mute_mode);
2459 break;
2460 }
2461}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002462EXPORT_SYMBOL_GPL(snd_hda_sync_vmaster_hook);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002463
2464
Takashi Iwaid5191e52009-11-16 14:58:17 +01002465/**
2466 * snd_hda_mixer_amp_switch_info - Info callback for a standard AMP mixer switch
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002467 * @kcontrol: referred ctl element
2468 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002469 *
2470 * The control element is supposed to have the private_value field
2471 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2472 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002473int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
2474 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475{
2476 int chs = get_amp_channels(kcontrol);
2477
2478 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2479 uinfo->count = chs == 3 ? 2 : 1;
2480 uinfo->value.integer.min = 0;
2481 uinfo->value.integer.max = 1;
2482 return 0;
2483}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002484EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
Takashi Iwaid5191e52009-11-16 14:58:17 +01002486/**
2487 * snd_hda_mixer_amp_switch_get - Get callback for a standard AMP mixer switch
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002488 * @kcontrol: ctl element
2489 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002490 *
2491 * The control element is supposed to have the private_value field
2492 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2493 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002494int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
2495 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496{
2497 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2498 hda_nid_t nid = get_amp_nid(kcontrol);
2499 int chs = get_amp_channels(kcontrol);
2500 int dir = get_amp_direction(kcontrol);
2501 int idx = get_amp_index(kcontrol);
2502 long *valp = ucontrol->value.integer.value;
2503
2504 if (chs & 1)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002505 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002506 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 if (chs & 2)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002508 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002509 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 return 0;
2511}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002512EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
Takashi Iwaid5191e52009-11-16 14:58:17 +01002514/**
2515 * snd_hda_mixer_amp_switch_put - Put callback for a standard AMP mixer switch
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002516 * @kcontrol: ctl element
2517 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002518 *
2519 * The control element is supposed to have the private_value field
2520 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2521 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002522int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
2523 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524{
2525 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2526 hda_nid_t nid = get_amp_nid(kcontrol);
2527 int chs = get_amp_channels(kcontrol);
2528 int dir = get_amp_direction(kcontrol);
2529 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 long *valp = ucontrol->value.integer.value;
2531 int change = 0;
2532
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002533 if (chs & 1) {
Takashi Iwai781c7b92015-02-20 10:26:25 +01002534 change = codec_amp_update(codec, nid, 0, dir, idx,
2535 HDA_AMP_MUTE,
2536 *valp ? 0 : HDA_AMP_MUTE, false,
2537 !hda_codec_is_power_on(codec));
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002538 valp++;
2539 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02002540 if (chs & 2)
Takashi Iwai781c7b92015-02-20 10:26:25 +01002541 change |= codec_amp_update(codec, nid, 1, dir, idx,
2542 HDA_AMP_MUTE,
2543 *valp ? 0 : HDA_AMP_MUTE, false,
2544 !hda_codec_is_power_on(codec));
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002545 hda_call_check_power_status(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 return change;
2547}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002548EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
2550/*
Takashi Iwai985be542005-11-02 18:26:49 +01002551 * bound volume controls
2552 *
2553 * bind multiple volumes (# indices, from 0)
2554 */
2555
2556#define AMP_VAL_IDX_SHIFT 19
2557#define AMP_VAL_IDX_MASK (0x0f<<19)
2558
Takashi Iwaid5191e52009-11-16 14:58:17 +01002559/**
2560 * snd_hda_mixer_bind_switch_get - Get callback for a bound volume control
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002561 * @kcontrol: ctl element
2562 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002563 *
2564 * The control element is supposed to have the private_value field
2565 * set up via HDA_BIND_MUTE*() macros.
2566 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002567int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol,
2568 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01002569{
2570 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2571 unsigned long pval;
2572 int err;
2573
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002574 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002575 pval = kcontrol->private_value;
2576 kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */
2577 err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
2578 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002579 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002580 return err;
2581}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002582EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_switch_get);
Takashi Iwai985be542005-11-02 18:26:49 +01002583
Takashi Iwaid5191e52009-11-16 14:58:17 +01002584/**
2585 * snd_hda_mixer_bind_switch_put - Put callback for a bound volume control
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002586 * @kcontrol: ctl element
2587 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002588 *
2589 * The control element is supposed to have the private_value field
2590 * set up via HDA_BIND_MUTE*() macros.
2591 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002592int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol,
2593 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01002594{
2595 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2596 unsigned long pval;
2597 int i, indices, err = 0, change = 0;
2598
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002599 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002600 pval = kcontrol->private_value;
2601 indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT;
2602 for (i = 0; i < indices; i++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002603 kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) |
2604 (i << AMP_VAL_IDX_SHIFT);
Takashi Iwai985be542005-11-02 18:26:49 +01002605 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2606 if (err < 0)
2607 break;
2608 change |= err;
2609 }
2610 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002611 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002612 return err < 0 ? err : change;
2613}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002614EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_switch_put);
Takashi Iwai985be542005-11-02 18:26:49 +01002615
Takashi Iwaid5191e52009-11-16 14:58:17 +01002616/**
2617 * snd_hda_mixer_bind_ctls_info - Info callback for a generic bound control
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002618 * @kcontrol: referred ctl element
2619 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002620 *
2621 * The control element is supposed to have the private_value field
2622 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
Takashi Iwai532d5382007-07-27 19:02:40 +02002623 */
2624int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol,
2625 struct snd_ctl_elem_info *uinfo)
2626{
2627 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2628 struct hda_bind_ctls *c;
2629 int err;
2630
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002631 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01002632 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02002633 kcontrol->private_value = *c->values;
2634 err = c->ops->info(kcontrol, uinfo);
2635 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002636 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02002637 return err;
2638}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002639EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_info);
Takashi Iwai532d5382007-07-27 19:02:40 +02002640
Takashi Iwaid5191e52009-11-16 14:58:17 +01002641/**
2642 * snd_hda_mixer_bind_ctls_get - Get callback for a generic bound control
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002643 * @kcontrol: ctl element
2644 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002645 *
2646 * The control element is supposed to have the private_value field
2647 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
2648 */
Takashi Iwai532d5382007-07-27 19:02:40 +02002649int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol,
2650 struct snd_ctl_elem_value *ucontrol)
2651{
2652 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2653 struct hda_bind_ctls *c;
2654 int err;
2655
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002656 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01002657 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02002658 kcontrol->private_value = *c->values;
2659 err = c->ops->get(kcontrol, ucontrol);
2660 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002661 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02002662 return err;
2663}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002664EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_get);
Takashi Iwai532d5382007-07-27 19:02:40 +02002665
Takashi Iwaid5191e52009-11-16 14:58:17 +01002666/**
2667 * snd_hda_mixer_bind_ctls_put - Put callback for a generic bound control
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002668 * @kcontrol: ctl element
2669 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002670 *
2671 * The control element is supposed to have the private_value field
2672 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
2673 */
Takashi Iwai532d5382007-07-27 19:02:40 +02002674int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol,
2675 struct snd_ctl_elem_value *ucontrol)
2676{
2677 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2678 struct hda_bind_ctls *c;
2679 unsigned long *vals;
2680 int err = 0, change = 0;
2681
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002682 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01002683 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02002684 for (vals = c->values; *vals; vals++) {
2685 kcontrol->private_value = *vals;
2686 err = c->ops->put(kcontrol, ucontrol);
2687 if (err < 0)
2688 break;
2689 change |= err;
2690 }
2691 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002692 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02002693 return err < 0 ? err : change;
2694}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002695EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_put);
Takashi Iwai532d5382007-07-27 19:02:40 +02002696
Takashi Iwaid5191e52009-11-16 14:58:17 +01002697/**
2698 * snd_hda_mixer_bind_tlv - TLV callback for a generic bound control
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002699 * @kcontrol: ctl element
2700 * @op_flag: operation flag
2701 * @size: byte size of input TLV
2702 * @tlv: TLV data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002703 *
2704 * The control element is supposed to have the private_value field
2705 * set up via HDA_BIND_VOL() macro.
2706 */
Takashi Iwai532d5382007-07-27 19:02:40 +02002707int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag,
2708 unsigned int size, unsigned int __user *tlv)
2709{
2710 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2711 struct hda_bind_ctls *c;
2712 int err;
2713
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002714 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01002715 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02002716 kcontrol->private_value = *c->values;
2717 err = c->ops->tlv(kcontrol, op_flag, size, tlv);
2718 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002719 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02002720 return err;
2721}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002722EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_tlv);
Takashi Iwai532d5382007-07-27 19:02:40 +02002723
2724struct hda_ctl_ops snd_hda_bind_vol = {
2725 .info = snd_hda_mixer_amp_volume_info,
2726 .get = snd_hda_mixer_amp_volume_get,
2727 .put = snd_hda_mixer_amp_volume_put,
2728 .tlv = snd_hda_mixer_amp_tlv
2729};
Takashi Iwai2698ea92013-12-18 07:45:52 +01002730EXPORT_SYMBOL_GPL(snd_hda_bind_vol);
Takashi Iwai532d5382007-07-27 19:02:40 +02002731
2732struct hda_ctl_ops snd_hda_bind_sw = {
2733 .info = snd_hda_mixer_amp_switch_info,
2734 .get = snd_hda_mixer_amp_switch_get,
2735 .put = snd_hda_mixer_amp_switch_put,
2736 .tlv = snd_hda_mixer_amp_tlv
2737};
Takashi Iwai2698ea92013-12-18 07:45:52 +01002738EXPORT_SYMBOL_GPL(snd_hda_bind_sw);
Takashi Iwai532d5382007-07-27 19:02:40 +02002739
2740/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 * SPDIF out controls
2742 */
2743
Takashi Iwai0ba21762007-04-16 11:29:14 +02002744static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
2745 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746{
2747 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
2748 uinfo->count = 1;
2749 return 0;
2750}
2751
Takashi Iwai0ba21762007-04-16 11:29:14 +02002752static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
2753 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754{
2755 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
2756 IEC958_AES0_NONAUDIO |
2757 IEC958_AES0_CON_EMPHASIS_5015 |
2758 IEC958_AES0_CON_NOT_COPYRIGHT;
2759 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
2760 IEC958_AES1_CON_ORIGINAL;
2761 return 0;
2762}
2763
Takashi Iwai0ba21762007-04-16 11:29:14 +02002764static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
2765 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766{
2767 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
2768 IEC958_AES0_NONAUDIO |
2769 IEC958_AES0_PRO_EMPHASIS_5015;
2770 return 0;
2771}
2772
Takashi Iwai0ba21762007-04-16 11:29:14 +02002773static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
2774 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775{
2776 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c9359762011-06-01 11:14:17 -06002777 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002778 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002780 mutex_lock(&codec->spdif_mutex);
2781 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren7c9359762011-06-01 11:14:17 -06002782 ucontrol->value.iec958.status[0] = spdif->status & 0xff;
2783 ucontrol->value.iec958.status[1] = (spdif->status >> 8) & 0xff;
2784 ucontrol->value.iec958.status[2] = (spdif->status >> 16) & 0xff;
2785 ucontrol->value.iec958.status[3] = (spdif->status >> 24) & 0xff;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002786 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787
2788 return 0;
2789}
2790
2791/* convert from SPDIF status bits to HDA SPDIF bits
2792 * bit 0 (DigEn) is always set zero (to be filled later)
2793 */
2794static unsigned short convert_from_spdif_status(unsigned int sbits)
2795{
2796 unsigned short val = 0;
2797
2798 if (sbits & IEC958_AES0_PROFESSIONAL)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002799 val |= AC_DIG1_PROFESSIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 if (sbits & IEC958_AES0_NONAUDIO)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002801 val |= AC_DIG1_NONAUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002803 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
2804 IEC958_AES0_PRO_EMPHASIS_5015)
2805 val |= AC_DIG1_EMPHASIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002807 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
2808 IEC958_AES0_CON_EMPHASIS_5015)
2809 val |= AC_DIG1_EMPHASIS;
2810 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
2811 val |= AC_DIG1_COPYRIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
Takashi Iwai0ba21762007-04-16 11:29:14 +02002813 val |= AC_DIG1_LEVEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
2815 }
2816 return val;
2817}
2818
2819/* convert to SPDIF status bits from HDA SPDIF bits
2820 */
2821static unsigned int convert_to_spdif_status(unsigned short val)
2822{
2823 unsigned int sbits = 0;
2824
Takashi Iwai0ba21762007-04-16 11:29:14 +02002825 if (val & AC_DIG1_NONAUDIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 sbits |= IEC958_AES0_NONAUDIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002827 if (val & AC_DIG1_PROFESSIONAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 sbits |= IEC958_AES0_PROFESSIONAL;
2829 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwaia686fd12013-03-20 15:42:00 +01002830 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
2832 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002833 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002835 if (!(val & AC_DIG1_COPYRIGHT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002837 if (val & AC_DIG1_LEVEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
2839 sbits |= val & (0x7f << 8);
2840 }
2841 return sbits;
2842}
2843
Takashi Iwai2f728532008-09-25 16:32:41 +02002844/* set digital convert verbs both for the given NID and its slaves */
2845static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
2846 int verb, int val)
2847{
Takashi Iwaidda14412011-05-02 11:29:30 +02002848 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02002849
Takashi Iwai9e976972008-11-25 08:17:20 +01002850 snd_hda_codec_write_cache(codec, nid, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02002851 d = codec->slave_dig_outs;
2852 if (!d)
2853 return;
2854 for (; *d; d++)
Takashi Iwai9e976972008-11-25 08:17:20 +01002855 snd_hda_codec_write_cache(codec, *d, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02002856}
2857
2858static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,
2859 int dig1, int dig2)
2860{
2861 if (dig1 != -1)
2862 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_1, dig1);
2863 if (dig2 != -1)
2864 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_2, dig2);
2865}
2866
Takashi Iwai0ba21762007-04-16 11:29:14 +02002867static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
2868 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869{
2870 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c9359762011-06-01 11:14:17 -06002871 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002872 struct hda_spdif_out *spdif;
2873 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 unsigned short val;
2875 int change;
2876
Ingo Molnar62932df2006-01-16 16:34:20 +01002877 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002878 spdif = snd_array_elem(&codec->spdif_out, idx);
2879 nid = spdif->nid;
Stephen Warren7c9359762011-06-01 11:14:17 -06002880 spdif->status = ucontrol->value.iec958.status[0] |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
2882 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
2883 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
Stephen Warren7c9359762011-06-01 11:14:17 -06002884 val = convert_from_spdif_status(spdif->status);
2885 val |= spdif->ctls & 1;
2886 change = spdif->ctls != val;
2887 spdif->ctls = val;
Stephen Warren74b654c2011-06-01 11:14:18 -06002888 if (change && nid != (u16)-1)
Takashi Iwai2f728532008-09-25 16:32:41 +02002889 set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff);
Ingo Molnar62932df2006-01-16 16:34:20 +01002890 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 return change;
2892}
2893
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002894#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895
Takashi Iwai0ba21762007-04-16 11:29:14 +02002896static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
2897 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898{
2899 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c9359762011-06-01 11:14:17 -06002900 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002901 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002903 mutex_lock(&codec->spdif_mutex);
2904 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren7c9359762011-06-01 11:14:17 -06002905 ucontrol->value.integer.value[0] = spdif->ctls & AC_DIG1_ENABLE;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002906 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 return 0;
2908}
2909
Stephen Warren74b654c2011-06-01 11:14:18 -06002910static inline void set_spdif_ctls(struct hda_codec *codec, hda_nid_t nid,
2911 int dig1, int dig2)
2912{
2913 set_dig_out_convert(codec, nid, dig1, dig2);
2914 /* unmute amp switch (if any) */
2915 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
2916 (dig1 & AC_DIG1_ENABLE))
2917 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
2918 HDA_AMP_MUTE, 0);
2919}
2920
Takashi Iwai0ba21762007-04-16 11:29:14 +02002921static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
2922 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923{
2924 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c9359762011-06-01 11:14:17 -06002925 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002926 struct hda_spdif_out *spdif;
2927 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 unsigned short val;
2929 int change;
2930
Ingo Molnar62932df2006-01-16 16:34:20 +01002931 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002932 spdif = snd_array_elem(&codec->spdif_out, idx);
2933 nid = spdif->nid;
Stephen Warren7c9359762011-06-01 11:14:17 -06002934 val = spdif->ctls & ~AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 if (ucontrol->value.integer.value[0])
Takashi Iwai0ba21762007-04-16 11:29:14 +02002936 val |= AC_DIG1_ENABLE;
Stephen Warren7c9359762011-06-01 11:14:17 -06002937 change = spdif->ctls != val;
Stephen Warren74b654c2011-06-01 11:14:18 -06002938 spdif->ctls = val;
2939 if (change && nid != (u16)-1)
2940 set_spdif_ctls(codec, nid, val & 0xff, -1);
Ingo Molnar62932df2006-01-16 16:34:20 +01002941 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 return change;
2943}
2944
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002945static struct snd_kcontrol_new dig_mixes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 {
2947 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2948 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002949 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 .info = snd_hda_spdif_mask_info,
2951 .get = snd_hda_spdif_cmask_get,
2952 },
2953 {
2954 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2955 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002956 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 .info = snd_hda_spdif_mask_info,
2958 .get = snd_hda_spdif_pmask_get,
2959 },
2960 {
2961 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002962 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 .info = snd_hda_spdif_mask_info,
2964 .get = snd_hda_spdif_default_get,
2965 .put = snd_hda_spdif_default_put,
2966 },
2967 {
2968 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002969 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 .info = snd_hda_spdif_out_switch_info,
2971 .get = snd_hda_spdif_out_switch_get,
2972 .put = snd_hda_spdif_out_switch_put,
2973 },
2974 { } /* end */
2975};
2976
2977/**
Takashi Iwaidcda5802012-10-12 17:24:51 +02002978 * snd_hda_create_dig_out_ctls - create Output SPDIF-related controls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 * @codec: the HDA codec
Takashi Iwaidcda5802012-10-12 17:24:51 +02002980 * @associated_nid: NID that new ctls associated with
2981 * @cvt_nid: converter NID
2982 * @type: HDA_PCM_TYPE_*
2983 * Creates controls related with the digital output.
2984 * Called from each patch supporting the digital out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 *
2986 * Returns 0 if successful, or a negative error code.
2987 */
Takashi Iwaidcda5802012-10-12 17:24:51 +02002988int snd_hda_create_dig_out_ctls(struct hda_codec *codec,
2989 hda_nid_t associated_nid,
2990 hda_nid_t cvt_nid,
2991 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992{
2993 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002994 struct snd_kcontrol *kctl;
2995 struct snd_kcontrol_new *dig_mix;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002996 int idx = 0;
2997 const int spdif_index = 16;
Stephen Warren7c9359762011-06-01 11:14:17 -06002998 struct hda_spdif_out *spdif;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002999 struct hda_bus *bus = codec->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003001 if (bus->primary_dig_out_type == HDA_PCM_TYPE_HDMI &&
Takashi Iwaidcda5802012-10-12 17:24:51 +02003002 type == HDA_PCM_TYPE_SPDIF) {
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003003 idx = spdif_index;
3004 } else if (bus->primary_dig_out_type == HDA_PCM_TYPE_SPDIF &&
Takashi Iwaidcda5802012-10-12 17:24:51 +02003005 type == HDA_PCM_TYPE_HDMI) {
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003006 /* suppose a single SPDIF device */
3007 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
3008 kctl = find_mixer_ctl(codec, dig_mix->name, 0, 0);
3009 if (!kctl)
3010 break;
3011 kctl->id.index = spdif_index;
Takashi Iwaidcda5802012-10-12 17:24:51 +02003012 }
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003013 bus->primary_dig_out_type = HDA_PCM_TYPE_HDMI;
Takashi Iwaidcda5802012-10-12 17:24:51 +02003014 }
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003015 if (!bus->primary_dig_out_type)
3016 bus->primary_dig_out_type = type;
Takashi Iwaidcda5802012-10-12 17:24:51 +02003017
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003018 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Playback Switch", idx);
Takashi Iwai1afe2062010-12-23 10:17:52 +01003019 if (idx < 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01003020 codec_err(codec, "too many IEC958 outputs\n");
Takashi Iwai09f99702008-02-04 12:31:13 +01003021 return -EBUSY;
3022 }
Stephen Warren7c9359762011-06-01 11:14:17 -06003023 spdif = snd_array_new(&codec->spdif_out);
Mengdong Lin25336e82013-03-07 14:10:25 -05003024 if (!spdif)
3025 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
3027 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaib91f0802008-11-04 08:43:08 +01003028 if (!kctl)
3029 return -ENOMEM;
Takashi Iwai09f99702008-02-04 12:31:13 +01003030 kctl->id.index = idx;
Stephen Warren7c9359762011-06-01 11:14:17 -06003031 kctl->private_value = codec->spdif_out.used - 1;
Stephen Warren74b654c2011-06-01 11:14:18 -06003032 err = snd_hda_ctl_add(codec, associated_nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003033 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 return err;
3035 }
Stephen Warren74b654c2011-06-01 11:14:18 -06003036 spdif->nid = cvt_nid;
3037 spdif->ctls = snd_hda_codec_read(codec, cvt_nid, 0,
Stephen Warren7c9359762011-06-01 11:14:17 -06003038 AC_VERB_GET_DIGI_CONVERT_1, 0);
3039 spdif->status = convert_to_spdif_status(spdif->ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 return 0;
3041}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003042EXPORT_SYMBOL_GPL(snd_hda_create_dig_out_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043
Takashi Iwai95a962c2014-10-29 16:03:58 +01003044/**
3045 * snd_hda_spdif_out_of_nid - get the hda_spdif_out entry from the given NID
3046 * @codec: the HDA codec
3047 * @nid: widget NID
3048 *
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003049 * call within spdif_mutex lock
3050 */
Stephen Warren7c9359762011-06-01 11:14:17 -06003051struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec,
3052 hda_nid_t nid)
3053{
3054 int i;
3055 for (i = 0; i < codec->spdif_out.used; i++) {
3056 struct hda_spdif_out *spdif =
3057 snd_array_elem(&codec->spdif_out, i);
3058 if (spdif->nid == nid)
3059 return spdif;
3060 }
3061 return NULL;
3062}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003063EXPORT_SYMBOL_GPL(snd_hda_spdif_out_of_nid);
Stephen Warren7c9359762011-06-01 11:14:17 -06003064
Takashi Iwai95a962c2014-10-29 16:03:58 +01003065/**
3066 * snd_hda_spdif_ctls_unassign - Unassign the given SPDIF ctl
3067 * @codec: the HDA codec
3068 * @idx: the SPDIF ctl index
3069 *
3070 * Unassign the widget from the given SPDIF control.
3071 */
Stephen Warren74b654c2011-06-01 11:14:18 -06003072void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx)
3073{
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003074 struct hda_spdif_out *spdif;
Stephen Warren74b654c2011-06-01 11:14:18 -06003075
3076 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003077 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren74b654c2011-06-01 11:14:18 -06003078 spdif->nid = (u16)-1;
3079 mutex_unlock(&codec->spdif_mutex);
3080}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003081EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_unassign);
Stephen Warren74b654c2011-06-01 11:14:18 -06003082
Takashi Iwai95a962c2014-10-29 16:03:58 +01003083/**
3084 * snd_hda_spdif_ctls_assign - Assign the SPDIF controls to the given NID
3085 * @codec: the HDA codec
3086 * @idx: the SPDIF ctl idx
3087 * @nid: widget NID
3088 *
3089 * Assign the widget to the SPDIF control with the given index.
3090 */
Stephen Warren74b654c2011-06-01 11:14:18 -06003091void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid)
3092{
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003093 struct hda_spdif_out *spdif;
Stephen Warren74b654c2011-06-01 11:14:18 -06003094 unsigned short val;
3095
3096 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003097 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren74b654c2011-06-01 11:14:18 -06003098 if (spdif->nid != nid) {
3099 spdif->nid = nid;
3100 val = spdif->ctls;
3101 set_spdif_ctls(codec, nid, val & 0xff, (val >> 8) & 0xff);
3102 }
3103 mutex_unlock(&codec->spdif_mutex);
3104}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003105EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_assign);
Stephen Warren74b654c2011-06-01 11:14:18 -06003106
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107/*
Takashi Iwai9a081602008-02-12 18:37:26 +01003108 * SPDIF sharing with analog output
3109 */
3110static int spdif_share_sw_get(struct snd_kcontrol *kcontrol,
3111 struct snd_ctl_elem_value *ucontrol)
3112{
3113 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
3114 ucontrol->value.integer.value[0] = mout->share_spdif;
3115 return 0;
3116}
3117
3118static int spdif_share_sw_put(struct snd_kcontrol *kcontrol,
3119 struct snd_ctl_elem_value *ucontrol)
3120{
3121 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
3122 mout->share_spdif = !!ucontrol->value.integer.value[0];
3123 return 0;
3124}
3125
3126static struct snd_kcontrol_new spdif_share_sw = {
3127 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3128 .name = "IEC958 Default PCM Playback Switch",
3129 .info = snd_ctl_boolean_mono_info,
3130 .get = spdif_share_sw_get,
3131 .put = spdif_share_sw_put,
3132};
3133
Takashi Iwaid5191e52009-11-16 14:58:17 +01003134/**
3135 * snd_hda_create_spdif_share_sw - create Default PCM switch
3136 * @codec: the HDA codec
3137 * @mout: multi-out instance
3138 */
Takashi Iwai9a081602008-02-12 18:37:26 +01003139int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
3140 struct hda_multi_out *mout)
3141{
Mengdong Lin4c7a5482013-03-07 14:11:05 -05003142 struct snd_kcontrol *kctl;
3143
Takashi Iwai9a081602008-02-12 18:37:26 +01003144 if (!mout->dig_out_nid)
3145 return 0;
Mengdong Lin4c7a5482013-03-07 14:11:05 -05003146
3147 kctl = snd_ctl_new1(&spdif_share_sw, mout);
3148 if (!kctl)
3149 return -ENOMEM;
Takashi Iwai9a081602008-02-12 18:37:26 +01003150 /* ATTENTION: here mout is passed as private_data, instead of codec */
Mengdong Lin4c7a5482013-03-07 14:11:05 -05003151 return snd_hda_ctl_add(codec, mout->dig_out_nid, kctl);
Takashi Iwai9a081602008-02-12 18:37:26 +01003152}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003153EXPORT_SYMBOL_GPL(snd_hda_create_spdif_share_sw);
Takashi Iwai9a081602008-02-12 18:37:26 +01003154
3155/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 * SPDIF input
3157 */
3158
3159#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
3160
Takashi Iwai0ba21762007-04-16 11:29:14 +02003161static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
3162 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163{
3164 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3165
3166 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
3167 return 0;
3168}
3169
Takashi Iwai0ba21762007-04-16 11:29:14 +02003170static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
3171 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172{
3173 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3174 hda_nid_t nid = kcontrol->private_value;
3175 unsigned int val = !!ucontrol->value.integer.value[0];
3176 int change;
3177
Ingo Molnar62932df2006-01-16 16:34:20 +01003178 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003180 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 codec->spdif_in_enable = val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003182 snd_hda_codec_write_cache(codec, nid, 0,
3183 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003185 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 return change;
3187}
3188
Takashi Iwai0ba21762007-04-16 11:29:14 +02003189static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
3190 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191{
3192 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3193 hda_nid_t nid = kcontrol->private_value;
3194 unsigned short val;
3195 unsigned int sbits;
3196
Andrew Paprocki3982d172007-12-19 12:13:44 +01003197 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 sbits = convert_to_spdif_status(val);
3199 ucontrol->value.iec958.status[0] = sbits;
3200 ucontrol->value.iec958.status[1] = sbits >> 8;
3201 ucontrol->value.iec958.status[2] = sbits >> 16;
3202 ucontrol->value.iec958.status[3] = sbits >> 24;
3203 return 0;
3204}
3205
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003206static struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 {
3208 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003209 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 .info = snd_hda_spdif_in_switch_info,
3211 .get = snd_hda_spdif_in_switch_get,
3212 .put = snd_hda_spdif_in_switch_put,
3213 },
3214 {
3215 .access = SNDRV_CTL_ELEM_ACCESS_READ,
3216 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003217 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 .info = snd_hda_spdif_mask_info,
3219 .get = snd_hda_spdif_in_status_get,
3220 },
3221 { } /* end */
3222};
3223
3224/**
3225 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
3226 * @codec: the HDA codec
3227 * @nid: audio in widget NID
3228 *
3229 * Creates controls related with the SPDIF input.
3230 * Called from each patch supporting the SPDIF in.
3231 *
3232 * Returns 0 if successful, or a negative error code.
3233 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02003234int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235{
3236 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003237 struct snd_kcontrol *kctl;
3238 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01003239 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240
Takashi Iwaidcda5802012-10-12 17:24:51 +02003241 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Capture Switch", 0);
Takashi Iwai1afe2062010-12-23 10:17:52 +01003242 if (idx < 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01003243 codec_err(codec, "too many IEC958 inputs\n");
Takashi Iwai09f99702008-02-04 12:31:13 +01003244 return -EBUSY;
3245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
3247 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaic8dcdf82009-02-06 16:21:20 +01003248 if (!kctl)
3249 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 kctl->private_value = nid;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01003251 err = snd_hda_ctl_add(codec, nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003252 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253 return err;
3254 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02003255 codec->spdif_in_enable =
Andrew Paprocki3982d172007-12-19 12:13:44 +01003256 snd_hda_codec_read(codec, nid, 0,
3257 AC_VERB_GET_DIGI_CONVERT_1, 0) &
Takashi Iwai0ba21762007-04-16 11:29:14 +02003258 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 return 0;
3260}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003261EXPORT_SYMBOL_GPL(snd_hda_create_spdif_in_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003263/*
3264 * command cache
3265 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266
Takashi Iwaic370dd62012-12-13 18:30:04 +01003267/* build a 31bit cache key with the widget id and the command parameter */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003268#define build_cmd_cache_key(nid, verb) ((verb << 8) | nid)
3269#define get_cmd_cache_nid(key) ((key) & 0xff)
3270#define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff)
3271
3272/**
3273 * snd_hda_codec_write_cache - send a single command with caching
3274 * @codec: the HDA codec
3275 * @nid: NID to send the command
Takashi Iwaie7ecc272013-06-06 14:00:23 +02003276 * @flags: optional bit flags
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003277 * @verb: the verb to send
3278 * @parm: the parameter for the verb
3279 *
3280 * Send a single command without waiting for response.
3281 *
3282 * Returns 0 if successful, or a negative error code.
3283 */
3284int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwaie7ecc272013-06-06 14:00:23 +02003285 int flags, unsigned int verb, unsigned int parm)
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003286{
Takashi Iwaic370dd62012-12-13 18:30:04 +01003287 int err;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003288 struct hda_cache_head *c;
3289 u32 key;
Takashi Iwaide1e37b2012-12-20 11:00:21 +01003290 unsigned int cache_only;
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003291
Takashi Iwaide1e37b2012-12-20 11:00:21 +01003292 cache_only = codec->cached_write;
3293 if (!cache_only) {
Takashi Iwaie7ecc272013-06-06 14:00:23 +02003294 err = snd_hda_codec_write(codec, nid, flags, verb, parm);
Takashi Iwaic370dd62012-12-13 18:30:04 +01003295 if (err < 0)
3296 return err;
3297 }
3298
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003299 /* parm may contain the verb stuff for get/set amp */
3300 verb = verb | (parm >> 8);
3301 parm &= 0xff;
3302 key = build_cmd_cache_key(nid, verb);
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003303 mutex_lock(&codec->bus->core.cmd_mutex);
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003304 c = get_alloc_hash(&codec->cmd_cache, key);
Takashi Iwaic370dd62012-12-13 18:30:04 +01003305 if (c) {
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003306 c->val = parm;
Takashi Iwaide1e37b2012-12-20 11:00:21 +01003307 c->dirty = cache_only;
Takashi Iwaic370dd62012-12-13 18:30:04 +01003308 }
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003309 mutex_unlock(&codec->bus->core.cmd_mutex);
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003310 return 0;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003311}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003312EXPORT_SYMBOL_GPL(snd_hda_codec_write_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003313
Takashi Iwaid5191e52009-11-16 14:58:17 +01003314/**
Takashi Iwaia68d5a52010-03-30 18:03:44 +02003315 * snd_hda_codec_update_cache - check cache and write the cmd only when needed
3316 * @codec: the HDA codec
3317 * @nid: NID to send the command
Takashi Iwaie7ecc272013-06-06 14:00:23 +02003318 * @flags: optional bit flags
Takashi Iwaia68d5a52010-03-30 18:03:44 +02003319 * @verb: the verb to send
3320 * @parm: the parameter for the verb
3321 *
3322 * This function works like snd_hda_codec_write_cache(), but it doesn't send
3323 * command if the parameter is already identical with the cached value.
3324 * If not, it sends the command and refreshes the cache.
3325 *
3326 * Returns 0 if successful, or a negative error code.
3327 */
3328int snd_hda_codec_update_cache(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwaie7ecc272013-06-06 14:00:23 +02003329 int flags, unsigned int verb, unsigned int parm)
Takashi Iwaia68d5a52010-03-30 18:03:44 +02003330{
3331 struct hda_cache_head *c;
3332 u32 key;
3333
3334 /* parm may contain the verb stuff for get/set amp */
3335 verb = verb | (parm >> 8);
3336 parm &= 0xff;
3337 key = build_cmd_cache_key(nid, verb);
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003338 mutex_lock(&codec->bus->core.cmd_mutex);
Takashi Iwaia68d5a52010-03-30 18:03:44 +02003339 c = get_hash(&codec->cmd_cache, key);
3340 if (c && c->val == parm) {
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003341 mutex_unlock(&codec->bus->core.cmd_mutex);
Takashi Iwaia68d5a52010-03-30 18:03:44 +02003342 return 0;
3343 }
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003344 mutex_unlock(&codec->bus->core.cmd_mutex);
Takashi Iwaie7ecc272013-06-06 14:00:23 +02003345 return snd_hda_codec_write_cache(codec, nid, flags, verb, parm);
Takashi Iwaia68d5a52010-03-30 18:03:44 +02003346}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003347EXPORT_SYMBOL_GPL(snd_hda_codec_update_cache);
Takashi Iwaia68d5a52010-03-30 18:03:44 +02003348
3349/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01003350 * snd_hda_codec_resume_cache - Resume the all commands from the cache
3351 * @codec: HD-audio codec
3352 *
3353 * Execute all verbs recorded in the command caches to resume.
3354 */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003355void snd_hda_codec_resume_cache(struct hda_codec *codec)
3356{
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003357 int i;
3358
Takashi Iwaic370dd62012-12-13 18:30:04 +01003359 mutex_lock(&codec->hash_mutex);
Takashi Iwaiaa88a352012-12-20 11:02:00 +01003360 codec->cached_write = 0;
Takashi Iwaic370dd62012-12-13 18:30:04 +01003361 for (i = 0; i < codec->cmd_cache.buf.used; i++) {
3362 struct hda_cache_head *buffer;
3363 u32 key;
3364
3365 buffer = snd_array_elem(&codec->cmd_cache.buf, i);
3366 key = buffer->key;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003367 if (!key)
3368 continue;
Takashi Iwaic370dd62012-12-13 18:30:04 +01003369 if (!buffer->dirty)
3370 continue;
3371 buffer->dirty = 0;
3372 mutex_unlock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003373 snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0,
3374 get_cmd_cache_cmd(key), buffer->val);
Takashi Iwaic370dd62012-12-13 18:30:04 +01003375 mutex_lock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003376 }
Takashi Iwaic370dd62012-12-13 18:30:04 +01003377 mutex_unlock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003378}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003379EXPORT_SYMBOL_GPL(snd_hda_codec_resume_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003380
3381/**
3382 * snd_hda_sequence_write_cache - sequence writes with caching
3383 * @codec: the HDA codec
3384 * @seq: VERB array to send
3385 *
3386 * Send the commands sequentially from the given array.
3387 * Thte commands are recorded on cache for power-save and resume.
3388 * The array must be terminated with NID=0.
3389 */
3390void snd_hda_sequence_write_cache(struct hda_codec *codec,
3391 const struct hda_verb *seq)
3392{
3393 for (; seq->nid; seq++)
3394 snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb,
3395 seq->param);
3396}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003397EXPORT_SYMBOL_GPL(snd_hda_sequence_write_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003398
Takashi Iwaidc870f32013-01-22 15:24:30 +01003399/**
3400 * snd_hda_codec_flush_cache - Execute all pending (cached) amps / verbs
3401 * @codec: HD-audio codec
3402 */
3403void snd_hda_codec_flush_cache(struct hda_codec *codec)
3404{
3405 snd_hda_codec_resume_amp(codec);
3406 snd_hda_codec_resume_cache(codec);
3407}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003408EXPORT_SYMBOL_GPL(snd_hda_codec_flush_cache);
Takashi Iwaidc870f32013-01-22 15:24:30 +01003409
Takashi Iwai95a962c2014-10-29 16:03:58 +01003410/**
3411 * snd_hda_codec_set_power_to_all - Set the power state to all widgets
3412 * @codec: the HDA codec
3413 * @fg: function group (not used now)
3414 * @power_state: the power state to set (AC_PWRST_*)
3415 *
3416 * Set the given power state to all widgets that have the power control.
3417 * If the codec has power_filter set, it evaluates the power state and
3418 * filter out if it's unchanged as D3.
3419 */
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003420void snd_hda_codec_set_power_to_all(struct hda_codec *codec, hda_nid_t fg,
Takashi Iwai9419ab62013-01-24 17:23:35 +01003421 unsigned int power_state)
Takashi Iwai54d17402005-11-21 16:33:22 +01003422{
Takashi Iwai7639a062015-03-03 10:07:24 +01003423 hda_nid_t nid;
Takashi Iwai54d17402005-11-21 16:33:22 +01003424
Takashi Iwai7639a062015-03-03 10:07:24 +01003425 for_each_hda_codec_node(nid, codec) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01003426 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwai9419ab62013-01-24 17:23:35 +01003427 unsigned int state = power_state;
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003428 if (!(wcaps & AC_WCAP_POWER))
3429 continue;
Takashi Iwai9419ab62013-01-24 17:23:35 +01003430 if (codec->power_filter) {
3431 state = codec->power_filter(codec, nid, power_state);
3432 if (state != power_state && power_state == AC_PWRST_D3)
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003433 continue;
Takashi Iwai1194b5b2007-10-10 10:04:26 +02003434 }
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003435 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE,
Takashi Iwai9419ab62013-01-24 17:23:35 +01003436 state);
Takashi Iwai54d17402005-11-21 16:33:22 +01003437 }
Takashi Iwai54d17402005-11-21 16:33:22 +01003438}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003439EXPORT_SYMBOL_GPL(snd_hda_codec_set_power_to_all);
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003440
3441/*
Takashi Iwai432c6412012-08-28 09:59:20 -07003442 * wait until the state is reached, returns the current state
3443 */
3444static unsigned int hda_sync_power_state(struct hda_codec *codec,
3445 hda_nid_t fg,
3446 unsigned int power_state)
3447{
3448 unsigned long end_time = jiffies + msecs_to_jiffies(500);
3449 unsigned int state, actual_state;
3450
3451 for (;;) {
3452 state = snd_hda_codec_read(codec, fg, 0,
3453 AC_VERB_GET_POWER_STATE, 0);
3454 if (state & AC_PWRST_ERROR)
3455 break;
3456 actual_state = (state >> 4) & 0x0f;
3457 if (actual_state == power_state)
3458 break;
3459 if (time_after_eq(jiffies, end_time))
3460 break;
3461 /* wait until the codec reachs to the target state */
3462 msleep(1);
3463 }
3464 return state;
3465}
3466
Takashi Iwai95a962c2014-10-29 16:03:58 +01003467/**
3468 * snd_hda_codec_eapd_power_filter - A power filter callback for EAPD
3469 * @codec: the HDA codec
3470 * @nid: widget NID
3471 * @power_state: power state to evalue
3472 *
3473 * Don't power down the widget if it controls eapd and EAPD_BTLENABLE is set.
3474 * This can be used a codec power_filter callback.
3475 */
Takashi Iwaiba615b82013-03-13 14:47:21 +01003476unsigned int snd_hda_codec_eapd_power_filter(struct hda_codec *codec,
3477 hda_nid_t nid,
3478 unsigned int power_state)
Takashi Iwai9419ab62013-01-24 17:23:35 +01003479{
Takashi Iwai7639a062015-03-03 10:07:24 +01003480 if (nid == codec->core.afg || nid == codec->core.mfg)
Takashi Iwaidfc6e462014-01-13 16:09:57 +01003481 return power_state;
Takashi Iwai9419ab62013-01-24 17:23:35 +01003482 if (power_state == AC_PWRST_D3 &&
3483 get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_PIN &&
3484 (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)) {
3485 int eapd = snd_hda_codec_read(codec, nid, 0,
3486 AC_VERB_GET_EAPD_BTLENABLE, 0);
3487 if (eapd & 0x02)
3488 return AC_PWRST_D0;
3489 }
3490 return power_state;
3491}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003492EXPORT_SYMBOL_GPL(snd_hda_codec_eapd_power_filter);
Takashi Iwai9419ab62013-01-24 17:23:35 +01003493
Takashi Iwai432c6412012-08-28 09:59:20 -07003494/*
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003495 * set power state of the codec, and return the power state
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003496 */
Takashi Iwaid8193872012-08-31 07:54:38 -07003497static unsigned int hda_set_power_state(struct hda_codec *codec,
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003498 unsigned int power_state)
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003499{
Takashi Iwai7639a062015-03-03 10:07:24 +01003500 hda_nid_t fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
Wang Xingchao09617ce2012-06-08 10:26:08 +08003501 int count;
3502 unsigned int state;
Takashi Iwai63e51fd2013-06-06 14:20:19 +02003503 int flags = 0;
Wang Xingchao09617ce2012-06-08 10:26:08 +08003504
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003505 /* this delay seems necessary to avoid click noise at power-down */
Wang Xingchao0f4ccbb2012-06-07 16:51:33 +08003506 if (power_state == AC_PWRST_D3) {
Mengdong Lin7f132922013-11-29 01:48:45 -05003507 if (codec->depop_delay < 0)
Takashi Iwai7639a062015-03-03 10:07:24 +01003508 msleep(codec_has_epss(codec) ? 10 : 100);
Mengdong Lin7f132922013-11-29 01:48:45 -05003509 else if (codec->depop_delay > 0)
3510 msleep(codec->depop_delay);
Takashi Iwai63e51fd2013-06-06 14:20:19 +02003511 flags = HDA_RW_NO_RESPONSE_FALLBACK;
Wang Xingchao0f4ccbb2012-06-07 16:51:33 +08003512 }
Wang Xingchao09617ce2012-06-08 10:26:08 +08003513
3514 /* repeat power states setting at most 10 times*/
3515 for (count = 0; count < 10; count++) {
Takashi Iwai432c6412012-08-28 09:59:20 -07003516 if (codec->patch_ops.set_power_state)
3517 codec->patch_ops.set_power_state(codec, fg,
3518 power_state);
3519 else {
Takashi Iwaidfc6e462014-01-13 16:09:57 +01003520 state = power_state;
3521 if (codec->power_filter)
3522 state = codec->power_filter(codec, fg, state);
3523 if (state == power_state || power_state != AC_PWRST_D3)
3524 snd_hda_codec_read(codec, fg, flags,
3525 AC_VERB_SET_POWER_STATE,
3526 state);
Takashi Iwai9419ab62013-01-24 17:23:35 +01003527 snd_hda_codec_set_power_to_all(codec, fg, power_state);
Takashi Iwai432c6412012-08-28 09:59:20 -07003528 }
3529 state = hda_sync_power_state(codec, fg, power_state);
Wang Xingchao09617ce2012-06-08 10:26:08 +08003530 if (!(state & AC_PWRST_ERROR))
3531 break;
3532 }
Mengdong Linb8dfc4622012-08-23 17:32:30 +08003533
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003534 return state;
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003535}
Takashi Iwai54d17402005-11-21 16:33:22 +01003536
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003537/* sync power states of all widgets;
3538 * this is called at the end of codec parsing
3539 */
3540static void sync_power_up_states(struct hda_codec *codec)
3541{
Takashi Iwai7639a062015-03-03 10:07:24 +01003542 hda_nid_t nid;
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003543
Takashi Iwaiba615b82013-03-13 14:47:21 +01003544 /* don't care if no filter is used */
3545 if (!codec->power_filter)
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003546 return;
3547
Takashi Iwai7639a062015-03-03 10:07:24 +01003548 for_each_hda_codec_node(nid, codec) {
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003549 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwai9040d102013-01-24 17:47:17 +01003550 unsigned int target;
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003551 if (!(wcaps & AC_WCAP_POWER))
3552 continue;
3553 target = codec->power_filter(codec, nid, AC_PWRST_D0);
3554 if (target == AC_PWRST_D0)
3555 continue;
Takashi Iwai9040d102013-01-24 17:47:17 +01003556 if (!snd_hda_check_power_state(codec, nid, target))
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003557 snd_hda_codec_write(codec, nid, 0,
3558 AC_VERB_SET_POWER_STATE, target);
3559 }
3560}
3561
Takashi Iwai648a8d22014-02-25 10:38:13 +01003562#ifdef CONFIG_SND_HDA_RECONFIG
Takashi Iwai11aeff02008-07-30 15:01:46 +02003563/* execute additional init verbs */
3564static void hda_exec_init_verbs(struct hda_codec *codec)
3565{
3566 if (codec->init_verbs.list)
3567 snd_hda_sequence_write(codec, codec->init_verbs.list);
3568}
3569#else
3570static inline void hda_exec_init_verbs(struct hda_codec *codec) {}
3571#endif
3572
Takashi Iwai2a439522011-07-26 09:52:50 +02003573#ifdef CONFIG_PM
Takashi Iwaicc72da72015-02-19 16:00:22 +01003574/* update the power on/off account with the current jiffies */
3575static void update_power_acct(struct hda_codec *codec, bool on)
3576{
3577 unsigned long delta = jiffies - codec->power_jiffies;
3578
3579 if (on)
3580 codec->power_on_acct += delta;
3581 else
3582 codec->power_off_acct += delta;
3583 codec->power_jiffies += delta;
3584}
3585
3586void snd_hda_update_power_acct(struct hda_codec *codec)
3587{
3588 update_power_acct(codec, hda_codec_is_power_on(codec));
3589}
3590
Takashi Iwaicb53c622007-08-10 17:21:45 +02003591/*
3592 * call suspend and power-down; used both from PM and power-save
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003593 * this function returns the power state in the end
Takashi Iwaicb53c622007-08-10 17:21:45 +02003594 */
Takashi Iwaicc72da72015-02-19 16:00:22 +01003595static unsigned int hda_call_codec_suspend(struct hda_codec *codec)
Takashi Iwaicb53c622007-08-10 17:21:45 +02003596{
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003597 unsigned int state;
3598
Takashi Iwai7639a062015-03-03 10:07:24 +01003599 atomic_inc(&codec->core.in_pm);
Takashi Iwai989c3182012-11-19 14:14:58 +01003600
Takashi Iwaicb53c622007-08-10 17:21:45 +02003601 if (codec->patch_ops.suspend)
Takashi Iwai68cb2b52012-07-02 15:20:37 +02003602 codec->patch_ops.suspend(codec);
Takashi Iwaieb541332010-08-06 13:48:11 +02003603 hda_cleanup_all_streams(codec);
Takashi Iwaid8193872012-08-31 07:54:38 -07003604 state = hda_set_power_state(codec, AC_PWRST_D3);
Takashi Iwaicc72da72015-02-19 16:00:22 +01003605 update_power_acct(codec, true);
Takashi Iwai7639a062015-03-03 10:07:24 +01003606 atomic_dec(&codec->core.in_pm);
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003607 return state;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003608}
3609
Takashi Iwaic370dd62012-12-13 18:30:04 +01003610/* mark all entries of cmd and amp caches dirty */
3611static void hda_mark_cmd_cache_dirty(struct hda_codec *codec)
3612{
3613 int i;
3614 for (i = 0; i < codec->cmd_cache.buf.used; i++) {
3615 struct hda_cache_head *cmd;
3616 cmd = snd_array_elem(&codec->cmd_cache.buf, i);
3617 cmd->dirty = 1;
3618 }
3619 for (i = 0; i < codec->amp_cache.buf.used; i++) {
3620 struct hda_amp_info *amp;
David Henningssonf038fca2013-01-15 15:27:19 +01003621 amp = snd_array_elem(&codec->amp_cache.buf, i);
Takashi Iwaic370dd62012-12-13 18:30:04 +01003622 amp->head.dirty = 1;
3623 }
3624}
3625
Takashi Iwaicb53c622007-08-10 17:21:45 +02003626/*
3627 * kick up codec; used both from PM and power-save
3628 */
3629static void hda_call_codec_resume(struct hda_codec *codec)
3630{
Takashi Iwai7639a062015-03-03 10:07:24 +01003631 atomic_inc(&codec->core.in_pm);
Takashi Iwai989c3182012-11-19 14:14:58 +01003632
Takashi Iwaic370dd62012-12-13 18:30:04 +01003633 hda_mark_cmd_cache_dirty(codec);
3634
Takashi Iwaicc72da72015-02-19 16:00:22 +01003635 codec->power_jiffies = jiffies;
Takashi Iwaicc72da72015-02-19 16:00:22 +01003636
Takashi Iwaid8193872012-08-31 07:54:38 -07003637 hda_set_power_state(codec, AC_PWRST_D0);
Takashi Iwaiac0547d2010-07-05 16:50:13 +02003638 restore_shutup_pins(codec);
Takashi Iwai11aeff02008-07-30 15:01:46 +02003639 hda_exec_init_verbs(codec);
Takashi Iwai31614bb2013-01-23 15:58:40 +01003640 snd_hda_jack_set_dirty_all(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003641 if (codec->patch_ops.resume)
3642 codec->patch_ops.resume(codec);
3643 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02003644 if (codec->patch_ops.init)
3645 codec->patch_ops.init(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003646 snd_hda_codec_resume_amp(codec);
3647 snd_hda_codec_resume_cache(codec);
3648 }
David Henningsson26a6cb62012-10-09 15:04:21 +02003649
3650 if (codec->jackpoll_interval)
3651 hda_jackpoll_work(&codec->jackpoll_work.work);
Takashi Iwai31614bb2013-01-23 15:58:40 +01003652 else
David Henningsson26a6cb62012-10-09 15:04:21 +02003653 snd_hda_jack_report_sync(codec);
Takashi Iwai7639a062015-03-03 10:07:24 +01003654 atomic_dec(&codec->core.in_pm);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003655}
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003656
Takashi Iwaicc72da72015-02-19 16:00:22 +01003657static int hda_codec_runtime_suspend(struct device *dev)
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003658{
3659 struct hda_codec *codec = dev_to_hda_codec(dev);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003660 struct hda_pcm *pcm;
Takashi Iwaicc72da72015-02-19 16:00:22 +01003661 unsigned int state;
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003662
3663 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003664 list_for_each_entry(pcm, &codec->pcm_list_head, list)
3665 snd_pcm_suspend_all(pcm->pcm);
Takashi Iwaicc72da72015-02-19 16:00:22 +01003666 state = hda_call_codec_suspend(codec);
Takashi Iwai7639a062015-03-03 10:07:24 +01003667 if (codec_has_clkstop(codec) && codec_has_epss(codec) &&
3668 (state & AC_PWRST_CLK_STOP_OK))
3669 snd_hdac_codec_link_down(&codec->core);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003670 return 0;
3671}
3672
Takashi Iwaicc72da72015-02-19 16:00:22 +01003673static int hda_codec_runtime_resume(struct device *dev)
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003674{
Takashi Iwai55ed9cd2015-02-19 17:35:32 +01003675 struct hda_codec *codec = dev_to_hda_codec(dev);
3676
Takashi Iwai7639a062015-03-03 10:07:24 +01003677 snd_hdac_codec_link_up(&codec->core);
Takashi Iwai55ed9cd2015-02-19 17:35:32 +01003678 hda_call_codec_resume(codec);
Takashi Iwaicc72da72015-02-19 16:00:22 +01003679 pm_runtime_mark_last_busy(dev);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003680 return 0;
3681}
Takashi Iwai2a439522011-07-26 09:52:50 +02003682#endif /* CONFIG_PM */
Takashi Iwaicb53c622007-08-10 17:21:45 +02003683
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003684/* referred in hda_bind.c */
3685const struct dev_pm_ops hda_codec_driver_pm = {
Takashi Iwaicc72da72015-02-19 16:00:22 +01003686 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
3687 pm_runtime_force_resume)
3688 SET_RUNTIME_PM_OPS(hda_codec_runtime_suspend, hda_codec_runtime_resume,
3689 NULL)
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003690};
Takashi Iwai54d17402005-11-21 16:33:22 +01003691
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003692/*
3693 * add standard channel maps if not specified
3694 */
3695static int add_std_chmaps(struct hda_codec *codec)
3696{
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003697 struct hda_pcm *pcm;
3698 int str, err;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003699
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003700 list_for_each_entry(pcm, &codec->pcm_list_head, list) {
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003701 for (str = 0; str < 2; str++) {
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003702 struct hda_pcm_stream *hinfo = &pcm->stream[str];
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003703 struct snd_pcm_chmap *chmap;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003704 const struct snd_pcm_chmap_elem *elem;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003705
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003706 if (pcm->own_chmap)
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003707 continue;
3708 if (!pcm || !hinfo->substreams)
3709 continue;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003710 elem = hinfo->chmap ? hinfo->chmap : snd_pcm_std_chmaps;
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003711 err = snd_pcm_add_chmap_ctls(pcm->pcm, str, elem,
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003712 hinfo->channels_max,
3713 0, &chmap);
3714 if (err < 0)
3715 return err;
3716 chmap->channel_mask = SND_PCM_CHMAP_MASK_2468;
3717 }
3718 }
3719 return 0;
3720}
3721
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003722/* default channel maps for 2.1 speakers;
3723 * since HD-audio supports only stereo, odd number channels are omitted
3724 */
3725const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps[] = {
3726 { .channels = 2,
3727 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
3728 { .channels = 4,
3729 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
3730 SNDRV_CHMAP_LFE, SNDRV_CHMAP_LFE } },
3731 { }
3732};
3733EXPORT_SYMBOL_GPL(snd_pcm_2_1_chmaps);
3734
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003735int snd_hda_codec_build_controls(struct hda_codec *codec)
3736{
3737 int err = 0;
Takashi Iwai11aeff02008-07-30 15:01:46 +02003738 hda_exec_init_verbs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003739 /* continue to initialize... */
3740 if (codec->patch_ops.init)
3741 err = codec->patch_ops.init(codec);
3742 if (!err && codec->patch_ops.build_controls)
3743 err = codec->patch_ops.build_controls(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003744 if (err < 0)
3745 return err;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003746
3747 /* we create chmaps here instead of build_pcms */
3748 err = add_std_chmaps(codec);
3749 if (err < 0)
3750 return err;
3751
David Henningsson26a6cb62012-10-09 15:04:21 +02003752 if (codec->jackpoll_interval)
3753 hda_jackpoll_work(&codec->jackpoll_work.work);
3754 else
3755 snd_hda_jack_report_sync(codec); /* call at the last init point */
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003756 sync_power_up_states(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 return 0;
3758}
3759
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760/*
3761 * stream formats
3762 */
Takashi Iwaibefdf312005-08-22 13:57:55 +02003763struct hda_rate_tbl {
3764 unsigned int hz;
3765 unsigned int alsa_bits;
3766 unsigned int hda_fmt;
3767};
3768
Takashi Iwai92f10b32010-08-03 14:21:00 +02003769/* rate = base * mult / div */
3770#define HDA_RATE(base, mult, div) \
3771 (AC_FMT_BASE_##base##K | (((mult) - 1) << AC_FMT_MULT_SHIFT) | \
3772 (((div) - 1) << AC_FMT_DIV_SHIFT))
3773
Takashi Iwaibefdf312005-08-22 13:57:55 +02003774static struct hda_rate_tbl rate_bits[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775 /* rate in Hz, ALSA rate bitmask, HDA format value */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02003776
3777 /* autodetected value used in snd_hda_query_supported_pcm */
Takashi Iwai92f10b32010-08-03 14:21:00 +02003778 { 8000, SNDRV_PCM_RATE_8000, HDA_RATE(48, 1, 6) },
3779 { 11025, SNDRV_PCM_RATE_11025, HDA_RATE(44, 1, 4) },
3780 { 16000, SNDRV_PCM_RATE_16000, HDA_RATE(48, 1, 3) },
3781 { 22050, SNDRV_PCM_RATE_22050, HDA_RATE(44, 1, 2) },
3782 { 32000, SNDRV_PCM_RATE_32000, HDA_RATE(48, 2, 3) },
3783 { 44100, SNDRV_PCM_RATE_44100, HDA_RATE(44, 1, 1) },
3784 { 48000, SNDRV_PCM_RATE_48000, HDA_RATE(48, 1, 1) },
3785 { 88200, SNDRV_PCM_RATE_88200, HDA_RATE(44, 2, 1) },
3786 { 96000, SNDRV_PCM_RATE_96000, HDA_RATE(48, 2, 1) },
3787 { 176400, SNDRV_PCM_RATE_176400, HDA_RATE(44, 4, 1) },
3788 { 192000, SNDRV_PCM_RATE_192000, HDA_RATE(48, 4, 1) },
Takashi Iwaia961f9f2007-04-12 13:08:09 +02003789#define AC_PAR_PCM_RATE_BITS 11
3790 /* up to bits 10, 384kHZ isn't supported properly */
3791
3792 /* not autodetected value */
Takashi Iwai92f10b32010-08-03 14:21:00 +02003793 { 9600, SNDRV_PCM_RATE_KNOT, HDA_RATE(48, 1, 5) },
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02003794
Takashi Iwaibefdf312005-08-22 13:57:55 +02003795 { 0 } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796};
3797
3798/**
3799 * snd_hda_calc_stream_format - calculate format bitset
Takashi Iwai6194b992014-06-06 18:12:16 +02003800 * @codec: HD-audio codec
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 * @rate: the sample rate
3802 * @channels: the number of channels
3803 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
3804 * @maxbps: the max. bps
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003805 * @spdif_ctls: HD-audio SPDIF status bits (0 if irrelevant)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 *
3807 * Calculate the format bitset from the given rate, channels and th PCM format.
3808 *
3809 * Return zero if invalid.
3810 */
Takashi Iwai6194b992014-06-06 18:12:16 +02003811unsigned int snd_hda_calc_stream_format(struct hda_codec *codec,
3812 unsigned int rate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 unsigned int channels,
3814 unsigned int format,
Anssi Hannula32c168c2010-08-03 13:28:57 +03003815 unsigned int maxbps,
3816 unsigned short spdif_ctls)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817{
3818 int i;
3819 unsigned int val = 0;
3820
Takashi Iwaibefdf312005-08-22 13:57:55 +02003821 for (i = 0; rate_bits[i].hz; i++)
3822 if (rate_bits[i].hz == rate) {
3823 val = rate_bits[i].hda_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 break;
3825 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02003826 if (!rate_bits[i].hz) {
Takashi Iwai6194b992014-06-06 18:12:16 +02003827 codec_dbg(codec, "invalid rate %d\n", rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828 return 0;
3829 }
3830
3831 if (channels == 0 || channels > 8) {
Takashi Iwai6194b992014-06-06 18:12:16 +02003832 codec_dbg(codec, "invalid channels %d\n", channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 return 0;
3834 }
3835 val |= channels - 1;
3836
3837 switch (snd_pcm_format_width(format)) {
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003838 case 8:
Takashi Iwai92f10b32010-08-03 14:21:00 +02003839 val |= AC_FMT_BITS_8;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003840 break;
3841 case 16:
Takashi Iwai92f10b32010-08-03 14:21:00 +02003842 val |= AC_FMT_BITS_16;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003843 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 case 20:
3845 case 24:
3846 case 32:
Takashi Iwaib0bb3aa2009-07-03 23:25:37 +02003847 if (maxbps >= 32 || format == SNDRV_PCM_FORMAT_FLOAT_LE)
Takashi Iwai92f10b32010-08-03 14:21:00 +02003848 val |= AC_FMT_BITS_32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 else if (maxbps >= 24)
Takashi Iwai92f10b32010-08-03 14:21:00 +02003850 val |= AC_FMT_BITS_24;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 else
Takashi Iwai92f10b32010-08-03 14:21:00 +02003852 val |= AC_FMT_BITS_20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 break;
3854 default:
Takashi Iwai6194b992014-06-06 18:12:16 +02003855 codec_dbg(codec, "invalid format width %d\n",
Takashi Iwai4e76a882014-02-25 12:21:03 +01003856 snd_pcm_format_width(format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 return 0;
3858 }
3859
Anssi Hannula32c168c2010-08-03 13:28:57 +03003860 if (spdif_ctls & AC_DIG1_NONAUDIO)
Takashi Iwai92f10b32010-08-03 14:21:00 +02003861 val |= AC_FMT_TYPE_NON_PCM;
Anssi Hannula32c168c2010-08-03 13:28:57 +03003862
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 return val;
3864}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003865EXPORT_SYMBOL_GPL(snd_hda_calc_stream_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02003867static unsigned int get_pcm_param(struct hda_codec *codec, hda_nid_t nid,
3868 int dir)
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003869{
3870 unsigned int val = 0;
Takashi Iwai7639a062015-03-03 10:07:24 +01003871 if (nid != codec->core.afg &&
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003872 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD))
3873 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
3874 if (!val || val == -1)
Takashi Iwai7639a062015-03-03 10:07:24 +01003875 val = snd_hda_param_read(codec, codec->core.afg, AC_PAR_PCM);
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003876 if (!val || val == -1)
3877 return 0;
3878 return val;
3879}
3880
3881static unsigned int query_pcm_param(struct hda_codec *codec, hda_nid_t nid)
3882{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02003883 return query_caps_hash(codec, nid, 0, HDA_HASH_PARPCM_KEY(nid),
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003884 get_pcm_param);
3885}
3886
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02003887static unsigned int get_stream_param(struct hda_codec *codec, hda_nid_t nid,
3888 int dir)
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003889{
3890 unsigned int streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
3891 if (!streams || streams == -1)
Takashi Iwai7639a062015-03-03 10:07:24 +01003892 streams = snd_hda_param_read(codec, codec->core.afg, AC_PAR_STREAM);
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003893 if (!streams || streams == -1)
3894 return 0;
3895 return streams;
3896}
3897
3898static unsigned int query_stream_param(struct hda_codec *codec, hda_nid_t nid)
3899{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02003900 return query_caps_hash(codec, nid, 0, HDA_HASH_PARSTR_KEY(nid),
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003901 get_stream_param);
3902}
3903
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904/**
3905 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
3906 * @codec: the HDA codec
3907 * @nid: NID to query
3908 * @ratesp: the pointer to store the detected rate bitflags
3909 * @formatsp: the pointer to store the detected formats
3910 * @bpsp: the pointer to store the detected format widths
3911 *
3912 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
3913 * or @bsps argument is ignored.
3914 *
3915 * Returns 0 if successful, otherwise a negative error code.
3916 */
Stephen Warren384a48d2011-06-01 11:14:21 -06003917int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 u32 *ratesp, u64 *formatsp, unsigned int *bpsp)
3919{
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003920 unsigned int i, val, wcaps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003922 wcaps = get_wcaps(codec, nid);
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003923 val = query_pcm_param(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924
3925 if (ratesp) {
3926 u32 rates = 0;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02003927 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 if (val & (1 << i))
Takashi Iwaibefdf312005-08-22 13:57:55 +02003929 rates |= rate_bits[i].alsa_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 }
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003931 if (rates == 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01003932 codec_err(codec,
3933 "rates == 0 (nid=0x%x, val=0x%x, ovrd=%i)\n",
3934 nid, val,
3935 (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0);
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003936 return -EIO;
3937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 *ratesp = rates;
3939 }
3940
3941 if (formatsp || bpsp) {
3942 u64 formats = 0;
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003943 unsigned int streams, bps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003945 streams = query_stream_param(codec, nid);
3946 if (!streams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
3949 bps = 0;
3950 if (streams & AC_SUPFMT_PCM) {
3951 if (val & AC_SUPPCM_BITS_8) {
3952 formats |= SNDRV_PCM_FMTBIT_U8;
3953 bps = 8;
3954 }
3955 if (val & AC_SUPPCM_BITS_16) {
3956 formats |= SNDRV_PCM_FMTBIT_S16_LE;
3957 bps = 16;
3958 }
3959 if (wcaps & AC_WCAP_DIGITAL) {
3960 if (val & AC_SUPPCM_BITS_32)
3961 formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
3962 if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24))
3963 formats |= SNDRV_PCM_FMTBIT_S32_LE;
3964 if (val & AC_SUPPCM_BITS_24)
3965 bps = 24;
3966 else if (val & AC_SUPPCM_BITS_20)
3967 bps = 20;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003968 } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24|
3969 AC_SUPPCM_BITS_32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 formats |= SNDRV_PCM_FMTBIT_S32_LE;
3971 if (val & AC_SUPPCM_BITS_32)
3972 bps = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 else if (val & AC_SUPPCM_BITS_24)
3974 bps = 24;
Nicolas Graziano33ef76512006-09-19 14:23:14 +02003975 else if (val & AC_SUPPCM_BITS_20)
3976 bps = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 }
3978 }
Takashi Iwai8c7dd892012-05-12 09:38:05 +02003979#if 0 /* FIXME: CS4206 doesn't work, which is the only codec supporting float */
Takashi Iwaib5025c52009-07-01 18:05:27 +02003980 if (streams & AC_SUPFMT_FLOAT32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
Takashi Iwaib0bb3aa2009-07-03 23:25:37 +02003982 if (!bps)
3983 bps = 32;
Takashi Iwaib5025c52009-07-01 18:05:27 +02003984 }
Takashi Iwai8c7dd892012-05-12 09:38:05 +02003985#endif
Takashi Iwaib5025c52009-07-01 18:05:27 +02003986 if (streams == AC_SUPFMT_AC3) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003987 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 /* temporary hack: we have still no proper support
3989 * for the direct AC3 stream...
3990 */
3991 formats |= SNDRV_PCM_FMTBIT_U8;
3992 bps = 8;
3993 }
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003994 if (formats == 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01003995 codec_err(codec,
3996 "formats == 0 (nid=0x%x, val=0x%x, ovrd=%i, streams=0x%x)\n",
3997 nid, val,
3998 (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0,
3999 streams);
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004000 return -EIO;
4001 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002 if (formatsp)
4003 *formatsp = formats;
4004 if (bpsp)
4005 *bpsp = bps;
4006 }
4007
4008 return 0;
4009}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004010EXPORT_SYMBOL_GPL(snd_hda_query_supported_pcm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011
4012/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01004013 * snd_hda_is_supported_format - Check the validity of the format
4014 * @codec: HD-audio codec
4015 * @nid: NID to check
4016 * @format: the HD-audio format value to check
4017 *
4018 * Check whether the given node supports the format value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019 *
4020 * Returns 1 if supported, 0 if not.
4021 */
4022int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
4023 unsigned int format)
4024{
4025 int i;
4026 unsigned int val = 0, rate, stream;
4027
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004028 val = query_pcm_param(codec, nid);
4029 if (!val)
4030 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031
4032 rate = format & 0xff00;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02004033 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++)
Takashi Iwaibefdf312005-08-22 13:57:55 +02004034 if (rate_bits[i].hda_fmt == rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 if (val & (1 << i))
4036 break;
4037 return 0;
4038 }
Takashi Iwaia961f9f2007-04-12 13:08:09 +02004039 if (i >= AC_PAR_PCM_RATE_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040 return 0;
4041
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004042 stream = query_stream_param(codec, nid);
4043 if (!stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 return 0;
4045
4046 if (stream & AC_SUPFMT_PCM) {
4047 switch (format & 0xf0) {
4048 case 0x00:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004049 if (!(val & AC_SUPPCM_BITS_8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 return 0;
4051 break;
4052 case 0x10:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004053 if (!(val & AC_SUPPCM_BITS_16))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054 return 0;
4055 break;
4056 case 0x20:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004057 if (!(val & AC_SUPPCM_BITS_20))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058 return 0;
4059 break;
4060 case 0x30:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004061 if (!(val & AC_SUPPCM_BITS_24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062 return 0;
4063 break;
4064 case 0x40:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004065 if (!(val & AC_SUPPCM_BITS_32))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 return 0;
4067 break;
4068 default:
4069 return 0;
4070 }
4071 } else {
4072 /* FIXME: check for float32 and AC3? */
4073 }
4074
4075 return 1;
4076}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004077EXPORT_SYMBOL_GPL(snd_hda_is_supported_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
4079/*
4080 * PCM stuff
4081 */
4082static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
4083 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004084 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085{
4086 return 0;
4087}
4088
4089static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
4090 struct hda_codec *codec,
4091 unsigned int stream_tag,
4092 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004093 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094{
4095 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
4096 return 0;
4097}
4098
4099static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
4100 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004101 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102{
Takashi Iwai888afa12008-03-18 09:57:50 +01004103 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104 return 0;
4105}
4106
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004107static int set_pcm_default_values(struct hda_codec *codec,
4108 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109{
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004110 int err;
4111
Takashi Iwai0ba21762007-04-16 11:29:14 +02004112 /* query support PCM information from the given NID */
4113 if (info->nid && (!info->rates || !info->formats)) {
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004114 err = snd_hda_query_supported_pcm(codec, info->nid,
Takashi Iwai0ba21762007-04-16 11:29:14 +02004115 info->rates ? NULL : &info->rates,
4116 info->formats ? NULL : &info->formats,
4117 info->maxbps ? NULL : &info->maxbps);
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004118 if (err < 0)
4119 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 }
4121 if (info->ops.open == NULL)
4122 info->ops.open = hda_pcm_default_open_close;
4123 if (info->ops.close == NULL)
4124 info->ops.close = hda_pcm_default_open_close;
4125 if (info->ops.prepare == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02004126 if (snd_BUG_ON(!info->nid))
4127 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 info->ops.prepare = hda_pcm_default_prepare;
4129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130 if (info->ops.cleanup == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02004131 if (snd_BUG_ON(!info->nid))
4132 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133 info->ops.cleanup = hda_pcm_default_cleanup;
4134 }
4135 return 0;
4136}
4137
Takashi Iwaieb541332010-08-06 13:48:11 +02004138/*
4139 * codec prepare/cleanup entries
4140 */
Takashi Iwai95a962c2014-10-29 16:03:58 +01004141/**
4142 * snd_hda_codec_prepare - Prepare a stream
4143 * @codec: the HDA codec
4144 * @hinfo: PCM information
4145 * @stream: stream tag to assign
4146 * @format: format id to assign
4147 * @substream: PCM substream to assign
4148 *
4149 * Calls the prepare callback set by the codec with the given arguments.
4150 * Clean up the inactive streams when successful.
4151 */
Takashi Iwaieb541332010-08-06 13:48:11 +02004152int snd_hda_codec_prepare(struct hda_codec *codec,
4153 struct hda_pcm_stream *hinfo,
4154 unsigned int stream,
4155 unsigned int format,
4156 struct snd_pcm_substream *substream)
4157{
4158 int ret;
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004159 mutex_lock(&codec->bus->prepare_mutex);
Takashi Iwai61ca4102015-02-27 17:57:55 +01004160 if (hinfo->ops.prepare)
4161 ret = hinfo->ops.prepare(hinfo, codec, stream, format,
4162 substream);
4163 else
4164 ret = -ENODEV;
Takashi Iwaieb541332010-08-06 13:48:11 +02004165 if (ret >= 0)
4166 purify_inactive_streams(codec);
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004167 mutex_unlock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02004168 return ret;
4169}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004170EXPORT_SYMBOL_GPL(snd_hda_codec_prepare);
Takashi Iwaieb541332010-08-06 13:48:11 +02004171
Takashi Iwai95a962c2014-10-29 16:03:58 +01004172/**
4173 * snd_hda_codec_cleanup - Prepare a stream
4174 * @codec: the HDA codec
4175 * @hinfo: PCM information
4176 * @substream: PCM substream
4177 *
4178 * Calls the cleanup callback set by the codec with the given arguments.
4179 */
Takashi Iwaieb541332010-08-06 13:48:11 +02004180void snd_hda_codec_cleanup(struct hda_codec *codec,
4181 struct hda_pcm_stream *hinfo,
4182 struct snd_pcm_substream *substream)
4183{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004184 mutex_lock(&codec->bus->prepare_mutex);
Takashi Iwai61ca4102015-02-27 17:57:55 +01004185 if (hinfo->ops.cleanup)
4186 hinfo->ops.cleanup(hinfo, codec, substream);
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004187 mutex_unlock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02004188}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004189EXPORT_SYMBOL_GPL(snd_hda_codec_cleanup);
Takashi Iwaieb541332010-08-06 13:48:11 +02004190
Takashi Iwaid5191e52009-11-16 14:58:17 +01004191/* global */
Jaroslav Kyselae3303232009-11-10 14:53:02 +01004192const char *snd_hda_pcm_type_name[HDA_PCM_NTYPES] = {
4193 "Audio", "SPDIF", "HDMI", "Modem"
4194};
4195
Takashi Iwai176d5332008-07-30 15:01:44 +02004196/*
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004197 * get the empty PCM device number to assign
4198 */
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004199static int get_empty_pcm_device(struct hda_bus *bus, unsigned int type)
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004200{
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004201 /* audio device indices; not linear to keep compatibility */
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004202 /* assigned to static slots up to dev#10; if more needed, assign
4203 * the later slot dynamically (when CONFIG_SND_DYNAMIC_MINORS=y)
4204 */
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004205 static int audio_idx[HDA_PCM_NTYPES][5] = {
4206 [HDA_PCM_TYPE_AUDIO] = { 0, 2, 4, 5, -1 },
4207 [HDA_PCM_TYPE_SPDIF] = { 1, -1 },
Wu Fengguang92608ba2009-10-30 11:40:03 +01004208 [HDA_PCM_TYPE_HDMI] = { 3, 7, 8, 9, -1 },
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004209 [HDA_PCM_TYPE_MODEM] = { 6, -1 },
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004210 };
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004211 int i;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004212
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004213 if (type >= HDA_PCM_NTYPES) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01004214 dev_err(bus->card->dev, "Invalid PCM type %d\n", type);
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004215 return -EINVAL;
4216 }
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004217
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004218 for (i = 0; audio_idx[type][i] >= 0; i++) {
4219#ifndef CONFIG_SND_DYNAMIC_MINORS
4220 if (audio_idx[type][i] >= 8)
4221 break;
4222#endif
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004223 if (!test_and_set_bit(audio_idx[type][i], bus->pcm_dev_bits))
4224 return audio_idx[type][i];
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004225 }
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004226
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004227#ifdef CONFIG_SND_DYNAMIC_MINORS
Takashi Iwai01b65bf2011-11-24 14:31:46 +01004228 /* non-fixed slots starting from 10 */
4229 for (i = 10; i < 32; i++) {
4230 if (!test_and_set_bit(i, bus->pcm_dev_bits))
4231 return i;
4232 }
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004233#endif
Takashi Iwai01b65bf2011-11-24 14:31:46 +01004234
Takashi Iwai4e76a882014-02-25 12:21:03 +01004235 dev_warn(bus->card->dev, "Too many %s devices\n",
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004236 snd_hda_pcm_type_name[type]);
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004237#ifndef CONFIG_SND_DYNAMIC_MINORS
Takashi Iwai4e76a882014-02-25 12:21:03 +01004238 dev_warn(bus->card->dev,
4239 "Consider building the kernel with CONFIG_SND_DYNAMIC_MINORS=y\n");
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004240#endif
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004241 return -EAGAIN;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004242}
4243
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004244/* call build_pcms ops of the given codec and set up the default parameters */
4245int snd_hda_codec_parse_pcms(struct hda_codec *codec)
Takashi Iwai176d5332008-07-30 15:01:44 +02004246{
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01004247 struct hda_pcm *cpcm;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004248 int err;
Takashi Iwai176d5332008-07-30 15:01:44 +02004249
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01004250 if (!list_empty(&codec->pcm_list_head))
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004251 return 0; /* already parsed */
4252
4253 if (!codec->patch_ops.build_pcms)
4254 return 0;
4255
4256 err = codec->patch_ops.build_pcms(codec);
4257 if (err < 0) {
4258 codec_err(codec, "cannot build PCMs for #%d (error %d)\n",
Takashi Iwaid068ebc2015-03-02 23:22:59 +01004259 codec->core.addr, err);
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004260 return err;
4261 }
4262
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01004263 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004264 int stream;
4265
4266 for (stream = 0; stream < 2; stream++) {
4267 struct hda_pcm_stream *info = &cpcm->stream[stream];
4268
4269 if (!info->substreams)
4270 continue;
Takashi Iwai176d5332008-07-30 15:01:44 +02004271 err = set_pcm_default_values(codec, info);
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004272 if (err < 0) {
4273 codec_warn(codec,
4274 "fail to setup default for PCM %s\n",
4275 cpcm->name);
Takashi Iwai176d5332008-07-30 15:01:44 +02004276 return err;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004277 }
Takashi Iwai176d5332008-07-30 15:01:44 +02004278 }
4279 }
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004280
4281 return 0;
Takashi Iwai176d5332008-07-30 15:01:44 +02004282}
4283
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004284/* assign all PCMs of the given codec */
4285int snd_hda_codec_build_pcms(struct hda_codec *codec)
4286{
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004287 struct hda_bus *bus = codec->bus;
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01004288 struct hda_pcm *cpcm;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004289 int dev, err;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004290
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004291 if (snd_BUG_ON(!bus->ops.attach_pcm))
4292 return -EINVAL;
4293
4294 err = snd_hda_codec_parse_pcms(codec);
4295 if (err < 0) {
4296 snd_hda_codec_reset(codec);
4297 return err;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004298 }
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004299
4300 /* attach a new PCM streams */
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01004301 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004302 if (cpcm->pcm)
4303 continue; /* already attached */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004304 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
Takashi Iwai41b5b012009-01-20 18:21:23 +01004305 continue; /* no substreams assigned */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004306
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004307 dev = get_empty_pcm_device(bus, cpcm->pcm_type);
4308 if (dev < 0)
4309 continue; /* no fatal error */
4310 cpcm->device = dev;
4311 err = bus->ops.attach_pcm(bus, codec, cpcm);
4312 if (err < 0) {
4313 codec_err(codec,
4314 "cannot attach PCM stream %d for codec #%d\n",
Takashi Iwaid068ebc2015-03-02 23:22:59 +01004315 dev, codec->core.addr);
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004316 continue; /* no fatal error */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004317 }
4318 }
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004319
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004320 return 0;
4321}
4322
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 * snd_hda_add_new_ctls - create controls from the array
4325 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004326 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 *
4328 * This helper function creates and add new controls in the given array.
4329 * The array must be terminated with an empty entry as terminator.
4330 *
4331 * Returns 0 if successful, or a negative error code.
4332 */
Takashi Iwai031024e2011-05-02 11:29:30 +02004333int snd_hda_add_new_ctls(struct hda_codec *codec,
4334 const struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335{
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01004336 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337
4338 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01004339 struct snd_kcontrol *kctl;
Takashi Iwai1afe2062010-12-23 10:17:52 +01004340 int addr = 0, idx = 0;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01004341 if (knew->iface == -1) /* skip this codec private value */
4342 continue;
Takashi Iwai1afe2062010-12-23 10:17:52 +01004343 for (;;) {
Takashi Iwai54d17402005-11-21 16:33:22 +01004344 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02004345 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01004346 return -ENOMEM;
Takashi Iwai1afe2062010-12-23 10:17:52 +01004347 if (addr > 0)
4348 kctl->id.device = addr;
4349 if (idx > 0)
4350 kctl->id.index = idx;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01004351 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai1afe2062010-12-23 10:17:52 +01004352 if (!err)
4353 break;
4354 /* try first with another device index corresponding to
4355 * the codec addr; if it still fails (or it's the
4356 * primary codec), then try another control index
4357 */
Takashi Iwaid068ebc2015-03-02 23:22:59 +01004358 if (!addr && codec->core.addr)
4359 addr = codec->core.addr;
Takashi Iwai1afe2062010-12-23 10:17:52 +01004360 else if (!idx && !knew->index) {
4361 idx = find_empty_mixer_ctl_idx(codec,
Takashi Iwaidcda5802012-10-12 17:24:51 +02004362 knew->name, 0);
Takashi Iwai1afe2062010-12-23 10:17:52 +01004363 if (idx <= 0)
4364 return err;
4365 } else
Takashi Iwai54d17402005-11-21 16:33:22 +01004366 return err;
4367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 }
4369 return 0;
4370}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004371EXPORT_SYMBOL_GPL(snd_hda_add_new_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372
Takashi Iwai83012a72012-08-24 18:38:08 +02004373#ifdef CONFIG_PM
Takashi Iwaibb573922015-02-20 09:26:04 +01004374static void codec_set_power_save(struct hda_codec *codec, int delay)
Takashi Iwaicc72da72015-02-19 16:00:22 +01004375{
4376 struct device *dev = hda_codec_dev(codec);
Takashi Iwaicc72da72015-02-19 16:00:22 +01004377
Takashi Iwaicc72da72015-02-19 16:00:22 +01004378 if (delay > 0) {
4379 pm_runtime_set_autosuspend_delay(dev, delay);
4380 pm_runtime_use_autosuspend(dev);
4381 pm_runtime_allow(dev);
4382 if (!pm_runtime_suspended(dev))
4383 pm_runtime_mark_last_busy(dev);
4384 } else {
4385 pm_runtime_dont_use_autosuspend(dev);
4386 pm_runtime_forbid(dev);
4387 }
4388}
Takashi Iwaibb573922015-02-20 09:26:04 +01004389
4390/**
4391 * snd_hda_set_power_save - reprogram autosuspend for the given delay
4392 * @bus: HD-audio bus
4393 * @delay: autosuspend delay in msec, 0 = off
4394 *
4395 * Synchronize the runtime PM autosuspend state from the power_save option.
4396 */
4397void snd_hda_set_power_save(struct hda_bus *bus, int delay)
4398{
4399 struct hda_codec *c;
4400
Takashi Iwaid068ebc2015-03-02 23:22:59 +01004401 list_for_each_codec(c, bus)
Takashi Iwaibb573922015-02-20 09:26:04 +01004402 codec_set_power_save(c, delay);
4403}
4404EXPORT_SYMBOL_GPL(snd_hda_set_power_save);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004405
Takashi Iwaid5191e52009-11-16 14:58:17 +01004406/**
4407 * snd_hda_check_amp_list_power - Check the amp list and update the power
4408 * @codec: HD-audio codec
4409 * @check: the object containing an AMP list and the status
4410 * @nid: NID to check / update
4411 *
4412 * Check whether the given NID is in the amp list. If it's in the list,
4413 * check the current AMP status, and update the the power-status according
4414 * to the mute status.
4415 *
4416 * This function is supposed to be set or called from the check_power_status
4417 * patch ops.
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004418 */
Takashi Iwaicb53c622007-08-10 17:21:45 +02004419int snd_hda_check_amp_list_power(struct hda_codec *codec,
4420 struct hda_loopback_check *check,
4421 hda_nid_t nid)
4422{
Takashi Iwai031024e2011-05-02 11:29:30 +02004423 const struct hda_amp_list *p;
Takashi Iwaicb53c622007-08-10 17:21:45 +02004424 int ch, v;
4425
4426 if (!check->amplist)
4427 return 0;
4428 for (p = check->amplist; p->nid; p++) {
4429 if (p->nid == nid)
4430 break;
4431 }
4432 if (!p->nid)
4433 return 0; /* nothing changed */
4434
4435 for (p = check->amplist; p->nid; p++) {
4436 for (ch = 0; ch < 2; ch++) {
4437 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
4438 p->idx);
4439 if (!(v & HDA_AMP_MUTE) && v > 0) {
4440 if (!check->power_on) {
4441 check->power_on = 1;
4442 snd_hda_power_up(codec);
4443 }
4444 return 1;
4445 }
4446 }
4447 }
4448 if (check->power_on) {
4449 check->power_on = 0;
4450 snd_hda_power_down(codec);
4451 }
4452 return 0;
4453}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004454EXPORT_SYMBOL_GPL(snd_hda_check_amp_list_power);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004455#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004457/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 * input MUX helper
4459 */
Takashi Iwaid5191e52009-11-16 14:58:17 +01004460
4461/**
4462 * snd_hda_input_mux_info_info - Info callback helper for the input-mux enum
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004463 * @imux: imux helper object
4464 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01004465 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004466int snd_hda_input_mux_info(const struct hda_input_mux *imux,
4467 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468{
4469 unsigned int index;
4470
4471 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
4472 uinfo->count = 1;
4473 uinfo->value.enumerated.items = imux->num_items;
Takashi Iwai5513b0c2007-10-09 11:58:41 +02004474 if (!imux->num_items)
4475 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476 index = uinfo->value.enumerated.item;
4477 if (index >= imux->num_items)
4478 index = imux->num_items - 1;
4479 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
4480 return 0;
4481}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004482EXPORT_SYMBOL_GPL(snd_hda_input_mux_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483
Takashi Iwaid5191e52009-11-16 14:58:17 +01004484/**
4485 * snd_hda_input_mux_info_put - Put callback helper for the input-mux enum
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004486 * @codec: the HDA codec
4487 * @imux: imux helper object
4488 * @ucontrol: pointer to get/store the data
4489 * @nid: input mux NID
4490 * @cur_val: pointer to get/store the current imux value
Takashi Iwaid5191e52009-11-16 14:58:17 +01004491 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004492int snd_hda_input_mux_put(struct hda_codec *codec,
4493 const struct hda_input_mux *imux,
4494 struct snd_ctl_elem_value *ucontrol,
4495 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496 unsigned int *cur_val)
4497{
4498 unsigned int idx;
4499
Takashi Iwai5513b0c2007-10-09 11:58:41 +02004500 if (!imux->num_items)
4501 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502 idx = ucontrol->value.enumerated.item[0];
4503 if (idx >= imux->num_items)
4504 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02004505 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02004507 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
4508 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004509 *cur_val = idx;
4510 return 1;
4511}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004512EXPORT_SYMBOL_GPL(snd_hda_input_mux_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513
4514
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004515/**
4516 * snd_hda_enum_helper_info - Helper for simple enum ctls
4517 * @kcontrol: ctl element
4518 * @uinfo: pointer to get/store the data
4519 * @num_items: number of enum items
4520 * @texts: enum item string array
4521 *
Takashi Iwaidda415d2012-11-30 18:34:38 +01004522 * process kcontrol info callback of a simple string enum array
4523 * when @num_items is 0 or @texts is NULL, assume a boolean enum array
4524 */
4525int snd_hda_enum_helper_info(struct snd_kcontrol *kcontrol,
4526 struct snd_ctl_elem_info *uinfo,
4527 int num_items, const char * const *texts)
4528{
4529 static const char * const texts_default[] = {
4530 "Disabled", "Enabled"
4531 };
4532
4533 if (!texts || !num_items) {
4534 num_items = 2;
4535 texts = texts_default;
4536 }
4537
Takashi Iwai3ff72212014-10-20 18:17:28 +02004538 return snd_ctl_enum_info(uinfo, 1, num_items, texts);
Takashi Iwaidda415d2012-11-30 18:34:38 +01004539}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004540EXPORT_SYMBOL_GPL(snd_hda_enum_helper_info);
Takashi Iwaidda415d2012-11-30 18:34:38 +01004541
4542/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 * Multi-channel / digital-out PCM helper functions
4544 */
4545
Takashi Iwai6b97eb42007-04-05 14:51:48 +02004546/* setup SPDIF output stream */
4547static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
4548 unsigned int stream_tag, unsigned int format)
4549{
Laurence Darby3bef1c32012-11-03 17:00:06 +00004550 struct hda_spdif_out *spdif;
4551 unsigned int curr_fmt;
4552 bool reset;
Stephen Warren7c9359762011-06-01 11:14:17 -06004553
Laurence Darby3bef1c32012-11-03 17:00:06 +00004554 spdif = snd_hda_spdif_out_of_nid(codec, nid);
4555 curr_fmt = snd_hda_codec_read(codec, nid, 0,
4556 AC_VERB_GET_STREAM_FORMAT, 0);
4557 reset = codec->spdif_status_reset &&
4558 (spdif->ctls & AC_DIG1_ENABLE) &&
4559 curr_fmt != format;
4560
4561 /* turn off SPDIF if needed; otherwise the IEC958 bits won't be
4562 updated */
4563 if (reset)
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004564 set_dig_out_convert(codec, nid,
Stephen Warren7c9359762011-06-01 11:14:17 -06004565 spdif->ctls & ~AC_DIG1_ENABLE & 0xff,
Takashi Iwai2f728532008-09-25 16:32:41 +02004566 -1);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02004567 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Takashi Iwai2f728532008-09-25 16:32:41 +02004568 if (codec->slave_dig_outs) {
Takashi Iwaidda14412011-05-02 11:29:30 +02004569 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02004570 for (d = codec->slave_dig_outs; *d; d++)
4571 snd_hda_codec_setup_stream(codec, *d, stream_tag, 0,
4572 format);
Matthew Ranostayde51ca12008-09-07 14:31:40 -04004573 }
Takashi Iwai2f728532008-09-25 16:32:41 +02004574 /* turn on again (if needed) */
Laurence Darby3bef1c32012-11-03 17:00:06 +00004575 if (reset)
Takashi Iwai2f728532008-09-25 16:32:41 +02004576 set_dig_out_convert(codec, nid,
Stephen Warren7c9359762011-06-01 11:14:17 -06004577 spdif->ctls & 0xff, -1);
Takashi Iwai2f728532008-09-25 16:32:41 +02004578}
Matthew Ranostayde51ca12008-09-07 14:31:40 -04004579
Takashi Iwai2f728532008-09-25 16:32:41 +02004580static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid)
4581{
4582 snd_hda_codec_cleanup_stream(codec, nid);
4583 if (codec->slave_dig_outs) {
Takashi Iwaidda14412011-05-02 11:29:30 +02004584 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02004585 for (d = codec->slave_dig_outs; *d; d++)
4586 snd_hda_codec_cleanup_stream(codec, *d);
4587 }
Takashi Iwai6b97eb42007-04-05 14:51:48 +02004588}
4589
Takashi Iwaid5191e52009-11-16 14:58:17 +01004590/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01004591 * snd_hda_multi_out_dig_open - open the digital out in the exclusive mode
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004592 * @codec: the HDA codec
4593 * @mout: hda_multi_out object
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004595int snd_hda_multi_out_dig_open(struct hda_codec *codec,
4596 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597{
Ingo Molnar62932df2006-01-16 16:34:20 +01004598 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02004599 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
4600 /* already opened as analog dup; reset it once */
Takashi Iwai2f728532008-09-25 16:32:41 +02004601 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01004603 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604 return 0;
4605}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004606EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607
Takashi Iwaid5191e52009-11-16 14:58:17 +01004608/**
4609 * snd_hda_multi_out_dig_prepare - prepare the digital out stream
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004610 * @codec: the HDA codec
4611 * @mout: hda_multi_out object
4612 * @stream_tag: stream tag to assign
4613 * @format: format id to assign
4614 * @substream: PCM substream to assign
Takashi Iwaid5191e52009-11-16 14:58:17 +01004615 */
Takashi Iwai6b97eb42007-04-05 14:51:48 +02004616int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
4617 struct hda_multi_out *mout,
4618 unsigned int stream_tag,
4619 unsigned int format,
4620 struct snd_pcm_substream *substream)
4621{
4622 mutex_lock(&codec->spdif_mutex);
4623 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
4624 mutex_unlock(&codec->spdif_mutex);
4625 return 0;
4626}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004627EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_prepare);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02004628
Takashi Iwaid5191e52009-11-16 14:58:17 +01004629/**
4630 * snd_hda_multi_out_dig_cleanup - clean-up the digital out stream
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004631 * @codec: the HDA codec
4632 * @mout: hda_multi_out object
Takashi Iwaid5191e52009-11-16 14:58:17 +01004633 */
Takashi Iwai9411e212009-02-13 11:32:28 +01004634int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
4635 struct hda_multi_out *mout)
4636{
4637 mutex_lock(&codec->spdif_mutex);
4638 cleanup_dig_out_stream(codec, mout->dig_out_nid);
4639 mutex_unlock(&codec->spdif_mutex);
4640 return 0;
4641}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004642EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_cleanup);
Takashi Iwai9411e212009-02-13 11:32:28 +01004643
Takashi Iwaid5191e52009-11-16 14:58:17 +01004644/**
4645 * snd_hda_multi_out_dig_close - release the digital out stream
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004646 * @codec: the HDA codec
4647 * @mout: hda_multi_out object
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004649int snd_hda_multi_out_dig_close(struct hda_codec *codec,
4650 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651{
Ingo Molnar62932df2006-01-16 16:34:20 +01004652 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01004654 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655 return 0;
4656}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004657EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658
Takashi Iwaid5191e52009-11-16 14:58:17 +01004659/**
4660 * snd_hda_multi_out_analog_open - open analog outputs
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004661 * @codec: the HDA codec
4662 * @mout: hda_multi_out object
4663 * @substream: PCM substream to assign
4664 * @hinfo: PCM information to assign
Takashi Iwaid5191e52009-11-16 14:58:17 +01004665 *
4666 * Open analog outputs and set up the hw-constraints.
4667 * If the digital outputs can be opened as slave, open the digital
4668 * outputs, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004670int snd_hda_multi_out_analog_open(struct hda_codec *codec,
4671 struct hda_multi_out *mout,
Takashi Iwai9a081602008-02-12 18:37:26 +01004672 struct snd_pcm_substream *substream,
4673 struct hda_pcm_stream *hinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004674{
Takashi Iwai9a081602008-02-12 18:37:26 +01004675 struct snd_pcm_runtime *runtime = substream->runtime;
4676 runtime->hw.channels_max = mout->max_channels;
4677 if (mout->dig_out_nid) {
4678 if (!mout->analog_rates) {
4679 mout->analog_rates = hinfo->rates;
4680 mout->analog_formats = hinfo->formats;
4681 mout->analog_maxbps = hinfo->maxbps;
4682 } else {
4683 runtime->hw.rates = mout->analog_rates;
4684 runtime->hw.formats = mout->analog_formats;
4685 hinfo->maxbps = mout->analog_maxbps;
4686 }
4687 if (!mout->spdif_rates) {
4688 snd_hda_query_supported_pcm(codec, mout->dig_out_nid,
4689 &mout->spdif_rates,
4690 &mout->spdif_formats,
4691 &mout->spdif_maxbps);
4692 }
4693 mutex_lock(&codec->spdif_mutex);
4694 if (mout->share_spdif) {
Takashi Iwai022b4662009-07-03 23:03:30 +02004695 if ((runtime->hw.rates & mout->spdif_rates) &&
4696 (runtime->hw.formats & mout->spdif_formats)) {
4697 runtime->hw.rates &= mout->spdif_rates;
4698 runtime->hw.formats &= mout->spdif_formats;
4699 if (mout->spdif_maxbps < hinfo->maxbps)
4700 hinfo->maxbps = mout->spdif_maxbps;
4701 } else {
4702 mout->share_spdif = 0;
4703 /* FIXME: need notify? */
4704 }
Takashi Iwai9a081602008-02-12 18:37:26 +01004705 }
Frederik Deweerdteaa99852008-04-14 13:11:44 +02004706 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01004707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004708 return snd_pcm_hw_constraint_step(substream->runtime, 0,
4709 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
4710}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004711EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712
Takashi Iwaid5191e52009-11-16 14:58:17 +01004713/**
4714 * snd_hda_multi_out_analog_prepare - Preapre the analog outputs.
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004715 * @codec: the HDA codec
4716 * @mout: hda_multi_out object
4717 * @stream_tag: stream tag to assign
4718 * @format: format id to assign
4719 * @substream: PCM substream to assign
Takashi Iwaid5191e52009-11-16 14:58:17 +01004720 *
4721 * Set up the i/o for analog out.
4722 * When the digital out is available, copy the front out to digital out, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004724int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
4725 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726 unsigned int stream_tag,
4727 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004728 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729{
Takashi Iwaidda14412011-05-02 11:29:30 +02004730 const hda_nid_t *nids = mout->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731 int chs = substream->runtime->channels;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02004732 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733 int i;
4734
Ingo Molnar62932df2006-01-16 16:34:20 +01004735 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02004736 spdif = snd_hda_spdif_out_of_nid(codec, mout->dig_out_nid);
Takashi Iwai9a081602008-02-12 18:37:26 +01004737 if (mout->dig_out_nid && mout->share_spdif &&
4738 mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004739 if (chs == 2 &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02004740 snd_hda_is_supported_format(codec, mout->dig_out_nid,
4741 format) &&
Stephen Warren7c9359762011-06-01 11:14:17 -06004742 !(spdif->status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02004744 setup_dig_out_stream(codec, mout->dig_out_nid,
4745 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746 } else {
4747 mout->dig_out_used = 0;
Takashi Iwai2f728532008-09-25 16:32:41 +02004748 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004749 }
4750 }
Ingo Molnar62932df2006-01-16 16:34:20 +01004751 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752
4753 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004754 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
4755 0, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02004756 if (!mout->no_share_stream &&
4757 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07004758 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004759 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
4760 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004761 /* extra outputs copied from front */
Takashi Iwaia06dbfc2011-08-23 18:16:13 +02004762 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
4763 if (!mout->no_share_stream && mout->hp_out_nid[i])
4764 snd_hda_codec_setup_stream(codec,
4765 mout->hp_out_nid[i],
4766 stream_tag, 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004767
Linus Torvalds1da177e2005-04-16 15:20:36 -07004768 /* surrounds */
4769 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02004770 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004771 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
4772 i * 2, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02004773 else if (!mout->no_share_stream) /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004774 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
4775 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776 }
David Henningssoncd4035e2013-10-10 09:01:25 +02004777
4778 /* extra surrounds */
4779 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) {
4780 int ch = 0;
4781 if (!mout->extra_out_nid[i])
4782 break;
4783 if (chs >= (i + 1) * 2)
4784 ch = i * 2;
4785 else if (!mout->no_share_stream)
4786 break;
4787 snd_hda_codec_setup_stream(codec, mout->extra_out_nid[i],
4788 stream_tag, ch, format);
4789 }
4790
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791 return 0;
4792}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004793EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794
Takashi Iwaid5191e52009-11-16 14:58:17 +01004795/**
4796 * snd_hda_multi_out_analog_cleanup - clean up the setting for analog out
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004797 * @codec: the HDA codec
4798 * @mout: hda_multi_out object
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004800int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
4801 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802{
Takashi Iwaidda14412011-05-02 11:29:30 +02004803 const hda_nid_t *nids = mout->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004804 int i;
4805
4806 for (i = 0; i < mout->num_dacs; i++)
Takashi Iwai888afa12008-03-18 09:57:50 +01004807 snd_hda_codec_cleanup_stream(codec, nids[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 if (mout->hp_nid)
Takashi Iwai888afa12008-03-18 09:57:50 +01004809 snd_hda_codec_cleanup_stream(codec, mout->hp_nid);
Takashi Iwaia06dbfc2011-08-23 18:16:13 +02004810 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
4811 if (mout->hp_out_nid[i])
4812 snd_hda_codec_cleanup_stream(codec,
4813 mout->hp_out_nid[i]);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004814 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
4815 if (mout->extra_out_nid[i])
Takashi Iwai888afa12008-03-18 09:57:50 +01004816 snd_hda_codec_cleanup_stream(codec,
4817 mout->extra_out_nid[i]);
Ingo Molnar62932df2006-01-16 16:34:20 +01004818 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
Takashi Iwai2f728532008-09-25 16:32:41 +02004820 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821 mout->dig_out_used = 0;
4822 }
Ingo Molnar62932df2006-01-16 16:34:20 +01004823 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824 return 0;
4825}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004826EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827
Takashi Iwai47408602012-04-20 13:06:53 +02004828/**
4829 * snd_hda_get_default_vref - Get the default (mic) VREF pin bits
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004830 * @codec: the HDA codec
4831 * @pin: referred pin NID
Takashi Iwai47408602012-04-20 13:06:53 +02004832 *
4833 * Guess the suitable VREF pin bits to be set as the pin-control value.
4834 * Note: the function doesn't set the AC_PINCTL_IN_EN bit.
4835 */
4836unsigned int snd_hda_get_default_vref(struct hda_codec *codec, hda_nid_t pin)
4837{
4838 unsigned int pincap;
4839 unsigned int oldval;
4840 oldval = snd_hda_codec_read(codec, pin, 0,
4841 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4842 pincap = snd_hda_query_pin_caps(codec, pin);
4843 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
4844 /* Exception: if the default pin setup is vref50, we give it priority */
4845 if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50)
4846 return AC_PINCTL_VREF_80;
4847 else if (pincap & AC_PINCAP_VREF_50)
4848 return AC_PINCTL_VREF_50;
4849 else if (pincap & AC_PINCAP_VREF_100)
4850 return AC_PINCTL_VREF_100;
4851 else if (pincap & AC_PINCAP_VREF_GRD)
4852 return AC_PINCTL_VREF_GRD;
4853 return AC_PINCTL_VREF_HIZ;
4854}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004855EXPORT_SYMBOL_GPL(snd_hda_get_default_vref);
Takashi Iwai47408602012-04-20 13:06:53 +02004856
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004857/**
4858 * snd_hda_correct_pin_ctl - correct the pin ctl value for matching with the pin cap
4859 * @codec: the HDA codec
4860 * @pin: referred pin NID
4861 * @val: pin ctl value to audit
4862 */
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01004863unsigned int snd_hda_correct_pin_ctl(struct hda_codec *codec,
4864 hda_nid_t pin, unsigned int val)
4865{
4866 static unsigned int cap_lists[][2] = {
4867 { AC_PINCTL_VREF_100, AC_PINCAP_VREF_100 },
4868 { AC_PINCTL_VREF_80, AC_PINCAP_VREF_80 },
4869 { AC_PINCTL_VREF_50, AC_PINCAP_VREF_50 },
4870 { AC_PINCTL_VREF_GRD, AC_PINCAP_VREF_GRD },
4871 };
4872 unsigned int cap;
4873
4874 if (!val)
4875 return 0;
4876 cap = snd_hda_query_pin_caps(codec, pin);
4877 if (!cap)
4878 return val; /* don't know what to do... */
4879
4880 if (val & AC_PINCTL_OUT_EN) {
4881 if (!(cap & AC_PINCAP_OUT))
4882 val &= ~(AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
4883 else if ((val & AC_PINCTL_HP_EN) && !(cap & AC_PINCAP_HP_DRV))
4884 val &= ~AC_PINCTL_HP_EN;
4885 }
4886
4887 if (val & AC_PINCTL_IN_EN) {
4888 if (!(cap & AC_PINCAP_IN))
4889 val &= ~(AC_PINCTL_IN_EN | AC_PINCTL_VREFEN);
4890 else {
4891 unsigned int vcap, vref;
4892 int i;
4893 vcap = (cap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
4894 vref = val & AC_PINCTL_VREFEN;
4895 for (i = 0; i < ARRAY_SIZE(cap_lists); i++) {
4896 if (vref == cap_lists[i][0] &&
4897 !(vcap & cap_lists[i][1])) {
4898 if (i == ARRAY_SIZE(cap_lists) - 1)
4899 vref = AC_PINCTL_VREF_HIZ;
4900 else
4901 vref = cap_lists[i + 1][0];
4902 }
4903 }
4904 val &= ~AC_PINCTL_VREFEN;
4905 val |= vref;
4906 }
4907 }
4908
4909 return val;
4910}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004911EXPORT_SYMBOL_GPL(snd_hda_correct_pin_ctl);
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01004912
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004913/**
4914 * _snd_hda_pin_ctl - Helper to set pin ctl value
4915 * @codec: the HDA codec
4916 * @pin: referred pin NID
4917 * @val: pin control value to set
4918 * @cached: access over codec pinctl cache or direct write
4919 *
4920 * This function is a helper to set a pin ctl value more safely.
4921 * It corrects the pin ctl value via snd_hda_correct_pin_ctl(), stores the
4922 * value in pin target array via snd_hda_codec_set_pin_target(), then
4923 * actually writes the value via either snd_hda_codec_update_cache() or
4924 * snd_hda_codec_write() depending on @cached flag.
4925 */
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02004926int _snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin,
4927 unsigned int val, bool cached)
4928{
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01004929 val = snd_hda_correct_pin_ctl(codec, pin, val);
Takashi Iwaid7fdc002013-01-10 08:38:04 +01004930 snd_hda_codec_set_pin_target(codec, pin, val);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02004931 if (cached)
4932 return snd_hda_codec_update_cache(codec, pin, 0,
4933 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
4934 else
4935 return snd_hda_codec_write(codec, pin, 0,
4936 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
4937}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004938EXPORT_SYMBOL_GPL(_snd_hda_set_pin_ctl);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02004939
Takashi Iwai990061c2010-09-09 22:08:44 +02004940/**
4941 * snd_hda_add_imux_item - Add an item to input_mux
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004942 * @codec: the HDA codec
4943 * @imux: imux helper object
4944 * @label: the name of imux item to assign
4945 * @index: index number of imux item to assign
4946 * @type_idx: pointer to store the resultant label index
Takashi Iwai990061c2010-09-09 22:08:44 +02004947 *
4948 * When the same label is used already in the existing items, the number
4949 * suffix is appended to the label. This label index number is stored
4950 * to type_idx when non-NULL pointer is given.
4951 */
Takashi Iwai6194b992014-06-06 18:12:16 +02004952int snd_hda_add_imux_item(struct hda_codec *codec,
4953 struct hda_input_mux *imux, const char *label,
Takashi Iwai10a20af2010-09-09 16:28:02 +02004954 int index, int *type_idx)
4955{
4956 int i, label_idx = 0;
4957 if (imux->num_items >= HDA_MAX_NUM_INPUTS) {
Takashi Iwai6194b992014-06-06 18:12:16 +02004958 codec_err(codec, "hda_codec: Too many imux items!\n");
Takashi Iwai10a20af2010-09-09 16:28:02 +02004959 return -EINVAL;
4960 }
4961 for (i = 0; i < imux->num_items; i++) {
4962 if (!strncmp(label, imux->items[i].label, strlen(label)))
4963 label_idx++;
4964 }
4965 if (type_idx)
4966 *type_idx = label_idx;
4967 if (label_idx > 0)
4968 snprintf(imux->items[imux->num_items].label,
4969 sizeof(imux->items[imux->num_items].label),
4970 "%s %d", label, label_idx);
4971 else
4972 strlcpy(imux->items[imux->num_items].label, label,
4973 sizeof(imux->items[imux->num_items].label));
4974 imux->items[imux->num_items].index = index;
4975 imux->num_items++;
4976 return 0;
4977}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004978EXPORT_SYMBOL_GPL(snd_hda_add_imux_item);
Takashi Iwaid7b1ae92010-08-30 13:00:16 +02004979
Linus Torvalds1da177e2005-04-16 15:20:36 -07004980/**
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01004981 * snd_hda_bus_reset - Reset the bus
4982 * @bus: HD-audio bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07004983 */
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01004984void snd_hda_bus_reset(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985{
Takashi Iwai0ba21762007-04-16 11:29:14 +02004986 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004987
Takashi Iwaid068ebc2015-03-02 23:22:59 +01004988 list_for_each_codec(codec, bus) {
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01004989 /* FIXME: maybe a better way needed for forced reset */
David Henningsson26a6cb62012-10-09 15:04:21 +02004990 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01004991#ifdef CONFIG_PM
Mengdong Lin0e24dbb2013-11-26 23:00:51 -05004992 if (hda_codec_is_power_on(codec)) {
Takashi Iwaicc72da72015-02-19 16:00:22 +01004993 hda_call_codec_suspend(codec);
Mengdong Lin12edb892013-11-26 23:32:23 -05004994 hda_call_codec_resume(codec);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01004995 }
4996#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998}
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01004999EXPORT_SYMBOL_GPL(snd_hda_bus_reset);
Takashi Iwaib2e18592008-07-30 15:01:44 +02005000
5001/*
5002 * generic arrays
5003 */
5004
Takashi Iwaid5191e52009-11-16 14:58:17 +01005005/**
5006 * snd_array_new - get a new element from the given array
5007 * @array: the array object
Norberto Lopes28aedaf2010-02-28 20:16:53 +01005008 *
Takashi Iwaid5191e52009-11-16 14:58:17 +01005009 * Get a new element from the given array. If it exceeds the
5010 * pre-allocated array size, re-allocate the array.
5011 *
5012 * Returns NULL if allocation failed.
Takashi Iwaib2e18592008-07-30 15:01:44 +02005013 */
5014void *snd_array_new(struct snd_array *array)
5015{
Takashi Iwai12f17712012-10-10 08:59:14 +02005016 if (snd_BUG_ON(!array->elem_size))
5017 return NULL;
Takashi Iwaib2e18592008-07-30 15:01:44 +02005018 if (array->used >= array->alloced) {
5019 int num = array->alloced + array->alloc_align;
Takashi Iwai3101ba02011-07-12 08:05:16 +02005020 int size = (num + 1) * array->elem_size;
Takashi Iwaib910d9a2008-11-07 00:26:52 +01005021 void *nlist;
5022 if (snd_BUG_ON(num >= 4096))
5023 return NULL;
Takashi Iwai5265fd92013-03-13 12:15:28 +01005024 nlist = krealloc(array->list, size, GFP_KERNEL | __GFP_ZERO);
Takashi Iwaib2e18592008-07-30 15:01:44 +02005025 if (!nlist)
5026 return NULL;
Takashi Iwaib2e18592008-07-30 15:01:44 +02005027 array->list = nlist;
5028 array->alloced = num;
5029 }
Takashi Iwaif43aa022008-11-10 16:24:26 +01005030 return snd_array_elem(array, array->used++);
Takashi Iwaib2e18592008-07-30 15:01:44 +02005031}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005032EXPORT_SYMBOL_GPL(snd_array_new);
Takashi Iwaib2e18592008-07-30 15:01:44 +02005033
Takashi Iwaid5191e52009-11-16 14:58:17 +01005034/**
5035 * snd_array_free - free the given array elements
5036 * @array: the array object
5037 */
Takashi Iwaib2e18592008-07-30 15:01:44 +02005038void snd_array_free(struct snd_array *array)
5039{
5040 kfree(array->list);
5041 array->used = 0;
5042 array->alloced = 0;
5043 array->list = NULL;
5044}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005045EXPORT_SYMBOL_GPL(snd_array_free);
Takashi Iwaib2022262008-11-21 21:24:03 +01005046
Takashi Iwaid5191e52009-11-16 14:58:17 +01005047/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01005048 * snd_print_pcm_bits - Print the supported PCM fmt bits to the string buffer
5049 * @pcm: PCM caps bits
5050 * @buf: the string buffer to write
5051 * @buflen: the max buffer length
5052 *
5053 * used by hda_proc.c and hda_eld.c
5054 */
Takashi Iwaib2022262008-11-21 21:24:03 +01005055void snd_print_pcm_bits(int pcm, char *buf, int buflen)
5056{
5057 static unsigned int bits[] = { 8, 16, 20, 24, 32 };
5058 int i, j;
5059
5060 for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++)
5061 if (pcm & (AC_SUPPCM_BITS_8 << i))
5062 j += snprintf(buf + j, buflen - j, " %d", bits[i]);
5063
5064 buf[j] = '\0'; /* necessary when j == 0 */
5065}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005066EXPORT_SYMBOL_GPL(snd_print_pcm_bits);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005067
5068MODULE_DESCRIPTION("HDA codec core");
5069MODULE_LICENSE("GPL");