blob: 3bd9158addc2b87ba526cf4afafa01c6d34f69a0 [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 Iwaid66fee52011-08-02 15:39:31 +020042#define CREATE_TRACE_POINTS
43#include "hda_trace.h"
44
Takashi Iwai83012a72012-08-24 18:38:08 +020045#ifdef CONFIG_PM
Takashi Iwaicc72da72015-02-19 16:00:22 +010046#define codec_in_pm(codec) atomic_read(&(codec)->in_pm)
47#define hda_codec_is_power_on(codec) \
48 (!pm_runtime_suspended(hda_codec_dev(codec)))
Takashi Iwaicb53c622007-08-10 17:21:45 +020049#else
Takashi Iwaid846b172012-11-24 11:58:24 +010050#define codec_in_pm(codec) 0
Takashi Iwaie581f3d2011-07-26 10:19:20 +020051#define hda_codec_is_power_on(codec) 1
Takashi Iwaicb53c622007-08-10 17:21:45 +020052#endif
53
Takashi Iwaid5191e52009-11-16 14:58:17 +010054/**
55 * snd_hda_get_jack_location - Give a location string of the jack
56 * @cfg: pin default config value
57 *
58 * Parse the pin default config value and returns the string of the
59 * jack location, e.g. "Rear", "Front", etc.
60 */
Matthew Ranostay50a9f792008-10-25 01:05:45 -040061const char *snd_hda_get_jack_location(u32 cfg)
62{
63 static char *bases[7] = {
64 "N/A", "Rear", "Front", "Left", "Right", "Top", "Bottom",
65 };
66 static unsigned char specials_idx[] = {
67 0x07, 0x08,
68 0x17, 0x18, 0x19,
69 0x37, 0x38
70 };
71 static char *specials[] = {
72 "Rear Panel", "Drive Bar",
73 "Riser", "HDMI", "ATAPI",
74 "Mobile-In", "Mobile-Out"
75 };
76 int i;
77 cfg = (cfg & AC_DEFCFG_LOCATION) >> AC_DEFCFG_LOCATION_SHIFT;
78 if ((cfg & 0x0f) < 7)
79 return bases[cfg & 0x0f];
80 for (i = 0; i < ARRAY_SIZE(specials_idx); i++) {
81 if (cfg == specials_idx[i])
82 return specials[i];
83 }
84 return "UNKNOWN";
85}
Takashi Iwai2698ea92013-12-18 07:45:52 +010086EXPORT_SYMBOL_GPL(snd_hda_get_jack_location);
Matthew Ranostay50a9f792008-10-25 01:05:45 -040087
Takashi Iwaid5191e52009-11-16 14:58:17 +010088/**
89 * snd_hda_get_jack_connectivity - Give a connectivity string of the jack
90 * @cfg: pin default config value
91 *
92 * Parse the pin default config value and returns the string of the
93 * jack connectivity, i.e. external or internal connection.
94 */
Matthew Ranostay50a9f792008-10-25 01:05:45 -040095const char *snd_hda_get_jack_connectivity(u32 cfg)
96{
97 static char *jack_locations[4] = { "Ext", "Int", "Sep", "Oth" };
98
99 return jack_locations[(cfg >> (AC_DEFCFG_LOCATION_SHIFT + 4)) & 3];
100}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100101EXPORT_SYMBOL_GPL(snd_hda_get_jack_connectivity);
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400102
Takashi Iwaid5191e52009-11-16 14:58:17 +0100103/**
104 * snd_hda_get_jack_type - Give a type string of the jack
105 * @cfg: pin default config value
106 *
107 * Parse the pin default config value and returns the string of the
108 * jack type, i.e. the purpose of the jack, such as Line-Out or CD.
109 */
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400110const char *snd_hda_get_jack_type(u32 cfg)
111{
112 static char *jack_types[16] = {
113 "Line Out", "Speaker", "HP Out", "CD",
114 "SPDIF Out", "Digital Out", "Modem Line", "Modem Hand",
115 "Line In", "Aux", "Mic", "Telephony",
David Henningssonaeb3a972013-04-04 11:47:13 +0200116 "SPDIF In", "Digital In", "Reserved", "Other"
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400117 };
118
119 return jack_types[(cfg & AC_DEFCFG_DEVICE)
120 >> AC_DEFCFG_DEVICE_SHIFT];
121}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100122EXPORT_SYMBOL_GPL(snd_hda_get_jack_type);
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400123
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100124/*
125 * Compose a 32bit command word to be sent to the HD-audio controller
126 */
127static inline unsigned int
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200128make_codec_cmd(struct hda_codec *codec, hda_nid_t nid, int flags,
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100129 unsigned int verb, unsigned int parm)
130{
131 u32 val;
132
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200133 if ((codec->addr & ~0xf) || (nid & ~0x7f) ||
Takashi Iwai82e1b802009-07-17 12:47:34 +0200134 (verb & ~0xfff) || (parm & ~0xffff)) {
Takashi Iwai4e76a882014-02-25 12:21:03 +0100135 codec_err(codec, "hda-codec: out of range cmd %x:%x:%x:%x\n",
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200136 codec->addr, nid, verb, parm);
Wu Fengguang6430aee2009-07-17 16:49:19 +0800137 return ~0;
138 }
139
140 val = (u32)codec->addr << 28;
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100141 val |= (u32)nid << 20;
142 val |= verb << 8;
143 val |= parm;
144 return val;
145}
146
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200147/*
148 * Send and receive a verb
149 */
150static int codec_exec_verb(struct hda_codec *codec, unsigned int cmd,
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200151 int flags, unsigned int *res)
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200152{
153 struct hda_bus *bus = codec->bus;
Takashi Iwai8dd78332009-06-02 01:16:07 +0200154 int err;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200155
Wu Fengguang6430aee2009-07-17 16:49:19 +0800156 if (cmd == ~0)
157 return -1;
158
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200159 if (res)
160 *res = -1;
Takashi Iwai8dd78332009-06-02 01:16:07 +0200161 again:
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200162 snd_hda_power_up(codec);
163 mutex_lock(&bus->cmd_mutex);
Takashi Iwai63e51fd2013-06-06 14:20:19 +0200164 if (flags & HDA_RW_NO_RESPONSE_FALLBACK)
165 bus->no_response_fallback = 1;
Takashi Iwai3bcce5c2012-12-20 11:17:17 +0100166 for (;;) {
167 trace_hda_send_cmd(codec, cmd);
168 err = bus->ops.command(bus, cmd);
169 if (err != -EAGAIN)
170 break;
171 /* process pending verbs */
172 bus->ops.get_response(bus, codec->addr);
173 }
Takashi Iwaid66fee52011-08-02 15:39:31 +0200174 if (!err && res) {
Wu Fengguangdeadff12009-08-01 18:45:16 +0800175 *res = bus->ops.get_response(bus, codec->addr);
Takashi Iwaid66fee52011-08-02 15:39:31 +0200176 trace_hda_get_response(codec, *res);
177 }
Takashi Iwai63e51fd2013-06-06 14:20:19 +0200178 bus->no_response_fallback = 0;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200179 mutex_unlock(&bus->cmd_mutex);
180 snd_hda_power_down(codec);
Takashi Iwaid846b172012-11-24 11:58:24 +0100181 if (!codec_in_pm(codec) && res && *res == -1 && bus->rirb_error) {
Takashi Iwai8dd78332009-06-02 01:16:07 +0200182 if (bus->response_reset) {
Takashi Iwai4e76a882014-02-25 12:21:03 +0100183 codec_dbg(codec,
184 "resetting BUS due to fatal communication error\n");
Takashi Iwaid66fee52011-08-02 15:39:31 +0200185 trace_hda_bus_reset(bus);
Takashi Iwai8dd78332009-06-02 01:16:07 +0200186 bus->ops.bus_reset(bus);
187 }
188 goto again;
189 }
190 /* clear reset-flag when the communication gets recovered */
Takashi Iwaid846b172012-11-24 11:58:24 +0100191 if (!err || codec_in_pm(codec))
Takashi Iwai8dd78332009-06-02 01:16:07 +0200192 bus->response_reset = 0;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200193 return err;
194}
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/**
197 * snd_hda_codec_read - send a command and get the response
198 * @codec: the HDA codec
199 * @nid: NID to send the command
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200200 * @flags: optional bit flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 * @verb: the verb to send
202 * @parm: the parameter for the verb
203 *
204 * Send a single command and read the corresponding response.
205 *
206 * Returns the obtained response value, or -1 for an error.
207 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200208unsigned int snd_hda_codec_read(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200209 int flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 unsigned int verb, unsigned int parm)
211{
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200212 unsigned cmd = make_codec_cmd(codec, nid, flags, verb, parm);
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200213 unsigned int res;
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200214 if (codec_exec_verb(codec, cmd, flags, &res))
Greg Thelen9857edf2011-06-13 07:45:45 -0700215 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 return res;
217}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100218EXPORT_SYMBOL_GPL(snd_hda_codec_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220/**
221 * snd_hda_codec_write - send a single command without waiting for response
222 * @codec: the HDA codec
223 * @nid: NID to send the command
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200224 * @flags: optional bit flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 * @verb: the verb to send
226 * @parm: the parameter for the verb
227 *
228 * Send a single command without waiting for response.
229 *
230 * Returns 0 if successful, or a negative error code.
231 */
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200232int snd_hda_codec_write(struct hda_codec *codec, hda_nid_t nid, int flags,
233 unsigned int verb, unsigned int parm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200235 unsigned int cmd = make_codec_cmd(codec, nid, flags, verb, parm);
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100236 unsigned int res;
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200237 return codec_exec_verb(codec, cmd, flags,
Takashi Iwaib20f3b82009-06-02 01:20:22 +0200238 codec->bus->sync_write ? &res : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100240EXPORT_SYMBOL_GPL(snd_hda_codec_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242/**
243 * snd_hda_sequence_write - sequence writes
244 * @codec: the HDA codec
245 * @seq: VERB array to send
246 *
247 * Send the commands sequentially from the given array.
248 * The array must be terminated with NID=0.
249 */
250void snd_hda_sequence_write(struct hda_codec *codec, const struct hda_verb *seq)
251{
252 for (; seq->nid; seq++)
253 snd_hda_codec_write(codec, seq->nid, 0, seq->verb, seq->param);
254}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100255EXPORT_SYMBOL_GPL(snd_hda_sequence_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257/**
258 * snd_hda_get_sub_nodes - get the range of sub nodes
259 * @codec: the HDA codec
260 * @nid: NID to parse
261 * @start_id: the pointer to store the start NID
262 *
263 * Parse the NID and store the start NID of its sub-nodes.
264 * Returns the number of sub-nodes.
265 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200266int snd_hda_get_sub_nodes(struct hda_codec *codec, hda_nid_t nid,
267 hda_nid_t *start_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268{
269 unsigned int parm;
270
271 parm = snd_hda_param_read(codec, nid, AC_PAR_NODE_COUNT);
Dan Carpenter69eba102014-11-27 01:34:43 +0300272 if (parm == -1) {
273 *start_id = 0;
Danny Tholene8a7f132007-09-11 21:41:56 +0200274 return 0;
Dan Carpenter69eba102014-11-27 01:34:43 +0300275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 *start_id = (parm >> 16) & 0x7fff;
277 return (int)(parm & 0x7fff);
278}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100279EXPORT_SYMBOL_GPL(snd_hda_get_sub_nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100281/* connection list element */
282struct hda_conn_list {
283 struct list_head list;
284 int len;
285 hda_nid_t nid;
286 hda_nid_t conns[0];
287};
288
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200289/* look up the cached results */
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100290static struct hda_conn_list *
291lookup_conn_list(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200292{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100293 struct hda_conn_list *p;
294 list_for_each_entry(p, &codec->conn_list, list) {
295 if (p->nid == nid)
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200296 return p;
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200297 }
298 return NULL;
299}
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200300
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100301static int add_conn_list(struct hda_codec *codec, hda_nid_t nid, int len,
302 const hda_nid_t *list)
303{
304 struct hda_conn_list *p;
305
306 p = kmalloc(sizeof(*p) + len * sizeof(hda_nid_t), GFP_KERNEL);
307 if (!p)
308 return -ENOMEM;
309 p->len = len;
310 p->nid = nid;
311 memcpy(p->conns, list, len * sizeof(hda_nid_t));
312 list_add(&p->list, &codec->conn_list);
313 return 0;
314}
315
316static void remove_conn_list(struct hda_codec *codec)
317{
318 while (!list_empty(&codec->conn_list)) {
319 struct hda_conn_list *p;
320 p = list_first_entry(&codec->conn_list, typeof(*p), list);
321 list_del(&p->list);
322 kfree(p);
323 }
324}
325
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200326/* read the connection and add to the cache */
327static int read_and_add_raw_conns(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200328{
Takashi Iwai4eea3092013-02-07 18:18:19 +0100329 hda_nid_t list[32];
330 hda_nid_t *result = list;
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200331 int len;
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200332
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200333 len = snd_hda_get_raw_connections(codec, nid, list, ARRAY_SIZE(list));
Takashi Iwai4eea3092013-02-07 18:18:19 +0100334 if (len == -ENOSPC) {
335 len = snd_hda_get_num_raw_conns(codec, nid);
336 result = kmalloc(sizeof(hda_nid_t) * len, GFP_KERNEL);
337 if (!result)
338 return -ENOMEM;
339 len = snd_hda_get_raw_connections(codec, nid, result, len);
340 }
341 if (len >= 0)
342 len = snd_hda_override_conn_list(codec, nid, len, result);
343 if (result != list)
344 kfree(result);
345 return len;
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200346}
Takashi Iwaidce20792011-06-24 14:10:28 +0200347
348/**
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100349 * snd_hda_get_conn_list - get connection list
350 * @codec: the HDA codec
351 * @nid: NID to parse
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100352 * @listp: the pointer to store NID list
353 *
354 * Parses the connection list of the given widget and stores the pointer
355 * to the list of NIDs.
356 *
357 * Returns the number of connections, or a negative error code.
358 *
359 * Note that the returned pointer isn't protected against the list
360 * modification. If snd_hda_override_conn_list() might be called
361 * concurrently, protect with a mutex appropriately.
362 */
363int snd_hda_get_conn_list(struct hda_codec *codec, hda_nid_t nid,
364 const hda_nid_t **listp)
365{
366 bool added = false;
367
368 for (;;) {
369 int err;
370 const struct hda_conn_list *p;
371
372 /* if the connection-list is already cached, read it */
373 p = lookup_conn_list(codec, nid);
374 if (p) {
375 if (listp)
376 *listp = p->conns;
377 return p->len;
378 }
379 if (snd_BUG_ON(added))
380 return -EINVAL;
381
382 err = read_and_add_raw_conns(codec, nid);
383 if (err < 0)
384 return err;
385 added = true;
386 }
387}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100388EXPORT_SYMBOL_GPL(snd_hda_get_conn_list);
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100389
390/**
Takashi Iwaidce20792011-06-24 14:10:28 +0200391 * snd_hda_get_connections - copy connection list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 * @codec: the HDA codec
393 * @nid: NID to parse
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200394 * @conn_list: connection list array; when NULL, checks only the size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 * @max_conns: max. number of connections to store
396 *
397 * Parses the connection list of the given widget and stores the list
398 * of NIDs.
399 *
400 * Returns the number of connections, or a negative error code.
401 */
402int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200403 hda_nid_t *conn_list, int max_conns)
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200404{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100405 const hda_nid_t *list;
406 int len = snd_hda_get_conn_list(codec, nid, &list);
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200407
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100408 if (len > 0 && conn_list) {
409 if (len > max_conns) {
Takashi Iwai4e76a882014-02-25 12:21:03 +0100410 codec_err(codec, "Too many connections %d for NID 0x%x\n",
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200411 len, nid);
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200412 return -EINVAL;
413 }
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100414 memcpy(conn_list, list, len * sizeof(hda_nid_t));
Takashi Iwaidce20792011-06-24 14:10:28 +0200415 }
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200416
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100417 return len;
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200418}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100419EXPORT_SYMBOL_GPL(snd_hda_get_connections);
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200420
Takashi Iwai4eea3092013-02-07 18:18:19 +0100421/* return CONNLIST_LEN parameter of the given widget */
422static unsigned int get_num_conns(struct hda_codec *codec, hda_nid_t nid)
423{
424 unsigned int wcaps = get_wcaps(codec, nid);
425 unsigned int parm;
426
427 if (!(wcaps & AC_WCAP_CONN_LIST) &&
428 get_wcaps_type(wcaps) != AC_WID_VOL_KNB)
429 return 0;
430
431 parm = snd_hda_param_read(codec, nid, AC_PAR_CONNLIST_LEN);
432 if (parm == -1)
433 parm = 0;
434 return parm;
435}
436
437int snd_hda_get_num_raw_conns(struct hda_codec *codec, hda_nid_t nid)
438{
Takashi Iwaib5f82b12013-03-12 16:47:30 +0100439 return snd_hda_get_raw_connections(codec, nid, NULL, 0);
Takashi Iwai4eea3092013-02-07 18:18:19 +0100440}
441
Takashi Iwai9e7717c2011-07-11 15:42:52 +0200442/**
443 * snd_hda_get_raw_connections - copy connection list without cache
444 * @codec: the HDA codec
445 * @nid: NID to parse
446 * @conn_list: connection list array
447 * @max_conns: max. number of connections to store
448 *
449 * Like snd_hda_get_connections(), copy the connection list but without
450 * checking through the connection-list cache.
451 * Currently called only from hda_proc.c, so not exported.
452 */
453int snd_hda_get_raw_connections(struct hda_codec *codec, hda_nid_t nid,
454 hda_nid_t *conn_list, int max_conns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 unsigned int parm;
Takashi Iwai54d17402005-11-21 16:33:22 +0100457 int i, conn_len, conns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 unsigned int shift, num_elems, mask;
Takashi Iwai54d17402005-11-21 16:33:22 +0100459 hda_nid_t prev_nid;
Takashi Iwai5fdaecd2012-12-20 10:45:55 +0100460 int null_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Takashi Iwai4eea3092013-02-07 18:18:19 +0100462 parm = get_num_conns(codec, nid);
463 if (!parm)
Takashi Iwai8d087c72011-06-28 12:45:47 +0200464 return 0;
Jaroslav Kysela16a433d2009-07-22 16:20:40 +0200465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (parm & AC_CLIST_LONG) {
467 /* long form */
468 shift = 16;
469 num_elems = 2;
470 } else {
471 /* short form */
472 shift = 8;
473 num_elems = 4;
474 }
475 conn_len = parm & AC_CLIST_LENGTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 mask = (1 << (shift-1)) - 1;
477
Takashi Iwai0ba21762007-04-16 11:29:14 +0200478 if (!conn_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return 0; /* no connection */
480
481 if (conn_len == 1) {
482 /* single connection */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200483 parm = snd_hda_codec_read(codec, nid, 0,
484 AC_VERB_GET_CONNECT_LIST, 0);
Takashi Iwai3c6aae42009-07-10 12:52:27 +0200485 if (parm == -1 && codec->bus->rirb_error)
486 return -EIO;
Takashi Iwaib5f82b12013-03-12 16:47:30 +0100487 if (conn_list)
488 conn_list[0] = parm & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 return 1;
490 }
491
492 /* multi connection */
493 conns = 0;
Takashi Iwai54d17402005-11-21 16:33:22 +0100494 prev_nid = 0;
495 for (i = 0; i < conn_len; i++) {
496 int range_val;
497 hda_nid_t val, n;
498
Takashi Iwai3c6aae42009-07-10 12:52:27 +0200499 if (i % num_elems == 0) {
Takashi Iwai54d17402005-11-21 16:33:22 +0100500 parm = snd_hda_codec_read(codec, nid, 0,
501 AC_VERB_GET_CONNECT_LIST, i);
Takashi Iwai3c6aae42009-07-10 12:52:27 +0200502 if (parm == -1 && codec->bus->rirb_error)
503 return -EIO;
504 }
Takashi Iwai0ba21762007-04-16 11:29:14 +0200505 range_val = !!(parm & (1 << (shift-1))); /* ranges */
Takashi Iwai54d17402005-11-21 16:33:22 +0100506 val = parm & mask;
Takashi Iwai5fdaecd2012-12-20 10:45:55 +0100507 if (val == 0 && null_count++) { /* no second chance */
Takashi Iwai4e76a882014-02-25 12:21:03 +0100508 codec_dbg(codec,
509 "invalid CONNECT_LIST verb %x[%i]:%x\n",
Jaroslav Kysela2e9bf242009-07-18 11:48:19 +0200510 nid, i, parm);
511 return 0;
512 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100513 parm >>= shift;
514 if (range_val) {
515 /* ranges between the previous and this one */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200516 if (!prev_nid || prev_nid >= val) {
Takashi Iwai4e76a882014-02-25 12:21:03 +0100517 codec_warn(codec,
Takashi Iwai0ba21762007-04-16 11:29:14 +0200518 "invalid dep_range_val %x:%x\n",
519 prev_nid, val);
Takashi Iwai54d17402005-11-21 16:33:22 +0100520 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100522 for (n = prev_nid + 1; n <= val; n++) {
Takashi Iwaib5f82b12013-03-12 16:47:30 +0100523 if (conn_list) {
524 if (conns >= max_conns)
525 return -ENOSPC;
526 conn_list[conns] = n;
527 }
528 conns++;
Takashi Iwai54d17402005-11-21 16:33:22 +0100529 }
530 } else {
Takashi Iwaib5f82b12013-03-12 16:47:30 +0100531 if (conn_list) {
532 if (conns >= max_conns)
533 return -ENOSPC;
534 conn_list[conns] = val;
535 }
536 conns++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100538 prev_nid = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540 return conns;
541}
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543/**
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200544 * snd_hda_override_conn_list - add/modify the connection-list to cache
545 * @codec: the HDA codec
546 * @nid: NID to parse
547 * @len: number of connection list entries
548 * @list: the list of connection entries
549 *
550 * Add or modify the given connection-list to the cache. If the corresponding
551 * cache already exists, invalidate it and append a new one.
552 *
553 * Returns zero or a negative error code.
554 */
555int snd_hda_override_conn_list(struct hda_codec *codec, hda_nid_t nid, int len,
556 const hda_nid_t *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100558 struct hda_conn_list *p;
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200559
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100560 p = lookup_conn_list(codec, nid);
561 if (p) {
562 list_del(&p->list);
563 kfree(p);
564 }
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200565
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100566 return add_conn_list(codec, nid, len, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100568EXPORT_SYMBOL_GPL(snd_hda_override_conn_list);
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200569
570/**
Takashi Iwai8d087c72011-06-28 12:45:47 +0200571 * snd_hda_get_conn_index - get the connection index of the given NID
572 * @codec: the HDA codec
573 * @mux: NID containing the list
574 * @nid: NID to select
575 * @recursive: 1 when searching NID recursively, otherwise 0
576 *
577 * Parses the connection list of the widget @mux and checks whether the
578 * widget @nid is present. If it is, return the connection index.
579 * Otherwise it returns -1.
580 */
581int snd_hda_get_conn_index(struct hda_codec *codec, hda_nid_t mux,
582 hda_nid_t nid, int recursive)
583{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100584 const hda_nid_t *conn;
Takashi Iwai8d087c72011-06-28 12:45:47 +0200585 int i, nums;
586
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100587 nums = snd_hda_get_conn_list(codec, mux, &conn);
Takashi Iwai8d087c72011-06-28 12:45:47 +0200588 for (i = 0; i < nums; i++)
589 if (conn[i] == nid)
590 return i;
591 if (!recursive)
592 return -1;
Takashi Iwaid94ddd82012-12-20 14:42:42 +0100593 if (recursive > 10) {
Takashi Iwai4e76a882014-02-25 12:21:03 +0100594 codec_dbg(codec, "too deep connection for 0x%x\n", nid);
Takashi Iwai8d087c72011-06-28 12:45:47 +0200595 return -1;
596 }
597 recursive++;
Takashi Iwai99e14c92011-09-13 10:33:16 +0200598 for (i = 0; i < nums; i++) {
599 unsigned int type = get_wcaps_type(get_wcaps(codec, conn[i]));
600 if (type == AC_WID_PIN || type == AC_WID_AUD_OUT)
601 continue;
Takashi Iwai8d087c72011-06-28 12:45:47 +0200602 if (snd_hda_get_conn_index(codec, conn[i], nid, recursive) >= 0)
603 return i;
Takashi Iwai99e14c92011-09-13 10:33:16 +0200604 }
Takashi Iwai8d087c72011-06-28 12:45:47 +0200605 return -1;
606}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100607EXPORT_SYMBOL_GPL(snd_hda_get_conn_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Mengdong Linf1aa0682013-08-26 21:35:21 -0400609
610/* return DEVLIST_LEN parameter of the given widget */
611static unsigned int get_num_devices(struct hda_codec *codec, hda_nid_t nid)
612{
613 unsigned int wcaps = get_wcaps(codec, nid);
614 unsigned int parm;
615
616 if (!codec->dp_mst || !(wcaps & AC_WCAP_DIGITAL) ||
617 get_wcaps_type(wcaps) != AC_WID_PIN)
618 return 0;
619
620 parm = snd_hda_param_read(codec, nid, AC_PAR_DEVLIST_LEN);
621 if (parm == -1 && codec->bus->rirb_error)
622 parm = 0;
623 return parm & AC_DEV_LIST_LEN_MASK;
624}
625
626/**
627 * snd_hda_get_devices - copy device list without cache
628 * @codec: the HDA codec
629 * @nid: NID of the pin to parse
630 * @dev_list: device list array
631 * @max_devices: max. number of devices to store
632 *
633 * Copy the device list. This info is dynamic and so not cached.
634 * Currently called only from hda_proc.c, so not exported.
635 */
636int snd_hda_get_devices(struct hda_codec *codec, hda_nid_t nid,
637 u8 *dev_list, int max_devices)
638{
639 unsigned int parm;
640 int i, dev_len, devices;
641
642 parm = get_num_devices(codec, nid);
643 if (!parm) /* not multi-stream capable */
644 return 0;
645
646 dev_len = parm + 1;
647 dev_len = dev_len < max_devices ? dev_len : max_devices;
648
649 devices = 0;
650 while (devices < dev_len) {
651 parm = snd_hda_codec_read(codec, nid, 0,
652 AC_VERB_GET_DEVICE_LIST, devices);
653 if (parm == -1 && codec->bus->rirb_error)
654 break;
655
656 for (i = 0; i < 8; i++) {
657 dev_list[devices] = (u8)parm;
658 parm >>= 4;
659 devices++;
660 if (devices >= dev_len)
661 break;
662 }
663 }
664 return devices;
665}
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667/**
668 * snd_hda_queue_unsol_event - add an unsolicited event to queue
669 * @bus: the BUS
670 * @res: unsolicited event (lower 32bit of RIRB entry)
671 * @res_ex: codec addr and flags (upper 32bit or RIRB entry)
672 *
673 * Adds the given event to the queue. The events are processed in
674 * the workqueue asynchronously. Call this function in the interrupt
675 * hanlder when RIRB receives an unsolicited event.
676 *
677 * Returns 0 if successful, or a negative error code.
678 */
679int snd_hda_queue_unsol_event(struct hda_bus *bus, u32 res, u32 res_ex)
680{
681 struct hda_bus_unsolicited *unsol;
682 unsigned int wp;
683
Wang YanQing2195b062013-05-07 11:27:33 +0800684 if (!bus || !bus->workq)
685 return 0;
686
Takashi Iwaiecf726f2011-08-09 14:22:44 +0200687 trace_hda_unsol_event(bus, res, res_ex);
Takashi Iwai922c88a2015-02-17 14:46:40 +0100688 unsol = &bus->unsol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 wp = (unsol->wp + 1) % HDA_UNSOL_QUEUE_SIZE;
690 unsol->wp = wp;
691
692 wp <<= 1;
693 unsol->queue[wp] = res;
694 unsol->queue[wp + 1] = res_ex;
695
Takashi Iwai6acaed32009-01-12 10:09:24 +0100696 queue_work(bus->workq, &unsol->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 return 0;
699}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100700EXPORT_SYMBOL_GPL(snd_hda_queue_unsol_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702/*
Wu Fengguang5c1d1a92008-10-07 14:17:53 +0800703 * process queued unsolicited events
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 */
David Howellsc4028952006-11-22 14:57:56 +0000705static void process_unsol_events(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
Takashi Iwai922c88a2015-02-17 14:46:40 +0100707 struct hda_bus *bus = container_of(work, struct hda_bus, unsol.work);
708 struct hda_bus_unsolicited *unsol = &bus->unsol;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 struct hda_codec *codec;
710 unsigned int rp, caddr, res;
711
712 while (unsol->rp != unsol->wp) {
713 rp = (unsol->rp + 1) % HDA_UNSOL_QUEUE_SIZE;
714 unsol->rp = rp;
715 rp <<= 1;
716 res = unsol->queue[rp];
717 caddr = unsol->queue[rp + 1];
Takashi Iwai0ba21762007-04-16 11:29:14 +0200718 if (!(caddr & (1 << 4))) /* no unsolicited event? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 continue;
720 codec = bus->caddr_tbl[caddr & 0x0f];
721 if (codec && codec->patch_ops.unsol_event)
722 codec->patch_ops.unsol_event(codec, res);
723 }
724}
725
726/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 * destructor
728 */
Takashi Iwai2565c892014-02-19 11:41:09 +0100729static void snd_hda_bus_free(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200731 if (!bus)
Takashi Iwai2565c892014-02-19 11:41:09 +0100732 return;
733
734 WARN_ON(!list_empty(&bus->codec_list));
Takashi Iwai6acaed32009-01-12 10:09:24 +0100735 if (bus->workq)
736 flush_workqueue(bus->workq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (bus->ops.private_free)
738 bus->ops.private_free(bus);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100739 if (bus->workq)
740 destroy_workqueue(bus->workq);
Mengdong Lin0e24dbb2013-11-26 23:00:51 -0500741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 kfree(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100745static int snd_hda_bus_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
Takashi Iwai2565c892014-02-19 11:41:09 +0100747 snd_hda_bus_free(device->device_data);
748 return 0;
749}
750
751static int snd_hda_bus_dev_disconnect(struct snd_device *device)
752{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 struct hda_bus *bus = device->device_data;
Takashi Iwaib94d35392008-11-21 09:08:06 +0100754 bus->shutdown = 1;
Takashi Iwai2565c892014-02-19 11:41:09 +0100755 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
758/**
759 * snd_hda_bus_new - create a HDA bus
760 * @card: the card entry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 * @busp: the pointer to store the created bus instance
762 *
763 * Returns 0 if successful, or a negative error code.
764 */
Takashi Iwai6a0f56a2012-12-07 07:41:56 +0100765int snd_hda_bus_new(struct snd_card *card,
Takashi Iwaief744972015-02-17 13:56:29 +0100766 struct hda_bus **busp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
768 struct hda_bus *bus;
769 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100770 static struct snd_device_ops dev_ops = {
Takashi Iwai2565c892014-02-19 11:41:09 +0100771 .dev_disconnect = snd_hda_bus_dev_disconnect,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 .dev_free = snd_hda_bus_dev_free,
773 };
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (busp)
776 *busp = NULL;
777
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200778 bus = kzalloc(sizeof(*bus), GFP_KERNEL);
Takashi Iwaif4de8fe2015-02-27 16:17:18 +0100779 if (!bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 bus->card = card;
Ingo Molnar62932df2006-01-16 16:34:20 +0100783 mutex_init(&bus->cmd_mutex);
Takashi Iwai3f50ac62010-08-20 09:44:36 +0200784 mutex_init(&bus->prepare_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 INIT_LIST_HEAD(&bus->codec_list);
Takashi Iwai922c88a2015-02-17 14:46:40 +0100786 INIT_WORK(&bus->unsol.work, process_unsol_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Takashi Iwaie8c0ee52009-02-05 07:34:28 +0100788 snprintf(bus->workq_name, sizeof(bus->workq_name),
789 "hd-audio%d", card->number);
790 bus->workq = create_singlethread_workqueue(bus->workq_name);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100791 if (!bus->workq) {
Takashi Iwai4e76a882014-02-25 12:21:03 +0100792 dev_err(card->dev, "cannot create workqueue %s\n",
Takashi Iwaie8c0ee52009-02-05 07:34:28 +0100793 bus->workq_name);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100794 kfree(bus);
795 return -ENOMEM;
796 }
797
Takashi Iwai0ba21762007-04-16 11:29:14 +0200798 err = snd_device_new(card, SNDRV_DEV_BUS, bus, &dev_ops);
799 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 snd_hda_bus_free(bus);
801 return err;
802 }
803 if (busp)
804 *busp = bus;
805 return 0;
806}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100807EXPORT_SYMBOL_GPL(snd_hda_bus_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809/*
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200810 * look for an AFG and MFG nodes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 */
Takashi Iwai6a0f56a2012-12-07 07:41:56 +0100812static void setup_fg_nodes(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
Takashi Iwai93e82ae2009-04-17 18:04:41 +0200814 int i, total_nodes, function_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 hda_nid_t nid;
816
817 total_nodes = snd_hda_get_sub_nodes(codec, AC_NODE_ROOT, &nid);
818 for (i = 0; i < total_nodes; i++, nid++) {
Takashi Iwai93e82ae2009-04-17 18:04:41 +0200819 function_id = snd_hda_param_read(codec, nid,
Jaroslav Kysela79c944a2010-07-19 15:52:39 +0200820 AC_PAR_FUNCTION_TYPE);
Jaroslav Kyselacd7643b2010-07-20 12:11:25 +0200821 switch (function_id & 0xff) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200822 case AC_GRP_AUDIO_FUNCTION:
823 codec->afg = nid;
Jaroslav Kysela79c944a2010-07-19 15:52:39 +0200824 codec->afg_function_id = function_id & 0xff;
825 codec->afg_unsol = (function_id >> 8) & 1;
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200826 break;
827 case AC_GRP_MODEM_FUNCTION:
828 codec->mfg = nid;
Jaroslav Kysela79c944a2010-07-19 15:52:39 +0200829 codec->mfg_function_id = function_id & 0xff;
830 codec->mfg_unsol = (function_id >> 8) & 1;
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200831 break;
832 default:
833 break;
834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836}
837
838/*
Takashi Iwai54d17402005-11-21 16:33:22 +0100839 * read widget caps for each widget and store in cache
840 */
841static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node)
842{
843 int i;
844 hda_nid_t nid;
845
846 codec->num_nodes = snd_hda_get_sub_nodes(codec, fg_node,
847 &codec->start_nid);
848 codec->wcaps = kmalloc(codec->num_nodes * 4, GFP_KERNEL);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200849 if (!codec->wcaps)
Takashi Iwai54d17402005-11-21 16:33:22 +0100850 return -ENOMEM;
851 nid = codec->start_nid;
852 for (i = 0; i < codec->num_nodes; i++, nid++)
853 codec->wcaps[i] = snd_hda_param_read(codec, nid,
854 AC_PAR_AUDIO_WIDGET_CAP);
855 return 0;
856}
857
Takashi Iwai3be14142009-02-20 14:11:16 +0100858/* read all pin default configurations and save codec->init_pins */
859static int read_pin_defaults(struct hda_codec *codec)
860{
861 int i;
862 hda_nid_t nid = codec->start_nid;
863
864 for (i = 0; i < codec->num_nodes; i++, nid++) {
865 struct hda_pincfg *pin;
866 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwaia22d5432009-07-27 12:54:26 +0200867 unsigned int wid_type = get_wcaps_type(wcaps);
Takashi Iwai3be14142009-02-20 14:11:16 +0100868 if (wid_type != AC_WID_PIN)
869 continue;
870 pin = snd_array_new(&codec->init_pins);
871 if (!pin)
872 return -ENOMEM;
873 pin->nid = nid;
874 pin->cfg = snd_hda_codec_read(codec, nid, 0,
875 AC_VERB_GET_CONFIG_DEFAULT, 0);
Takashi Iwaiac0547d2010-07-05 16:50:13 +0200876 pin->ctrl = snd_hda_codec_read(codec, nid, 0,
877 AC_VERB_GET_PIN_WIDGET_CONTROL,
878 0);
Takashi Iwai3be14142009-02-20 14:11:16 +0100879 }
880 return 0;
881}
882
883/* look up the given pin config list and return the item matching with NID */
884static struct hda_pincfg *look_up_pincfg(struct hda_codec *codec,
885 struct snd_array *array,
886 hda_nid_t nid)
887{
888 int i;
889 for (i = 0; i < array->used; i++) {
890 struct hda_pincfg *pin = snd_array_elem(array, i);
891 if (pin->nid == nid)
892 return pin;
893 }
894 return NULL;
895}
896
Takashi Iwai3be14142009-02-20 14:11:16 +0100897/* set the current pin config value for the given NID.
898 * the value is cached, and read via snd_hda_codec_get_pincfg()
899 */
900int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list,
901 hda_nid_t nid, unsigned int cfg)
902{
903 struct hda_pincfg *pin;
904
Takashi Iwaid5657ec2013-04-18 09:59:28 +0200905 /* the check below may be invalid when pins are added by a fixup
906 * dynamically (e.g. via snd_hda_codec_update_widgets()), so disabled
907 * for now
908 */
909 /*
Takashi Iwaib82855a2009-12-27 11:24:56 +0100910 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
911 return -EINVAL;
Takashi Iwaid5657ec2013-04-18 09:59:28 +0200912 */
Takashi Iwaib82855a2009-12-27 11:24:56 +0100913
Takashi Iwai3be14142009-02-20 14:11:16 +0100914 pin = look_up_pincfg(codec, list, nid);
915 if (!pin) {
916 pin = snd_array_new(list);
917 if (!pin)
918 return -ENOMEM;
919 pin->nid = nid;
920 }
921 pin->cfg = cfg;
Takashi Iwai3be14142009-02-20 14:11:16 +0100922 return 0;
923}
924
Takashi Iwaid5191e52009-11-16 14:58:17 +0100925/**
926 * snd_hda_codec_set_pincfg - Override a pin default configuration
927 * @codec: the HDA codec
928 * @nid: NID to set the pin config
929 * @cfg: the pin default config value
930 *
931 * Override a pin default configuration value in the cache.
932 * This value can be read by snd_hda_codec_get_pincfg() in a higher
933 * priority than the real hardware value.
934 */
Takashi Iwai3be14142009-02-20 14:11:16 +0100935int snd_hda_codec_set_pincfg(struct hda_codec *codec,
936 hda_nid_t nid, unsigned int cfg)
937{
Takashi Iwai346ff702009-02-23 09:42:57 +0100938 return snd_hda_add_pincfg(codec, &codec->driver_pins, nid, cfg);
Takashi Iwai3be14142009-02-20 14:11:16 +0100939}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100940EXPORT_SYMBOL_GPL(snd_hda_codec_set_pincfg);
Takashi Iwai3be14142009-02-20 14:11:16 +0100941
Takashi Iwaid5191e52009-11-16 14:58:17 +0100942/**
943 * snd_hda_codec_get_pincfg - Obtain a pin-default configuration
944 * @codec: the HDA codec
945 * @nid: NID to get the pin config
946 *
947 * Get the current pin config value of the given pin NID.
948 * If the pincfg value is cached or overridden via sysfs or driver,
949 * returns the cached value.
950 */
Takashi Iwai3be14142009-02-20 14:11:16 +0100951unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid)
952{
953 struct hda_pincfg *pin;
954
Takashi Iwai648a8d22014-02-25 10:38:13 +0100955#ifdef CONFIG_SND_HDA_RECONFIG
Takashi Iwai09b70e82013-01-10 18:21:56 +0100956 {
957 unsigned int cfg = 0;
958 mutex_lock(&codec->user_mutex);
959 pin = look_up_pincfg(codec, &codec->user_pins, nid);
960 if (pin)
961 cfg = pin->cfg;
962 mutex_unlock(&codec->user_mutex);
963 if (cfg)
964 return cfg;
965 }
Takashi Iwai3be14142009-02-20 14:11:16 +0100966#endif
Takashi Iwai5e7b8e02009-02-23 09:45:59 +0100967 pin = look_up_pincfg(codec, &codec->driver_pins, nid);
968 if (pin)
969 return pin->cfg;
Takashi Iwai3be14142009-02-20 14:11:16 +0100970 pin = look_up_pincfg(codec, &codec->init_pins, nid);
971 if (pin)
972 return pin->cfg;
973 return 0;
974}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100975EXPORT_SYMBOL_GPL(snd_hda_codec_get_pincfg);
Takashi Iwai3be14142009-02-20 14:11:16 +0100976
Takashi Iwai95a962c2014-10-29 16:03:58 +0100977/**
978 * snd_hda_codec_set_pin_target - remember the current pinctl target value
979 * @codec: the HDA codec
980 * @nid: pin NID
981 * @val: assigned pinctl value
982 *
983 * This function stores the given value to a pinctl target value in the
984 * pincfg table. This isn't always as same as the actually written value
985 * but can be referred at any time via snd_hda_codec_get_pin_target().
986 */
Takashi Iwaid7fdc002013-01-10 08:38:04 +0100987int snd_hda_codec_set_pin_target(struct hda_codec *codec, hda_nid_t nid,
988 unsigned int val)
989{
990 struct hda_pincfg *pin;
991
992 pin = look_up_pincfg(codec, &codec->init_pins, nid);
993 if (!pin)
994 return -EINVAL;
995 pin->target = val;
996 return 0;
997}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100998EXPORT_SYMBOL_GPL(snd_hda_codec_set_pin_target);
Takashi Iwaid7fdc002013-01-10 08:38:04 +0100999
Takashi Iwai95a962c2014-10-29 16:03:58 +01001000/**
1001 * snd_hda_codec_get_pin_target - return the current pinctl target value
1002 * @codec: the HDA codec
1003 * @nid: pin NID
1004 */
Takashi Iwaid7fdc002013-01-10 08:38:04 +01001005int snd_hda_codec_get_pin_target(struct hda_codec *codec, hda_nid_t nid)
1006{
1007 struct hda_pincfg *pin;
1008
1009 pin = look_up_pincfg(codec, &codec->init_pins, nid);
1010 if (!pin)
1011 return 0;
1012 return pin->target;
1013}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001014EXPORT_SYMBOL_GPL(snd_hda_codec_get_pin_target);
Takashi Iwaid7fdc002013-01-10 08:38:04 +01001015
Takashi Iwai92ee6162009-12-27 11:18:59 +01001016/**
1017 * snd_hda_shutup_pins - Shut up all pins
1018 * @codec: the HDA codec
1019 *
1020 * Clear all pin controls to shup up before suspend for avoiding click noise.
1021 * The controls aren't cached so that they can be resumed properly.
1022 */
1023void snd_hda_shutup_pins(struct hda_codec *codec)
1024{
1025 int i;
Takashi Iwaiac0547d2010-07-05 16:50:13 +02001026 /* don't shut up pins when unloading the driver; otherwise it breaks
1027 * the default pin setup at the next load of the driver
1028 */
1029 if (codec->bus->shutdown)
1030 return;
Takashi Iwai92ee6162009-12-27 11:18:59 +01001031 for (i = 0; i < codec->init_pins.used; i++) {
1032 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
1033 /* use read here for syncing after issuing each verb */
1034 snd_hda_codec_read(codec, pin->nid, 0,
1035 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
1036 }
Takashi Iwaiac0547d2010-07-05 16:50:13 +02001037 codec->pins_shutup = 1;
Takashi Iwai92ee6162009-12-27 11:18:59 +01001038}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001039EXPORT_SYMBOL_GPL(snd_hda_shutup_pins);
Takashi Iwai92ee6162009-12-27 11:18:59 +01001040
Takashi Iwai2a439522011-07-26 09:52:50 +02001041#ifdef CONFIG_PM
Takashi Iwaiac0547d2010-07-05 16:50:13 +02001042/* Restore the pin controls cleared previously via snd_hda_shutup_pins() */
1043static void restore_shutup_pins(struct hda_codec *codec)
1044{
1045 int i;
1046 if (!codec->pins_shutup)
1047 return;
1048 if (codec->bus->shutdown)
1049 return;
1050 for (i = 0; i < codec->init_pins.used; i++) {
1051 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
1052 snd_hda_codec_write(codec, pin->nid, 0,
1053 AC_VERB_SET_PIN_WIDGET_CONTROL,
1054 pin->ctrl);
1055 }
1056 codec->pins_shutup = 0;
1057}
Mike Waychison1c7276c2011-04-20 12:04:36 -07001058#endif
Takashi Iwaiac0547d2010-07-05 16:50:13 +02001059
David Henningsson26a6cb62012-10-09 15:04:21 +02001060static void hda_jackpoll_work(struct work_struct *work)
1061{
1062 struct hda_codec *codec =
1063 container_of(work, struct hda_codec, jackpoll_work.work);
David Henningsson26a6cb62012-10-09 15:04:21 +02001064
1065 snd_hda_jack_set_dirty_all(codec);
1066 snd_hda_jack_poll_all(codec);
Wang Xingchao18e60622013-07-25 23:34:45 -04001067
1068 if (!codec->jackpoll_interval)
1069 return;
1070
David Henningsson26a6cb62012-10-09 15:04:21 +02001071 queue_delayed_work(codec->bus->workq, &codec->jackpoll_work,
1072 codec->jackpoll_interval);
1073}
1074
Takashi Iwai01751f52007-08-10 16:59:39 +02001075static void init_hda_cache(struct hda_cache_rec *cache,
1076 unsigned int record_size);
Takashi Iwai1fcaee62007-08-23 00:01:09 +02001077static void free_hda_cache(struct hda_cache_rec *cache);
Takashi Iwai01751f52007-08-10 16:59:39 +02001078
Takashi Iwai3fdf1462012-11-22 08:16:31 +01001079/* release all pincfg lists */
1080static void free_init_pincfgs(struct hda_codec *codec)
Takashi Iwai3be14142009-02-20 14:11:16 +01001081{
Takashi Iwai346ff702009-02-23 09:42:57 +01001082 snd_array_free(&codec->driver_pins);
Takashi Iwai648a8d22014-02-25 10:38:13 +01001083#ifdef CONFIG_SND_HDA_RECONFIG
Takashi Iwai346ff702009-02-23 09:42:57 +01001084 snd_array_free(&codec->user_pins);
Takashi Iwai3be14142009-02-20 14:11:16 +01001085#endif
Takashi Iwai3be14142009-02-20 14:11:16 +01001086 snd_array_free(&codec->init_pins);
1087}
1088
Takashi Iwai54d17402005-11-21 16:33:22 +01001089/*
Takashi Iwaieb541332010-08-06 13:48:11 +02001090 * audio-converter setup caches
1091 */
1092struct hda_cvt_setup {
1093 hda_nid_t nid;
1094 u8 stream_tag;
1095 u8 channel_id;
1096 u16 format_id;
1097 unsigned char active; /* cvt is currently used */
1098 unsigned char dirty; /* setups should be cleared */
1099};
1100
1101/* get or create a cache entry for the given audio converter NID */
1102static struct hda_cvt_setup *
1103get_hda_cvt_setup(struct hda_codec *codec, hda_nid_t nid)
1104{
1105 struct hda_cvt_setup *p;
1106 int i;
1107
1108 for (i = 0; i < codec->cvt_setups.used; i++) {
1109 p = snd_array_elem(&codec->cvt_setups, i);
1110 if (p->nid == nid)
1111 return p;
1112 }
1113 p = snd_array_new(&codec->cvt_setups);
1114 if (p)
1115 p->nid = nid;
1116 return p;
1117}
1118
1119/*
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01001120 * PCM device
1121 */
1122static void release_pcm(struct kref *kref)
1123{
1124 struct hda_pcm *pcm = container_of(kref, struct hda_pcm, kref);
1125
1126 if (pcm->pcm)
1127 snd_device_free(pcm->codec->card, pcm->pcm);
1128 clear_bit(pcm->device, pcm->codec->bus->pcm_dev_bits);
1129 kfree(pcm->name);
1130 kfree(pcm);
1131}
1132
1133void snd_hda_codec_pcm_put(struct hda_pcm *pcm)
1134{
1135 kref_put(&pcm->kref, release_pcm);
1136}
1137EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_put);
1138
1139struct hda_pcm *snd_hda_codec_pcm_new(struct hda_codec *codec,
1140 const char *fmt, ...)
1141{
1142 struct hda_pcm *pcm;
1143 va_list args;
1144
1145 va_start(args, fmt);
1146 pcm = kzalloc(sizeof(*pcm), GFP_KERNEL);
1147 if (!pcm)
1148 return NULL;
1149
1150 pcm->codec = codec;
1151 kref_init(&pcm->kref);
1152 pcm->name = kvasprintf(GFP_KERNEL, fmt, args);
1153 if (!pcm->name) {
1154 kfree(pcm);
1155 return NULL;
1156 }
1157
1158 list_add_tail(&pcm->list, &codec->pcm_list_head);
1159 return pcm;
1160}
1161EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_new);
1162
1163static void codec_release_pcms(struct hda_codec *codec)
1164{
1165 struct hda_pcm *pcm, *n;
1166
1167 list_for_each_entry_safe(pcm, n, &codec->pcm_list_head, list) {
1168 list_del_init(&pcm->list);
1169 snd_hda_codec_pcm_put(pcm);
1170 }
1171}
1172
1173/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 * codec destructor
1175 */
1176static void snd_hda_codec_free(struct hda_codec *codec)
1177{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001178 if (!codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 return;
David Henningsson26a6cb62012-10-09 15:04:21 +02001180 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01001181 codec_release_pcms(codec);
Takashi Iwaid8a766a2015-02-17 15:25:37 +01001182 if (device_is_registered(hda_codec_dev(codec)))
1183 device_del(hda_codec_dev(codec));
Takashi Iwai59cad162012-06-26 15:00:20 +02001184 snd_hda_jack_tbl_clear(codec);
Takashi Iwai3fdf1462012-11-22 08:16:31 +01001185 free_init_pincfgs(codec);
Takashi Iwai6acaed32009-01-12 10:09:24 +01001186 flush_workqueue(codec->bus->workq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 list_del(&codec->list);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001188 snd_array_free(&codec->mixers);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001189 snd_array_free(&codec->nids);
Takashi Iwai59cad162012-06-26 15:00:20 +02001190 snd_array_free(&codec->cvt_setups);
Stephen Warren7c9359762011-06-01 11:14:17 -06001191 snd_array_free(&codec->spdif_out);
Takashi Iwaiee8e7652013-01-03 15:25:11 +01001192 remove_conn_list(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 codec->bus->caddr_tbl[codec->addr] = NULL;
Takashi Iwai55ed9cd2015-02-19 17:35:32 +01001194 clear_bit(codec->addr, &codec->bus->codec_powered);
Takashi Iwai648a8d22014-02-25 10:38:13 +01001195 snd_hda_sysfs_clear(codec);
Takashi Iwai01751f52007-08-10 16:59:39 +02001196 free_hda_cache(&codec->amp_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001197 free_hda_cache(&codec->cmd_cache);
Takashi Iwai812a2cc2009-05-16 10:00:49 +02001198 kfree(codec->vendor_name);
1199 kfree(codec->chip_name);
Takashi Iwaif44ac832008-07-30 15:01:45 +02001200 kfree(codec->modelname);
Takashi Iwai54d17402005-11-21 16:33:22 +01001201 kfree(codec->wcaps);
Mengdong Lin0e24dbb2013-11-26 23:00:51 -05001202 codec->bus->num_codecs--;
Takashi Iwaid8a766a2015-02-17 15:25:37 +01001203 put_device(hda_codec_dev(codec));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204}
1205
Mengdong Linb8dfc4622012-08-23 17:32:30 +08001206static bool snd_hda_codec_get_supported_ps(struct hda_codec *codec,
1207 hda_nid_t fg, unsigned int power_state);
1208
Takashi Iwaid8193872012-08-31 07:54:38 -07001209static unsigned int hda_set_power_state(struct hda_codec *codec,
Takashi Iwaibb6ac722009-03-13 09:02:42 +01001210 unsigned int power_state);
1211
Takashi Iwai13aeaf62014-02-25 07:53:47 +01001212static int snd_hda_codec_dev_register(struct snd_device *device)
1213{
1214 struct hda_codec *codec = device->device_data;
1215
Takashi Iwaid604b392014-02-28 13:42:09 +01001216 snd_hda_register_beep_device(codec);
Takashi Iwaibb573922015-02-20 09:26:04 +01001217 if (device_is_registered(hda_codec_dev(codec)))
Takashi Iwaicc72da72015-02-19 16:00:22 +01001218 pm_runtime_enable(hda_codec_dev(codec));
Takashi Iwai709949f2015-02-20 09:58:14 +01001219 /* it was powered up in snd_hda_codec_new(), now all done */
1220 snd_hda_power_down(codec);
Takashi Iwaid604b392014-02-28 13:42:09 +01001221 return 0;
Takashi Iwai13aeaf62014-02-25 07:53:47 +01001222}
1223
1224static int snd_hda_codec_dev_disconnect(struct snd_device *device)
1225{
1226 struct hda_codec *codec = device->device_data;
1227
Takashi Iwaid604b392014-02-28 13:42:09 +01001228 snd_hda_detach_beep_device(codec);
Takashi Iwai13aeaf62014-02-25 07:53:47 +01001229 return 0;
1230}
1231
Takashi Iwai2565c892014-02-19 11:41:09 +01001232static int snd_hda_codec_dev_free(struct snd_device *device)
1233{
1234 snd_hda_codec_free(device->device_data);
1235 return 0;
1236}
1237
Takashi Iwai13aeaf62014-02-25 07:53:47 +01001238/* just free the container */
1239static void snd_hda_codec_dev_release(struct device *dev)
1240{
Takashi Iwaid8a766a2015-02-17 15:25:37 +01001241 kfree(dev_to_hda_codec(dev));
Takashi Iwai13aeaf62014-02-25 07:53:47 +01001242}
1243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244/**
1245 * snd_hda_codec_new - create a HDA codec
1246 * @bus: the bus to assign
1247 * @codec_addr: the codec address
1248 * @codecp: the pointer to store the generated codec
1249 *
1250 * Returns 0 if successful, or a negative error code.
1251 */
Takashi Iwai6efdd852015-02-27 16:09:22 +01001252int snd_hda_codec_new(struct hda_bus *bus, struct snd_card *card,
1253 unsigned int codec_addr, struct hda_codec **codecp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
1255 struct hda_codec *codec;
Takashi Iwaid8a766a2015-02-17 15:25:37 +01001256 struct device *dev;
Jaroslav Kyselaba443682008-08-13 20:55:32 +02001257 char component[31];
Takashi Iwaid8193872012-08-31 07:54:38 -07001258 hda_nid_t fg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 int err;
Takashi Iwai2565c892014-02-19 11:41:09 +01001260 static struct snd_device_ops dev_ops = {
Takashi Iwai13aeaf62014-02-25 07:53:47 +01001261 .dev_register = snd_hda_codec_dev_register,
1262 .dev_disconnect = snd_hda_codec_dev_disconnect,
Takashi Iwai2565c892014-02-19 11:41:09 +01001263 .dev_free = snd_hda_codec_dev_free,
1264 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
Takashi Iwaida3cec32008-08-08 17:12:14 +02001266 if (snd_BUG_ON(!bus))
1267 return -EINVAL;
1268 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
1269 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
1271 if (bus->caddr_tbl[codec_addr]) {
Takashi Iwai6efdd852015-02-27 16:09:22 +01001272 dev_err(card->dev,
Takashi Iwai4e76a882014-02-25 12:21:03 +01001273 "address 0x%x is already occupied\n",
1274 codec_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 return -EBUSY;
1276 }
1277
Takashi Iwaie560d8d2005-09-09 14:21:46 +02001278 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
Takashi Iwaif4de8fe2015-02-27 16:17:18 +01001279 if (!codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Takashi Iwaid8a766a2015-02-17 15:25:37 +01001282 dev = hda_codec_dev(codec);
1283 device_initialize(dev);
Takashi Iwai6efdd852015-02-27 16:09:22 +01001284 dev->parent = card->dev;
Takashi Iwaid8a766a2015-02-17 15:25:37 +01001285 dev->bus = &snd_hda_bus_type;
1286 dev->release = snd_hda_codec_dev_release;
1287 dev->groups = snd_hda_dev_attr_groups;
Takashi Iwai6efdd852015-02-27 16:09:22 +01001288 dev_set_name(dev, "hdaudioC%dD%d", card->number, codec_addr);
Takashi Iwaid8a766a2015-02-17 15:25:37 +01001289 dev_set_drvdata(dev, codec); /* for sysfs */
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01001290 device_enable_async_suspend(dev);
Takashi Iwai13aeaf62014-02-25 07:53:47 +01001291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 codec->bus = bus;
Takashi Iwai6efdd852015-02-27 16:09:22 +01001293 codec->card = card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 codec->addr = codec_addr;
Ingo Molnar62932df2006-01-16 16:34:20 +01001295 mutex_init(&codec->spdif_mutex);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001296 mutex_init(&codec->control_mutex);
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001297 mutex_init(&codec->hash_mutex);
Takashi Iwai01751f52007-08-10 16:59:39 +02001298 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001299 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001300 snd_array_init(&codec->mixers, sizeof(struct hda_nid_item), 32);
1301 snd_array_init(&codec->nids, sizeof(struct hda_nid_item), 32);
Takashi Iwai3be14142009-02-20 14:11:16 +01001302 snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwai346ff702009-02-23 09:42:57 +01001303 snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwaieb541332010-08-06 13:48:11 +02001304 snd_array_init(&codec->cvt_setups, sizeof(struct hda_cvt_setup), 8);
Stephen Warren7c9359762011-06-01 11:14:17 -06001305 snd_array_init(&codec->spdif_out, sizeof(struct hda_spdif_out), 16);
Takashi Iwai361dab32012-05-09 14:35:27 +02001306 snd_array_init(&codec->jacktbl, sizeof(struct hda_jack_tbl), 16);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +01001307 snd_array_init(&codec->verbs, sizeof(struct hda_verb *), 8);
Takashi Iwaiee8e7652013-01-03 15:25:11 +01001308 INIT_LIST_HEAD(&codec->conn_list);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01001309 INIT_LIST_HEAD(&codec->pcm_list_head);
Takashi Iwaiee8e7652013-01-03 15:25:11 +01001310
David Henningsson26a6cb62012-10-09 15:04:21 +02001311 INIT_DELAYED_WORK(&codec->jackpoll_work, hda_jackpoll_work);
Mengdong Lin7f132922013-11-29 01:48:45 -05001312 codec->depop_delay = -1;
David Henningssonf5662e12014-07-22 14:09:34 +02001313 codec->fixup_id = HDA_FIXUP_ID_NOT_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Takashi Iwai83012a72012-08-24 18:38:08 +02001315#ifdef CONFIG_PM
Takashi Iwaicb53c622007-08-10 17:21:45 +02001316 /* snd_hda_codec_new() marks the codec as power-up, and leave it as is.
Takashi Iwai709949f2015-02-20 09:58:14 +01001317 * it's powered down later in snd_hda_codec_dev_register().
Takashi Iwaicb53c622007-08-10 17:21:45 +02001318 */
Takashi Iwai55ed9cd2015-02-19 17:35:32 +01001319 set_bit(codec->addr, &bus->codec_powered);
Takashi Iwaicc72da72015-02-19 16:00:22 +01001320 pm_runtime_set_active(hda_codec_dev(codec));
1321 pm_runtime_get_noresume(hda_codec_dev(codec));
1322 codec->power_jiffies = jiffies;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001323#endif
1324
Takashi Iwai648a8d22014-02-25 10:38:13 +01001325 snd_hda_sysfs_init(codec);
1326
Takashi Iwaic382a9f2012-05-07 15:01:02 +02001327 if (codec->bus->modelname) {
1328 codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL);
1329 if (!codec->modelname) {
Takashi Iwai13aeaf62014-02-25 07:53:47 +01001330 err = -ENODEV;
1331 goto error;
Takashi Iwaic382a9f2012-05-07 15:01:02 +02001332 }
1333 }
1334
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 list_add_tail(&codec->list, &bus->codec_list);
Mengdong Lin0e24dbb2013-11-26 23:00:51 -05001336 bus->num_codecs++;
Mengdong Lin0e24dbb2013-11-26 23:00:51 -05001337
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 bus->caddr_tbl[codec_addr] = codec;
1339
Takashi Iwai0ba21762007-04-16 11:29:14 +02001340 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
1341 AC_PAR_VENDOR_ID);
Takashi Iwai111d3af2006-02-16 18:17:58 +01001342 if (codec->vendor_id == -1)
1343 /* read again, hopefully the access method was corrected
1344 * in the last read...
1345 */
1346 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
1347 AC_PAR_VENDOR_ID);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001348 codec->subsystem_id = snd_hda_param_read(codec, AC_NODE_ROOT,
1349 AC_PAR_SUBSYSTEM_ID);
1350 codec->revision_id = snd_hda_param_read(codec, AC_NODE_ROOT,
1351 AC_PAR_REV_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Sasha Khapyorsky673b6832005-08-11 11:00:16 +02001353 setup_fg_nodes(codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001354 if (!codec->afg && !codec->mfg) {
Takashi Iwai6efdd852015-02-27 16:09:22 +01001355 dev_err(card->dev, "no AFG or MFG node found\n");
Takashi Iwai3be14142009-02-20 14:11:16 +01001356 err = -ENODEV;
1357 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 }
1359
Takashi Iwaid8193872012-08-31 07:54:38 -07001360 fg = codec->afg ? codec->afg : codec->mfg;
1361 err = read_widget_caps(codec, fg);
Takashi Iwaif4de8fe2015-02-27 16:17:18 +01001362 if (err < 0)
Takashi Iwai3be14142009-02-20 14:11:16 +01001363 goto error;
Takashi Iwai3be14142009-02-20 14:11:16 +01001364 err = read_pin_defaults(codec);
1365 if (err < 0)
1366 goto error;
Takashi Iwai54d17402005-11-21 16:33:22 +01001367
Takashi Iwai0ba21762007-04-16 11:29:14 +02001368 if (!codec->subsystem_id) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001369 codec->subsystem_id =
Takashi Iwaid8193872012-08-31 07:54:38 -07001370 snd_hda_codec_read(codec, fg, 0,
Takashi Iwai0ba21762007-04-16 11:29:14 +02001371 AC_VERB_GET_SUBSYSTEM_ID, 0);
Takashi Iwai86284e42005-10-11 15:05:54 +02001372 }
1373
Takashi Iwai83012a72012-08-24 18:38:08 +02001374#ifdef CONFIG_PM
Takashi Iwaid8193872012-08-31 07:54:38 -07001375 codec->d3_stop_clk = snd_hda_codec_get_supported_ps(codec, fg,
Mengdong Linb8dfc4622012-08-23 17:32:30 +08001376 AC_PWRST_CLKSTOP);
Mengdong Lin5d6147f2012-08-24 12:06:30 +08001377#endif
Takashi Iwaid8193872012-08-31 07:54:38 -07001378 codec->epss = snd_hda_codec_get_supported_ps(codec, fg,
Takashi Iwai983f6b92012-08-28 09:18:01 -07001379 AC_PWRST_EPSS);
Mengdong Linb8dfc4622012-08-23 17:32:30 +08001380
Takashi Iwaibb6ac722009-03-13 09:02:42 +01001381 /* power-up all before initialization */
Takashi Iwaid8193872012-08-31 07:54:38 -07001382 hda_set_power_state(codec, AC_PWRST_D0);
Takashi Iwaibb6ac722009-03-13 09:02:42 +01001383
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001384 snd_hda_codec_proc_new(codec);
1385
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001386 snd_hda_create_hwdep(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001387
1388 sprintf(component, "HDA:%08x,%08x,%08x", codec->vendor_id,
1389 codec->subsystem_id, codec->revision_id);
Takashi Iwai6efdd852015-02-27 16:09:22 +01001390 snd_component_add(card, component);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001391
Takashi Iwai6efdd852015-02-27 16:09:22 +01001392 err = snd_device_new(card, SNDRV_DEV_CODEC, codec, &dev_ops);
Takashi Iwai2565c892014-02-19 11:41:09 +01001393 if (err < 0)
1394 goto error;
1395
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001396 if (codecp)
1397 *codecp = codec;
1398 return 0;
Takashi Iwai3be14142009-02-20 14:11:16 +01001399
1400 error:
1401 snd_hda_codec_free(codec);
1402 return err;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001403}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001404EXPORT_SYMBOL_GPL(snd_hda_codec_new);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001405
Takashi Iwai95a962c2014-10-29 16:03:58 +01001406/**
1407 * snd_hda_codec_update_widgets - Refresh widget caps and pin defaults
1408 * @codec: the HDA codec
1409 *
1410 * Forcibly refresh the all widget caps and the init pin configurations of
1411 * the given codec.
1412 */
Mengdong Lina15d05d2013-02-08 17:09:31 -05001413int snd_hda_codec_update_widgets(struct hda_codec *codec)
1414{
1415 hda_nid_t fg;
1416 int err;
1417
1418 /* Assume the function group node does not change,
1419 * only the widget nodes may change.
1420 */
1421 kfree(codec->wcaps);
1422 fg = codec->afg ? codec->afg : codec->mfg;
1423 err = read_widget_caps(codec, fg);
Takashi Iwaif4de8fe2015-02-27 16:17:18 +01001424 if (err < 0)
Mengdong Lina15d05d2013-02-08 17:09:31 -05001425 return err;
Mengdong Lina15d05d2013-02-08 17:09:31 -05001426
1427 snd_array_free(&codec->init_pins);
1428 err = read_pin_defaults(codec);
1429
1430 return err;
1431}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001432EXPORT_SYMBOL_GPL(snd_hda_codec_update_widgets);
Mengdong Lina15d05d2013-02-08 17:09:31 -05001433
Takashi Iwaied360812012-08-08 17:12:52 +02001434/* update the stream-id if changed */
1435static void update_pcm_stream_id(struct hda_codec *codec,
1436 struct hda_cvt_setup *p, hda_nid_t nid,
1437 u32 stream_tag, int channel_id)
1438{
1439 unsigned int oldval, newval;
1440
1441 if (p->stream_tag != stream_tag || p->channel_id != channel_id) {
1442 oldval = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0);
1443 newval = (stream_tag << 4) | channel_id;
1444 if (oldval != newval)
1445 snd_hda_codec_write(codec, nid, 0,
1446 AC_VERB_SET_CHANNEL_STREAMID,
1447 newval);
1448 p->stream_tag = stream_tag;
1449 p->channel_id = channel_id;
1450 }
1451}
1452
1453/* update the format-id if changed */
1454static void update_pcm_format(struct hda_codec *codec, struct hda_cvt_setup *p,
1455 hda_nid_t nid, int format)
1456{
1457 unsigned int oldval;
1458
1459 if (p->format_id != format) {
1460 oldval = snd_hda_codec_read(codec, nid, 0,
1461 AC_VERB_GET_STREAM_FORMAT, 0);
1462 if (oldval != format) {
1463 msleep(1);
1464 snd_hda_codec_write(codec, nid, 0,
1465 AC_VERB_SET_STREAM_FORMAT,
1466 format);
1467 }
1468 p->format_id = format;
1469 }
1470}
1471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472/**
1473 * snd_hda_codec_setup_stream - set up the codec for streaming
1474 * @codec: the CODEC to set up
1475 * @nid: the NID to set up
1476 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
1477 * @channel_id: channel id to pass, zero based.
1478 * @format: stream format.
1479 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001480void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
1481 u32 stream_tag,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 int channel_id, int format)
1483{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001484 struct hda_codec *c;
Takashi Iwaieb541332010-08-06 13:48:11 +02001485 struct hda_cvt_setup *p;
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001486 int type;
Takashi Iwaieb541332010-08-06 13:48:11 +02001487 int i;
1488
Takashi Iwai0ba21762007-04-16 11:29:14 +02001489 if (!nid)
Takashi Iwaid21b37e2005-04-20 13:45:55 +02001490 return;
1491
Takashi Iwai4e76a882014-02-25 12:21:03 +01001492 codec_dbg(codec,
1493 "hda_codec_setup_stream: NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
1494 nid, stream_tag, channel_id, format);
Takashi Iwaieb541332010-08-06 13:48:11 +02001495 p = get_hda_cvt_setup(codec, nid);
Takashi Iwai6c35ae32013-05-10 13:39:50 +02001496 if (!p)
Takashi Iwaieb541332010-08-06 13:48:11 +02001497 return;
Takashi Iwaied360812012-08-08 17:12:52 +02001498
1499 if (codec->pcm_format_first)
1500 update_pcm_format(codec, p, nid, format);
1501 update_pcm_stream_id(codec, p, nid, stream_tag, channel_id);
1502 if (!codec->pcm_format_first)
1503 update_pcm_format(codec, p, nid, format);
1504
Takashi Iwaieb541332010-08-06 13:48:11 +02001505 p->active = 1;
1506 p->dirty = 0;
1507
1508 /* make other inactive cvts with the same stream-tag dirty */
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001509 type = get_wcaps_type(get_wcaps(codec, nid));
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001510 list_for_each_entry(c, &codec->bus->codec_list, list) {
1511 for (i = 0; i < c->cvt_setups.used; i++) {
1512 p = snd_array_elem(&c->cvt_setups, i);
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001513 if (!p->active && p->stream_tag == stream_tag &&
David Henningsson54c2a892012-02-01 12:05:41 +01001514 get_wcaps_type(get_wcaps(c, p->nid)) == type)
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001515 p->dirty = 1;
1516 }
Takashi Iwaieb541332010-08-06 13:48:11 +02001517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001519EXPORT_SYMBOL_GPL(snd_hda_codec_setup_stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Takashi Iwaif0cea792010-08-13 11:56:53 +02001521static void really_cleanup_stream(struct hda_codec *codec,
1522 struct hda_cvt_setup *q);
1523
Takashi Iwaid5191e52009-11-16 14:58:17 +01001524/**
Takashi Iwaif0cea792010-08-13 11:56:53 +02001525 * __snd_hda_codec_cleanup_stream - clean up the codec for closing
Takashi Iwaid5191e52009-11-16 14:58:17 +01001526 * @codec: the CODEC to clean up
1527 * @nid: the NID to clean up
Takashi Iwaif0cea792010-08-13 11:56:53 +02001528 * @do_now: really clean up the stream instead of clearing the active flag
Takashi Iwaid5191e52009-11-16 14:58:17 +01001529 */
Takashi Iwaif0cea792010-08-13 11:56:53 +02001530void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid,
1531 int do_now)
Takashi Iwai888afa12008-03-18 09:57:50 +01001532{
Takashi Iwaieb541332010-08-06 13:48:11 +02001533 struct hda_cvt_setup *p;
1534
Takashi Iwai888afa12008-03-18 09:57:50 +01001535 if (!nid)
1536 return;
1537
Takashi Iwai0e7adbe2010-10-25 10:37:11 +02001538 if (codec->no_sticky_stream)
1539 do_now = 1;
1540
Takashi Iwai4e76a882014-02-25 12:21:03 +01001541 codec_dbg(codec, "hda_codec_cleanup_stream: NID=0x%x\n", nid);
Takashi Iwaieb541332010-08-06 13:48:11 +02001542 p = get_hda_cvt_setup(codec, nid);
Takashi Iwai6c35ae32013-05-10 13:39:50 +02001543 if (p) {
Takashi Iwaif0cea792010-08-13 11:56:53 +02001544 /* here we just clear the active flag when do_now isn't set;
1545 * actual clean-ups will be done later in
1546 * purify_inactive_streams() called from snd_hda_codec_prpapre()
1547 */
1548 if (do_now)
1549 really_cleanup_stream(codec, p);
1550 else
1551 p->active = 0;
1552 }
Takashi Iwai888afa12008-03-18 09:57:50 +01001553}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001554EXPORT_SYMBOL_GPL(__snd_hda_codec_cleanup_stream);
Takashi Iwai888afa12008-03-18 09:57:50 +01001555
Takashi Iwaieb541332010-08-06 13:48:11 +02001556static void really_cleanup_stream(struct hda_codec *codec,
1557 struct hda_cvt_setup *q)
1558{
1559 hda_nid_t nid = q->nid;
Takashi Iwai218264a2011-09-27 17:33:45 +02001560 if (q->stream_tag || q->channel_id)
1561 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
1562 if (q->format_id)
1563 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0
1564);
Takashi Iwaieb541332010-08-06 13:48:11 +02001565 memset(q, 0, sizeof(*q));
1566 q->nid = nid;
1567}
1568
1569/* clean up the all conflicting obsolete streams */
1570static void purify_inactive_streams(struct hda_codec *codec)
1571{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001572 struct hda_codec *c;
Takashi Iwaieb541332010-08-06 13:48:11 +02001573 int i;
1574
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001575 list_for_each_entry(c, &codec->bus->codec_list, list) {
1576 for (i = 0; i < c->cvt_setups.used; i++) {
1577 struct hda_cvt_setup *p;
1578 p = snd_array_elem(&c->cvt_setups, i);
1579 if (p->dirty)
1580 really_cleanup_stream(c, p);
1581 }
Takashi Iwaieb541332010-08-06 13:48:11 +02001582 }
1583}
1584
Takashi Iwai2a439522011-07-26 09:52:50 +02001585#ifdef CONFIG_PM
Takashi Iwaieb541332010-08-06 13:48:11 +02001586/* clean up all streams; called from suspend */
1587static void hda_cleanup_all_streams(struct hda_codec *codec)
1588{
1589 int i;
1590
1591 for (i = 0; i < codec->cvt_setups.used; i++) {
1592 struct hda_cvt_setup *p = snd_array_elem(&codec->cvt_setups, i);
1593 if (p->stream_tag)
1594 really_cleanup_stream(codec, p);
1595 }
1596}
Mike Waychison1c7276c2011-04-20 12:04:36 -07001597#endif
Takashi Iwaieb541332010-08-06 13:48:11 +02001598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599/*
1600 * amp access functions
1601 */
1602
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001603/* FIXME: more better hash key? */
Norberto Lopes28aedaf2010-02-28 20:16:53 +01001604#define HDA_HASH_KEY(nid, dir, idx) (u32)((nid) + ((idx) << 16) + ((dir) << 24))
Takashi Iwai1327a322009-03-23 13:07:47 +01001605#define HDA_HASH_PINCAP_KEY(nid) (u32)((nid) + (0x02 << 24))
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001606#define HDA_HASH_PARPCM_KEY(nid) (u32)((nid) + (0x03 << 24))
1607#define HDA_HASH_PARSTR_KEY(nid) (u32)((nid) + (0x04 << 24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608#define INFO_AMP_CAPS (1<<0)
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001609#define INFO_AMP_VOL(ch) (1 << (1 + (ch)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
1611/* initialize the hash table */
Takashi Iwai6a0f56a2012-12-07 07:41:56 +01001612static void init_hda_cache(struct hda_cache_rec *cache,
Takashi Iwai01751f52007-08-10 16:59:39 +02001613 unsigned int record_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614{
Takashi Iwai01751f52007-08-10 16:59:39 +02001615 memset(cache, 0, sizeof(*cache));
1616 memset(cache->hash, 0xff, sizeof(cache->hash));
Takashi Iwai603c4012008-07-30 15:01:44 +02001617 snd_array_init(&cache->buf, record_size, 64);
Takashi Iwai01751f52007-08-10 16:59:39 +02001618}
1619
Takashi Iwai1fcaee62007-08-23 00:01:09 +02001620static void free_hda_cache(struct hda_cache_rec *cache)
Takashi Iwai01751f52007-08-10 16:59:39 +02001621{
Takashi Iwai603c4012008-07-30 15:01:44 +02001622 snd_array_free(&cache->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623}
1624
1625/* query the hash. allocate an entry if not found. */
Takashi Iwaia68d5a52010-03-30 18:03:44 +02001626static struct hda_cache_head *get_hash(struct hda_cache_rec *cache, u32 key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627{
Takashi Iwai01751f52007-08-10 16:59:39 +02001628 u16 idx = key % (u16)ARRAY_SIZE(cache->hash);
1629 u16 cur = cache->hash[idx];
1630 struct hda_cache_head *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
1632 while (cur != 0xffff) {
Takashi Iwaif43aa022008-11-10 16:24:26 +01001633 info = snd_array_elem(&cache->buf, cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 if (info->key == key)
1635 return info;
1636 cur = info->next;
1637 }
Takashi Iwaia68d5a52010-03-30 18:03:44 +02001638 return NULL;
1639}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Takashi Iwaia68d5a52010-03-30 18:03:44 +02001641/* query the hash. allocate an entry if not found. */
1642static struct hda_cache_head *get_alloc_hash(struct hda_cache_rec *cache,
1643 u32 key)
1644{
1645 struct hda_cache_head *info = get_hash(cache, key);
1646 if (!info) {
1647 u16 idx, cur;
1648 /* add a new hash entry */
1649 info = snd_array_new(&cache->buf);
1650 if (!info)
1651 return NULL;
1652 cur = snd_array_index(&cache->buf, info);
1653 info->key = key;
1654 info->val = 0;
Takashi Iwaic370dd62012-12-13 18:30:04 +01001655 info->dirty = 0;
Takashi Iwaia68d5a52010-03-30 18:03:44 +02001656 idx = key % (u16)ARRAY_SIZE(cache->hash);
1657 info->next = cache->hash[idx];
1658 cache->hash[idx] = cur;
1659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 return info;
1661}
1662
Takashi Iwai01751f52007-08-10 16:59:39 +02001663/* query and allocate an amp hash entry */
1664static inline struct hda_amp_info *
1665get_alloc_amp_hash(struct hda_codec *codec, u32 key)
1666{
1667 return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key);
1668}
1669
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001670/* overwrite the value with the key in the caps hash */
1671static int write_caps_hash(struct hda_codec *codec, u32 key, unsigned int val)
1672{
1673 struct hda_amp_info *info;
1674
1675 mutex_lock(&codec->hash_mutex);
1676 info = get_alloc_amp_hash(codec, key);
1677 if (!info) {
1678 mutex_unlock(&codec->hash_mutex);
1679 return -EINVAL;
1680 }
1681 info->amp_caps = val;
1682 info->head.val |= INFO_AMP_CAPS;
1683 mutex_unlock(&codec->hash_mutex);
1684 return 0;
1685}
1686
1687/* query the value from the caps hash; if not found, fetch the current
1688 * value from the given function and store in the hash
1689 */
1690static unsigned int
1691query_caps_hash(struct hda_codec *codec, hda_nid_t nid, int dir, u32 key,
1692 unsigned int (*func)(struct hda_codec *, hda_nid_t, int))
1693{
1694 struct hda_amp_info *info;
1695 unsigned int val;
1696
1697 mutex_lock(&codec->hash_mutex);
1698 info = get_alloc_amp_hash(codec, key);
1699 if (!info) {
1700 mutex_unlock(&codec->hash_mutex);
1701 return 0;
1702 }
1703 if (!(info->head.val & INFO_AMP_CAPS)) {
1704 mutex_unlock(&codec->hash_mutex); /* for reentrance */
1705 val = func(codec, nid, dir);
1706 write_caps_hash(codec, key, val);
1707 } else {
1708 val = info->amp_caps;
1709 mutex_unlock(&codec->hash_mutex);
1710 }
1711 return val;
1712}
1713
1714static unsigned int read_amp_cap(struct hda_codec *codec, hda_nid_t nid,
1715 int direction)
1716{
1717 if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
1718 nid = codec->afg;
1719 return snd_hda_param_read(codec, nid,
1720 direction == HDA_OUTPUT ?
1721 AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP);
1722}
1723
Takashi Iwaid5191e52009-11-16 14:58:17 +01001724/**
1725 * query_amp_caps - query AMP capabilities
1726 * @codec: the HD-auio codec
1727 * @nid: the NID to query
1728 * @direction: either #HDA_INPUT or #HDA_OUTPUT
1729 *
1730 * Query AMP capabilities for the given widget and direction.
1731 * Returns the obtained capability bits.
1732 *
1733 * When cap bits have been already read, this doesn't read again but
1734 * returns the cached value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 */
Matthew Ranostay09a99952008-01-24 11:49:21 +01001736u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001738 return query_caps_hash(codec, nid, direction,
1739 HDA_HASH_KEY(nid, direction, 0),
1740 read_amp_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001742EXPORT_SYMBOL_GPL(query_amp_caps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
Takashi Iwaid5191e52009-11-16 14:58:17 +01001744/**
David Henningsson861a04e2014-09-23 10:38:17 +02001745 * snd_hda_check_amp_caps - query AMP capabilities
1746 * @codec: the HD-audio codec
1747 * @nid: the NID to query
1748 * @dir: either #HDA_INPUT or #HDA_OUTPUT
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001749 * @bits: bit mask to check the result
David Henningsson861a04e2014-09-23 10:38:17 +02001750 *
1751 * Check whether the widget has the given amp capability for the direction.
1752 */
1753bool snd_hda_check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
1754 int dir, unsigned int bits)
1755{
1756 if (!nid)
1757 return false;
1758 if (get_wcaps(codec, nid) & (1 << (dir + 1)))
1759 if (query_amp_caps(codec, nid, dir) & bits)
1760 return true;
1761 return false;
1762}
1763EXPORT_SYMBOL_GPL(snd_hda_check_amp_caps);
1764
1765/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01001766 * snd_hda_override_amp_caps - Override the AMP capabilities
1767 * @codec: the CODEC to clean up
1768 * @nid: the NID to clean up
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001769 * @dir: either #HDA_INPUT or #HDA_OUTPUT
Takashi Iwaid5191e52009-11-16 14:58:17 +01001770 * @caps: the capability bits to set
1771 *
1772 * Override the cached AMP caps bits value by the given one.
1773 * This function is useful if the driver needs to adjust the AMP ranges,
1774 * e.g. limit to 0dB, etc.
1775 *
1776 * Returns zero if successful or a negative error code.
1777 */
Takashi Iwai897cc182007-05-29 19:01:37 +02001778int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
1779 unsigned int caps)
1780{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001781 return write_caps_hash(codec, HDA_HASH_KEY(nid, dir, 0), caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001782}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001783EXPORT_SYMBOL_GPL(snd_hda_override_amp_caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001784
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001785static unsigned int read_pin_cap(struct hda_codec *codec, hda_nid_t nid,
1786 int dir)
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001787{
1788 return snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP);
1789}
1790
Takashi Iwaid5191e52009-11-16 14:58:17 +01001791/**
1792 * snd_hda_query_pin_caps - Query PIN capabilities
1793 * @codec: the HD-auio codec
1794 * @nid: the NID to query
1795 *
1796 * Query PIN capabilities for the given widget.
1797 * Returns the obtained capability bits.
1798 *
1799 * When cap bits have been already read, this doesn't read again but
1800 * returns the cached value.
1801 */
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001802u32 snd_hda_query_pin_caps(struct hda_codec *codec, hda_nid_t nid)
1803{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001804 return query_caps_hash(codec, nid, 0, HDA_HASH_PINCAP_KEY(nid),
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001805 read_pin_cap);
1806}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001807EXPORT_SYMBOL_GPL(snd_hda_query_pin_caps);
Takashi Iwai1327a322009-03-23 13:07:47 +01001808
Wu Fengguang864f92b2009-11-18 12:38:02 +08001809/**
Takashi Iwaif57c2562011-08-15 12:49:07 +02001810 * snd_hda_override_pin_caps - Override the pin capabilities
1811 * @codec: the CODEC
1812 * @nid: the NID to override
1813 * @caps: the capability bits to set
1814 *
1815 * Override the cached PIN capabilitiy bits value by the given one.
1816 *
1817 * Returns zero if successful or a negative error code.
1818 */
1819int snd_hda_override_pin_caps(struct hda_codec *codec, hda_nid_t nid,
1820 unsigned int caps)
1821{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001822 return write_caps_hash(codec, HDA_HASH_PINCAP_KEY(nid), caps);
Takashi Iwaif57c2562011-08-15 12:49:07 +02001823}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001824EXPORT_SYMBOL_GPL(snd_hda_override_pin_caps);
Takashi Iwaif57c2562011-08-15 12:49:07 +02001825
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001826/* read or sync the hash value with the current value;
1827 * call within hash_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 */
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001829static struct hda_amp_info *
1830update_amp_hash(struct hda_codec *codec, hda_nid_t nid, int ch,
Takashi Iwai280e57d2012-12-14 10:32:21 +01001831 int direction, int index, bool init_only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001833 struct hda_amp_info *info;
1834 unsigned int parm, val = 0;
1835 bool val_read = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001837 retry:
1838 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, index));
1839 if (!info)
1840 return NULL;
1841 if (!(info->head.val & INFO_AMP_VOL(ch))) {
1842 if (!val_read) {
1843 mutex_unlock(&codec->hash_mutex);
1844 parm = ch ? AC_AMP_GET_RIGHT : AC_AMP_GET_LEFT;
1845 parm |= direction == HDA_OUTPUT ?
1846 AC_AMP_GET_OUTPUT : AC_AMP_GET_INPUT;
1847 parm |= index;
1848 val = snd_hda_codec_read(codec, nid, 0,
Takashi Iwai0ba21762007-04-16 11:29:14 +02001849 AC_VERB_GET_AMP_GAIN_MUTE, parm);
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001850 val &= 0xff;
1851 val_read = true;
1852 mutex_lock(&codec->hash_mutex);
1853 goto retry;
1854 }
1855 info->vol[ch] = val;
1856 info->head.val |= INFO_AMP_VOL(ch);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001857 } else if (init_only)
1858 return NULL;
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001859 return info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860}
1861
1862/*
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001863 * write the current volume in info to the h/w
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 */
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01001865static void put_vol_mute(struct hda_codec *codec, unsigned int amp_caps,
Takashi Iwai0ba21762007-04-16 11:29:14 +02001866 hda_nid_t nid, int ch, int direction, int index,
1867 int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868{
1869 u32 parm;
1870
1871 parm = ch ? AC_AMP_SET_RIGHT : AC_AMP_SET_LEFT;
1872 parm |= direction == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT;
1873 parm |= index << AC_AMP_SET_INDEX_SHIFT;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01001874 if ((val & HDA_AMP_MUTE) && !(amp_caps & AC_AMPCAP_MUTE) &&
1875 (amp_caps & AC_AMPCAP_MIN_MUTE))
Takashi Iwai38681372012-02-27 15:00:58 +01001876 ; /* set the zero value as a fake mute */
1877 else
1878 parm |= val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, parm);
1880}
1881
Takashi Iwaid5191e52009-11-16 14:58:17 +01001882/**
1883 * snd_hda_codec_amp_read - Read AMP value
1884 * @codec: HD-audio codec
1885 * @nid: NID to read the AMP value
1886 * @ch: channel (left=0 or right=1)
1887 * @direction: #HDA_INPUT or #HDA_OUTPUT
1888 * @index: the index value (only for input direction)
1889 *
1890 * Read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 */
Takashi Iwai834be882006-03-01 14:16:17 +01001892int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch,
1893 int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001895 struct hda_amp_info *info;
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001896 unsigned int val = 0;
1897
1898 mutex_lock(&codec->hash_mutex);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001899 info = update_amp_hash(codec, nid, ch, direction, index, false);
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001900 if (info)
1901 val = info->vol[ch];
1902 mutex_unlock(&codec->hash_mutex);
1903 return val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001905EXPORT_SYMBOL_GPL(snd_hda_codec_amp_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Takashi Iwai280e57d2012-12-14 10:32:21 +01001907static int codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch,
1908 int direction, int idx, int mask, int val,
Takashi Iwai781c7b92015-02-20 10:26:25 +01001909 bool init_only, bool cache_only)
Takashi Iwai280e57d2012-12-14 10:32:21 +01001910{
1911 struct hda_amp_info *info;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01001912 unsigned int caps;
Takashi Iwai280e57d2012-12-14 10:32:21 +01001913
1914 if (snd_BUG_ON(mask & ~0xff))
1915 mask &= 0xff;
1916 val &= mask;
1917
1918 mutex_lock(&codec->hash_mutex);
1919 info = update_amp_hash(codec, nid, ch, direction, idx, init_only);
1920 if (!info) {
1921 mutex_unlock(&codec->hash_mutex);
1922 return 0;
1923 }
1924 val |= info->vol[ch] & ~mask;
1925 if (info->vol[ch] == val) {
1926 mutex_unlock(&codec->hash_mutex);
1927 return 0;
1928 }
1929 info->vol[ch] = val;
Takashi Iwai781c7b92015-02-20 10:26:25 +01001930 info->head.dirty |= cache_only;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01001931 caps = info->amp_caps;
Takashi Iwai280e57d2012-12-14 10:32:21 +01001932 mutex_unlock(&codec->hash_mutex);
Takashi Iwaide1e37b2012-12-20 11:00:21 +01001933 if (!cache_only)
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01001934 put_vol_mute(codec, caps, nid, ch, direction, idx, val);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001935 return 1;
1936}
1937
Takashi Iwaid5191e52009-11-16 14:58:17 +01001938/**
1939 * snd_hda_codec_amp_update - update the AMP value
1940 * @codec: HD-audio codec
1941 * @nid: NID to read the AMP value
1942 * @ch: channel (left=0 or right=1)
1943 * @direction: #HDA_INPUT or #HDA_OUTPUT
1944 * @idx: the index value (only for input direction)
1945 * @mask: bit mask to set
1946 * @val: the bits value to set
1947 *
1948 * Update the AMP value with a bit mask.
1949 * Returns 0 if the value is unchanged, 1 if changed.
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001950 */
Takashi Iwai834be882006-03-01 14:16:17 +01001951int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch,
1952 int direction, int idx, int mask, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953{
Takashi Iwai781c7b92015-02-20 10:26:25 +01001954 return codec_amp_update(codec, nid, ch, direction, idx, mask, val,
1955 false, codec->cached_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001957EXPORT_SYMBOL_GPL(snd_hda_codec_amp_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Takashi Iwaid5191e52009-11-16 14:58:17 +01001959/**
1960 * snd_hda_codec_amp_stereo - update the AMP stereo values
1961 * @codec: HD-audio codec
1962 * @nid: NID to read the AMP value
1963 * @direction: #HDA_INPUT or #HDA_OUTPUT
1964 * @idx: the index value (only for input direction)
1965 * @mask: bit mask to set
1966 * @val: the bits value to set
1967 *
1968 * Update the AMP values like snd_hda_codec_amp_update(), but for a
1969 * stereo widget with the same mask and value.
Takashi Iwai47fd8302007-08-10 17:11:07 +02001970 */
1971int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
1972 int direction, int idx, int mask, int val)
1973{
1974 int ch, ret = 0;
Takashi Iwai467126462010-03-29 09:19:38 +02001975
1976 if (snd_BUG_ON(mask & ~0xff))
1977 mask &= 0xff;
Takashi Iwai47fd8302007-08-10 17:11:07 +02001978 for (ch = 0; ch < 2; ch++)
1979 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
1980 idx, mask, val);
1981 return ret;
1982}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001983EXPORT_SYMBOL_GPL(snd_hda_codec_amp_stereo);
Takashi Iwai47fd8302007-08-10 17:11:07 +02001984
Takashi Iwai95a962c2014-10-29 16:03:58 +01001985/**
1986 * snd_hda_codec_amp_init - initialize the AMP value
1987 * @codec: the HDA codec
1988 * @nid: NID to read the AMP value
1989 * @ch: channel (left=0 or right=1)
1990 * @dir: #HDA_INPUT or #HDA_OUTPUT
1991 * @idx: the index value (only for input direction)
1992 * @mask: bit mask to set
1993 * @val: the bits value to set
1994 *
1995 * Works like snd_hda_codec_amp_update() but it writes the value only at
Takashi Iwai280e57d2012-12-14 10:32:21 +01001996 * the first access. If the amp was already initialized / updated beforehand,
1997 * this does nothing.
1998 */
1999int snd_hda_codec_amp_init(struct hda_codec *codec, hda_nid_t nid, int ch,
2000 int dir, int idx, int mask, int val)
2001{
Takashi Iwai781c7b92015-02-20 10:26:25 +01002002 return codec_amp_update(codec, nid, ch, dir, idx, mask, val, true,
2003 codec->cached_write);
Takashi Iwai280e57d2012-12-14 10:32:21 +01002004}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002005EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init);
Takashi Iwai280e57d2012-12-14 10:32:21 +01002006
Takashi Iwai95a962c2014-10-29 16:03:58 +01002007/**
2008 * snd_hda_codec_amp_init_stereo - initialize the stereo AMP value
2009 * @codec: the HDA codec
2010 * @nid: NID to read the AMP value
2011 * @dir: #HDA_INPUT or #HDA_OUTPUT
2012 * @idx: the index value (only for input direction)
2013 * @mask: bit mask to set
2014 * @val: the bits value to set
2015 *
2016 * Call snd_hda_codec_amp_init() for both stereo channels.
2017 */
Takashi Iwai280e57d2012-12-14 10:32:21 +01002018int snd_hda_codec_amp_init_stereo(struct hda_codec *codec, hda_nid_t nid,
2019 int dir, int idx, int mask, int val)
2020{
2021 int ch, ret = 0;
2022
2023 if (snd_BUG_ON(mask & ~0xff))
2024 mask &= 0xff;
2025 for (ch = 0; ch < 2; ch++)
2026 ret |= snd_hda_codec_amp_init(codec, nid, ch, dir,
2027 idx, mask, val);
2028 return ret;
2029}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002030EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init_stereo);
Takashi Iwai280e57d2012-12-14 10:32:21 +01002031
Takashi Iwaid5191e52009-11-16 14:58:17 +01002032/**
2033 * snd_hda_codec_resume_amp - Resume all AMP commands from the cache
2034 * @codec: HD-audio codec
2035 *
2036 * Resume the all amp commands from the cache.
2037 */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002038void snd_hda_codec_resume_amp(struct hda_codec *codec)
2039{
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002040 int i;
2041
Takashi Iwaic370dd62012-12-13 18:30:04 +01002042 mutex_lock(&codec->hash_mutex);
Takashi Iwaiaa88a352012-12-20 11:02:00 +01002043 codec->cached_write = 0;
Takashi Iwaic370dd62012-12-13 18:30:04 +01002044 for (i = 0; i < codec->amp_cache.buf.used; i++) {
2045 struct hda_amp_info *buffer;
2046 u32 key;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002047 hda_nid_t nid;
2048 unsigned int idx, dir, ch;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01002049 struct hda_amp_info info;
Takashi Iwaic370dd62012-12-13 18:30:04 +01002050
2051 buffer = snd_array_elem(&codec->amp_cache.buf, i);
Takashi Iwai8565f052012-12-20 12:54:18 +01002052 if (!buffer->head.dirty)
2053 continue;
2054 buffer->head.dirty = 0;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01002055 info = *buffer;
2056 key = info.head.key;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002057 if (!key)
2058 continue;
2059 nid = key & 0xff;
2060 idx = (key >> 16) & 0xff;
2061 dir = (key >> 24) & 0xff;
2062 for (ch = 0; ch < 2; ch++) {
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01002063 if (!(info.head.val & INFO_AMP_VOL(ch)))
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002064 continue;
Takashi Iwaic370dd62012-12-13 18:30:04 +01002065 mutex_unlock(&codec->hash_mutex);
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01002066 put_vol_mute(codec, info.amp_caps, nid, ch, dir, idx,
2067 info.vol[ch]);
Takashi Iwaic370dd62012-12-13 18:30:04 +01002068 mutex_lock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002069 }
2070 }
Takashi Iwaic370dd62012-12-13 18:30:04 +01002071 mutex_unlock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002072}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002073EXPORT_SYMBOL_GPL(snd_hda_codec_resume_amp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02002075static u32 get_amp_max_value(struct hda_codec *codec, hda_nid_t nid, int dir,
2076 unsigned int ofs)
2077{
2078 u32 caps = query_amp_caps(codec, nid, dir);
2079 /* get num steps */
2080 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
2081 if (ofs < caps)
2082 caps -= ofs;
2083 return caps;
2084}
2085
Takashi Iwaid5191e52009-11-16 14:58:17 +01002086/**
2087 * snd_hda_mixer_amp_volume_info - Info callback for a standard AMP mixer
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002088 * @kcontrol: referred ctl element
2089 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002090 *
2091 * The control element is supposed to have the private_value field
2092 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2093 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002094int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
2095 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096{
2097 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2098 u16 nid = get_amp_nid(kcontrol);
2099 u8 chs = get_amp_channels(kcontrol);
2100 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002101 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02002103 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2104 uinfo->count = chs == 3 ? 2 : 1;
2105 uinfo->value.integer.min = 0;
2106 uinfo->value.integer.max = get_amp_max_value(codec, nid, dir, ofs);
2107 if (!uinfo->value.integer.max) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01002108 codec_warn(codec,
2109 "num_steps = 0 for NID=0x%x (ctl = %s)\n",
2110 nid, kcontrol->id.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 return -EINVAL;
2112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 return 0;
2114}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002115EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002117
2118static inline unsigned int
2119read_amp_value(struct hda_codec *codec, hda_nid_t nid,
2120 int ch, int dir, int idx, unsigned int ofs)
2121{
2122 unsigned int val;
2123 val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx);
2124 val &= HDA_AMP_VOLMASK;
2125 if (val >= ofs)
2126 val -= ofs;
2127 else
2128 val = 0;
2129 return val;
2130}
2131
2132static inline int
2133update_amp_value(struct hda_codec *codec, hda_nid_t nid,
2134 int ch, int dir, int idx, unsigned int ofs,
2135 unsigned int val)
2136{
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02002137 unsigned int maxval;
2138
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002139 if (val > 0)
2140 val += ofs;
Takashi Iwai7ccc3ef2010-07-26 17:00:15 +02002141 /* ofs = 0: raw max value */
2142 maxval = get_amp_max_value(codec, nid, dir, 0);
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02002143 if (val > maxval)
2144 val = maxval;
Takashi Iwai781c7b92015-02-20 10:26:25 +01002145 return codec_amp_update(codec, nid, ch, dir, idx, HDA_AMP_VOLMASK, val,
2146 false, !hda_codec_is_power_on(codec));
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002147}
2148
Takashi Iwaid5191e52009-11-16 14:58:17 +01002149/**
2150 * snd_hda_mixer_amp_volume_get - Get callback for a standard AMP mixer volume
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002151 * @kcontrol: ctl element
2152 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002153 *
2154 * The control element is supposed to have the private_value field
2155 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2156 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002157int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
2158 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159{
2160 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2161 hda_nid_t nid = get_amp_nid(kcontrol);
2162 int chs = get_amp_channels(kcontrol);
2163 int dir = get_amp_direction(kcontrol);
2164 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002165 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 long *valp = ucontrol->value.integer.value;
2167
2168 if (chs & 1)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002169 *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002171 *valp = read_amp_value(codec, nid, 1, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 return 0;
2173}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002174EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Takashi Iwaid5191e52009-11-16 14:58:17 +01002176/**
2177 * snd_hda_mixer_amp_volume_put - Put callback for a standard AMP mixer volume
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002178 * @kcontrol: ctl element
2179 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002180 *
2181 * The control element is supposed to have the private_value field
2182 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2183 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002184int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
2185 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186{
2187 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2188 hda_nid_t nid = get_amp_nid(kcontrol);
2189 int chs = get_amp_channels(kcontrol);
2190 int dir = get_amp_direction(kcontrol);
2191 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002192 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 long *valp = ucontrol->value.integer.value;
2194 int change = 0;
2195
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002196 if (chs & 1) {
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002197 change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002198 valp++;
2199 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02002200 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002201 change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 return change;
2203}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002204EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Takashi Iwaid5191e52009-11-16 14:58:17 +01002206/**
2207 * snd_hda_mixer_amp_volume_put - TLV callback for a standard AMP mixer volume
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002208 * @kcontrol: ctl element
2209 * @op_flag: operation flag
2210 * @size: byte size of input TLV
2211 * @_tlv: TLV data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002212 *
2213 * The control element is supposed to have the private_value field
2214 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2215 */
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02002216int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
2217 unsigned int size, unsigned int __user *_tlv)
2218{
2219 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2220 hda_nid_t nid = get_amp_nid(kcontrol);
2221 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002222 unsigned int ofs = get_amp_offset(kcontrol);
Clemens Ladischde8c85f2010-10-15 10:32:50 +02002223 bool min_mute = get_amp_min_mute(kcontrol);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02002224 u32 caps, val1, val2;
2225
2226 if (size < 4 * sizeof(unsigned int))
2227 return -ENOMEM;
2228 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002229 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
2230 val2 = (val2 + 1) * 25;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02002231 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002232 val1 += ofs;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02002233 val1 = ((int)val1) * ((int)val2);
Takashi Iwai38681372012-02-27 15:00:58 +01002234 if (min_mute || (caps & AC_AMPCAP_MIN_MUTE))
Takashi Iwaic08d9162010-10-17 10:40:53 +02002235 val2 |= TLV_DB_SCALE_MUTE;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02002236 if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv))
2237 return -EFAULT;
2238 if (put_user(2 * sizeof(unsigned int), _tlv + 1))
2239 return -EFAULT;
2240 if (put_user(val1, _tlv + 2))
2241 return -EFAULT;
2242 if (put_user(val2, _tlv + 3))
2243 return -EFAULT;
2244 return 0;
2245}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002246EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_tlv);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02002247
Takashi Iwaid5191e52009-11-16 14:58:17 +01002248/**
2249 * snd_hda_set_vmaster_tlv - Set TLV for a virtual master control
2250 * @codec: HD-audio codec
2251 * @nid: NID of a reference widget
2252 * @dir: #HDA_INPUT or #HDA_OUTPUT
2253 * @tlv: TLV data to be stored, at least 4 elements
2254 *
2255 * Set (static) TLV data for a virtual master volume using the AMP caps
2256 * obtained from the reference NID.
2257 * The volume range is recalculated as if the max volume is 0dB.
Takashi Iwai2134ea42008-01-10 16:53:55 +01002258 */
2259void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
2260 unsigned int *tlv)
2261{
2262 u32 caps;
2263 int nums, step;
2264
2265 caps = query_amp_caps(codec, nid, dir);
2266 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
2267 step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
2268 step = (step + 1) * 25;
2269 tlv[0] = SNDRV_CTL_TLVT_DB_SCALE;
2270 tlv[1] = 2 * sizeof(unsigned int);
2271 tlv[2] = -nums * step;
2272 tlv[3] = step;
2273}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002274EXPORT_SYMBOL_GPL(snd_hda_set_vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01002275
2276/* find a mixer control element with the given name */
Takashi Iwai09f99702008-02-04 12:31:13 +01002277static struct snd_kcontrol *
Takashi Iwaidcda5802012-10-12 17:24:51 +02002278find_mixer_ctl(struct hda_codec *codec, const char *name, int dev, int idx)
Takashi Iwai2134ea42008-01-10 16:53:55 +01002279{
2280 struct snd_ctl_elem_id id;
2281 memset(&id, 0, sizeof(id));
2282 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Takashi Iwaidcda5802012-10-12 17:24:51 +02002283 id.device = dev;
Takashi Iwai09f99702008-02-04 12:31:13 +01002284 id.index = idx;
Takashi Iwai18cb7102009-04-16 10:22:24 +02002285 if (snd_BUG_ON(strlen(name) >= sizeof(id.name)))
2286 return NULL;
Takashi Iwai2134ea42008-01-10 16:53:55 +01002287 strcpy(id.name, name);
Takashi Iwai6efdd852015-02-27 16:09:22 +01002288 return snd_ctl_find_id(codec->card, &id);
Takashi Iwai2134ea42008-01-10 16:53:55 +01002289}
2290
Takashi Iwaid5191e52009-11-16 14:58:17 +01002291/**
2292 * snd_hda_find_mixer_ctl - Find a mixer control element with the given name
2293 * @codec: HD-audio codec
2294 * @name: ctl id name string
2295 *
2296 * Get the control element with the given id string and IFACE_MIXER.
2297 */
Takashi Iwai09f99702008-02-04 12:31:13 +01002298struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
2299 const char *name)
2300{
Takashi Iwaidcda5802012-10-12 17:24:51 +02002301 return find_mixer_ctl(codec, name, 0, 0);
Takashi Iwai09f99702008-02-04 12:31:13 +01002302}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002303EXPORT_SYMBOL_GPL(snd_hda_find_mixer_ctl);
Takashi Iwai09f99702008-02-04 12:31:13 +01002304
Takashi Iwaidcda5802012-10-12 17:24:51 +02002305static int find_empty_mixer_ctl_idx(struct hda_codec *codec, const char *name,
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002306 int start_idx)
Takashi Iwai1afe2062010-12-23 10:17:52 +01002307{
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002308 int i, idx;
2309 /* 16 ctlrs should be large enough */
2310 for (i = 0, idx = start_idx; i < 16; i++, idx++) {
2311 if (!find_mixer_ctl(codec, name, 0, idx))
Takashi Iwai1afe2062010-12-23 10:17:52 +01002312 return idx;
2313 }
2314 return -EBUSY;
2315}
2316
Takashi Iwaid5191e52009-11-16 14:58:17 +01002317/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002318 * snd_hda_ctl_add - Add a control element and assign to the codec
Takashi Iwaid5191e52009-11-16 14:58:17 +01002319 * @codec: HD-audio codec
2320 * @nid: corresponding NID (optional)
2321 * @kctl: the control element to assign
2322 *
2323 * Add the given control element to an array inside the codec instance.
2324 * All control elements belonging to a codec are supposed to be added
2325 * by this function so that a proper clean-up works at the free or
2326 * reconfiguration time.
2327 *
2328 * If non-zero @nid is passed, the NID is assigned to the control element.
2329 * The assignment is shown in the codec proc file.
2330 *
2331 * snd_hda_ctl_add() checks the control subdev id field whether
2332 * #HDA_SUBDEV_NID_FLAG bit is set. If set (and @nid is zero), the lower
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002333 * bits value is taken as the NID to assign. The #HDA_NID_ITEM_AMP bit
2334 * specifies if kctl->private_value is a HDA amplifier value.
Takashi Iwaid5191e52009-11-16 14:58:17 +01002335 */
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002336int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid,
2337 struct snd_kcontrol *kctl)
Takashi Iwaid13bd412008-07-30 15:01:45 +02002338{
2339 int err;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002340 unsigned short flags = 0;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002341 struct hda_nid_item *item;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002342
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002343 if (kctl->id.subdevice & HDA_SUBDEV_AMP_FLAG) {
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002344 flags |= HDA_NID_ITEM_AMP;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002345 if (nid == 0)
2346 nid = get_amp_nid_(kctl->private_value);
2347 }
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002348 if ((kctl->id.subdevice & HDA_SUBDEV_NID_FLAG) != 0 && nid == 0)
2349 nid = kctl->id.subdevice & 0xffff;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002350 if (kctl->id.subdevice & (HDA_SUBDEV_NID_FLAG|HDA_SUBDEV_AMP_FLAG))
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01002351 kctl->id.subdevice = 0;
Takashi Iwai6efdd852015-02-27 16:09:22 +01002352 err = snd_ctl_add(codec->card, kctl);
Takashi Iwaid13bd412008-07-30 15:01:45 +02002353 if (err < 0)
2354 return err;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002355 item = snd_array_new(&codec->mixers);
2356 if (!item)
Takashi Iwaid13bd412008-07-30 15:01:45 +02002357 return -ENOMEM;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002358 item->kctl = kctl;
2359 item->nid = nid;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002360 item->flags = flags;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002361 return 0;
2362}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002363EXPORT_SYMBOL_GPL(snd_hda_ctl_add);
Takashi Iwaid13bd412008-07-30 15:01:45 +02002364
Takashi Iwaid5191e52009-11-16 14:58:17 +01002365/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002366 * snd_hda_add_nid - Assign a NID to a control element
2367 * @codec: HD-audio codec
2368 * @nid: corresponding NID (optional)
2369 * @kctl: the control element to assign
2370 * @index: index to kctl
2371 *
2372 * Add the given control element to an array inside the codec instance.
2373 * This function is used when #snd_hda_ctl_add cannot be used for 1:1
2374 * NID:KCTL mapping - for example "Capture Source" selector.
2375 */
2376int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl,
2377 unsigned int index, hda_nid_t nid)
2378{
2379 struct hda_nid_item *item;
2380
2381 if (nid > 0) {
2382 item = snd_array_new(&codec->nids);
2383 if (!item)
2384 return -ENOMEM;
2385 item->kctl = kctl;
2386 item->index = index;
2387 item->nid = nid;
2388 return 0;
2389 }
Takashi Iwai4e76a882014-02-25 12:21:03 +01002390 codec_err(codec, "no NID for mapping control %s:%d:%d\n",
2391 kctl->id.name, kctl->id.index, index);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002392 return -EINVAL;
2393}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002394EXPORT_SYMBOL_GPL(snd_hda_add_nid);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002395
2396/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01002397 * snd_hda_ctls_clear - Clear all controls assigned to the given codec
2398 * @codec: HD-audio codec
2399 */
Takashi Iwaid13bd412008-07-30 15:01:45 +02002400void snd_hda_ctls_clear(struct hda_codec *codec)
2401{
2402 int i;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002403 struct hda_nid_item *items = codec->mixers.list;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002404 for (i = 0; i < codec->mixers.used; i++)
Takashi Iwai6efdd852015-02-27 16:09:22 +01002405 snd_ctl_remove(codec->card, items[i].kctl);
Takashi Iwaid13bd412008-07-30 15:01:45 +02002406 snd_array_free(&codec->mixers);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002407 snd_array_free(&codec->nids);
Takashi Iwaid13bd412008-07-30 15:01:45 +02002408}
2409
Takashi Iwai95a962c2014-10-29 16:03:58 +01002410/**
2411 * snd_hda_lock_devices - pseudo device locking
2412 * @bus: the BUS
2413 *
Takashi Iwaia65d6292009-02-23 16:57:04 +01002414 * toggle card->shutdown to allow/disallow the device access (as a hack)
2415 */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002416int snd_hda_lock_devices(struct hda_bus *bus)
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002417{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002418 struct snd_card *card = bus->card;
2419 struct hda_codec *codec;
2420
Takashi Iwaia65d6292009-02-23 16:57:04 +01002421 spin_lock(&card->files_lock);
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002422 if (card->shutdown)
2423 goto err_unlock;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002424 card->shutdown = 1;
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002425 if (!list_empty(&card->ctl_files))
2426 goto err_clear;
2427
2428 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01002429 struct hda_pcm *cpcm;
2430 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002431 if (!cpcm->pcm)
2432 continue;
2433 if (cpcm->pcm->streams[0].substream_opened ||
2434 cpcm->pcm->streams[1].substream_opened)
2435 goto err_clear;
2436 }
2437 }
Takashi Iwaia65d6292009-02-23 16:57:04 +01002438 spin_unlock(&card->files_lock);
2439 return 0;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002440
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002441 err_clear:
2442 card->shutdown = 0;
2443 err_unlock:
2444 spin_unlock(&card->files_lock);
2445 return -EINVAL;
2446}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002447EXPORT_SYMBOL_GPL(snd_hda_lock_devices);
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002448
Takashi Iwai95a962c2014-10-29 16:03:58 +01002449/**
2450 * snd_hda_unlock_devices - pseudo device unlocking
2451 * @bus: the BUS
2452 */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002453void snd_hda_unlock_devices(struct hda_bus *bus)
Takashi Iwaia65d6292009-02-23 16:57:04 +01002454{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002455 struct snd_card *card = bus->card;
2456
2457 card = bus->card;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002458 spin_lock(&card->files_lock);
2459 card->shutdown = 0;
2460 spin_unlock(&card->files_lock);
2461}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002462EXPORT_SYMBOL_GPL(snd_hda_unlock_devices);
Takashi Iwaia65d6292009-02-23 16:57:04 +01002463
Takashi Iwaid5191e52009-11-16 14:58:17 +01002464/**
2465 * snd_hda_codec_reset - Clear all objects assigned to the codec
2466 * @codec: HD-audio codec
2467 *
2468 * This frees the all PCM and control elements assigned to the codec, and
2469 * clears the caches and restores the pin default configurations.
2470 *
2471 * When a device is being used, it returns -EBSY. If successfully freed,
2472 * returns zero.
2473 */
Takashi Iwaia65d6292009-02-23 16:57:04 +01002474int snd_hda_codec_reset(struct hda_codec *codec)
2475{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002476 struct hda_bus *bus = codec->bus;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002477
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002478 if (snd_hda_lock_devices(bus) < 0)
Takashi Iwaia65d6292009-02-23 16:57:04 +01002479 return -EBUSY;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002480
2481 /* OK, let it free */
David Henningsson26a6cb62012-10-09 15:04:21 +02002482 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002483 flush_workqueue(bus->workq);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002484 snd_hda_ctls_clear(codec);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01002485 codec_release_pcms(codec);
Takashi Iwaid604b392014-02-28 13:42:09 +01002486 snd_hda_detach_beep_device(codec);
Takashi Iwaid8a766a2015-02-17 15:25:37 +01002487 if (device_is_registered(hda_codec_dev(codec)))
2488 device_del(hda_codec_dev(codec));
2489
Takashi Iwai07dc59f2012-09-10 09:39:31 +02002490 memset(&codec->patch_ops, 0, sizeof(codec->patch_ops));
Takashi Iwai1835a0f2011-10-27 22:12:46 +02002491 snd_hda_jack_tbl_clear(codec);
Takashi Iwai56d17712008-11-28 14:36:23 +01002492 codec->proc_widget_hook = NULL;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002493 codec->spec = NULL;
2494 free_hda_cache(&codec->amp_cache);
2495 free_hda_cache(&codec->cmd_cache);
Takashi Iwai827057f2008-12-19 10:12:02 +01002496 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
2497 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Takashi Iwai346ff702009-02-23 09:42:57 +01002498 /* free only driver_pins so that init_pins + user_pins are restored */
2499 snd_array_free(&codec->driver_pins);
Takashi Iwai09a60712012-06-26 15:01:33 +02002500 snd_array_free(&codec->cvt_setups);
2501 snd_array_free(&codec->spdif_out);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +01002502 snd_array_free(&codec->verbs);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002503 codec->preset = NULL;
Takashi Iwaid1f1af22009-03-02 10:35:29 +01002504 codec->slave_dig_outs = NULL;
2505 codec->spdif_status_reset = 0;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002506
2507 /* allow device access again */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002508 snd_hda_unlock_devices(bus);
Takashi Iwaia65d6292009-02-23 16:57:04 +01002509 return 0;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002510}
2511
Takashi Iwai6194b992014-06-06 18:12:16 +02002512typedef int (*map_slave_func_t)(struct hda_codec *, void *, struct snd_kcontrol *);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002513
2514/* apply the function to all matching slave ctls in the mixer list */
2515static int map_slaves(struct hda_codec *codec, const char * const *slaves,
Takashi Iwai9322ca52012-02-03 14:28:01 +01002516 const char *suffix, map_slave_func_t func, void *data)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002517{
2518 struct hda_nid_item *items;
2519 const char * const *s;
2520 int i, err;
2521
2522 items = codec->mixers.list;
2523 for (i = 0; i < codec->mixers.used; i++) {
2524 struct snd_kcontrol *sctl = items[i].kctl;
Takashi Iwaica16ec02013-10-28 12:00:35 +01002525 if (!sctl || sctl->id.iface != SNDRV_CTL_ELEM_IFACE_MIXER)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002526 continue;
2527 for (s = slaves; *s; s++) {
Takashi Iwai9322ca52012-02-03 14:28:01 +01002528 char tmpname[sizeof(sctl->id.name)];
2529 const char *name = *s;
2530 if (suffix) {
2531 snprintf(tmpname, sizeof(tmpname), "%s %s",
2532 name, suffix);
2533 name = tmpname;
2534 }
Takashi Iwai9322ca52012-02-03 14:28:01 +01002535 if (!strcmp(sctl->id.name, name)) {
Takashi Iwai6194b992014-06-06 18:12:16 +02002536 err = func(codec, data, sctl);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002537 if (err)
2538 return err;
2539 break;
2540 }
2541 }
2542 }
2543 return 0;
2544}
2545
Takashi Iwai6194b992014-06-06 18:12:16 +02002546static int check_slave_present(struct hda_codec *codec,
2547 void *data, struct snd_kcontrol *sctl)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002548{
2549 return 1;
2550}
2551
Takashi Iwai18478e82012-03-09 17:51:10 +01002552/* guess the value corresponding to 0dB */
Takashi Iwai6194b992014-06-06 18:12:16 +02002553static int get_kctl_0dB_offset(struct hda_codec *codec,
2554 struct snd_kcontrol *kctl, int *step_to_check)
Takashi Iwai18478e82012-03-09 17:51:10 +01002555{
2556 int _tlv[4];
2557 const int *tlv = NULL;
2558 int val = -1;
2559
2560 if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
2561 /* FIXME: set_fs() hack for obtaining user-space TLV data */
2562 mm_segment_t fs = get_fs();
2563 set_fs(get_ds());
2564 if (!kctl->tlv.c(kctl, 0, sizeof(_tlv), _tlv))
2565 tlv = _tlv;
2566 set_fs(fs);
2567 } else if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_READ)
2568 tlv = kctl->tlv.p;
Takashi Iwaia4e7a122013-11-04 15:44:09 +01002569 if (tlv && tlv[0] == SNDRV_CTL_TLVT_DB_SCALE) {
2570 int step = tlv[3];
2571 step &= ~TLV_DB_SCALE_MUTE;
2572 if (!step)
2573 return -1;
Takashi Iwai485e3e02013-11-04 15:51:00 +01002574 if (*step_to_check && *step_to_check != step) {
Takashi Iwai6194b992014-06-06 18:12:16 +02002575 codec_err(codec, "Mismatching dB step for vmaster slave (%d!=%d)\n",
Takashi Iwai4e76a882014-02-25 12:21:03 +01002576- *step_to_check, step);
Takashi Iwai485e3e02013-11-04 15:51:00 +01002577 return -1;
2578 }
2579 *step_to_check = step;
Takashi Iwaia4e7a122013-11-04 15:44:09 +01002580 val = -tlv[2] / step;
2581 }
Takashi Iwai18478e82012-03-09 17:51:10 +01002582 return val;
2583}
2584
2585/* call kctl->put with the given value(s) */
2586static int put_kctl_with_value(struct snd_kcontrol *kctl, int val)
2587{
2588 struct snd_ctl_elem_value *ucontrol;
2589 ucontrol = kzalloc(sizeof(*ucontrol), GFP_KERNEL);
2590 if (!ucontrol)
2591 return -ENOMEM;
2592 ucontrol->value.integer.value[0] = val;
2593 ucontrol->value.integer.value[1] = val;
2594 kctl->put(kctl, ucontrol);
2595 kfree(ucontrol);
2596 return 0;
2597}
2598
2599/* initialize the slave volume with 0dB */
Takashi Iwai6194b992014-06-06 18:12:16 +02002600static int init_slave_0dB(struct hda_codec *codec,
2601 void *data, struct snd_kcontrol *slave)
Takashi Iwai18478e82012-03-09 17:51:10 +01002602{
Takashi Iwai6194b992014-06-06 18:12:16 +02002603 int offset = get_kctl_0dB_offset(codec, slave, data);
Takashi Iwai18478e82012-03-09 17:51:10 +01002604 if (offset > 0)
2605 put_kctl_with_value(slave, offset);
2606 return 0;
2607}
2608
2609/* unmute the slave */
Takashi Iwai6194b992014-06-06 18:12:16 +02002610static int init_slave_unmute(struct hda_codec *codec,
2611 void *data, struct snd_kcontrol *slave)
Takashi Iwai18478e82012-03-09 17:51:10 +01002612{
2613 return put_kctl_with_value(slave, 1);
2614}
2615
Takashi Iwaie8750942014-06-30 14:02:39 +02002616static int add_slave(struct hda_codec *codec,
2617 void *data, struct snd_kcontrol *slave)
2618{
2619 return snd_ctl_add_slave(data, slave);
2620}
2621
Takashi Iwaid5191e52009-11-16 14:58:17 +01002622/**
Takashi Iwai95a962c2014-10-29 16:03:58 +01002623 * __snd_hda_add_vmaster - create a virtual master control and add slaves
Takashi Iwaid5191e52009-11-16 14:58:17 +01002624 * @codec: HD-audio codec
2625 * @name: vmaster control name
2626 * @tlv: TLV data (optional)
2627 * @slaves: slave control names (optional)
Takashi Iwai9322ca52012-02-03 14:28:01 +01002628 * @suffix: suffix string to each slave name (optional)
Takashi Iwai18478e82012-03-09 17:51:10 +01002629 * @init_slave_vol: initialize slaves to unmute/0dB
Takashi Iwai29e58532012-03-12 12:25:03 +01002630 * @ctl_ret: store the vmaster kcontrol in return
Takashi Iwaid5191e52009-11-16 14:58:17 +01002631 *
2632 * Create a virtual master control with the given name. The TLV data
2633 * must be either NULL or a valid data.
2634 *
2635 * @slaves is a NULL-terminated array of strings, each of which is a
2636 * slave control name. All controls with these names are assigned to
2637 * the new virtual master control.
2638 *
2639 * This function returns zero if successful or a negative error code.
2640 */
Takashi Iwai18478e82012-03-09 17:51:10 +01002641int __snd_hda_add_vmaster(struct hda_codec *codec, char *name,
Takashi Iwai9322ca52012-02-03 14:28:01 +01002642 unsigned int *tlv, const char * const *slaves,
Takashi Iwai29e58532012-03-12 12:25:03 +01002643 const char *suffix, bool init_slave_vol,
2644 struct snd_kcontrol **ctl_ret)
Takashi Iwai2134ea42008-01-10 16:53:55 +01002645{
2646 struct snd_kcontrol *kctl;
Takashi Iwai2134ea42008-01-10 16:53:55 +01002647 int err;
2648
Takashi Iwai29e58532012-03-12 12:25:03 +01002649 if (ctl_ret)
2650 *ctl_ret = NULL;
2651
Takashi Iwai9322ca52012-02-03 14:28:01 +01002652 err = map_slaves(codec, slaves, suffix, check_slave_present, NULL);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002653 if (err != 1) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01002654 codec_dbg(codec, "No slave found for %s\n", name);
Takashi Iwai2f085542008-02-22 18:43:50 +01002655 return 0;
2656 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01002657 kctl = snd_ctl_make_virtual_master(name, tlv);
2658 if (!kctl)
2659 return -ENOMEM;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002660 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai2134ea42008-01-10 16:53:55 +01002661 if (err < 0)
2662 return err;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002663
Takashi Iwaie8750942014-06-30 14:02:39 +02002664 err = map_slaves(codec, slaves, suffix, add_slave, kctl);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002665 if (err < 0)
2666 return err;
Takashi Iwai18478e82012-03-09 17:51:10 +01002667
2668 /* init with master mute & zero volume */
2669 put_kctl_with_value(kctl, 0);
Takashi Iwai485e3e02013-11-04 15:51:00 +01002670 if (init_slave_vol) {
2671 int step = 0;
Takashi Iwai18478e82012-03-09 17:51:10 +01002672 map_slaves(codec, slaves, suffix,
Takashi Iwai485e3e02013-11-04 15:51:00 +01002673 tlv ? init_slave_0dB : init_slave_unmute, &step);
2674 }
Takashi Iwai18478e82012-03-09 17:51:10 +01002675
Takashi Iwai29e58532012-03-12 12:25:03 +01002676 if (ctl_ret)
2677 *ctl_ret = kctl;
Takashi Iwai2134ea42008-01-10 16:53:55 +01002678 return 0;
2679}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002680EXPORT_SYMBOL_GPL(__snd_hda_add_vmaster);
Takashi Iwai2134ea42008-01-10 16:53:55 +01002681
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002682/*
2683 * mute-LED control using vmaster
2684 */
2685static int vmaster_mute_mode_info(struct snd_kcontrol *kcontrol,
2686 struct snd_ctl_elem_info *uinfo)
2687{
2688 static const char * const texts[] = {
David Henningssonc86c2d42013-01-03 14:12:29 +01002689 "On", "Off", "Follow Master"
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002690 };
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002691
Takashi Iwai3ff72212014-10-20 18:17:28 +02002692 return snd_ctl_enum_info(uinfo, 1, 3, texts);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002693}
2694
2695static int vmaster_mute_mode_get(struct snd_kcontrol *kcontrol,
2696 struct snd_ctl_elem_value *ucontrol)
2697{
2698 struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol);
2699 ucontrol->value.enumerated.item[0] = hook->mute_mode;
2700 return 0;
2701}
2702
2703static int vmaster_mute_mode_put(struct snd_kcontrol *kcontrol,
2704 struct snd_ctl_elem_value *ucontrol)
2705{
2706 struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol);
2707 unsigned int old_mode = hook->mute_mode;
2708
2709 hook->mute_mode = ucontrol->value.enumerated.item[0];
2710 if (hook->mute_mode > HDA_VMUTE_FOLLOW_MASTER)
2711 hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER;
2712 if (old_mode == hook->mute_mode)
2713 return 0;
2714 snd_hda_sync_vmaster_hook(hook);
2715 return 1;
2716}
2717
2718static struct snd_kcontrol_new vmaster_mute_mode = {
2719 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2720 .name = "Mute-LED Mode",
2721 .info = vmaster_mute_mode_info,
2722 .get = vmaster_mute_mode_get,
2723 .put = vmaster_mute_mode_put,
2724};
2725
Takashi Iwai95a962c2014-10-29 16:03:58 +01002726/**
2727 * snd_hda_add_vmaster_hook - Add a vmaster hook for mute-LED
2728 * @codec: the HDA codec
2729 * @hook: the vmaster hook object
2730 * @expose_enum_ctl: flag to create an enum ctl
2731 *
2732 * Add a mute-LED hook with the given vmaster switch kctl.
2733 * When @expose_enum_ctl is set, "Mute-LED Mode" control is automatically
2734 * created and associated with the given hook.
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002735 */
2736int snd_hda_add_vmaster_hook(struct hda_codec *codec,
Takashi Iwaif29735c2012-03-13 07:55:10 +01002737 struct hda_vmaster_mute_hook *hook,
2738 bool expose_enum_ctl)
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002739{
2740 struct snd_kcontrol *kctl;
2741
2742 if (!hook->hook || !hook->sw_kctl)
2743 return 0;
2744 snd_ctl_add_vmaster_hook(hook->sw_kctl, hook->hook, codec);
2745 hook->codec = codec;
2746 hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER;
Takashi Iwaif29735c2012-03-13 07:55:10 +01002747 if (!expose_enum_ctl)
2748 return 0;
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002749 kctl = snd_ctl_new1(&vmaster_mute_mode, hook);
2750 if (!kctl)
2751 return -ENOMEM;
2752 return snd_hda_ctl_add(codec, 0, kctl);
2753}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002754EXPORT_SYMBOL_GPL(snd_hda_add_vmaster_hook);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002755
Takashi Iwai95a962c2014-10-29 16:03:58 +01002756/**
2757 * snd_hda_sync_vmaster_hook - Sync vmaster hook
2758 * @hook: the vmaster hook
2759 *
2760 * Call the hook with the current value for synchronization.
2761 * Should be called in init callback.
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002762 */
2763void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook *hook)
2764{
2765 if (!hook->hook || !hook->codec)
2766 return;
Takashi Iwai594813f2013-04-17 18:16:05 +02002767 /* don't call vmaster hook in the destructor since it might have
2768 * been already destroyed
2769 */
2770 if (hook->codec->bus->shutdown)
2771 return;
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002772 switch (hook->mute_mode) {
2773 case HDA_VMUTE_FOLLOW_MASTER:
2774 snd_ctl_sync_vmaster_hook(hook->sw_kctl);
2775 break;
2776 default:
2777 hook->hook(hook->codec, hook->mute_mode);
2778 break;
2779 }
2780}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002781EXPORT_SYMBOL_GPL(snd_hda_sync_vmaster_hook);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002782
2783
Takashi Iwaid5191e52009-11-16 14:58:17 +01002784/**
2785 * snd_hda_mixer_amp_switch_info - Info callback for a standard AMP mixer switch
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002786 * @kcontrol: referred ctl element
2787 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002788 *
2789 * The control element is supposed to have the private_value field
2790 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2791 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002792int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
2793 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794{
2795 int chs = get_amp_channels(kcontrol);
2796
2797 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2798 uinfo->count = chs == 3 ? 2 : 1;
2799 uinfo->value.integer.min = 0;
2800 uinfo->value.integer.max = 1;
2801 return 0;
2802}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002803EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
Takashi Iwaid5191e52009-11-16 14:58:17 +01002805/**
2806 * snd_hda_mixer_amp_switch_get - Get callback for a standard AMP mixer switch
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002807 * @kcontrol: ctl element
2808 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002809 *
2810 * The control element is supposed to have the private_value field
2811 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2812 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002813int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
2814 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815{
2816 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2817 hda_nid_t nid = get_amp_nid(kcontrol);
2818 int chs = get_amp_channels(kcontrol);
2819 int dir = get_amp_direction(kcontrol);
2820 int idx = get_amp_index(kcontrol);
2821 long *valp = ucontrol->value.integer.value;
2822
2823 if (chs & 1)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002824 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002825 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 if (chs & 2)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002827 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002828 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 return 0;
2830}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002831EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
Takashi Iwaid5191e52009-11-16 14:58:17 +01002833/**
2834 * snd_hda_mixer_amp_switch_put - Put callback for a standard AMP mixer switch
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002835 * @kcontrol: ctl element
2836 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002837 *
2838 * The control element is supposed to have the private_value field
2839 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2840 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002841int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
2842 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843{
2844 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2845 hda_nid_t nid = get_amp_nid(kcontrol);
2846 int chs = get_amp_channels(kcontrol);
2847 int dir = get_amp_direction(kcontrol);
2848 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 long *valp = ucontrol->value.integer.value;
2850 int change = 0;
2851
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002852 if (chs & 1) {
Takashi Iwai781c7b92015-02-20 10:26:25 +01002853 change = codec_amp_update(codec, nid, 0, dir, idx,
2854 HDA_AMP_MUTE,
2855 *valp ? 0 : HDA_AMP_MUTE, false,
2856 !hda_codec_is_power_on(codec));
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002857 valp++;
2858 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02002859 if (chs & 2)
Takashi Iwai781c7b92015-02-20 10:26:25 +01002860 change |= codec_amp_update(codec, nid, 1, dir, idx,
2861 HDA_AMP_MUTE,
2862 *valp ? 0 : HDA_AMP_MUTE, false,
2863 !hda_codec_is_power_on(codec));
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002864 hda_call_check_power_status(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 return change;
2866}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002867EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868
2869/*
Takashi Iwai985be542005-11-02 18:26:49 +01002870 * bound volume controls
2871 *
2872 * bind multiple volumes (# indices, from 0)
2873 */
2874
2875#define AMP_VAL_IDX_SHIFT 19
2876#define AMP_VAL_IDX_MASK (0x0f<<19)
2877
Takashi Iwaid5191e52009-11-16 14:58:17 +01002878/**
2879 * snd_hda_mixer_bind_switch_get - Get callback for a bound volume control
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002880 * @kcontrol: ctl element
2881 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002882 *
2883 * The control element is supposed to have the private_value field
2884 * set up via HDA_BIND_MUTE*() macros.
2885 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002886int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol,
2887 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01002888{
2889 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2890 unsigned long pval;
2891 int err;
2892
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002893 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002894 pval = kcontrol->private_value;
2895 kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */
2896 err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
2897 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002898 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002899 return err;
2900}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002901EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_switch_get);
Takashi Iwai985be542005-11-02 18:26:49 +01002902
Takashi Iwaid5191e52009-11-16 14:58:17 +01002903/**
2904 * snd_hda_mixer_bind_switch_put - Put callback for a bound volume control
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002905 * @kcontrol: ctl element
2906 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002907 *
2908 * The control element is supposed to have the private_value field
2909 * set up via HDA_BIND_MUTE*() macros.
2910 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002911int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol,
2912 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01002913{
2914 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2915 unsigned long pval;
2916 int i, indices, err = 0, change = 0;
2917
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002918 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002919 pval = kcontrol->private_value;
2920 indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT;
2921 for (i = 0; i < indices; i++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002922 kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) |
2923 (i << AMP_VAL_IDX_SHIFT);
Takashi Iwai985be542005-11-02 18:26:49 +01002924 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2925 if (err < 0)
2926 break;
2927 change |= err;
2928 }
2929 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002930 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002931 return err < 0 ? err : change;
2932}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002933EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_switch_put);
Takashi Iwai985be542005-11-02 18:26:49 +01002934
Takashi Iwaid5191e52009-11-16 14:58:17 +01002935/**
2936 * snd_hda_mixer_bind_ctls_info - Info callback for a generic bound control
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002937 * @kcontrol: referred ctl element
2938 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002939 *
2940 * The control element is supposed to have the private_value field
2941 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
Takashi Iwai532d5382007-07-27 19:02:40 +02002942 */
2943int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol,
2944 struct snd_ctl_elem_info *uinfo)
2945{
2946 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2947 struct hda_bind_ctls *c;
2948 int err;
2949
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002950 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01002951 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02002952 kcontrol->private_value = *c->values;
2953 err = c->ops->info(kcontrol, uinfo);
2954 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002955 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02002956 return err;
2957}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002958EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_info);
Takashi Iwai532d5382007-07-27 19:02:40 +02002959
Takashi Iwaid5191e52009-11-16 14:58:17 +01002960/**
2961 * snd_hda_mixer_bind_ctls_get - Get callback for a generic bound control
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002962 * @kcontrol: ctl element
2963 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002964 *
2965 * The control element is supposed to have the private_value field
2966 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
2967 */
Takashi Iwai532d5382007-07-27 19:02:40 +02002968int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol,
2969 struct snd_ctl_elem_value *ucontrol)
2970{
2971 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2972 struct hda_bind_ctls *c;
2973 int err;
2974
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002975 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01002976 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02002977 kcontrol->private_value = *c->values;
2978 err = c->ops->get(kcontrol, ucontrol);
2979 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002980 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02002981 return err;
2982}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002983EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_get);
Takashi Iwai532d5382007-07-27 19:02:40 +02002984
Takashi Iwaid5191e52009-11-16 14:58:17 +01002985/**
2986 * snd_hda_mixer_bind_ctls_put - Put callback for a generic bound control
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002987 * @kcontrol: ctl element
2988 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002989 *
2990 * The control element is supposed to have the private_value field
2991 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
2992 */
Takashi Iwai532d5382007-07-27 19:02:40 +02002993int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol,
2994 struct snd_ctl_elem_value *ucontrol)
2995{
2996 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2997 struct hda_bind_ctls *c;
2998 unsigned long *vals;
2999 int err = 0, change = 0;
3000
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003001 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01003002 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02003003 for (vals = c->values; *vals; vals++) {
3004 kcontrol->private_value = *vals;
3005 err = c->ops->put(kcontrol, ucontrol);
3006 if (err < 0)
3007 break;
3008 change |= err;
3009 }
3010 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003011 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02003012 return err < 0 ? err : change;
3013}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003014EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_put);
Takashi Iwai532d5382007-07-27 19:02:40 +02003015
Takashi Iwaid5191e52009-11-16 14:58:17 +01003016/**
3017 * snd_hda_mixer_bind_tlv - TLV callback for a generic bound control
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003018 * @kcontrol: ctl element
3019 * @op_flag: operation flag
3020 * @size: byte size of input TLV
3021 * @tlv: TLV data
Takashi Iwaid5191e52009-11-16 14:58:17 +01003022 *
3023 * The control element is supposed to have the private_value field
3024 * set up via HDA_BIND_VOL() macro.
3025 */
Takashi Iwai532d5382007-07-27 19:02:40 +02003026int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag,
3027 unsigned int size, unsigned int __user *tlv)
3028{
3029 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3030 struct hda_bind_ctls *c;
3031 int err;
3032
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003033 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01003034 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02003035 kcontrol->private_value = *c->values;
3036 err = c->ops->tlv(kcontrol, op_flag, size, tlv);
3037 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003038 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02003039 return err;
3040}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003041EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_tlv);
Takashi Iwai532d5382007-07-27 19:02:40 +02003042
3043struct hda_ctl_ops snd_hda_bind_vol = {
3044 .info = snd_hda_mixer_amp_volume_info,
3045 .get = snd_hda_mixer_amp_volume_get,
3046 .put = snd_hda_mixer_amp_volume_put,
3047 .tlv = snd_hda_mixer_amp_tlv
3048};
Takashi Iwai2698ea92013-12-18 07:45:52 +01003049EXPORT_SYMBOL_GPL(snd_hda_bind_vol);
Takashi Iwai532d5382007-07-27 19:02:40 +02003050
3051struct hda_ctl_ops snd_hda_bind_sw = {
3052 .info = snd_hda_mixer_amp_switch_info,
3053 .get = snd_hda_mixer_amp_switch_get,
3054 .put = snd_hda_mixer_amp_switch_put,
3055 .tlv = snd_hda_mixer_amp_tlv
3056};
Takashi Iwai2698ea92013-12-18 07:45:52 +01003057EXPORT_SYMBOL_GPL(snd_hda_bind_sw);
Takashi Iwai532d5382007-07-27 19:02:40 +02003058
3059/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 * SPDIF out controls
3061 */
3062
Takashi Iwai0ba21762007-04-16 11:29:14 +02003063static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
3064 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065{
3066 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
3067 uinfo->count = 1;
3068 return 0;
3069}
3070
Takashi Iwai0ba21762007-04-16 11:29:14 +02003071static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
3072 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073{
3074 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
3075 IEC958_AES0_NONAUDIO |
3076 IEC958_AES0_CON_EMPHASIS_5015 |
3077 IEC958_AES0_CON_NOT_COPYRIGHT;
3078 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
3079 IEC958_AES1_CON_ORIGINAL;
3080 return 0;
3081}
3082
Takashi Iwai0ba21762007-04-16 11:29:14 +02003083static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
3084 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085{
3086 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
3087 IEC958_AES0_NONAUDIO |
3088 IEC958_AES0_PRO_EMPHASIS_5015;
3089 return 0;
3090}
3091
Takashi Iwai0ba21762007-04-16 11:29:14 +02003092static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
3093 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094{
3095 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c9359762011-06-01 11:14:17 -06003096 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003097 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003099 mutex_lock(&codec->spdif_mutex);
3100 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren7c9359762011-06-01 11:14:17 -06003101 ucontrol->value.iec958.status[0] = spdif->status & 0xff;
3102 ucontrol->value.iec958.status[1] = (spdif->status >> 8) & 0xff;
3103 ucontrol->value.iec958.status[2] = (spdif->status >> 16) & 0xff;
3104 ucontrol->value.iec958.status[3] = (spdif->status >> 24) & 0xff;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003105 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
3107 return 0;
3108}
3109
3110/* convert from SPDIF status bits to HDA SPDIF bits
3111 * bit 0 (DigEn) is always set zero (to be filled later)
3112 */
3113static unsigned short convert_from_spdif_status(unsigned int sbits)
3114{
3115 unsigned short val = 0;
3116
3117 if (sbits & IEC958_AES0_PROFESSIONAL)
Takashi Iwai0ba21762007-04-16 11:29:14 +02003118 val |= AC_DIG1_PROFESSIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 if (sbits & IEC958_AES0_NONAUDIO)
Takashi Iwai0ba21762007-04-16 11:29:14 +02003120 val |= AC_DIG1_NONAUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003122 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
3123 IEC958_AES0_PRO_EMPHASIS_5015)
3124 val |= AC_DIG1_EMPHASIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003126 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
3127 IEC958_AES0_CON_EMPHASIS_5015)
3128 val |= AC_DIG1_EMPHASIS;
3129 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
3130 val |= AC_DIG1_COPYRIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
Takashi Iwai0ba21762007-04-16 11:29:14 +02003132 val |= AC_DIG1_LEVEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
3134 }
3135 return val;
3136}
3137
3138/* convert to SPDIF status bits from HDA SPDIF bits
3139 */
3140static unsigned int convert_to_spdif_status(unsigned short val)
3141{
3142 unsigned int sbits = 0;
3143
Takashi Iwai0ba21762007-04-16 11:29:14 +02003144 if (val & AC_DIG1_NONAUDIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 sbits |= IEC958_AES0_NONAUDIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003146 if (val & AC_DIG1_PROFESSIONAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 sbits |= IEC958_AES0_PROFESSIONAL;
3148 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwaia686fd12013-03-20 15:42:00 +01003149 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
3151 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003152 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003154 if (!(val & AC_DIG1_COPYRIGHT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003156 if (val & AC_DIG1_LEVEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
3158 sbits |= val & (0x7f << 8);
3159 }
3160 return sbits;
3161}
3162
Takashi Iwai2f728532008-09-25 16:32:41 +02003163/* set digital convert verbs both for the given NID and its slaves */
3164static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
3165 int verb, int val)
3166{
Takashi Iwaidda14412011-05-02 11:29:30 +02003167 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02003168
Takashi Iwai9e976972008-11-25 08:17:20 +01003169 snd_hda_codec_write_cache(codec, nid, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02003170 d = codec->slave_dig_outs;
3171 if (!d)
3172 return;
3173 for (; *d; d++)
Takashi Iwai9e976972008-11-25 08:17:20 +01003174 snd_hda_codec_write_cache(codec, *d, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02003175}
3176
3177static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,
3178 int dig1, int dig2)
3179{
3180 if (dig1 != -1)
3181 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_1, dig1);
3182 if (dig2 != -1)
3183 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_2, dig2);
3184}
3185
Takashi Iwai0ba21762007-04-16 11:29:14 +02003186static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
3187 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188{
3189 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c9359762011-06-01 11:14:17 -06003190 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003191 struct hda_spdif_out *spdif;
3192 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 unsigned short val;
3194 int change;
3195
Ingo Molnar62932df2006-01-16 16:34:20 +01003196 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003197 spdif = snd_array_elem(&codec->spdif_out, idx);
3198 nid = spdif->nid;
Stephen Warren7c9359762011-06-01 11:14:17 -06003199 spdif->status = ucontrol->value.iec958.status[0] |
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
3201 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
3202 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
Stephen Warren7c9359762011-06-01 11:14:17 -06003203 val = convert_from_spdif_status(spdif->status);
3204 val |= spdif->ctls & 1;
3205 change = spdif->ctls != val;
3206 spdif->ctls = val;
Stephen Warren74b654c2011-06-01 11:14:18 -06003207 if (change && nid != (u16)-1)
Takashi Iwai2f728532008-09-25 16:32:41 +02003208 set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff);
Ingo Molnar62932df2006-01-16 16:34:20 +01003209 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 return change;
3211}
3212
Takashi Iwaia5ce8892007-07-23 15:42:26 +02003213#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214
Takashi Iwai0ba21762007-04-16 11:29:14 +02003215static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
3216 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217{
3218 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c9359762011-06-01 11:14:17 -06003219 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003220 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003222 mutex_lock(&codec->spdif_mutex);
3223 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren7c9359762011-06-01 11:14:17 -06003224 ucontrol->value.integer.value[0] = spdif->ctls & AC_DIG1_ENABLE;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003225 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 return 0;
3227}
3228
Stephen Warren74b654c2011-06-01 11:14:18 -06003229static inline void set_spdif_ctls(struct hda_codec *codec, hda_nid_t nid,
3230 int dig1, int dig2)
3231{
3232 set_dig_out_convert(codec, nid, dig1, dig2);
3233 /* unmute amp switch (if any) */
3234 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
3235 (dig1 & AC_DIG1_ENABLE))
3236 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3237 HDA_AMP_MUTE, 0);
3238}
3239
Takashi Iwai0ba21762007-04-16 11:29:14 +02003240static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
3241 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242{
3243 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c9359762011-06-01 11:14:17 -06003244 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003245 struct hda_spdif_out *spdif;
3246 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 unsigned short val;
3248 int change;
3249
Ingo Molnar62932df2006-01-16 16:34:20 +01003250 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003251 spdif = snd_array_elem(&codec->spdif_out, idx);
3252 nid = spdif->nid;
Stephen Warren7c9359762011-06-01 11:14:17 -06003253 val = spdif->ctls & ~AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 if (ucontrol->value.integer.value[0])
Takashi Iwai0ba21762007-04-16 11:29:14 +02003255 val |= AC_DIG1_ENABLE;
Stephen Warren7c9359762011-06-01 11:14:17 -06003256 change = spdif->ctls != val;
Stephen Warren74b654c2011-06-01 11:14:18 -06003257 spdif->ctls = val;
3258 if (change && nid != (u16)-1)
3259 set_spdif_ctls(codec, nid, val & 0xff, -1);
Ingo Molnar62932df2006-01-16 16:34:20 +01003260 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 return change;
3262}
3263
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003264static struct snd_kcontrol_new dig_mixes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 {
3266 .access = SNDRV_CTL_ELEM_ACCESS_READ,
3267 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003268 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 .info = snd_hda_spdif_mask_info,
3270 .get = snd_hda_spdif_cmask_get,
3271 },
3272 {
3273 .access = SNDRV_CTL_ELEM_ACCESS_READ,
3274 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003275 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 .info = snd_hda_spdif_mask_info,
3277 .get = snd_hda_spdif_pmask_get,
3278 },
3279 {
3280 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003281 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 .info = snd_hda_spdif_mask_info,
3283 .get = snd_hda_spdif_default_get,
3284 .put = snd_hda_spdif_default_put,
3285 },
3286 {
3287 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003288 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 .info = snd_hda_spdif_out_switch_info,
3290 .get = snd_hda_spdif_out_switch_get,
3291 .put = snd_hda_spdif_out_switch_put,
3292 },
3293 { } /* end */
3294};
3295
3296/**
Takashi Iwaidcda5802012-10-12 17:24:51 +02003297 * snd_hda_create_dig_out_ctls - create Output SPDIF-related controls
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 * @codec: the HDA codec
Takashi Iwaidcda5802012-10-12 17:24:51 +02003299 * @associated_nid: NID that new ctls associated with
3300 * @cvt_nid: converter NID
3301 * @type: HDA_PCM_TYPE_*
3302 * Creates controls related with the digital output.
3303 * Called from each patch supporting the digital out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 *
3305 * Returns 0 if successful, or a negative error code.
3306 */
Takashi Iwaidcda5802012-10-12 17:24:51 +02003307int snd_hda_create_dig_out_ctls(struct hda_codec *codec,
3308 hda_nid_t associated_nid,
3309 hda_nid_t cvt_nid,
3310 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311{
3312 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003313 struct snd_kcontrol *kctl;
3314 struct snd_kcontrol_new *dig_mix;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003315 int idx = 0;
3316 const int spdif_index = 16;
Stephen Warren7c9359762011-06-01 11:14:17 -06003317 struct hda_spdif_out *spdif;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003318 struct hda_bus *bus = codec->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003320 if (bus->primary_dig_out_type == HDA_PCM_TYPE_HDMI &&
Takashi Iwaidcda5802012-10-12 17:24:51 +02003321 type == HDA_PCM_TYPE_SPDIF) {
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003322 idx = spdif_index;
3323 } else if (bus->primary_dig_out_type == HDA_PCM_TYPE_SPDIF &&
Takashi Iwaidcda5802012-10-12 17:24:51 +02003324 type == HDA_PCM_TYPE_HDMI) {
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003325 /* suppose a single SPDIF device */
3326 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
3327 kctl = find_mixer_ctl(codec, dig_mix->name, 0, 0);
3328 if (!kctl)
3329 break;
3330 kctl->id.index = spdif_index;
Takashi Iwaidcda5802012-10-12 17:24:51 +02003331 }
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003332 bus->primary_dig_out_type = HDA_PCM_TYPE_HDMI;
Takashi Iwaidcda5802012-10-12 17:24:51 +02003333 }
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003334 if (!bus->primary_dig_out_type)
3335 bus->primary_dig_out_type = type;
Takashi Iwaidcda5802012-10-12 17:24:51 +02003336
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003337 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Playback Switch", idx);
Takashi Iwai1afe2062010-12-23 10:17:52 +01003338 if (idx < 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01003339 codec_err(codec, "too many IEC958 outputs\n");
Takashi Iwai09f99702008-02-04 12:31:13 +01003340 return -EBUSY;
3341 }
Stephen Warren7c9359762011-06-01 11:14:17 -06003342 spdif = snd_array_new(&codec->spdif_out);
Mengdong Lin25336e82013-03-07 14:10:25 -05003343 if (!spdif)
3344 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
3346 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaib91f0802008-11-04 08:43:08 +01003347 if (!kctl)
3348 return -ENOMEM;
Takashi Iwai09f99702008-02-04 12:31:13 +01003349 kctl->id.index = idx;
Stephen Warren7c9359762011-06-01 11:14:17 -06003350 kctl->private_value = codec->spdif_out.used - 1;
Stephen Warren74b654c2011-06-01 11:14:18 -06003351 err = snd_hda_ctl_add(codec, associated_nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003352 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 return err;
3354 }
Stephen Warren74b654c2011-06-01 11:14:18 -06003355 spdif->nid = cvt_nid;
3356 spdif->ctls = snd_hda_codec_read(codec, cvt_nid, 0,
Stephen Warren7c9359762011-06-01 11:14:17 -06003357 AC_VERB_GET_DIGI_CONVERT_1, 0);
3358 spdif->status = convert_to_spdif_status(spdif->ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 return 0;
3360}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003361EXPORT_SYMBOL_GPL(snd_hda_create_dig_out_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362
Takashi Iwai95a962c2014-10-29 16:03:58 +01003363/**
3364 * snd_hda_spdif_out_of_nid - get the hda_spdif_out entry from the given NID
3365 * @codec: the HDA codec
3366 * @nid: widget NID
3367 *
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003368 * call within spdif_mutex lock
3369 */
Stephen Warren7c9359762011-06-01 11:14:17 -06003370struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec,
3371 hda_nid_t nid)
3372{
3373 int i;
3374 for (i = 0; i < codec->spdif_out.used; i++) {
3375 struct hda_spdif_out *spdif =
3376 snd_array_elem(&codec->spdif_out, i);
3377 if (spdif->nid == nid)
3378 return spdif;
3379 }
3380 return NULL;
3381}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003382EXPORT_SYMBOL_GPL(snd_hda_spdif_out_of_nid);
Stephen Warren7c9359762011-06-01 11:14:17 -06003383
Takashi Iwai95a962c2014-10-29 16:03:58 +01003384/**
3385 * snd_hda_spdif_ctls_unassign - Unassign the given SPDIF ctl
3386 * @codec: the HDA codec
3387 * @idx: the SPDIF ctl index
3388 *
3389 * Unassign the widget from the given SPDIF control.
3390 */
Stephen Warren74b654c2011-06-01 11:14:18 -06003391void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx)
3392{
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003393 struct hda_spdif_out *spdif;
Stephen Warren74b654c2011-06-01 11:14:18 -06003394
3395 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003396 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren74b654c2011-06-01 11:14:18 -06003397 spdif->nid = (u16)-1;
3398 mutex_unlock(&codec->spdif_mutex);
3399}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003400EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_unassign);
Stephen Warren74b654c2011-06-01 11:14:18 -06003401
Takashi Iwai95a962c2014-10-29 16:03:58 +01003402/**
3403 * snd_hda_spdif_ctls_assign - Assign the SPDIF controls to the given NID
3404 * @codec: the HDA codec
3405 * @idx: the SPDIF ctl idx
3406 * @nid: widget NID
3407 *
3408 * Assign the widget to the SPDIF control with the given index.
3409 */
Stephen Warren74b654c2011-06-01 11:14:18 -06003410void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid)
3411{
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003412 struct hda_spdif_out *spdif;
Stephen Warren74b654c2011-06-01 11:14:18 -06003413 unsigned short val;
3414
3415 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003416 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren74b654c2011-06-01 11:14:18 -06003417 if (spdif->nid != nid) {
3418 spdif->nid = nid;
3419 val = spdif->ctls;
3420 set_spdif_ctls(codec, nid, val & 0xff, (val >> 8) & 0xff);
3421 }
3422 mutex_unlock(&codec->spdif_mutex);
3423}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003424EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_assign);
Stephen Warren74b654c2011-06-01 11:14:18 -06003425
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426/*
Takashi Iwai9a081602008-02-12 18:37:26 +01003427 * SPDIF sharing with analog output
3428 */
3429static int spdif_share_sw_get(struct snd_kcontrol *kcontrol,
3430 struct snd_ctl_elem_value *ucontrol)
3431{
3432 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
3433 ucontrol->value.integer.value[0] = mout->share_spdif;
3434 return 0;
3435}
3436
3437static int spdif_share_sw_put(struct snd_kcontrol *kcontrol,
3438 struct snd_ctl_elem_value *ucontrol)
3439{
3440 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
3441 mout->share_spdif = !!ucontrol->value.integer.value[0];
3442 return 0;
3443}
3444
3445static struct snd_kcontrol_new spdif_share_sw = {
3446 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3447 .name = "IEC958 Default PCM Playback Switch",
3448 .info = snd_ctl_boolean_mono_info,
3449 .get = spdif_share_sw_get,
3450 .put = spdif_share_sw_put,
3451};
3452
Takashi Iwaid5191e52009-11-16 14:58:17 +01003453/**
3454 * snd_hda_create_spdif_share_sw - create Default PCM switch
3455 * @codec: the HDA codec
3456 * @mout: multi-out instance
3457 */
Takashi Iwai9a081602008-02-12 18:37:26 +01003458int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
3459 struct hda_multi_out *mout)
3460{
Mengdong Lin4c7a5482013-03-07 14:11:05 -05003461 struct snd_kcontrol *kctl;
3462
Takashi Iwai9a081602008-02-12 18:37:26 +01003463 if (!mout->dig_out_nid)
3464 return 0;
Mengdong Lin4c7a5482013-03-07 14:11:05 -05003465
3466 kctl = snd_ctl_new1(&spdif_share_sw, mout);
3467 if (!kctl)
3468 return -ENOMEM;
Takashi Iwai9a081602008-02-12 18:37:26 +01003469 /* ATTENTION: here mout is passed as private_data, instead of codec */
Mengdong Lin4c7a5482013-03-07 14:11:05 -05003470 return snd_hda_ctl_add(codec, mout->dig_out_nid, kctl);
Takashi Iwai9a081602008-02-12 18:37:26 +01003471}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003472EXPORT_SYMBOL_GPL(snd_hda_create_spdif_share_sw);
Takashi Iwai9a081602008-02-12 18:37:26 +01003473
3474/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 * SPDIF input
3476 */
3477
3478#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
3479
Takashi Iwai0ba21762007-04-16 11:29:14 +02003480static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
3481 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482{
3483 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3484
3485 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
3486 return 0;
3487}
3488
Takashi Iwai0ba21762007-04-16 11:29:14 +02003489static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
3490 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491{
3492 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3493 hda_nid_t nid = kcontrol->private_value;
3494 unsigned int val = !!ucontrol->value.integer.value[0];
3495 int change;
3496
Ingo Molnar62932df2006-01-16 16:34:20 +01003497 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003499 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 codec->spdif_in_enable = val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003501 snd_hda_codec_write_cache(codec, nid, 0,
3502 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003504 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 return change;
3506}
3507
Takashi Iwai0ba21762007-04-16 11:29:14 +02003508static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
3509 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510{
3511 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3512 hda_nid_t nid = kcontrol->private_value;
3513 unsigned short val;
3514 unsigned int sbits;
3515
Andrew Paprocki3982d172007-12-19 12:13:44 +01003516 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 sbits = convert_to_spdif_status(val);
3518 ucontrol->value.iec958.status[0] = sbits;
3519 ucontrol->value.iec958.status[1] = sbits >> 8;
3520 ucontrol->value.iec958.status[2] = sbits >> 16;
3521 ucontrol->value.iec958.status[3] = sbits >> 24;
3522 return 0;
3523}
3524
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003525static struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 {
3527 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003528 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 .info = snd_hda_spdif_in_switch_info,
3530 .get = snd_hda_spdif_in_switch_get,
3531 .put = snd_hda_spdif_in_switch_put,
3532 },
3533 {
3534 .access = SNDRV_CTL_ELEM_ACCESS_READ,
3535 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003536 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 .info = snd_hda_spdif_mask_info,
3538 .get = snd_hda_spdif_in_status_get,
3539 },
3540 { } /* end */
3541};
3542
3543/**
3544 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
3545 * @codec: the HDA codec
3546 * @nid: audio in widget NID
3547 *
3548 * Creates controls related with the SPDIF input.
3549 * Called from each patch supporting the SPDIF in.
3550 *
3551 * Returns 0 if successful, or a negative error code.
3552 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02003553int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554{
3555 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003556 struct snd_kcontrol *kctl;
3557 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01003558 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559
Takashi Iwaidcda5802012-10-12 17:24:51 +02003560 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Capture Switch", 0);
Takashi Iwai1afe2062010-12-23 10:17:52 +01003561 if (idx < 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01003562 codec_err(codec, "too many IEC958 inputs\n");
Takashi Iwai09f99702008-02-04 12:31:13 +01003563 return -EBUSY;
3564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
3566 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaic8dcdf82009-02-06 16:21:20 +01003567 if (!kctl)
3568 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569 kctl->private_value = nid;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01003570 err = snd_hda_ctl_add(codec, nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003571 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 return err;
3573 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02003574 codec->spdif_in_enable =
Andrew Paprocki3982d172007-12-19 12:13:44 +01003575 snd_hda_codec_read(codec, nid, 0,
3576 AC_VERB_GET_DIGI_CONVERT_1, 0) &
Takashi Iwai0ba21762007-04-16 11:29:14 +02003577 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 return 0;
3579}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003580EXPORT_SYMBOL_GPL(snd_hda_create_spdif_in_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003582/*
3583 * command cache
3584 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585
Takashi Iwaic370dd62012-12-13 18:30:04 +01003586/* build a 31bit cache key with the widget id and the command parameter */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003587#define build_cmd_cache_key(nid, verb) ((verb << 8) | nid)
3588#define get_cmd_cache_nid(key) ((key) & 0xff)
3589#define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff)
3590
3591/**
3592 * snd_hda_codec_write_cache - send a single command with caching
3593 * @codec: the HDA codec
3594 * @nid: NID to send the command
Takashi Iwaie7ecc272013-06-06 14:00:23 +02003595 * @flags: optional bit flags
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003596 * @verb: the verb to send
3597 * @parm: the parameter for the verb
3598 *
3599 * Send a single command without waiting for response.
3600 *
3601 * Returns 0 if successful, or a negative error code.
3602 */
3603int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwaie7ecc272013-06-06 14:00:23 +02003604 int flags, unsigned int verb, unsigned int parm)
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003605{
Takashi Iwaic370dd62012-12-13 18:30:04 +01003606 int err;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003607 struct hda_cache_head *c;
3608 u32 key;
Takashi Iwaide1e37b2012-12-20 11:00:21 +01003609 unsigned int cache_only;
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003610
Takashi Iwaide1e37b2012-12-20 11:00:21 +01003611 cache_only = codec->cached_write;
3612 if (!cache_only) {
Takashi Iwaie7ecc272013-06-06 14:00:23 +02003613 err = snd_hda_codec_write(codec, nid, flags, verb, parm);
Takashi Iwaic370dd62012-12-13 18:30:04 +01003614 if (err < 0)
3615 return err;
3616 }
3617
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003618 /* parm may contain the verb stuff for get/set amp */
3619 verb = verb | (parm >> 8);
3620 parm &= 0xff;
3621 key = build_cmd_cache_key(nid, verb);
3622 mutex_lock(&codec->bus->cmd_mutex);
3623 c = get_alloc_hash(&codec->cmd_cache, key);
Takashi Iwaic370dd62012-12-13 18:30:04 +01003624 if (c) {
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003625 c->val = parm;
Takashi Iwaide1e37b2012-12-20 11:00:21 +01003626 c->dirty = cache_only;
Takashi Iwaic370dd62012-12-13 18:30:04 +01003627 }
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003628 mutex_unlock(&codec->bus->cmd_mutex);
3629 return 0;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003630}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003631EXPORT_SYMBOL_GPL(snd_hda_codec_write_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003632
Takashi Iwaid5191e52009-11-16 14:58:17 +01003633/**
Takashi Iwaia68d5a52010-03-30 18:03:44 +02003634 * snd_hda_codec_update_cache - check cache and write the cmd only when needed
3635 * @codec: the HDA codec
3636 * @nid: NID to send the command
Takashi Iwaie7ecc272013-06-06 14:00:23 +02003637 * @flags: optional bit flags
Takashi Iwaia68d5a52010-03-30 18:03:44 +02003638 * @verb: the verb to send
3639 * @parm: the parameter for the verb
3640 *
3641 * This function works like snd_hda_codec_write_cache(), but it doesn't send
3642 * command if the parameter is already identical with the cached value.
3643 * If not, it sends the command and refreshes the cache.
3644 *
3645 * Returns 0 if successful, or a negative error code.
3646 */
3647int snd_hda_codec_update_cache(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwaie7ecc272013-06-06 14:00:23 +02003648 int flags, unsigned int verb, unsigned int parm)
Takashi Iwaia68d5a52010-03-30 18:03:44 +02003649{
3650 struct hda_cache_head *c;
3651 u32 key;
3652
3653 /* parm may contain the verb stuff for get/set amp */
3654 verb = verb | (parm >> 8);
3655 parm &= 0xff;
3656 key = build_cmd_cache_key(nid, verb);
3657 mutex_lock(&codec->bus->cmd_mutex);
3658 c = get_hash(&codec->cmd_cache, key);
3659 if (c && c->val == parm) {
3660 mutex_unlock(&codec->bus->cmd_mutex);
3661 return 0;
3662 }
3663 mutex_unlock(&codec->bus->cmd_mutex);
Takashi Iwaie7ecc272013-06-06 14:00:23 +02003664 return snd_hda_codec_write_cache(codec, nid, flags, verb, parm);
Takashi Iwaia68d5a52010-03-30 18:03:44 +02003665}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003666EXPORT_SYMBOL_GPL(snd_hda_codec_update_cache);
Takashi Iwaia68d5a52010-03-30 18:03:44 +02003667
3668/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01003669 * snd_hda_codec_resume_cache - Resume the all commands from the cache
3670 * @codec: HD-audio codec
3671 *
3672 * Execute all verbs recorded in the command caches to resume.
3673 */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003674void snd_hda_codec_resume_cache(struct hda_codec *codec)
3675{
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003676 int i;
3677
Takashi Iwaic370dd62012-12-13 18:30:04 +01003678 mutex_lock(&codec->hash_mutex);
Takashi Iwaiaa88a352012-12-20 11:02:00 +01003679 codec->cached_write = 0;
Takashi Iwaic370dd62012-12-13 18:30:04 +01003680 for (i = 0; i < codec->cmd_cache.buf.used; i++) {
3681 struct hda_cache_head *buffer;
3682 u32 key;
3683
3684 buffer = snd_array_elem(&codec->cmd_cache.buf, i);
3685 key = buffer->key;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003686 if (!key)
3687 continue;
Takashi Iwaic370dd62012-12-13 18:30:04 +01003688 if (!buffer->dirty)
3689 continue;
3690 buffer->dirty = 0;
3691 mutex_unlock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003692 snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0,
3693 get_cmd_cache_cmd(key), buffer->val);
Takashi Iwaic370dd62012-12-13 18:30:04 +01003694 mutex_lock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003695 }
Takashi Iwaic370dd62012-12-13 18:30:04 +01003696 mutex_unlock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003697}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003698EXPORT_SYMBOL_GPL(snd_hda_codec_resume_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003699
3700/**
3701 * snd_hda_sequence_write_cache - sequence writes with caching
3702 * @codec: the HDA codec
3703 * @seq: VERB array to send
3704 *
3705 * Send the commands sequentially from the given array.
3706 * Thte commands are recorded on cache for power-save and resume.
3707 * The array must be terminated with NID=0.
3708 */
3709void snd_hda_sequence_write_cache(struct hda_codec *codec,
3710 const struct hda_verb *seq)
3711{
3712 for (; seq->nid; seq++)
3713 snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb,
3714 seq->param);
3715}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003716EXPORT_SYMBOL_GPL(snd_hda_sequence_write_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003717
Takashi Iwaidc870f32013-01-22 15:24:30 +01003718/**
3719 * snd_hda_codec_flush_cache - Execute all pending (cached) amps / verbs
3720 * @codec: HD-audio codec
3721 */
3722void snd_hda_codec_flush_cache(struct hda_codec *codec)
3723{
3724 snd_hda_codec_resume_amp(codec);
3725 snd_hda_codec_resume_cache(codec);
3726}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003727EXPORT_SYMBOL_GPL(snd_hda_codec_flush_cache);
Takashi Iwaidc870f32013-01-22 15:24:30 +01003728
Takashi Iwai95a962c2014-10-29 16:03:58 +01003729/**
3730 * snd_hda_codec_set_power_to_all - Set the power state to all widgets
3731 * @codec: the HDA codec
3732 * @fg: function group (not used now)
3733 * @power_state: the power state to set (AC_PWRST_*)
3734 *
3735 * Set the given power state to all widgets that have the power control.
3736 * If the codec has power_filter set, it evaluates the power state and
3737 * filter out if it's unchanged as D3.
3738 */
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003739void snd_hda_codec_set_power_to_all(struct hda_codec *codec, hda_nid_t fg,
Takashi Iwai9419ab62013-01-24 17:23:35 +01003740 unsigned int power_state)
Takashi Iwai54d17402005-11-21 16:33:22 +01003741{
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003742 hda_nid_t nid = codec->start_nid;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003743 int i;
Takashi Iwai54d17402005-11-21 16:33:22 +01003744
Takashi Iwaicb53c622007-08-10 17:21:45 +02003745 for (i = 0; i < codec->num_nodes; i++, nid++) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01003746 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwai9419ab62013-01-24 17:23:35 +01003747 unsigned int state = power_state;
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003748 if (!(wcaps & AC_WCAP_POWER))
3749 continue;
Takashi Iwai9419ab62013-01-24 17:23:35 +01003750 if (codec->power_filter) {
3751 state = codec->power_filter(codec, nid, power_state);
3752 if (state != power_state && power_state == AC_PWRST_D3)
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003753 continue;
Takashi Iwai1194b5b2007-10-10 10:04:26 +02003754 }
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003755 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE,
Takashi Iwai9419ab62013-01-24 17:23:35 +01003756 state);
Takashi Iwai54d17402005-11-21 16:33:22 +01003757 }
Takashi Iwai54d17402005-11-21 16:33:22 +01003758}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003759EXPORT_SYMBOL_GPL(snd_hda_codec_set_power_to_all);
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003760
3761/*
Wang Xingchao0c7f46a2012-06-06 22:02:48 +08003762 * supported power states check
3763 */
3764static bool snd_hda_codec_get_supported_ps(struct hda_codec *codec, hda_nid_t fg,
3765 unsigned int power_state)
3766{
3767 int sup = snd_hda_param_read(codec, fg, AC_PAR_POWER_STATE);
3768
Mengdong Line037cb42012-08-10 14:11:58 +02003769 if (sup == -1)
Wang Xingchao0c7f46a2012-06-06 22:02:48 +08003770 return false;
3771 if (sup & power_state)
3772 return true;
3773 else
3774 return false;
3775}
3776
3777/*
Takashi Iwai432c6412012-08-28 09:59:20 -07003778 * wait until the state is reached, returns the current state
3779 */
3780static unsigned int hda_sync_power_state(struct hda_codec *codec,
3781 hda_nid_t fg,
3782 unsigned int power_state)
3783{
3784 unsigned long end_time = jiffies + msecs_to_jiffies(500);
3785 unsigned int state, actual_state;
3786
3787 for (;;) {
3788 state = snd_hda_codec_read(codec, fg, 0,
3789 AC_VERB_GET_POWER_STATE, 0);
3790 if (state & AC_PWRST_ERROR)
3791 break;
3792 actual_state = (state >> 4) & 0x0f;
3793 if (actual_state == power_state)
3794 break;
3795 if (time_after_eq(jiffies, end_time))
3796 break;
3797 /* wait until the codec reachs to the target state */
3798 msleep(1);
3799 }
3800 return state;
3801}
3802
Takashi Iwai95a962c2014-10-29 16:03:58 +01003803/**
3804 * snd_hda_codec_eapd_power_filter - A power filter callback for EAPD
3805 * @codec: the HDA codec
3806 * @nid: widget NID
3807 * @power_state: power state to evalue
3808 *
3809 * Don't power down the widget if it controls eapd and EAPD_BTLENABLE is set.
3810 * This can be used a codec power_filter callback.
3811 */
Takashi Iwaiba615b82013-03-13 14:47:21 +01003812unsigned int snd_hda_codec_eapd_power_filter(struct hda_codec *codec,
3813 hda_nid_t nid,
3814 unsigned int power_state)
Takashi Iwai9419ab62013-01-24 17:23:35 +01003815{
Takashi Iwaidfc6e462014-01-13 16:09:57 +01003816 if (nid == codec->afg || nid == codec->mfg)
3817 return power_state;
Takashi Iwai9419ab62013-01-24 17:23:35 +01003818 if (power_state == AC_PWRST_D3 &&
3819 get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_PIN &&
3820 (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)) {
3821 int eapd = snd_hda_codec_read(codec, nid, 0,
3822 AC_VERB_GET_EAPD_BTLENABLE, 0);
3823 if (eapd & 0x02)
3824 return AC_PWRST_D0;
3825 }
3826 return power_state;
3827}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003828EXPORT_SYMBOL_GPL(snd_hda_codec_eapd_power_filter);
Takashi Iwai9419ab62013-01-24 17:23:35 +01003829
Takashi Iwai432c6412012-08-28 09:59:20 -07003830/*
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003831 * set power state of the codec, and return the power state
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003832 */
Takashi Iwaid8193872012-08-31 07:54:38 -07003833static unsigned int hda_set_power_state(struct hda_codec *codec,
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003834 unsigned int power_state)
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003835{
Takashi Iwaid8193872012-08-31 07:54:38 -07003836 hda_nid_t fg = codec->afg ? codec->afg : codec->mfg;
Wang Xingchao09617ce2012-06-08 10:26:08 +08003837 int count;
3838 unsigned int state;
Takashi Iwai63e51fd2013-06-06 14:20:19 +02003839 int flags = 0;
Wang Xingchao09617ce2012-06-08 10:26:08 +08003840
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003841 /* this delay seems necessary to avoid click noise at power-down */
Wang Xingchao0f4ccbb2012-06-07 16:51:33 +08003842 if (power_state == AC_PWRST_D3) {
Mengdong Lin7f132922013-11-29 01:48:45 -05003843 if (codec->depop_delay < 0)
3844 msleep(codec->epss ? 10 : 100);
3845 else if (codec->depop_delay > 0)
3846 msleep(codec->depop_delay);
Takashi Iwai63e51fd2013-06-06 14:20:19 +02003847 flags = HDA_RW_NO_RESPONSE_FALLBACK;
Wang Xingchao0f4ccbb2012-06-07 16:51:33 +08003848 }
Wang Xingchao09617ce2012-06-08 10:26:08 +08003849
3850 /* repeat power states setting at most 10 times*/
3851 for (count = 0; count < 10; count++) {
Takashi Iwai432c6412012-08-28 09:59:20 -07003852 if (codec->patch_ops.set_power_state)
3853 codec->patch_ops.set_power_state(codec, fg,
3854 power_state);
3855 else {
Takashi Iwaidfc6e462014-01-13 16:09:57 +01003856 state = power_state;
3857 if (codec->power_filter)
3858 state = codec->power_filter(codec, fg, state);
3859 if (state == power_state || power_state != AC_PWRST_D3)
3860 snd_hda_codec_read(codec, fg, flags,
3861 AC_VERB_SET_POWER_STATE,
3862 state);
Takashi Iwai9419ab62013-01-24 17:23:35 +01003863 snd_hda_codec_set_power_to_all(codec, fg, power_state);
Takashi Iwai432c6412012-08-28 09:59:20 -07003864 }
3865 state = hda_sync_power_state(codec, fg, power_state);
Wang Xingchao09617ce2012-06-08 10:26:08 +08003866 if (!(state & AC_PWRST_ERROR))
3867 break;
3868 }
Mengdong Linb8dfc4622012-08-23 17:32:30 +08003869
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003870 return state;
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003871}
Takashi Iwai54d17402005-11-21 16:33:22 +01003872
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003873/* sync power states of all widgets;
3874 * this is called at the end of codec parsing
3875 */
3876static void sync_power_up_states(struct hda_codec *codec)
3877{
3878 hda_nid_t nid = codec->start_nid;
3879 int i;
3880
Takashi Iwaiba615b82013-03-13 14:47:21 +01003881 /* don't care if no filter is used */
3882 if (!codec->power_filter)
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003883 return;
3884
3885 for (i = 0; i < codec->num_nodes; i++, nid++) {
3886 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwai9040d102013-01-24 17:47:17 +01003887 unsigned int target;
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003888 if (!(wcaps & AC_WCAP_POWER))
3889 continue;
3890 target = codec->power_filter(codec, nid, AC_PWRST_D0);
3891 if (target == AC_PWRST_D0)
3892 continue;
Takashi Iwai9040d102013-01-24 17:47:17 +01003893 if (!snd_hda_check_power_state(codec, nid, target))
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003894 snd_hda_codec_write(codec, nid, 0,
3895 AC_VERB_SET_POWER_STATE, target);
3896 }
3897}
3898
Takashi Iwai648a8d22014-02-25 10:38:13 +01003899#ifdef CONFIG_SND_HDA_RECONFIG
Takashi Iwai11aeff02008-07-30 15:01:46 +02003900/* execute additional init verbs */
3901static void hda_exec_init_verbs(struct hda_codec *codec)
3902{
3903 if (codec->init_verbs.list)
3904 snd_hda_sequence_write(codec, codec->init_verbs.list);
3905}
3906#else
3907static inline void hda_exec_init_verbs(struct hda_codec *codec) {}
3908#endif
3909
Takashi Iwai2a439522011-07-26 09:52:50 +02003910#ifdef CONFIG_PM
Takashi Iwaicc72da72015-02-19 16:00:22 +01003911/* update the power on/off account with the current jiffies */
3912static void update_power_acct(struct hda_codec *codec, bool on)
3913{
3914 unsigned long delta = jiffies - codec->power_jiffies;
3915
3916 if (on)
3917 codec->power_on_acct += delta;
3918 else
3919 codec->power_off_acct += delta;
3920 codec->power_jiffies += delta;
3921}
3922
3923void snd_hda_update_power_acct(struct hda_codec *codec)
3924{
3925 update_power_acct(codec, hda_codec_is_power_on(codec));
3926}
3927
Takashi Iwaicb53c622007-08-10 17:21:45 +02003928/*
3929 * call suspend and power-down; used both from PM and power-save
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003930 * this function returns the power state in the end
Takashi Iwaicb53c622007-08-10 17:21:45 +02003931 */
Takashi Iwaicc72da72015-02-19 16:00:22 +01003932static unsigned int hda_call_codec_suspend(struct hda_codec *codec)
Takashi Iwaicb53c622007-08-10 17:21:45 +02003933{
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003934 unsigned int state;
3935
Takashi Iwaicc72da72015-02-19 16:00:22 +01003936 atomic_inc(&codec->in_pm);
Takashi Iwai989c3182012-11-19 14:14:58 +01003937
Takashi Iwaicb53c622007-08-10 17:21:45 +02003938 if (codec->patch_ops.suspend)
Takashi Iwai68cb2b52012-07-02 15:20:37 +02003939 codec->patch_ops.suspend(codec);
Takashi Iwaieb541332010-08-06 13:48:11 +02003940 hda_cleanup_all_streams(codec);
Takashi Iwaid8193872012-08-31 07:54:38 -07003941 state = hda_set_power_state(codec, AC_PWRST_D3);
Takashi Iwaia2d96e72012-05-09 12:36:22 +02003942 trace_hda_power_down(codec);
Takashi Iwaicc72da72015-02-19 16:00:22 +01003943 update_power_acct(codec, true);
3944 atomic_dec(&codec->in_pm);
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003945 return state;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003946}
3947
Takashi Iwaic370dd62012-12-13 18:30:04 +01003948/* mark all entries of cmd and amp caches dirty */
3949static void hda_mark_cmd_cache_dirty(struct hda_codec *codec)
3950{
3951 int i;
3952 for (i = 0; i < codec->cmd_cache.buf.used; i++) {
3953 struct hda_cache_head *cmd;
3954 cmd = snd_array_elem(&codec->cmd_cache.buf, i);
3955 cmd->dirty = 1;
3956 }
3957 for (i = 0; i < codec->amp_cache.buf.used; i++) {
3958 struct hda_amp_info *amp;
David Henningssonf038fca2013-01-15 15:27:19 +01003959 amp = snd_array_elem(&codec->amp_cache.buf, i);
Takashi Iwaic370dd62012-12-13 18:30:04 +01003960 amp->head.dirty = 1;
3961 }
3962}
3963
Takashi Iwaicb53c622007-08-10 17:21:45 +02003964/*
3965 * kick up codec; used both from PM and power-save
3966 */
3967static void hda_call_codec_resume(struct hda_codec *codec)
3968{
Takashi Iwaicc72da72015-02-19 16:00:22 +01003969 atomic_inc(&codec->in_pm);
Takashi Iwai989c3182012-11-19 14:14:58 +01003970
Takashi Iwaicc72da72015-02-19 16:00:22 +01003971 trace_hda_power_up(codec);
Takashi Iwaic370dd62012-12-13 18:30:04 +01003972 hda_mark_cmd_cache_dirty(codec);
3973
Takashi Iwaicc72da72015-02-19 16:00:22 +01003974 codec->power_jiffies = jiffies;
Takashi Iwaicc72da72015-02-19 16:00:22 +01003975
Takashi Iwaid8193872012-08-31 07:54:38 -07003976 hda_set_power_state(codec, AC_PWRST_D0);
Takashi Iwaiac0547d2010-07-05 16:50:13 +02003977 restore_shutup_pins(codec);
Takashi Iwai11aeff02008-07-30 15:01:46 +02003978 hda_exec_init_verbs(codec);
Takashi Iwai31614bb2013-01-23 15:58:40 +01003979 snd_hda_jack_set_dirty_all(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003980 if (codec->patch_ops.resume)
3981 codec->patch_ops.resume(codec);
3982 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02003983 if (codec->patch_ops.init)
3984 codec->patch_ops.init(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003985 snd_hda_codec_resume_amp(codec);
3986 snd_hda_codec_resume_cache(codec);
3987 }
David Henningsson26a6cb62012-10-09 15:04:21 +02003988
3989 if (codec->jackpoll_interval)
3990 hda_jackpoll_work(&codec->jackpoll_work.work);
Takashi Iwai31614bb2013-01-23 15:58:40 +01003991 else
David Henningsson26a6cb62012-10-09 15:04:21 +02003992 snd_hda_jack_report_sync(codec);
Takashi Iwaicc72da72015-02-19 16:00:22 +01003993 atomic_dec(&codec->in_pm);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003994}
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003995
Takashi Iwaicc72da72015-02-19 16:00:22 +01003996static int hda_codec_runtime_suspend(struct device *dev)
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003997{
3998 struct hda_codec *codec = dev_to_hda_codec(dev);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003999 struct hda_pcm *pcm;
Takashi Iwaicc72da72015-02-19 16:00:22 +01004000 unsigned int state;
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01004001
4002 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01004003 list_for_each_entry(pcm, &codec->pcm_list_head, list)
4004 snd_pcm_suspend_all(pcm->pcm);
Takashi Iwaicc72da72015-02-19 16:00:22 +01004005 state = hda_call_codec_suspend(codec);
Takashi Iwai55ed9cd2015-02-19 17:35:32 +01004006 if (codec->d3_stop_clk && codec->epss && (state & AC_PWRST_CLK_STOP_OK))
4007 clear_bit(codec->addr, &codec->bus->codec_powered);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01004008 return 0;
4009}
4010
Takashi Iwaicc72da72015-02-19 16:00:22 +01004011static int hda_codec_runtime_resume(struct device *dev)
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01004012{
Takashi Iwai55ed9cd2015-02-19 17:35:32 +01004013 struct hda_codec *codec = dev_to_hda_codec(dev);
4014
4015 set_bit(codec->addr, &codec->bus->codec_powered);
4016 hda_call_codec_resume(codec);
Takashi Iwaicc72da72015-02-19 16:00:22 +01004017 pm_runtime_mark_last_busy(dev);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01004018 return 0;
4019}
Takashi Iwai2a439522011-07-26 09:52:50 +02004020#endif /* CONFIG_PM */
Takashi Iwaicb53c622007-08-10 17:21:45 +02004021
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01004022/* referred in hda_bind.c */
4023const struct dev_pm_ops hda_codec_driver_pm = {
Takashi Iwaicc72da72015-02-19 16:00:22 +01004024 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
4025 pm_runtime_force_resume)
4026 SET_RUNTIME_PM_OPS(hda_codec_runtime_suspend, hda_codec_runtime_resume,
4027 NULL)
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01004028};
Takashi Iwai54d17402005-11-21 16:33:22 +01004029
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030/**
4031 * snd_hda_build_controls - build mixer controls
4032 * @bus: the BUS
4033 *
4034 * Creates mixer controls for each codec included in the bus.
4035 *
4036 * Returns 0 if successful, otherwise a negative error code.
4037 */
Takashi Iwai6a0f56a2012-12-07 07:41:56 +01004038int snd_hda_build_controls(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039{
Takashi Iwai0ba21762007-04-16 11:29:14 +02004040 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041
Takashi Iwai0ba21762007-04-16 11:29:14 +02004042 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004043 int err = snd_hda_codec_build_controls(codec);
Takashi Iwaif93d4612009-03-02 10:44:15 +01004044 if (err < 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01004045 codec_err(codec,
4046 "cannot build controls for #%d (error %d)\n",
4047 codec->addr, err);
Takashi Iwaif93d4612009-03-02 10:44:15 +01004048 err = snd_hda_codec_reset(codec);
4049 if (err < 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01004050 codec_err(codec,
4051 "cannot revert codec\n");
Takashi Iwaif93d4612009-03-02 10:44:15 +01004052 return err;
4053 }
4054 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004056 return 0;
4057}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004058EXPORT_SYMBOL_GPL(snd_hda_build_controls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059
Takashi Iwai9c9a5172012-07-31 11:35:35 +02004060/*
4061 * add standard channel maps if not specified
4062 */
4063static int add_std_chmaps(struct hda_codec *codec)
4064{
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01004065 struct hda_pcm *pcm;
4066 int str, err;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02004067
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01004068 list_for_each_entry(pcm, &codec->pcm_list_head, list) {
Takashi Iwai9c9a5172012-07-31 11:35:35 +02004069 for (str = 0; str < 2; str++) {
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01004070 struct hda_pcm_stream *hinfo = &pcm->stream[str];
Takashi Iwai9c9a5172012-07-31 11:35:35 +02004071 struct snd_pcm_chmap *chmap;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01004072 const struct snd_pcm_chmap_elem *elem;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02004073
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01004074 if (pcm->own_chmap)
Takashi Iwai9c9a5172012-07-31 11:35:35 +02004075 continue;
4076 if (!pcm || !hinfo->substreams)
4077 continue;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01004078 elem = hinfo->chmap ? hinfo->chmap : snd_pcm_std_chmaps;
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01004079 err = snd_pcm_add_chmap_ctls(pcm->pcm, str, elem,
Takashi Iwai9c9a5172012-07-31 11:35:35 +02004080 hinfo->channels_max,
4081 0, &chmap);
4082 if (err < 0)
4083 return err;
4084 chmap->channel_mask = SND_PCM_CHMAP_MASK_2468;
4085 }
4086 }
4087 return 0;
4088}
4089
Takashi Iwaiee81abb2012-11-08 17:12:10 +01004090/* default channel maps for 2.1 speakers;
4091 * since HD-audio supports only stereo, odd number channels are omitted
4092 */
4093const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps[] = {
4094 { .channels = 2,
4095 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
4096 { .channels = 4,
4097 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
4098 SNDRV_CHMAP_LFE, SNDRV_CHMAP_LFE } },
4099 { }
4100};
4101EXPORT_SYMBOL_GPL(snd_pcm_2_1_chmaps);
4102
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004103int snd_hda_codec_build_controls(struct hda_codec *codec)
4104{
4105 int err = 0;
Takashi Iwai11aeff02008-07-30 15:01:46 +02004106 hda_exec_init_verbs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004107 /* continue to initialize... */
4108 if (codec->patch_ops.init)
4109 err = codec->patch_ops.init(codec);
4110 if (!err && codec->patch_ops.build_controls)
4111 err = codec->patch_ops.build_controls(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004112 if (err < 0)
4113 return err;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02004114
4115 /* we create chmaps here instead of build_pcms */
4116 err = add_std_chmaps(codec);
4117 if (err < 0)
4118 return err;
4119
David Henningsson26a6cb62012-10-09 15:04:21 +02004120 if (codec->jackpoll_interval)
4121 hda_jackpoll_work(&codec->jackpoll_work.work);
4122 else
4123 snd_hda_jack_report_sync(codec); /* call at the last init point */
Takashi Iwaib9c590b2013-01-24 17:27:32 +01004124 sync_power_up_states(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 return 0;
4126}
4127
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128/*
4129 * stream formats
4130 */
Takashi Iwaibefdf312005-08-22 13:57:55 +02004131struct hda_rate_tbl {
4132 unsigned int hz;
4133 unsigned int alsa_bits;
4134 unsigned int hda_fmt;
4135};
4136
Takashi Iwai92f10b32010-08-03 14:21:00 +02004137/* rate = base * mult / div */
4138#define HDA_RATE(base, mult, div) \
4139 (AC_FMT_BASE_##base##K | (((mult) - 1) << AC_FMT_MULT_SHIFT) | \
4140 (((div) - 1) << AC_FMT_DIV_SHIFT))
4141
Takashi Iwaibefdf312005-08-22 13:57:55 +02004142static struct hda_rate_tbl rate_bits[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143 /* rate in Hz, ALSA rate bitmask, HDA format value */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02004144
4145 /* autodetected value used in snd_hda_query_supported_pcm */
Takashi Iwai92f10b32010-08-03 14:21:00 +02004146 { 8000, SNDRV_PCM_RATE_8000, HDA_RATE(48, 1, 6) },
4147 { 11025, SNDRV_PCM_RATE_11025, HDA_RATE(44, 1, 4) },
4148 { 16000, SNDRV_PCM_RATE_16000, HDA_RATE(48, 1, 3) },
4149 { 22050, SNDRV_PCM_RATE_22050, HDA_RATE(44, 1, 2) },
4150 { 32000, SNDRV_PCM_RATE_32000, HDA_RATE(48, 2, 3) },
4151 { 44100, SNDRV_PCM_RATE_44100, HDA_RATE(44, 1, 1) },
4152 { 48000, SNDRV_PCM_RATE_48000, HDA_RATE(48, 1, 1) },
4153 { 88200, SNDRV_PCM_RATE_88200, HDA_RATE(44, 2, 1) },
4154 { 96000, SNDRV_PCM_RATE_96000, HDA_RATE(48, 2, 1) },
4155 { 176400, SNDRV_PCM_RATE_176400, HDA_RATE(44, 4, 1) },
4156 { 192000, SNDRV_PCM_RATE_192000, HDA_RATE(48, 4, 1) },
Takashi Iwaia961f9f2007-04-12 13:08:09 +02004157#define AC_PAR_PCM_RATE_BITS 11
4158 /* up to bits 10, 384kHZ isn't supported properly */
4159
4160 /* not autodetected value */
Takashi Iwai92f10b32010-08-03 14:21:00 +02004161 { 9600, SNDRV_PCM_RATE_KNOT, HDA_RATE(48, 1, 5) },
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02004162
Takashi Iwaibefdf312005-08-22 13:57:55 +02004163 { 0 } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164};
4165
4166/**
4167 * snd_hda_calc_stream_format - calculate format bitset
Takashi Iwai6194b992014-06-06 18:12:16 +02004168 * @codec: HD-audio codec
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 * @rate: the sample rate
4170 * @channels: the number of channels
4171 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
4172 * @maxbps: the max. bps
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004173 * @spdif_ctls: HD-audio SPDIF status bits (0 if irrelevant)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174 *
4175 * Calculate the format bitset from the given rate, channels and th PCM format.
4176 *
4177 * Return zero if invalid.
4178 */
Takashi Iwai6194b992014-06-06 18:12:16 +02004179unsigned int snd_hda_calc_stream_format(struct hda_codec *codec,
4180 unsigned int rate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181 unsigned int channels,
4182 unsigned int format,
Anssi Hannula32c168c2010-08-03 13:28:57 +03004183 unsigned int maxbps,
4184 unsigned short spdif_ctls)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185{
4186 int i;
4187 unsigned int val = 0;
4188
Takashi Iwaibefdf312005-08-22 13:57:55 +02004189 for (i = 0; rate_bits[i].hz; i++)
4190 if (rate_bits[i].hz == rate) {
4191 val = rate_bits[i].hda_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192 break;
4193 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02004194 if (!rate_bits[i].hz) {
Takashi Iwai6194b992014-06-06 18:12:16 +02004195 codec_dbg(codec, "invalid rate %d\n", rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196 return 0;
4197 }
4198
4199 if (channels == 0 || channels > 8) {
Takashi Iwai6194b992014-06-06 18:12:16 +02004200 codec_dbg(codec, "invalid channels %d\n", channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 return 0;
4202 }
4203 val |= channels - 1;
4204
4205 switch (snd_pcm_format_width(format)) {
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004206 case 8:
Takashi Iwai92f10b32010-08-03 14:21:00 +02004207 val |= AC_FMT_BITS_8;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004208 break;
4209 case 16:
Takashi Iwai92f10b32010-08-03 14:21:00 +02004210 val |= AC_FMT_BITS_16;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004211 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 case 20:
4213 case 24:
4214 case 32:
Takashi Iwaib0bb3aa2009-07-03 23:25:37 +02004215 if (maxbps >= 32 || format == SNDRV_PCM_FORMAT_FLOAT_LE)
Takashi Iwai92f10b32010-08-03 14:21:00 +02004216 val |= AC_FMT_BITS_32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217 else if (maxbps >= 24)
Takashi Iwai92f10b32010-08-03 14:21:00 +02004218 val |= AC_FMT_BITS_24;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219 else
Takashi Iwai92f10b32010-08-03 14:21:00 +02004220 val |= AC_FMT_BITS_20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221 break;
4222 default:
Takashi Iwai6194b992014-06-06 18:12:16 +02004223 codec_dbg(codec, "invalid format width %d\n",
Takashi Iwai4e76a882014-02-25 12:21:03 +01004224 snd_pcm_format_width(format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 return 0;
4226 }
4227
Anssi Hannula32c168c2010-08-03 13:28:57 +03004228 if (spdif_ctls & AC_DIG1_NONAUDIO)
Takashi Iwai92f10b32010-08-03 14:21:00 +02004229 val |= AC_FMT_TYPE_NON_PCM;
Anssi Hannula32c168c2010-08-03 13:28:57 +03004230
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 return val;
4232}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004233EXPORT_SYMBOL_GPL(snd_hda_calc_stream_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02004235static unsigned int get_pcm_param(struct hda_codec *codec, hda_nid_t nid,
4236 int dir)
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004237{
4238 unsigned int val = 0;
4239 if (nid != codec->afg &&
4240 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD))
4241 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
4242 if (!val || val == -1)
4243 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
4244 if (!val || val == -1)
4245 return 0;
4246 return val;
4247}
4248
4249static unsigned int query_pcm_param(struct hda_codec *codec, hda_nid_t nid)
4250{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02004251 return query_caps_hash(codec, nid, 0, HDA_HASH_PARPCM_KEY(nid),
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004252 get_pcm_param);
4253}
4254
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02004255static unsigned int get_stream_param(struct hda_codec *codec, hda_nid_t nid,
4256 int dir)
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004257{
4258 unsigned int streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
4259 if (!streams || streams == -1)
4260 streams = snd_hda_param_read(codec, codec->afg, AC_PAR_STREAM);
4261 if (!streams || streams == -1)
4262 return 0;
4263 return streams;
4264}
4265
4266static unsigned int query_stream_param(struct hda_codec *codec, hda_nid_t nid)
4267{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02004268 return query_caps_hash(codec, nid, 0, HDA_HASH_PARSTR_KEY(nid),
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004269 get_stream_param);
4270}
4271
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272/**
4273 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
4274 * @codec: the HDA codec
4275 * @nid: NID to query
4276 * @ratesp: the pointer to store the detected rate bitflags
4277 * @formatsp: the pointer to store the detected formats
4278 * @bpsp: the pointer to store the detected format widths
4279 *
4280 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
4281 * or @bsps argument is ignored.
4282 *
4283 * Returns 0 if successful, otherwise a negative error code.
4284 */
Stephen Warren384a48d2011-06-01 11:14:21 -06004285int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286 u32 *ratesp, u64 *formatsp, unsigned int *bpsp)
4287{
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004288 unsigned int i, val, wcaps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004290 wcaps = get_wcaps(codec, nid);
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004291 val = query_pcm_param(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292
4293 if (ratesp) {
4294 u32 rates = 0;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02004295 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296 if (val & (1 << i))
Takashi Iwaibefdf312005-08-22 13:57:55 +02004297 rates |= rate_bits[i].alsa_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 }
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004299 if (rates == 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01004300 codec_err(codec,
4301 "rates == 0 (nid=0x%x, val=0x%x, ovrd=%i)\n",
4302 nid, val,
4303 (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0);
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004304 return -EIO;
4305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 *ratesp = rates;
4307 }
4308
4309 if (formatsp || bpsp) {
4310 u64 formats = 0;
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004311 unsigned int streams, bps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004313 streams = query_stream_param(codec, nid);
4314 if (!streams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316
4317 bps = 0;
4318 if (streams & AC_SUPFMT_PCM) {
4319 if (val & AC_SUPPCM_BITS_8) {
4320 formats |= SNDRV_PCM_FMTBIT_U8;
4321 bps = 8;
4322 }
4323 if (val & AC_SUPPCM_BITS_16) {
4324 formats |= SNDRV_PCM_FMTBIT_S16_LE;
4325 bps = 16;
4326 }
4327 if (wcaps & AC_WCAP_DIGITAL) {
4328 if (val & AC_SUPPCM_BITS_32)
4329 formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
4330 if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24))
4331 formats |= SNDRV_PCM_FMTBIT_S32_LE;
4332 if (val & AC_SUPPCM_BITS_24)
4333 bps = 24;
4334 else if (val & AC_SUPPCM_BITS_20)
4335 bps = 20;
Takashi Iwai0ba21762007-04-16 11:29:14 +02004336 } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24|
4337 AC_SUPPCM_BITS_32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 formats |= SNDRV_PCM_FMTBIT_S32_LE;
4339 if (val & AC_SUPPCM_BITS_32)
4340 bps = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 else if (val & AC_SUPPCM_BITS_24)
4342 bps = 24;
Nicolas Graziano33ef76512006-09-19 14:23:14 +02004343 else if (val & AC_SUPPCM_BITS_20)
4344 bps = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 }
4346 }
Takashi Iwai8c7dd892012-05-12 09:38:05 +02004347#if 0 /* FIXME: CS4206 doesn't work, which is the only codec supporting float */
Takashi Iwaib5025c52009-07-01 18:05:27 +02004348 if (streams & AC_SUPFMT_FLOAT32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349 formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
Takashi Iwaib0bb3aa2009-07-03 23:25:37 +02004350 if (!bps)
4351 bps = 32;
Takashi Iwaib5025c52009-07-01 18:05:27 +02004352 }
Takashi Iwai8c7dd892012-05-12 09:38:05 +02004353#endif
Takashi Iwaib5025c52009-07-01 18:05:27 +02004354 if (streams == AC_SUPFMT_AC3) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02004355 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 /* temporary hack: we have still no proper support
4357 * for the direct AC3 stream...
4358 */
4359 formats |= SNDRV_PCM_FMTBIT_U8;
4360 bps = 8;
4361 }
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004362 if (formats == 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01004363 codec_err(codec,
4364 "formats == 0 (nid=0x%x, val=0x%x, ovrd=%i, streams=0x%x)\n",
4365 nid, val,
4366 (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0,
4367 streams);
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004368 return -EIO;
4369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370 if (formatsp)
4371 *formatsp = formats;
4372 if (bpsp)
4373 *bpsp = bps;
4374 }
4375
4376 return 0;
4377}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004378EXPORT_SYMBOL_GPL(snd_hda_query_supported_pcm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379
4380/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01004381 * snd_hda_is_supported_format - Check the validity of the format
4382 * @codec: HD-audio codec
4383 * @nid: NID to check
4384 * @format: the HD-audio format value to check
4385 *
4386 * Check whether the given node supports the format value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387 *
4388 * Returns 1 if supported, 0 if not.
4389 */
4390int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
4391 unsigned int format)
4392{
4393 int i;
4394 unsigned int val = 0, rate, stream;
4395
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004396 val = query_pcm_param(codec, nid);
4397 if (!val)
4398 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399
4400 rate = format & 0xff00;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02004401 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++)
Takashi Iwaibefdf312005-08-22 13:57:55 +02004402 if (rate_bits[i].hda_fmt == rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403 if (val & (1 << i))
4404 break;
4405 return 0;
4406 }
Takashi Iwaia961f9f2007-04-12 13:08:09 +02004407 if (i >= AC_PAR_PCM_RATE_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408 return 0;
4409
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004410 stream = query_stream_param(codec, nid);
4411 if (!stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412 return 0;
4413
4414 if (stream & AC_SUPFMT_PCM) {
4415 switch (format & 0xf0) {
4416 case 0x00:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004417 if (!(val & AC_SUPPCM_BITS_8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418 return 0;
4419 break;
4420 case 0x10:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004421 if (!(val & AC_SUPPCM_BITS_16))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422 return 0;
4423 break;
4424 case 0x20:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004425 if (!(val & AC_SUPPCM_BITS_20))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426 return 0;
4427 break;
4428 case 0x30:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004429 if (!(val & AC_SUPPCM_BITS_24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430 return 0;
4431 break;
4432 case 0x40:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004433 if (!(val & AC_SUPPCM_BITS_32))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434 return 0;
4435 break;
4436 default:
4437 return 0;
4438 }
4439 } else {
4440 /* FIXME: check for float32 and AC3? */
4441 }
4442
4443 return 1;
4444}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004445EXPORT_SYMBOL_GPL(snd_hda_is_supported_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446
4447/*
4448 * PCM stuff
4449 */
4450static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
4451 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004452 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453{
4454 return 0;
4455}
4456
4457static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
4458 struct hda_codec *codec,
4459 unsigned int stream_tag,
4460 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004461 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462{
4463 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
4464 return 0;
4465}
4466
4467static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
4468 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004469 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470{
Takashi Iwai888afa12008-03-18 09:57:50 +01004471 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472 return 0;
4473}
4474
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004475static int set_pcm_default_values(struct hda_codec *codec,
4476 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477{
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004478 int err;
4479
Takashi Iwai0ba21762007-04-16 11:29:14 +02004480 /* query support PCM information from the given NID */
4481 if (info->nid && (!info->rates || !info->formats)) {
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004482 err = snd_hda_query_supported_pcm(codec, info->nid,
Takashi Iwai0ba21762007-04-16 11:29:14 +02004483 info->rates ? NULL : &info->rates,
4484 info->formats ? NULL : &info->formats,
4485 info->maxbps ? NULL : &info->maxbps);
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004486 if (err < 0)
4487 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 }
4489 if (info->ops.open == NULL)
4490 info->ops.open = hda_pcm_default_open_close;
4491 if (info->ops.close == NULL)
4492 info->ops.close = hda_pcm_default_open_close;
4493 if (info->ops.prepare == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02004494 if (snd_BUG_ON(!info->nid))
4495 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496 info->ops.prepare = hda_pcm_default_prepare;
4497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498 if (info->ops.cleanup == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02004499 if (snd_BUG_ON(!info->nid))
4500 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 info->ops.cleanup = hda_pcm_default_cleanup;
4502 }
4503 return 0;
4504}
4505
Takashi Iwaieb541332010-08-06 13:48:11 +02004506/*
4507 * codec prepare/cleanup entries
4508 */
Takashi Iwai95a962c2014-10-29 16:03:58 +01004509/**
4510 * snd_hda_codec_prepare - Prepare a stream
4511 * @codec: the HDA codec
4512 * @hinfo: PCM information
4513 * @stream: stream tag to assign
4514 * @format: format id to assign
4515 * @substream: PCM substream to assign
4516 *
4517 * Calls the prepare callback set by the codec with the given arguments.
4518 * Clean up the inactive streams when successful.
4519 */
Takashi Iwaieb541332010-08-06 13:48:11 +02004520int snd_hda_codec_prepare(struct hda_codec *codec,
4521 struct hda_pcm_stream *hinfo,
4522 unsigned int stream,
4523 unsigned int format,
4524 struct snd_pcm_substream *substream)
4525{
4526 int ret;
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004527 mutex_lock(&codec->bus->prepare_mutex);
Takashi Iwai61ca4102015-02-27 17:57:55 +01004528 if (hinfo->ops.prepare)
4529 ret = hinfo->ops.prepare(hinfo, codec, stream, format,
4530 substream);
4531 else
4532 ret = -ENODEV;
Takashi Iwaieb541332010-08-06 13:48:11 +02004533 if (ret >= 0)
4534 purify_inactive_streams(codec);
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004535 mutex_unlock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02004536 return ret;
4537}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004538EXPORT_SYMBOL_GPL(snd_hda_codec_prepare);
Takashi Iwaieb541332010-08-06 13:48:11 +02004539
Takashi Iwai95a962c2014-10-29 16:03:58 +01004540/**
4541 * snd_hda_codec_cleanup - Prepare a stream
4542 * @codec: the HDA codec
4543 * @hinfo: PCM information
4544 * @substream: PCM substream
4545 *
4546 * Calls the cleanup callback set by the codec with the given arguments.
4547 */
Takashi Iwaieb541332010-08-06 13:48:11 +02004548void snd_hda_codec_cleanup(struct hda_codec *codec,
4549 struct hda_pcm_stream *hinfo,
4550 struct snd_pcm_substream *substream)
4551{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004552 mutex_lock(&codec->bus->prepare_mutex);
Takashi Iwai61ca4102015-02-27 17:57:55 +01004553 if (hinfo->ops.cleanup)
4554 hinfo->ops.cleanup(hinfo, codec, substream);
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004555 mutex_unlock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02004556}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004557EXPORT_SYMBOL_GPL(snd_hda_codec_cleanup);
Takashi Iwaieb541332010-08-06 13:48:11 +02004558
Takashi Iwaid5191e52009-11-16 14:58:17 +01004559/* global */
Jaroslav Kyselae3303232009-11-10 14:53:02 +01004560const char *snd_hda_pcm_type_name[HDA_PCM_NTYPES] = {
4561 "Audio", "SPDIF", "HDMI", "Modem"
4562};
4563
Takashi Iwai176d5332008-07-30 15:01:44 +02004564/*
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004565 * get the empty PCM device number to assign
4566 */
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004567static int get_empty_pcm_device(struct hda_bus *bus, unsigned int type)
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004568{
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004569 /* audio device indices; not linear to keep compatibility */
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004570 /* assigned to static slots up to dev#10; if more needed, assign
4571 * the later slot dynamically (when CONFIG_SND_DYNAMIC_MINORS=y)
4572 */
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004573 static int audio_idx[HDA_PCM_NTYPES][5] = {
4574 [HDA_PCM_TYPE_AUDIO] = { 0, 2, 4, 5, -1 },
4575 [HDA_PCM_TYPE_SPDIF] = { 1, -1 },
Wu Fengguang92608ba2009-10-30 11:40:03 +01004576 [HDA_PCM_TYPE_HDMI] = { 3, 7, 8, 9, -1 },
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004577 [HDA_PCM_TYPE_MODEM] = { 6, -1 },
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004578 };
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004579 int i;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004580
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004581 if (type >= HDA_PCM_NTYPES) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01004582 dev_err(bus->card->dev, "Invalid PCM type %d\n", type);
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004583 return -EINVAL;
4584 }
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004585
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004586 for (i = 0; audio_idx[type][i] >= 0; i++) {
4587#ifndef CONFIG_SND_DYNAMIC_MINORS
4588 if (audio_idx[type][i] >= 8)
4589 break;
4590#endif
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004591 if (!test_and_set_bit(audio_idx[type][i], bus->pcm_dev_bits))
4592 return audio_idx[type][i];
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004593 }
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004594
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004595#ifdef CONFIG_SND_DYNAMIC_MINORS
Takashi Iwai01b65bf2011-11-24 14:31:46 +01004596 /* non-fixed slots starting from 10 */
4597 for (i = 10; i < 32; i++) {
4598 if (!test_and_set_bit(i, bus->pcm_dev_bits))
4599 return i;
4600 }
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004601#endif
Takashi Iwai01b65bf2011-11-24 14:31:46 +01004602
Takashi Iwai4e76a882014-02-25 12:21:03 +01004603 dev_warn(bus->card->dev, "Too many %s devices\n",
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004604 snd_hda_pcm_type_name[type]);
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004605#ifndef CONFIG_SND_DYNAMIC_MINORS
Takashi Iwai4e76a882014-02-25 12:21:03 +01004606 dev_warn(bus->card->dev,
4607 "Consider building the kernel with CONFIG_SND_DYNAMIC_MINORS=y\n");
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004608#endif
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004609 return -EAGAIN;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004610}
4611
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004612/* call build_pcms ops of the given codec and set up the default parameters */
4613int snd_hda_codec_parse_pcms(struct hda_codec *codec)
Takashi Iwai176d5332008-07-30 15:01:44 +02004614{
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01004615 struct hda_pcm *cpcm;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004616 int err;
Takashi Iwai176d5332008-07-30 15:01:44 +02004617
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01004618 if (!list_empty(&codec->pcm_list_head))
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004619 return 0; /* already parsed */
4620
4621 if (!codec->patch_ops.build_pcms)
4622 return 0;
4623
4624 err = codec->patch_ops.build_pcms(codec);
4625 if (err < 0) {
4626 codec_err(codec, "cannot build PCMs for #%d (error %d)\n",
4627 codec->addr, err);
4628 return err;
4629 }
4630
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01004631 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004632 int stream;
4633
4634 for (stream = 0; stream < 2; stream++) {
4635 struct hda_pcm_stream *info = &cpcm->stream[stream];
4636
4637 if (!info->substreams)
4638 continue;
Takashi Iwai176d5332008-07-30 15:01:44 +02004639 err = set_pcm_default_values(codec, info);
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004640 if (err < 0) {
4641 codec_warn(codec,
4642 "fail to setup default for PCM %s\n",
4643 cpcm->name);
Takashi Iwai176d5332008-07-30 15:01:44 +02004644 return err;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004645 }
Takashi Iwai176d5332008-07-30 15:01:44 +02004646 }
4647 }
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004648
4649 return 0;
Takashi Iwai176d5332008-07-30 15:01:44 +02004650}
4651
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004652/* assign all PCMs of the given codec */
4653int snd_hda_codec_build_pcms(struct hda_codec *codec)
4654{
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004655 struct hda_bus *bus = codec->bus;
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01004656 struct hda_pcm *cpcm;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004657 int dev, err;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004658
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004659 if (snd_BUG_ON(!bus->ops.attach_pcm))
4660 return -EINVAL;
4661
4662 err = snd_hda_codec_parse_pcms(codec);
4663 if (err < 0) {
4664 snd_hda_codec_reset(codec);
4665 return err;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004666 }
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004667
4668 /* attach a new PCM streams */
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01004669 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004670 if (cpcm->pcm)
4671 continue; /* already attached */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004672 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
Takashi Iwai41b5b012009-01-20 18:21:23 +01004673 continue; /* no substreams assigned */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004674
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004675 dev = get_empty_pcm_device(bus, cpcm->pcm_type);
4676 if (dev < 0)
4677 continue; /* no fatal error */
4678 cpcm->device = dev;
4679 err = bus->ops.attach_pcm(bus, codec, cpcm);
4680 if (err < 0) {
4681 codec_err(codec,
4682 "cannot attach PCM stream %d for codec #%d\n",
4683 dev, codec->addr);
4684 continue; /* no fatal error */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004685 }
4686 }
Takashi Iwai1a4ba302015-02-24 11:50:11 +01004687
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004688 return 0;
4689}
4690
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691/**
4692 * snd_hda_build_pcms - build PCM information
4693 * @bus: the BUS
4694 *
4695 * Create PCM information for each codec included in the bus.
4696 *
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01004697 * The build_pcms codec patch is requested to create and assign new
4698 * hda_pcm objects. The codec is responsible to call snd_hda_codec_pcm_new()
4699 * and fills the fields. Later they are instantiated by this function.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004700 *
4701 * At least, substreams, channels_min and channels_max must be filled for
4702 * each stream. substreams = 0 indicates that the stream doesn't exist.
4703 * When rates and/or formats are zero, the supported values are queried
4704 * from the given nid. The nid is used also by the default ops.prepare
4705 * and ops.cleanup callbacks.
4706 *
4707 * The driver needs to call ops.open in its open callback. Similarly,
4708 * ops.close is supposed to be called in the close callback.
4709 * ops.prepare should be called in the prepare or hw_params callback
4710 * with the proper parameters for set up.
4711 * ops.cleanup should be called in hw_free for clean up of streams.
4712 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004713 * This function returns 0 if successful, or a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714 */
Takashi Iwai5cb543d2012-08-09 13:49:23 +02004715int snd_hda_build_pcms(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716{
Takashi Iwai0ba21762007-04-16 11:29:14 +02004717 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718
Takashi Iwai0ba21762007-04-16 11:29:14 +02004719 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004720 int err = snd_hda_codec_build_pcms(codec);
4721 if (err < 0)
4722 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 }
4724 return 0;
4725}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004726EXPORT_SYMBOL_GPL(snd_hda_build_pcms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 * snd_hda_add_new_ctls - create controls from the array
4730 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004731 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07004732 *
4733 * This helper function creates and add new controls in the given array.
4734 * The array must be terminated with an empty entry as terminator.
4735 *
4736 * Returns 0 if successful, or a negative error code.
4737 */
Takashi Iwai031024e2011-05-02 11:29:30 +02004738int snd_hda_add_new_ctls(struct hda_codec *codec,
4739 const struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004740{
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01004741 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742
4743 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01004744 struct snd_kcontrol *kctl;
Takashi Iwai1afe2062010-12-23 10:17:52 +01004745 int addr = 0, idx = 0;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01004746 if (knew->iface == -1) /* skip this codec private value */
4747 continue;
Takashi Iwai1afe2062010-12-23 10:17:52 +01004748 for (;;) {
Takashi Iwai54d17402005-11-21 16:33:22 +01004749 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02004750 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01004751 return -ENOMEM;
Takashi Iwai1afe2062010-12-23 10:17:52 +01004752 if (addr > 0)
4753 kctl->id.device = addr;
4754 if (idx > 0)
4755 kctl->id.index = idx;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01004756 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai1afe2062010-12-23 10:17:52 +01004757 if (!err)
4758 break;
4759 /* try first with another device index corresponding to
4760 * the codec addr; if it still fails (or it's the
4761 * primary codec), then try another control index
4762 */
4763 if (!addr && codec->addr)
4764 addr = codec->addr;
4765 else if (!idx && !knew->index) {
4766 idx = find_empty_mixer_ctl_idx(codec,
Takashi Iwaidcda5802012-10-12 17:24:51 +02004767 knew->name, 0);
Takashi Iwai1afe2062010-12-23 10:17:52 +01004768 if (idx <= 0)
4769 return err;
4770 } else
Takashi Iwai54d17402005-11-21 16:33:22 +01004771 return err;
4772 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773 }
4774 return 0;
4775}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004776EXPORT_SYMBOL_GPL(snd_hda_add_new_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777
Takashi Iwai83012a72012-08-24 18:38:08 +02004778#ifdef CONFIG_PM
Takashi Iwaicc72da72015-02-19 16:00:22 +01004779/**
4780 * snd_hda_power_up - Power-up the codec
4781 * @codec: HD-audio codec
4782 *
4783 * Increment the usage counter and resume the device if not done yet.
4784 */
4785void snd_hda_power_up(struct hda_codec *codec)
Takashi Iwaicb53c622007-08-10 17:21:45 +02004786{
Takashi Iwaicc72da72015-02-19 16:00:22 +01004787 struct device *dev = hda_codec_dev(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004788
Takashi Iwaicc72da72015-02-19 16:00:22 +01004789 if (codec_in_pm(codec))
Takashi Iwaia2d96e72012-05-09 12:36:22 +02004790 return;
Takashi Iwaicc72da72015-02-19 16:00:22 +01004791 pm_runtime_get_sync(dev);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004792}
Takashi Iwaicc72da72015-02-19 16:00:22 +01004793EXPORT_SYMBOL_GPL(snd_hda_power_up);
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004794
4795/**
Takashi Iwaicc72da72015-02-19 16:00:22 +01004796 * snd_hda_power_down - Power-down the codec
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004797 * @codec: HD-audio codec
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004798 *
Takashi Iwaicc72da72015-02-19 16:00:22 +01004799 * Decrement the usage counter and schedules the autosuspend if none used.
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004800 */
Takashi Iwaicc72da72015-02-19 16:00:22 +01004801void snd_hda_power_down(struct hda_codec *codec)
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004802{
Takashi Iwaicc72da72015-02-19 16:00:22 +01004803 struct device *dev = hda_codec_dev(codec);
4804
4805 if (codec_in_pm(codec))
4806 return;
4807 pm_runtime_mark_last_busy(dev);
4808 pm_runtime_put_autosuspend(dev);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004809}
Takashi Iwaicc72da72015-02-19 16:00:22 +01004810EXPORT_SYMBOL_GPL(snd_hda_power_down);
4811
Takashi Iwaibb573922015-02-20 09:26:04 +01004812static void codec_set_power_save(struct hda_codec *codec, int delay)
Takashi Iwaicc72da72015-02-19 16:00:22 +01004813{
4814 struct device *dev = hda_codec_dev(codec);
Takashi Iwaicc72da72015-02-19 16:00:22 +01004815
Takashi Iwaicc72da72015-02-19 16:00:22 +01004816 if (delay > 0) {
4817 pm_runtime_set_autosuspend_delay(dev, delay);
4818 pm_runtime_use_autosuspend(dev);
4819 pm_runtime_allow(dev);
4820 if (!pm_runtime_suspended(dev))
4821 pm_runtime_mark_last_busy(dev);
4822 } else {
4823 pm_runtime_dont_use_autosuspend(dev);
4824 pm_runtime_forbid(dev);
4825 }
4826}
Takashi Iwaibb573922015-02-20 09:26:04 +01004827
4828/**
4829 * snd_hda_set_power_save - reprogram autosuspend for the given delay
4830 * @bus: HD-audio bus
4831 * @delay: autosuspend delay in msec, 0 = off
4832 *
4833 * Synchronize the runtime PM autosuspend state from the power_save option.
4834 */
4835void snd_hda_set_power_save(struct hda_bus *bus, int delay)
4836{
4837 struct hda_codec *c;
4838
4839 list_for_each_entry(c, &bus->codec_list, list)
4840 codec_set_power_save(c, delay);
4841}
4842EXPORT_SYMBOL_GPL(snd_hda_set_power_save);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004843
Takashi Iwaid5191e52009-11-16 14:58:17 +01004844/**
4845 * snd_hda_check_amp_list_power - Check the amp list and update the power
4846 * @codec: HD-audio codec
4847 * @check: the object containing an AMP list and the status
4848 * @nid: NID to check / update
4849 *
4850 * Check whether the given NID is in the amp list. If it's in the list,
4851 * check the current AMP status, and update the the power-status according
4852 * to the mute status.
4853 *
4854 * This function is supposed to be set or called from the check_power_status
4855 * patch ops.
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004856 */
Takashi Iwaicb53c622007-08-10 17:21:45 +02004857int snd_hda_check_amp_list_power(struct hda_codec *codec,
4858 struct hda_loopback_check *check,
4859 hda_nid_t nid)
4860{
Takashi Iwai031024e2011-05-02 11:29:30 +02004861 const struct hda_amp_list *p;
Takashi Iwaicb53c622007-08-10 17:21:45 +02004862 int ch, v;
4863
4864 if (!check->amplist)
4865 return 0;
4866 for (p = check->amplist; p->nid; p++) {
4867 if (p->nid == nid)
4868 break;
4869 }
4870 if (!p->nid)
4871 return 0; /* nothing changed */
4872
4873 for (p = check->amplist; p->nid; p++) {
4874 for (ch = 0; ch < 2; ch++) {
4875 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
4876 p->idx);
4877 if (!(v & HDA_AMP_MUTE) && v > 0) {
4878 if (!check->power_on) {
4879 check->power_on = 1;
4880 snd_hda_power_up(codec);
4881 }
4882 return 1;
4883 }
4884 }
4885 }
4886 if (check->power_on) {
4887 check->power_on = 0;
4888 snd_hda_power_down(codec);
4889 }
4890 return 0;
4891}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004892EXPORT_SYMBOL_GPL(snd_hda_check_amp_list_power);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004893#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004895/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896 * input MUX helper
4897 */
Takashi Iwaid5191e52009-11-16 14:58:17 +01004898
4899/**
4900 * snd_hda_input_mux_info_info - Info callback helper for the input-mux enum
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004901 * @imux: imux helper object
4902 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01004903 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004904int snd_hda_input_mux_info(const struct hda_input_mux *imux,
4905 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906{
4907 unsigned int index;
4908
4909 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
4910 uinfo->count = 1;
4911 uinfo->value.enumerated.items = imux->num_items;
Takashi Iwai5513b0c2007-10-09 11:58:41 +02004912 if (!imux->num_items)
4913 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914 index = uinfo->value.enumerated.item;
4915 if (index >= imux->num_items)
4916 index = imux->num_items - 1;
4917 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
4918 return 0;
4919}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004920EXPORT_SYMBOL_GPL(snd_hda_input_mux_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004921
Takashi Iwaid5191e52009-11-16 14:58:17 +01004922/**
4923 * snd_hda_input_mux_info_put - Put callback helper for the input-mux enum
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004924 * @codec: the HDA codec
4925 * @imux: imux helper object
4926 * @ucontrol: pointer to get/store the data
4927 * @nid: input mux NID
4928 * @cur_val: pointer to get/store the current imux value
Takashi Iwaid5191e52009-11-16 14:58:17 +01004929 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004930int snd_hda_input_mux_put(struct hda_codec *codec,
4931 const struct hda_input_mux *imux,
4932 struct snd_ctl_elem_value *ucontrol,
4933 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004934 unsigned int *cur_val)
4935{
4936 unsigned int idx;
4937
Takashi Iwai5513b0c2007-10-09 11:58:41 +02004938 if (!imux->num_items)
4939 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004940 idx = ucontrol->value.enumerated.item[0];
4941 if (idx >= imux->num_items)
4942 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02004943 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004944 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02004945 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
4946 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947 *cur_val = idx;
4948 return 1;
4949}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004950EXPORT_SYMBOL_GPL(snd_hda_input_mux_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004951
4952
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004953/**
4954 * snd_hda_enum_helper_info - Helper for simple enum ctls
4955 * @kcontrol: ctl element
4956 * @uinfo: pointer to get/store the data
4957 * @num_items: number of enum items
4958 * @texts: enum item string array
4959 *
Takashi Iwaidda415d2012-11-30 18:34:38 +01004960 * process kcontrol info callback of a simple string enum array
4961 * when @num_items is 0 or @texts is NULL, assume a boolean enum array
4962 */
4963int snd_hda_enum_helper_info(struct snd_kcontrol *kcontrol,
4964 struct snd_ctl_elem_info *uinfo,
4965 int num_items, const char * const *texts)
4966{
4967 static const char * const texts_default[] = {
4968 "Disabled", "Enabled"
4969 };
4970
4971 if (!texts || !num_items) {
4972 num_items = 2;
4973 texts = texts_default;
4974 }
4975
Takashi Iwai3ff72212014-10-20 18:17:28 +02004976 return snd_ctl_enum_info(uinfo, 1, num_items, texts);
Takashi Iwaidda415d2012-11-30 18:34:38 +01004977}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004978EXPORT_SYMBOL_GPL(snd_hda_enum_helper_info);
Takashi Iwaidda415d2012-11-30 18:34:38 +01004979
4980/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004981 * Multi-channel / digital-out PCM helper functions
4982 */
4983
Takashi Iwai6b97eb42007-04-05 14:51:48 +02004984/* setup SPDIF output stream */
4985static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
4986 unsigned int stream_tag, unsigned int format)
4987{
Laurence Darby3bef1c32012-11-03 17:00:06 +00004988 struct hda_spdif_out *spdif;
4989 unsigned int curr_fmt;
4990 bool reset;
Stephen Warren7c9359762011-06-01 11:14:17 -06004991
Laurence Darby3bef1c32012-11-03 17:00:06 +00004992 spdif = snd_hda_spdif_out_of_nid(codec, nid);
4993 curr_fmt = snd_hda_codec_read(codec, nid, 0,
4994 AC_VERB_GET_STREAM_FORMAT, 0);
4995 reset = codec->spdif_status_reset &&
4996 (spdif->ctls & AC_DIG1_ENABLE) &&
4997 curr_fmt != format;
4998
4999 /* turn off SPDIF if needed; otherwise the IEC958 bits won't be
5000 updated */
5001 if (reset)
Norberto Lopes28aedaf2010-02-28 20:16:53 +01005002 set_dig_out_convert(codec, nid,
Stephen Warren7c9359762011-06-01 11:14:17 -06005003 spdif->ctls & ~AC_DIG1_ENABLE & 0xff,
Takashi Iwai2f728532008-09-25 16:32:41 +02005004 -1);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005005 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Takashi Iwai2f728532008-09-25 16:32:41 +02005006 if (codec->slave_dig_outs) {
Takashi Iwaidda14412011-05-02 11:29:30 +02005007 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02005008 for (d = codec->slave_dig_outs; *d; d++)
5009 snd_hda_codec_setup_stream(codec, *d, stream_tag, 0,
5010 format);
Matthew Ranostayde51ca12008-09-07 14:31:40 -04005011 }
Takashi Iwai2f728532008-09-25 16:32:41 +02005012 /* turn on again (if needed) */
Laurence Darby3bef1c32012-11-03 17:00:06 +00005013 if (reset)
Takashi Iwai2f728532008-09-25 16:32:41 +02005014 set_dig_out_convert(codec, nid,
Stephen Warren7c9359762011-06-01 11:14:17 -06005015 spdif->ctls & 0xff, -1);
Takashi Iwai2f728532008-09-25 16:32:41 +02005016}
Matthew Ranostayde51ca12008-09-07 14:31:40 -04005017
Takashi Iwai2f728532008-09-25 16:32:41 +02005018static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid)
5019{
5020 snd_hda_codec_cleanup_stream(codec, nid);
5021 if (codec->slave_dig_outs) {
Takashi Iwaidda14412011-05-02 11:29:30 +02005022 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02005023 for (d = codec->slave_dig_outs; *d; d++)
5024 snd_hda_codec_cleanup_stream(codec, *d);
5025 }
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005026}
5027
Takashi Iwaid5191e52009-11-16 14:58:17 +01005028/**
5029 * snd_hda_bus_reboot_notify - call the reboot notifier of each codec
5030 * @bus: HD-audio bus
5031 */
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01005032void snd_hda_bus_reboot_notify(struct hda_bus *bus)
5033{
5034 struct hda_codec *codec;
5035
5036 if (!bus)
5037 return;
5038 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwaie581f3d2011-07-26 10:19:20 +02005039 if (hda_codec_is_power_on(codec) &&
5040 codec->patch_ops.reboot_notify)
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01005041 codec->patch_ops.reboot_notify(codec);
5042 }
5043}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005044EXPORT_SYMBOL_GPL(snd_hda_bus_reboot_notify);
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01005045
Takashi Iwaid5191e52009-11-16 14:58:17 +01005046/**
5047 * snd_hda_multi_out_dig_open - open the digital out in the exclusive mode
Takashi Iwaia11e9b12014-10-29 15:06:01 +01005048 * @codec: the HDA codec
5049 * @mout: hda_multi_out object
Linus Torvalds1da177e2005-04-16 15:20:36 -07005050 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005051int snd_hda_multi_out_dig_open(struct hda_codec *codec,
5052 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005053{
Ingo Molnar62932df2006-01-16 16:34:20 +01005054 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02005055 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
5056 /* already opened as analog dup; reset it once */
Takashi Iwai2f728532008-09-25 16:32:41 +02005057 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01005059 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060 return 0;
5061}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005062EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063
Takashi Iwaid5191e52009-11-16 14:58:17 +01005064/**
5065 * snd_hda_multi_out_dig_prepare - prepare the digital out stream
Takashi Iwaia11e9b12014-10-29 15:06:01 +01005066 * @codec: the HDA codec
5067 * @mout: hda_multi_out object
5068 * @stream_tag: stream tag to assign
5069 * @format: format id to assign
5070 * @substream: PCM substream to assign
Takashi Iwaid5191e52009-11-16 14:58:17 +01005071 */
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005072int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
5073 struct hda_multi_out *mout,
5074 unsigned int stream_tag,
5075 unsigned int format,
5076 struct snd_pcm_substream *substream)
5077{
5078 mutex_lock(&codec->spdif_mutex);
5079 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
5080 mutex_unlock(&codec->spdif_mutex);
5081 return 0;
5082}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005083EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_prepare);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005084
Takashi Iwaid5191e52009-11-16 14:58:17 +01005085/**
5086 * snd_hda_multi_out_dig_cleanup - clean-up the digital out stream
Takashi Iwaia11e9b12014-10-29 15:06:01 +01005087 * @codec: the HDA codec
5088 * @mout: hda_multi_out object
Takashi Iwaid5191e52009-11-16 14:58:17 +01005089 */
Takashi Iwai9411e212009-02-13 11:32:28 +01005090int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
5091 struct hda_multi_out *mout)
5092{
5093 mutex_lock(&codec->spdif_mutex);
5094 cleanup_dig_out_stream(codec, mout->dig_out_nid);
5095 mutex_unlock(&codec->spdif_mutex);
5096 return 0;
5097}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005098EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_cleanup);
Takashi Iwai9411e212009-02-13 11:32:28 +01005099
Takashi Iwaid5191e52009-11-16 14:58:17 +01005100/**
5101 * snd_hda_multi_out_dig_close - release the digital out stream
Takashi Iwaia11e9b12014-10-29 15:06:01 +01005102 * @codec: the HDA codec
5103 * @mout: hda_multi_out object
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005105int snd_hda_multi_out_dig_close(struct hda_codec *codec,
5106 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107{
Ingo Molnar62932df2006-01-16 16:34:20 +01005108 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01005110 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111 return 0;
5112}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005113EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005114
Takashi Iwaid5191e52009-11-16 14:58:17 +01005115/**
5116 * snd_hda_multi_out_analog_open - open analog outputs
Takashi Iwaia11e9b12014-10-29 15:06:01 +01005117 * @codec: the HDA codec
5118 * @mout: hda_multi_out object
5119 * @substream: PCM substream to assign
5120 * @hinfo: PCM information to assign
Takashi Iwaid5191e52009-11-16 14:58:17 +01005121 *
5122 * Open analog outputs and set up the hw-constraints.
5123 * If the digital outputs can be opened as slave, open the digital
5124 * outputs, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005126int snd_hda_multi_out_analog_open(struct hda_codec *codec,
5127 struct hda_multi_out *mout,
Takashi Iwai9a081602008-02-12 18:37:26 +01005128 struct snd_pcm_substream *substream,
5129 struct hda_pcm_stream *hinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130{
Takashi Iwai9a081602008-02-12 18:37:26 +01005131 struct snd_pcm_runtime *runtime = substream->runtime;
5132 runtime->hw.channels_max = mout->max_channels;
5133 if (mout->dig_out_nid) {
5134 if (!mout->analog_rates) {
5135 mout->analog_rates = hinfo->rates;
5136 mout->analog_formats = hinfo->formats;
5137 mout->analog_maxbps = hinfo->maxbps;
5138 } else {
5139 runtime->hw.rates = mout->analog_rates;
5140 runtime->hw.formats = mout->analog_formats;
5141 hinfo->maxbps = mout->analog_maxbps;
5142 }
5143 if (!mout->spdif_rates) {
5144 snd_hda_query_supported_pcm(codec, mout->dig_out_nid,
5145 &mout->spdif_rates,
5146 &mout->spdif_formats,
5147 &mout->spdif_maxbps);
5148 }
5149 mutex_lock(&codec->spdif_mutex);
5150 if (mout->share_spdif) {
Takashi Iwai022b4662009-07-03 23:03:30 +02005151 if ((runtime->hw.rates & mout->spdif_rates) &&
5152 (runtime->hw.formats & mout->spdif_formats)) {
5153 runtime->hw.rates &= mout->spdif_rates;
5154 runtime->hw.formats &= mout->spdif_formats;
5155 if (mout->spdif_maxbps < hinfo->maxbps)
5156 hinfo->maxbps = mout->spdif_maxbps;
5157 } else {
5158 mout->share_spdif = 0;
5159 /* FIXME: need notify? */
5160 }
Takashi Iwai9a081602008-02-12 18:37:26 +01005161 }
Frederik Deweerdteaa99852008-04-14 13:11:44 +02005162 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01005163 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164 return snd_pcm_hw_constraint_step(substream->runtime, 0,
5165 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
5166}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005167EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168
Takashi Iwaid5191e52009-11-16 14:58:17 +01005169/**
5170 * snd_hda_multi_out_analog_prepare - Preapre the analog outputs.
Takashi Iwaia11e9b12014-10-29 15:06:01 +01005171 * @codec: the HDA codec
5172 * @mout: hda_multi_out object
5173 * @stream_tag: stream tag to assign
5174 * @format: format id to assign
5175 * @substream: PCM substream to assign
Takashi Iwaid5191e52009-11-16 14:58:17 +01005176 *
5177 * Set up the i/o for analog out.
5178 * When the digital out is available, copy the front out to digital out, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005179 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005180int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
5181 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005182 unsigned int stream_tag,
5183 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01005184 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005185{
Takashi Iwaidda14412011-05-02 11:29:30 +02005186 const hda_nid_t *nids = mout->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187 int chs = substream->runtime->channels;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02005188 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189 int i;
5190
Ingo Molnar62932df2006-01-16 16:34:20 +01005191 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02005192 spdif = snd_hda_spdif_out_of_nid(codec, mout->dig_out_nid);
Takashi Iwai9a081602008-02-12 18:37:26 +01005193 if (mout->dig_out_nid && mout->share_spdif &&
5194 mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195 if (chs == 2 &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02005196 snd_hda_is_supported_format(codec, mout->dig_out_nid,
5197 format) &&
Stephen Warren7c9359762011-06-01 11:14:17 -06005198 !(spdif->status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005200 setup_dig_out_stream(codec, mout->dig_out_nid,
5201 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202 } else {
5203 mout->dig_out_used = 0;
Takashi Iwai2f728532008-09-25 16:32:41 +02005204 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005205 }
5206 }
Ingo Molnar62932df2006-01-16 16:34:20 +01005207 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005208
5209 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005210 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
5211 0, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02005212 if (!mout->no_share_stream &&
5213 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07005214 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005215 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
5216 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01005217 /* extra outputs copied from front */
Takashi Iwaia06dbfc2011-08-23 18:16:13 +02005218 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
5219 if (!mout->no_share_stream && mout->hp_out_nid[i])
5220 snd_hda_codec_setup_stream(codec,
5221 mout->hp_out_nid[i],
5222 stream_tag, 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01005223
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224 /* surrounds */
5225 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02005226 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005227 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
5228 i * 2, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02005229 else if (!mout->no_share_stream) /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005230 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
5231 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232 }
David Henningssoncd4035e2013-10-10 09:01:25 +02005233
5234 /* extra surrounds */
5235 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) {
5236 int ch = 0;
5237 if (!mout->extra_out_nid[i])
5238 break;
5239 if (chs >= (i + 1) * 2)
5240 ch = i * 2;
5241 else if (!mout->no_share_stream)
5242 break;
5243 snd_hda_codec_setup_stream(codec, mout->extra_out_nid[i],
5244 stream_tag, ch, format);
5245 }
5246
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247 return 0;
5248}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005249EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005250
Takashi Iwaid5191e52009-11-16 14:58:17 +01005251/**
5252 * snd_hda_multi_out_analog_cleanup - clean up the setting for analog out
Takashi Iwaia11e9b12014-10-29 15:06:01 +01005253 * @codec: the HDA codec
5254 * @mout: hda_multi_out object
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005256int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
5257 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258{
Takashi Iwaidda14412011-05-02 11:29:30 +02005259 const hda_nid_t *nids = mout->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260 int i;
5261
5262 for (i = 0; i < mout->num_dacs; i++)
Takashi Iwai888afa12008-03-18 09:57:50 +01005263 snd_hda_codec_cleanup_stream(codec, nids[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264 if (mout->hp_nid)
Takashi Iwai888afa12008-03-18 09:57:50 +01005265 snd_hda_codec_cleanup_stream(codec, mout->hp_nid);
Takashi Iwaia06dbfc2011-08-23 18:16:13 +02005266 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
5267 if (mout->hp_out_nid[i])
5268 snd_hda_codec_cleanup_stream(codec,
5269 mout->hp_out_nid[i]);
Takashi Iwai82bc9552006-03-21 11:24:42 +01005270 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
5271 if (mout->extra_out_nid[i])
Takashi Iwai888afa12008-03-18 09:57:50 +01005272 snd_hda_codec_cleanup_stream(codec,
5273 mout->extra_out_nid[i]);
Ingo Molnar62932df2006-01-16 16:34:20 +01005274 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
Takashi Iwai2f728532008-09-25 16:32:41 +02005276 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277 mout->dig_out_used = 0;
5278 }
Ingo Molnar62932df2006-01-16 16:34:20 +01005279 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280 return 0;
5281}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005282EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283
Takashi Iwai47408602012-04-20 13:06:53 +02005284/**
5285 * snd_hda_get_default_vref - Get the default (mic) VREF pin bits
Takashi Iwaia11e9b12014-10-29 15:06:01 +01005286 * @codec: the HDA codec
5287 * @pin: referred pin NID
Takashi Iwai47408602012-04-20 13:06:53 +02005288 *
5289 * Guess the suitable VREF pin bits to be set as the pin-control value.
5290 * Note: the function doesn't set the AC_PINCTL_IN_EN bit.
5291 */
5292unsigned int snd_hda_get_default_vref(struct hda_codec *codec, hda_nid_t pin)
5293{
5294 unsigned int pincap;
5295 unsigned int oldval;
5296 oldval = snd_hda_codec_read(codec, pin, 0,
5297 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
5298 pincap = snd_hda_query_pin_caps(codec, pin);
5299 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
5300 /* Exception: if the default pin setup is vref50, we give it priority */
5301 if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50)
5302 return AC_PINCTL_VREF_80;
5303 else if (pincap & AC_PINCAP_VREF_50)
5304 return AC_PINCTL_VREF_50;
5305 else if (pincap & AC_PINCAP_VREF_100)
5306 return AC_PINCTL_VREF_100;
5307 else if (pincap & AC_PINCAP_VREF_GRD)
5308 return AC_PINCTL_VREF_GRD;
5309 return AC_PINCTL_VREF_HIZ;
5310}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005311EXPORT_SYMBOL_GPL(snd_hda_get_default_vref);
Takashi Iwai47408602012-04-20 13:06:53 +02005312
Takashi Iwaia11e9b12014-10-29 15:06:01 +01005313/**
5314 * snd_hda_correct_pin_ctl - correct the pin ctl value for matching with the pin cap
5315 * @codec: the HDA codec
5316 * @pin: referred pin NID
5317 * @val: pin ctl value to audit
5318 */
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01005319unsigned int snd_hda_correct_pin_ctl(struct hda_codec *codec,
5320 hda_nid_t pin, unsigned int val)
5321{
5322 static unsigned int cap_lists[][2] = {
5323 { AC_PINCTL_VREF_100, AC_PINCAP_VREF_100 },
5324 { AC_PINCTL_VREF_80, AC_PINCAP_VREF_80 },
5325 { AC_PINCTL_VREF_50, AC_PINCAP_VREF_50 },
5326 { AC_PINCTL_VREF_GRD, AC_PINCAP_VREF_GRD },
5327 };
5328 unsigned int cap;
5329
5330 if (!val)
5331 return 0;
5332 cap = snd_hda_query_pin_caps(codec, pin);
5333 if (!cap)
5334 return val; /* don't know what to do... */
5335
5336 if (val & AC_PINCTL_OUT_EN) {
5337 if (!(cap & AC_PINCAP_OUT))
5338 val &= ~(AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
5339 else if ((val & AC_PINCTL_HP_EN) && !(cap & AC_PINCAP_HP_DRV))
5340 val &= ~AC_PINCTL_HP_EN;
5341 }
5342
5343 if (val & AC_PINCTL_IN_EN) {
5344 if (!(cap & AC_PINCAP_IN))
5345 val &= ~(AC_PINCTL_IN_EN | AC_PINCTL_VREFEN);
5346 else {
5347 unsigned int vcap, vref;
5348 int i;
5349 vcap = (cap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
5350 vref = val & AC_PINCTL_VREFEN;
5351 for (i = 0; i < ARRAY_SIZE(cap_lists); i++) {
5352 if (vref == cap_lists[i][0] &&
5353 !(vcap & cap_lists[i][1])) {
5354 if (i == ARRAY_SIZE(cap_lists) - 1)
5355 vref = AC_PINCTL_VREF_HIZ;
5356 else
5357 vref = cap_lists[i + 1][0];
5358 }
5359 }
5360 val &= ~AC_PINCTL_VREFEN;
5361 val |= vref;
5362 }
5363 }
5364
5365 return val;
5366}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005367EXPORT_SYMBOL_GPL(snd_hda_correct_pin_ctl);
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01005368
Takashi Iwaia11e9b12014-10-29 15:06:01 +01005369/**
5370 * _snd_hda_pin_ctl - Helper to set pin ctl value
5371 * @codec: the HDA codec
5372 * @pin: referred pin NID
5373 * @val: pin control value to set
5374 * @cached: access over codec pinctl cache or direct write
5375 *
5376 * This function is a helper to set a pin ctl value more safely.
5377 * It corrects the pin ctl value via snd_hda_correct_pin_ctl(), stores the
5378 * value in pin target array via snd_hda_codec_set_pin_target(), then
5379 * actually writes the value via either snd_hda_codec_update_cache() or
5380 * snd_hda_codec_write() depending on @cached flag.
5381 */
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02005382int _snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin,
5383 unsigned int val, bool cached)
5384{
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01005385 val = snd_hda_correct_pin_ctl(codec, pin, val);
Takashi Iwaid7fdc002013-01-10 08:38:04 +01005386 snd_hda_codec_set_pin_target(codec, pin, val);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02005387 if (cached)
5388 return snd_hda_codec_update_cache(codec, pin, 0,
5389 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
5390 else
5391 return snd_hda_codec_write(codec, pin, 0,
5392 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
5393}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005394EXPORT_SYMBOL_GPL(_snd_hda_set_pin_ctl);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02005395
Takashi Iwai990061c2010-09-09 22:08:44 +02005396/**
5397 * snd_hda_add_imux_item - Add an item to input_mux
Takashi Iwaia11e9b12014-10-29 15:06:01 +01005398 * @codec: the HDA codec
5399 * @imux: imux helper object
5400 * @label: the name of imux item to assign
5401 * @index: index number of imux item to assign
5402 * @type_idx: pointer to store the resultant label index
Takashi Iwai990061c2010-09-09 22:08:44 +02005403 *
5404 * When the same label is used already in the existing items, the number
5405 * suffix is appended to the label. This label index number is stored
5406 * to type_idx when non-NULL pointer is given.
5407 */
Takashi Iwai6194b992014-06-06 18:12:16 +02005408int snd_hda_add_imux_item(struct hda_codec *codec,
5409 struct hda_input_mux *imux, const char *label,
Takashi Iwai10a20af2010-09-09 16:28:02 +02005410 int index, int *type_idx)
5411{
5412 int i, label_idx = 0;
5413 if (imux->num_items >= HDA_MAX_NUM_INPUTS) {
Takashi Iwai6194b992014-06-06 18:12:16 +02005414 codec_err(codec, "hda_codec: Too many imux items!\n");
Takashi Iwai10a20af2010-09-09 16:28:02 +02005415 return -EINVAL;
5416 }
5417 for (i = 0; i < imux->num_items; i++) {
5418 if (!strncmp(label, imux->items[i].label, strlen(label)))
5419 label_idx++;
5420 }
5421 if (type_idx)
5422 *type_idx = label_idx;
5423 if (label_idx > 0)
5424 snprintf(imux->items[imux->num_items].label,
5425 sizeof(imux->items[imux->num_items].label),
5426 "%s %d", label, label_idx);
5427 else
5428 strlcpy(imux->items[imux->num_items].label, label,
5429 sizeof(imux->items[imux->num_items].label));
5430 imux->items[imux->num_items].index = index;
5431 imux->num_items++;
5432 return 0;
5433}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005434EXPORT_SYMBOL_GPL(snd_hda_add_imux_item);
Takashi Iwaid7b1ae92010-08-30 13:00:16 +02005435
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436/**
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01005437 * snd_hda_bus_reset - Reset the bus
5438 * @bus: HD-audio bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439 */
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01005440void snd_hda_bus_reset(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441{
Takashi Iwai0ba21762007-04-16 11:29:14 +02005442 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443
Takashi Iwai0ba21762007-04-16 11:29:14 +02005444 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01005445 /* FIXME: maybe a better way needed for forced reset */
David Henningsson26a6cb62012-10-09 15:04:21 +02005446 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01005447#ifdef CONFIG_PM
Mengdong Lin0e24dbb2013-11-26 23:00:51 -05005448 if (hda_codec_is_power_on(codec)) {
Takashi Iwaicc72da72015-02-19 16:00:22 +01005449 hda_call_codec_suspend(codec);
Mengdong Lin12edb892013-11-26 23:32:23 -05005450 hda_call_codec_resume(codec);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01005451 }
5452#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005454}
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01005455EXPORT_SYMBOL_GPL(snd_hda_bus_reset);
Takashi Iwaib2e18592008-07-30 15:01:44 +02005456
5457/*
5458 * generic arrays
5459 */
5460
Takashi Iwaid5191e52009-11-16 14:58:17 +01005461/**
5462 * snd_array_new - get a new element from the given array
5463 * @array: the array object
Norberto Lopes28aedaf2010-02-28 20:16:53 +01005464 *
Takashi Iwaid5191e52009-11-16 14:58:17 +01005465 * Get a new element from the given array. If it exceeds the
5466 * pre-allocated array size, re-allocate the array.
5467 *
5468 * Returns NULL if allocation failed.
Takashi Iwaib2e18592008-07-30 15:01:44 +02005469 */
5470void *snd_array_new(struct snd_array *array)
5471{
Takashi Iwai12f17712012-10-10 08:59:14 +02005472 if (snd_BUG_ON(!array->elem_size))
5473 return NULL;
Takashi Iwaib2e18592008-07-30 15:01:44 +02005474 if (array->used >= array->alloced) {
5475 int num = array->alloced + array->alloc_align;
Takashi Iwai3101ba02011-07-12 08:05:16 +02005476 int size = (num + 1) * array->elem_size;
Takashi Iwaib910d9a2008-11-07 00:26:52 +01005477 void *nlist;
5478 if (snd_BUG_ON(num >= 4096))
5479 return NULL;
Takashi Iwai5265fd92013-03-13 12:15:28 +01005480 nlist = krealloc(array->list, size, GFP_KERNEL | __GFP_ZERO);
Takashi Iwaib2e18592008-07-30 15:01:44 +02005481 if (!nlist)
5482 return NULL;
Takashi Iwaib2e18592008-07-30 15:01:44 +02005483 array->list = nlist;
5484 array->alloced = num;
5485 }
Takashi Iwaif43aa022008-11-10 16:24:26 +01005486 return snd_array_elem(array, array->used++);
Takashi Iwaib2e18592008-07-30 15:01:44 +02005487}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005488EXPORT_SYMBOL_GPL(snd_array_new);
Takashi Iwaib2e18592008-07-30 15:01:44 +02005489
Takashi Iwaid5191e52009-11-16 14:58:17 +01005490/**
5491 * snd_array_free - free the given array elements
5492 * @array: the array object
5493 */
Takashi Iwaib2e18592008-07-30 15:01:44 +02005494void snd_array_free(struct snd_array *array)
5495{
5496 kfree(array->list);
5497 array->used = 0;
5498 array->alloced = 0;
5499 array->list = NULL;
5500}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005501EXPORT_SYMBOL_GPL(snd_array_free);
Takashi Iwaib2022262008-11-21 21:24:03 +01005502
Takashi Iwaid5191e52009-11-16 14:58:17 +01005503/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01005504 * snd_print_pcm_bits - Print the supported PCM fmt bits to the string buffer
5505 * @pcm: PCM caps bits
5506 * @buf: the string buffer to write
5507 * @buflen: the max buffer length
5508 *
5509 * used by hda_proc.c and hda_eld.c
5510 */
Takashi Iwaib2022262008-11-21 21:24:03 +01005511void snd_print_pcm_bits(int pcm, char *buf, int buflen)
5512{
5513 static unsigned int bits[] = { 8, 16, 20, 24, 32 };
5514 int i, j;
5515
5516 for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++)
5517 if (pcm & (AC_SUPPCM_BITS_8 << i))
5518 j += snprintf(buf + j, buflen - j, " %d", bits[i]);
5519
5520 buf[j] = '\0'; /* necessary when j == 0 */
5521}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005522EXPORT_SYMBOL_GPL(snd_print_pcm_bits);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005523
5524MODULE_DESCRIPTION("HDA codec core");
5525MODULE_LICENSE("GPL");