blob: ec4536c8d8d43c0987d43fd0ef9d07fe9a417ef4 [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>
26#include <linux/pci.h>
Ingo Molnar62932df2006-01-16 16:34:20 +010027#include <linux/mutex.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040028#include <linux/module.h>
Takashi Iwaif4d6a552013-12-05 11:55:05 +010029#include <linux/async.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <sound/core.h>
31#include "hda_codec.h"
32#include <sound/asoundef.h>
Jaroslav Kysela302e9c52006-07-05 17:39:49 +020033#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <sound/initval.h>
Takashi Iwaicd372fb2011-03-03 14:40:14 +010035#include <sound/jack.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "hda_local.h"
Jaroslav Kysela123c07a2009-10-21 14:48:23 +020037#include "hda_beep.h"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020038#include "hda_jack.h"
Takashi Iwai28073142007-07-27 18:58:06 +020039#include <sound/hda_hwdep.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Takashi Iwaid66fee52011-08-02 15:39:31 +020041#define CREATE_TRACE_POINTS
42#include "hda_trace.h"
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/*
45 * vendor / preset table
46 */
47
48struct hda_vendor_id {
49 unsigned int id;
50 const char *name;
51};
52
53/* codec vendor labels */
54static struct hda_vendor_id hda_vendor_ids[] = {
Takashi Iwaic8cd1282008-02-13 16:59:29 +010055 { 0x1002, "ATI" },
Takashi Iwaie5f14242009-07-01 18:11:44 +020056 { 0x1013, "Cirrus Logic" },
Takashi Iwaia9226252006-09-17 22:05:54 +020057 { 0x1057, "Motorola" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010058 { 0x1095, "Silicon Image" },
Takashi Iwai31117b72008-12-16 14:43:21 +010059 { 0x10de, "Nvidia" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010060 { 0x10ec, "Realtek" },
Takashi Iwai4e01f542009-04-16 08:53:34 +020061 { 0x1102, "Creative" },
Joseph Chanc577b8a2006-11-29 15:29:40 +010062 { 0x1106, "VIA" },
Matthew Ranostay7f168592007-10-18 17:38:17 +020063 { 0x111d, "IDT" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010064 { 0x11c1, "LSI" },
Takashi Iwai54b903e2005-05-15 14:30:10 +020065 { 0x11d4, "Analog Devices" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 { 0x13f6, "C-Media" },
Takashi Iwaia9226252006-09-17 22:05:54 +020067 { 0x14f1, "Conexant" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010068 { 0x17e8, "Chrontel" },
69 { 0x1854, "LG" },
Mark Brown8199de32008-10-28 14:50:13 +000070 { 0x1aec, "Wolfson Microelectronics" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 { 0x434d, "C-Media" },
Takashi Iwai74c61132008-12-18 09:11:33 +010072 { 0x8086, "Intel" },
Matt2f2f4252005-04-13 14:45:30 +020073 { 0x8384, "SigmaTel" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 {} /* terminator */
75};
76
Takashi Iwai1289e9e2008-11-27 15:47:11 +010077static DEFINE_MUTEX(preset_mutex);
78static LIST_HEAD(hda_preset_tables);
79
80int snd_hda_add_codec_preset(struct hda_codec_preset_list *preset)
81{
82 mutex_lock(&preset_mutex);
83 list_add_tail(&preset->list, &hda_preset_tables);
84 mutex_unlock(&preset_mutex);
85 return 0;
86}
Takashi Iwai2698ea92013-12-18 07:45:52 +010087EXPORT_SYMBOL_GPL(snd_hda_add_codec_preset);
Takashi Iwai1289e9e2008-11-27 15:47:11 +010088
89int snd_hda_delete_codec_preset(struct hda_codec_preset_list *preset)
90{
91 mutex_lock(&preset_mutex);
92 list_del(&preset->list);
93 mutex_unlock(&preset_mutex);
94 return 0;
95}
Takashi Iwai2698ea92013-12-18 07:45:52 +010096EXPORT_SYMBOL_GPL(snd_hda_delete_codec_preset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Takashi Iwai83012a72012-08-24 18:38:08 +020098#ifdef CONFIG_PM
Takashi Iwaid846b172012-11-24 11:58:24 +010099#define codec_in_pm(codec) ((codec)->in_pm)
Takashi Iwaicb53c622007-08-10 17:21:45 +0200100static void hda_power_work(struct work_struct *work);
101static void hda_keep_power_on(struct hda_codec *codec);
Takashi Iwaie581f3d2011-07-26 10:19:20 +0200102#define hda_codec_is_power_on(codec) ((codec)->power_on)
Takashi Iwaia40e0a82013-11-20 12:41:20 +0100103
104static void hda_call_pm_notify(struct hda_codec *codec, bool power_up)
Takashi Iwai68467f52012-08-28 09:14:29 -0700105{
Takashi Iwaia40e0a82013-11-20 12:41:20 +0100106 struct hda_bus *bus = codec->bus;
107
108 if ((power_up && codec->pm_up_notified) ||
109 (!power_up && !codec->pm_up_notified))
110 return;
Takashi Iwai68467f52012-08-28 09:14:29 -0700111 if (bus->ops.pm_notify)
112 bus->ops.pm_notify(bus, power_up);
Takashi Iwaia40e0a82013-11-20 12:41:20 +0100113 codec->pm_up_notified = power_up;
Takashi Iwai68467f52012-08-28 09:14:29 -0700114}
Takashi Iwaia40e0a82013-11-20 12:41:20 +0100115
Takashi Iwaicb53c622007-08-10 17:21:45 +0200116#else
Takashi Iwaid846b172012-11-24 11:58:24 +0100117#define codec_in_pm(codec) 0
Takashi Iwaicb53c622007-08-10 17:21:45 +0200118static inline void hda_keep_power_on(struct hda_codec *codec) {}
Takashi Iwaie581f3d2011-07-26 10:19:20 +0200119#define hda_codec_is_power_on(codec) 1
Takashi Iwaia40e0a82013-11-20 12:41:20 +0100120#define hda_call_pm_notify(codec, state) {}
Takashi Iwaicb53c622007-08-10 17:21:45 +0200121#endif
122
Takashi Iwaid5191e52009-11-16 14:58:17 +0100123/**
124 * snd_hda_get_jack_location - Give a location string of the jack
125 * @cfg: pin default config value
126 *
127 * Parse the pin default config value and returns the string of the
128 * jack location, e.g. "Rear", "Front", etc.
129 */
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400130const char *snd_hda_get_jack_location(u32 cfg)
131{
132 static char *bases[7] = {
133 "N/A", "Rear", "Front", "Left", "Right", "Top", "Bottom",
134 };
135 static unsigned char specials_idx[] = {
136 0x07, 0x08,
137 0x17, 0x18, 0x19,
138 0x37, 0x38
139 };
140 static char *specials[] = {
141 "Rear Panel", "Drive Bar",
142 "Riser", "HDMI", "ATAPI",
143 "Mobile-In", "Mobile-Out"
144 };
145 int i;
146 cfg = (cfg & AC_DEFCFG_LOCATION) >> AC_DEFCFG_LOCATION_SHIFT;
147 if ((cfg & 0x0f) < 7)
148 return bases[cfg & 0x0f];
149 for (i = 0; i < ARRAY_SIZE(specials_idx); i++) {
150 if (cfg == specials_idx[i])
151 return specials[i];
152 }
153 return "UNKNOWN";
154}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100155EXPORT_SYMBOL_GPL(snd_hda_get_jack_location);
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400156
Takashi Iwaid5191e52009-11-16 14:58:17 +0100157/**
158 * snd_hda_get_jack_connectivity - Give a connectivity string of the jack
159 * @cfg: pin default config value
160 *
161 * Parse the pin default config value and returns the string of the
162 * jack connectivity, i.e. external or internal connection.
163 */
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400164const char *snd_hda_get_jack_connectivity(u32 cfg)
165{
166 static char *jack_locations[4] = { "Ext", "Int", "Sep", "Oth" };
167
168 return jack_locations[(cfg >> (AC_DEFCFG_LOCATION_SHIFT + 4)) & 3];
169}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100170EXPORT_SYMBOL_GPL(snd_hda_get_jack_connectivity);
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400171
Takashi Iwaid5191e52009-11-16 14:58:17 +0100172/**
173 * snd_hda_get_jack_type - Give a type string of the jack
174 * @cfg: pin default config value
175 *
176 * Parse the pin default config value and returns the string of the
177 * jack type, i.e. the purpose of the jack, such as Line-Out or CD.
178 */
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400179const char *snd_hda_get_jack_type(u32 cfg)
180{
181 static char *jack_types[16] = {
182 "Line Out", "Speaker", "HP Out", "CD",
183 "SPDIF Out", "Digital Out", "Modem Line", "Modem Hand",
184 "Line In", "Aux", "Mic", "Telephony",
David Henningssonaeb3a972013-04-04 11:47:13 +0200185 "SPDIF In", "Digital In", "Reserved", "Other"
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400186 };
187
188 return jack_types[(cfg & AC_DEFCFG_DEVICE)
189 >> AC_DEFCFG_DEVICE_SHIFT];
190}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100191EXPORT_SYMBOL_GPL(snd_hda_get_jack_type);
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400192
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100193/*
194 * Compose a 32bit command word to be sent to the HD-audio controller
195 */
196static inline unsigned int
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200197make_codec_cmd(struct hda_codec *codec, hda_nid_t nid, int flags,
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100198 unsigned int verb, unsigned int parm)
199{
200 u32 val;
201
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200202 if ((codec->addr & ~0xf) || (nid & ~0x7f) ||
Takashi Iwai82e1b802009-07-17 12:47:34 +0200203 (verb & ~0xfff) || (parm & ~0xffff)) {
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200204 printk(KERN_ERR "hda-codec: out of range cmd %x:%x:%x:%x\n",
205 codec->addr, nid, verb, parm);
Wu Fengguang6430aee2009-07-17 16:49:19 +0800206 return ~0;
207 }
208
209 val = (u32)codec->addr << 28;
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100210 val |= (u32)nid << 20;
211 val |= verb << 8;
212 val |= parm;
213 return val;
214}
215
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200216/*
217 * Send and receive a verb
218 */
219static int codec_exec_verb(struct hda_codec *codec, unsigned int cmd,
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200220 int flags, unsigned int *res)
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200221{
222 struct hda_bus *bus = codec->bus;
Takashi Iwai8dd78332009-06-02 01:16:07 +0200223 int err;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200224
Wu Fengguang6430aee2009-07-17 16:49:19 +0800225 if (cmd == ~0)
226 return -1;
227
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200228 if (res)
229 *res = -1;
Takashi Iwai8dd78332009-06-02 01:16:07 +0200230 again:
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200231 snd_hda_power_up(codec);
232 mutex_lock(&bus->cmd_mutex);
Takashi Iwai63e51fd2013-06-06 14:20:19 +0200233 if (flags & HDA_RW_NO_RESPONSE_FALLBACK)
234 bus->no_response_fallback = 1;
Takashi Iwai3bcce5c2012-12-20 11:17:17 +0100235 for (;;) {
236 trace_hda_send_cmd(codec, cmd);
237 err = bus->ops.command(bus, cmd);
238 if (err != -EAGAIN)
239 break;
240 /* process pending verbs */
241 bus->ops.get_response(bus, codec->addr);
242 }
Takashi Iwaid66fee52011-08-02 15:39:31 +0200243 if (!err && res) {
Wu Fengguangdeadff12009-08-01 18:45:16 +0800244 *res = bus->ops.get_response(bus, codec->addr);
Takashi Iwaid66fee52011-08-02 15:39:31 +0200245 trace_hda_get_response(codec, *res);
246 }
Takashi Iwai63e51fd2013-06-06 14:20:19 +0200247 bus->no_response_fallback = 0;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200248 mutex_unlock(&bus->cmd_mutex);
249 snd_hda_power_down(codec);
Takashi Iwaid846b172012-11-24 11:58:24 +0100250 if (!codec_in_pm(codec) && res && *res == -1 && bus->rirb_error) {
Takashi Iwai8dd78332009-06-02 01:16:07 +0200251 if (bus->response_reset) {
252 snd_printd("hda_codec: resetting BUS due to "
253 "fatal communication error\n");
Takashi Iwaid66fee52011-08-02 15:39:31 +0200254 trace_hda_bus_reset(bus);
Takashi Iwai8dd78332009-06-02 01:16:07 +0200255 bus->ops.bus_reset(bus);
256 }
257 goto again;
258 }
259 /* clear reset-flag when the communication gets recovered */
Takashi Iwaid846b172012-11-24 11:58:24 +0100260 if (!err || codec_in_pm(codec))
Takashi Iwai8dd78332009-06-02 01:16:07 +0200261 bus->response_reset = 0;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200262 return err;
263}
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265/**
266 * snd_hda_codec_read - send a command and get the response
267 * @codec: the HDA codec
268 * @nid: NID to send the command
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200269 * @flags: optional bit flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 * @verb: the verb to send
271 * @parm: the parameter for the verb
272 *
273 * Send a single command and read the corresponding response.
274 *
275 * Returns the obtained response value, or -1 for an error.
276 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200277unsigned int snd_hda_codec_read(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200278 int flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 unsigned int verb, unsigned int parm)
280{
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200281 unsigned cmd = make_codec_cmd(codec, nid, flags, verb, parm);
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200282 unsigned int res;
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200283 if (codec_exec_verb(codec, cmd, flags, &res))
Greg Thelen9857edf2011-06-13 07:45:45 -0700284 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return res;
286}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100287EXPORT_SYMBOL_GPL(snd_hda_codec_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289/**
290 * snd_hda_codec_write - send a single command without waiting for response
291 * @codec: the HDA codec
292 * @nid: NID to send the command
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200293 * @flags: optional bit flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 * @verb: the verb to send
295 * @parm: the parameter for the verb
296 *
297 * Send a single command without waiting for response.
298 *
299 * Returns 0 if successful, or a negative error code.
300 */
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200301int snd_hda_codec_write(struct hda_codec *codec, hda_nid_t nid, int flags,
302 unsigned int verb, unsigned int parm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200304 unsigned int cmd = make_codec_cmd(codec, nid, flags, verb, parm);
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100305 unsigned int res;
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200306 return codec_exec_verb(codec, cmd, flags,
Takashi Iwaib20f3b82009-06-02 01:20:22 +0200307 codec->bus->sync_write ? &res : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100309EXPORT_SYMBOL_GPL(snd_hda_codec_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311/**
312 * snd_hda_sequence_write - sequence writes
313 * @codec: the HDA codec
314 * @seq: VERB array to send
315 *
316 * Send the commands sequentially from the given array.
317 * The array must be terminated with NID=0.
318 */
319void snd_hda_sequence_write(struct hda_codec *codec, const struct hda_verb *seq)
320{
321 for (; seq->nid; seq++)
322 snd_hda_codec_write(codec, seq->nid, 0, seq->verb, seq->param);
323}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100324EXPORT_SYMBOL_GPL(snd_hda_sequence_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326/**
327 * snd_hda_get_sub_nodes - get the range of sub nodes
328 * @codec: the HDA codec
329 * @nid: NID to parse
330 * @start_id: the pointer to store the start NID
331 *
332 * Parse the NID and store the start NID of its sub-nodes.
333 * Returns the number of sub-nodes.
334 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200335int snd_hda_get_sub_nodes(struct hda_codec *codec, hda_nid_t nid,
336 hda_nid_t *start_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 unsigned int parm;
339
340 parm = snd_hda_param_read(codec, nid, AC_PAR_NODE_COUNT);
Danny Tholene8a7f132007-09-11 21:41:56 +0200341 if (parm == -1)
342 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 *start_id = (parm >> 16) & 0x7fff;
344 return (int)(parm & 0x7fff);
345}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100346EXPORT_SYMBOL_GPL(snd_hda_get_sub_nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100348/* connection list element */
349struct hda_conn_list {
350 struct list_head list;
351 int len;
352 hda_nid_t nid;
353 hda_nid_t conns[0];
354};
355
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200356/* look up the cached results */
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100357static struct hda_conn_list *
358lookup_conn_list(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200359{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100360 struct hda_conn_list *p;
361 list_for_each_entry(p, &codec->conn_list, list) {
362 if (p->nid == nid)
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200363 return p;
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200364 }
365 return NULL;
366}
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200367
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100368static int add_conn_list(struct hda_codec *codec, hda_nid_t nid, int len,
369 const hda_nid_t *list)
370{
371 struct hda_conn_list *p;
372
373 p = kmalloc(sizeof(*p) + len * sizeof(hda_nid_t), GFP_KERNEL);
374 if (!p)
375 return -ENOMEM;
376 p->len = len;
377 p->nid = nid;
378 memcpy(p->conns, list, len * sizeof(hda_nid_t));
379 list_add(&p->list, &codec->conn_list);
380 return 0;
381}
382
383static void remove_conn_list(struct hda_codec *codec)
384{
385 while (!list_empty(&codec->conn_list)) {
386 struct hda_conn_list *p;
387 p = list_first_entry(&codec->conn_list, typeof(*p), list);
388 list_del(&p->list);
389 kfree(p);
390 }
391}
392
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200393/* read the connection and add to the cache */
394static int read_and_add_raw_conns(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200395{
Takashi Iwai4eea3092013-02-07 18:18:19 +0100396 hda_nid_t list[32];
397 hda_nid_t *result = list;
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200398 int len;
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200399
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200400 len = snd_hda_get_raw_connections(codec, nid, list, ARRAY_SIZE(list));
Takashi Iwai4eea3092013-02-07 18:18:19 +0100401 if (len == -ENOSPC) {
402 len = snd_hda_get_num_raw_conns(codec, nid);
403 result = kmalloc(sizeof(hda_nid_t) * len, GFP_KERNEL);
404 if (!result)
405 return -ENOMEM;
406 len = snd_hda_get_raw_connections(codec, nid, result, len);
407 }
408 if (len >= 0)
409 len = snd_hda_override_conn_list(codec, nid, len, result);
410 if (result != list)
411 kfree(result);
412 return len;
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200413}
Takashi Iwaidce20792011-06-24 14:10:28 +0200414
415/**
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100416 * snd_hda_get_conn_list - get connection list
417 * @codec: the HDA codec
418 * @nid: NID to parse
419 * @len: number of connection list entries
420 * @listp: the pointer to store NID list
421 *
422 * Parses the connection list of the given widget and stores the pointer
423 * to the list of NIDs.
424 *
425 * Returns the number of connections, or a negative error code.
426 *
427 * Note that the returned pointer isn't protected against the list
428 * modification. If snd_hda_override_conn_list() might be called
429 * concurrently, protect with a mutex appropriately.
430 */
431int snd_hda_get_conn_list(struct hda_codec *codec, hda_nid_t nid,
432 const hda_nid_t **listp)
433{
434 bool added = false;
435
436 for (;;) {
437 int err;
438 const struct hda_conn_list *p;
439
440 /* if the connection-list is already cached, read it */
441 p = lookup_conn_list(codec, nid);
442 if (p) {
443 if (listp)
444 *listp = p->conns;
445 return p->len;
446 }
447 if (snd_BUG_ON(added))
448 return -EINVAL;
449
450 err = read_and_add_raw_conns(codec, nid);
451 if (err < 0)
452 return err;
453 added = true;
454 }
455}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100456EXPORT_SYMBOL_GPL(snd_hda_get_conn_list);
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100457
458/**
Takashi Iwaidce20792011-06-24 14:10:28 +0200459 * snd_hda_get_connections - copy connection list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 * @codec: the HDA codec
461 * @nid: NID to parse
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200462 * @conn_list: connection list array; when NULL, checks only the size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 * @max_conns: max. number of connections to store
464 *
465 * Parses the connection list of the given widget and stores the list
466 * of NIDs.
467 *
468 * Returns the number of connections, or a negative error code.
469 */
470int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200471 hda_nid_t *conn_list, int max_conns)
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200472{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100473 const hda_nid_t *list;
474 int len = snd_hda_get_conn_list(codec, nid, &list);
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200475
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100476 if (len > 0 && conn_list) {
477 if (len > max_conns) {
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200478 snd_printk(KERN_ERR "hda_codec: "
479 "Too many connections %d for NID 0x%x\n",
480 len, nid);
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200481 return -EINVAL;
482 }
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100483 memcpy(conn_list, list, len * sizeof(hda_nid_t));
Takashi Iwaidce20792011-06-24 14:10:28 +0200484 }
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200485
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100486 return len;
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200487}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100488EXPORT_SYMBOL_GPL(snd_hda_get_connections);
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200489
Takashi Iwai4eea3092013-02-07 18:18:19 +0100490/* return CONNLIST_LEN parameter of the given widget */
491static unsigned int get_num_conns(struct hda_codec *codec, hda_nid_t nid)
492{
493 unsigned int wcaps = get_wcaps(codec, nid);
494 unsigned int parm;
495
496 if (!(wcaps & AC_WCAP_CONN_LIST) &&
497 get_wcaps_type(wcaps) != AC_WID_VOL_KNB)
498 return 0;
499
500 parm = snd_hda_param_read(codec, nid, AC_PAR_CONNLIST_LEN);
501 if (parm == -1)
502 parm = 0;
503 return parm;
504}
505
506int snd_hda_get_num_raw_conns(struct hda_codec *codec, hda_nid_t nid)
507{
Takashi Iwaib5f82b12013-03-12 16:47:30 +0100508 return snd_hda_get_raw_connections(codec, nid, NULL, 0);
Takashi Iwai4eea3092013-02-07 18:18:19 +0100509}
510
Takashi Iwai9e7717c2011-07-11 15:42:52 +0200511/**
512 * snd_hda_get_raw_connections - copy connection list without cache
513 * @codec: the HDA codec
514 * @nid: NID to parse
515 * @conn_list: connection list array
516 * @max_conns: max. number of connections to store
517 *
518 * Like snd_hda_get_connections(), copy the connection list but without
519 * checking through the connection-list cache.
520 * Currently called only from hda_proc.c, so not exported.
521 */
522int snd_hda_get_raw_connections(struct hda_codec *codec, hda_nid_t nid,
523 hda_nid_t *conn_list, int max_conns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 unsigned int parm;
Takashi Iwai54d17402005-11-21 16:33:22 +0100526 int i, conn_len, conns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 unsigned int shift, num_elems, mask;
Takashi Iwai54d17402005-11-21 16:33:22 +0100528 hda_nid_t prev_nid;
Takashi Iwai5fdaecd2012-12-20 10:45:55 +0100529 int null_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Takashi Iwai4eea3092013-02-07 18:18:19 +0100531 parm = get_num_conns(codec, nid);
532 if (!parm)
Takashi Iwai8d087c72011-06-28 12:45:47 +0200533 return 0;
Jaroslav Kysela16a433d2009-07-22 16:20:40 +0200534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (parm & AC_CLIST_LONG) {
536 /* long form */
537 shift = 16;
538 num_elems = 2;
539 } else {
540 /* short form */
541 shift = 8;
542 num_elems = 4;
543 }
544 conn_len = parm & AC_CLIST_LENGTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 mask = (1 << (shift-1)) - 1;
546
Takashi Iwai0ba21762007-04-16 11:29:14 +0200547 if (!conn_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return 0; /* no connection */
549
550 if (conn_len == 1) {
551 /* single connection */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200552 parm = snd_hda_codec_read(codec, nid, 0,
553 AC_VERB_GET_CONNECT_LIST, 0);
Takashi Iwai3c6aae42009-07-10 12:52:27 +0200554 if (parm == -1 && codec->bus->rirb_error)
555 return -EIO;
Takashi Iwaib5f82b12013-03-12 16:47:30 +0100556 if (conn_list)
557 conn_list[0] = parm & mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 return 1;
559 }
560
561 /* multi connection */
562 conns = 0;
Takashi Iwai54d17402005-11-21 16:33:22 +0100563 prev_nid = 0;
564 for (i = 0; i < conn_len; i++) {
565 int range_val;
566 hda_nid_t val, n;
567
Takashi Iwai3c6aae42009-07-10 12:52:27 +0200568 if (i % num_elems == 0) {
Takashi Iwai54d17402005-11-21 16:33:22 +0100569 parm = snd_hda_codec_read(codec, nid, 0,
570 AC_VERB_GET_CONNECT_LIST, i);
Takashi Iwai3c6aae42009-07-10 12:52:27 +0200571 if (parm == -1 && codec->bus->rirb_error)
572 return -EIO;
573 }
Takashi Iwai0ba21762007-04-16 11:29:14 +0200574 range_val = !!(parm & (1 << (shift-1))); /* ranges */
Takashi Iwai54d17402005-11-21 16:33:22 +0100575 val = parm & mask;
Takashi Iwai5fdaecd2012-12-20 10:45:55 +0100576 if (val == 0 && null_count++) { /* no second chance */
Takashi Iwai4758fed2013-10-17 17:56:25 +0200577 snd_printdd("hda_codec: "
Jaroslav Kysela2e9bf242009-07-18 11:48:19 +0200578 "invalid CONNECT_LIST verb %x[%i]:%x\n",
579 nid, i, parm);
580 return 0;
581 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100582 parm >>= shift;
583 if (range_val) {
584 /* ranges between the previous and this one */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200585 if (!prev_nid || prev_nid >= val) {
586 snd_printk(KERN_WARNING "hda_codec: "
587 "invalid dep_range_val %x:%x\n",
588 prev_nid, val);
Takashi Iwai54d17402005-11-21 16:33:22 +0100589 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100591 for (n = prev_nid + 1; n <= val; n++) {
Takashi Iwaib5f82b12013-03-12 16:47:30 +0100592 if (conn_list) {
593 if (conns >= max_conns)
594 return -ENOSPC;
595 conn_list[conns] = n;
596 }
597 conns++;
Takashi Iwai54d17402005-11-21 16:33:22 +0100598 }
599 } else {
Takashi Iwaib5f82b12013-03-12 16:47:30 +0100600 if (conn_list) {
601 if (conns >= max_conns)
602 return -ENOSPC;
603 conn_list[conns] = val;
604 }
605 conns++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100607 prev_nid = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609 return conns;
610}
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612/**
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200613 * snd_hda_override_conn_list - add/modify the connection-list to cache
614 * @codec: the HDA codec
615 * @nid: NID to parse
616 * @len: number of connection list entries
617 * @list: the list of connection entries
618 *
619 * Add or modify the given connection-list to the cache. If the corresponding
620 * cache already exists, invalidate it and append a new one.
621 *
622 * Returns zero or a negative error code.
623 */
624int snd_hda_override_conn_list(struct hda_codec *codec, hda_nid_t nid, int len,
625 const hda_nid_t *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100627 struct hda_conn_list *p;
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200628
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100629 p = lookup_conn_list(codec, nid);
630 if (p) {
631 list_del(&p->list);
632 kfree(p);
633 }
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200634
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100635 return add_conn_list(codec, nid, len, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100637EXPORT_SYMBOL_GPL(snd_hda_override_conn_list);
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200638
639/**
Takashi Iwai8d087c72011-06-28 12:45:47 +0200640 * snd_hda_get_conn_index - get the connection index of the given NID
641 * @codec: the HDA codec
642 * @mux: NID containing the list
643 * @nid: NID to select
644 * @recursive: 1 when searching NID recursively, otherwise 0
645 *
646 * Parses the connection list of the widget @mux and checks whether the
647 * widget @nid is present. If it is, return the connection index.
648 * Otherwise it returns -1.
649 */
650int snd_hda_get_conn_index(struct hda_codec *codec, hda_nid_t mux,
651 hda_nid_t nid, int recursive)
652{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100653 const hda_nid_t *conn;
Takashi Iwai8d087c72011-06-28 12:45:47 +0200654 int i, nums;
655
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100656 nums = snd_hda_get_conn_list(codec, mux, &conn);
Takashi Iwai8d087c72011-06-28 12:45:47 +0200657 for (i = 0; i < nums; i++)
658 if (conn[i] == nid)
659 return i;
660 if (!recursive)
661 return -1;
Takashi Iwaid94ddd82012-12-20 14:42:42 +0100662 if (recursive > 10) {
Takashi Iwai8d087c72011-06-28 12:45:47 +0200663 snd_printd("hda_codec: too deep connection for 0x%x\n", nid);
664 return -1;
665 }
666 recursive++;
Takashi Iwai99e14c92011-09-13 10:33:16 +0200667 for (i = 0; i < nums; i++) {
668 unsigned int type = get_wcaps_type(get_wcaps(codec, conn[i]));
669 if (type == AC_WID_PIN || type == AC_WID_AUD_OUT)
670 continue;
Takashi Iwai8d087c72011-06-28 12:45:47 +0200671 if (snd_hda_get_conn_index(codec, conn[i], nid, recursive) >= 0)
672 return i;
Takashi Iwai99e14c92011-09-13 10:33:16 +0200673 }
Takashi Iwai8d087c72011-06-28 12:45:47 +0200674 return -1;
675}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100676EXPORT_SYMBOL_GPL(snd_hda_get_conn_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Mengdong Linf1aa0682013-08-26 21:35:21 -0400678
679/* return DEVLIST_LEN parameter of the given widget */
680static unsigned int get_num_devices(struct hda_codec *codec, hda_nid_t nid)
681{
682 unsigned int wcaps = get_wcaps(codec, nid);
683 unsigned int parm;
684
685 if (!codec->dp_mst || !(wcaps & AC_WCAP_DIGITAL) ||
686 get_wcaps_type(wcaps) != AC_WID_PIN)
687 return 0;
688
689 parm = snd_hda_param_read(codec, nid, AC_PAR_DEVLIST_LEN);
690 if (parm == -1 && codec->bus->rirb_error)
691 parm = 0;
692 return parm & AC_DEV_LIST_LEN_MASK;
693}
694
695/**
696 * snd_hda_get_devices - copy device list without cache
697 * @codec: the HDA codec
698 * @nid: NID of the pin to parse
699 * @dev_list: device list array
700 * @max_devices: max. number of devices to store
701 *
702 * Copy the device list. This info is dynamic and so not cached.
703 * Currently called only from hda_proc.c, so not exported.
704 */
705int snd_hda_get_devices(struct hda_codec *codec, hda_nid_t nid,
706 u8 *dev_list, int max_devices)
707{
708 unsigned int parm;
709 int i, dev_len, devices;
710
711 parm = get_num_devices(codec, nid);
712 if (!parm) /* not multi-stream capable */
713 return 0;
714
715 dev_len = parm + 1;
716 dev_len = dev_len < max_devices ? dev_len : max_devices;
717
718 devices = 0;
719 while (devices < dev_len) {
720 parm = snd_hda_codec_read(codec, nid, 0,
721 AC_VERB_GET_DEVICE_LIST, devices);
722 if (parm == -1 && codec->bus->rirb_error)
723 break;
724
725 for (i = 0; i < 8; i++) {
726 dev_list[devices] = (u8)parm;
727 parm >>= 4;
728 devices++;
729 if (devices >= dev_len)
730 break;
731 }
732 }
733 return devices;
734}
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736/**
737 * snd_hda_queue_unsol_event - add an unsolicited event to queue
738 * @bus: the BUS
739 * @res: unsolicited event (lower 32bit of RIRB entry)
740 * @res_ex: codec addr and flags (upper 32bit or RIRB entry)
741 *
742 * Adds the given event to the queue. The events are processed in
743 * the workqueue asynchronously. Call this function in the interrupt
744 * hanlder when RIRB receives an unsolicited event.
745 *
746 * Returns 0 if successful, or a negative error code.
747 */
748int snd_hda_queue_unsol_event(struct hda_bus *bus, u32 res, u32 res_ex)
749{
750 struct hda_bus_unsolicited *unsol;
751 unsigned int wp;
752
Wang YanQing2195b062013-05-07 11:27:33 +0800753 if (!bus || !bus->workq)
754 return 0;
755
Takashi Iwaiecf726f2011-08-09 14:22:44 +0200756 trace_hda_unsol_event(bus, res, res_ex);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200757 unsol = bus->unsol;
758 if (!unsol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return 0;
760
761 wp = (unsol->wp + 1) % HDA_UNSOL_QUEUE_SIZE;
762 unsol->wp = wp;
763
764 wp <<= 1;
765 unsol->queue[wp] = res;
766 unsol->queue[wp + 1] = res_ex;
767
Takashi Iwai6acaed32009-01-12 10:09:24 +0100768 queue_work(bus->workq, &unsol->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 return 0;
771}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100772EXPORT_SYMBOL_GPL(snd_hda_queue_unsol_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774/*
Wu Fengguang5c1d1a92008-10-07 14:17:53 +0800775 * process queued unsolicited events
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 */
David Howellsc4028952006-11-22 14:57:56 +0000777static void process_unsol_events(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
David Howellsc4028952006-11-22 14:57:56 +0000779 struct hda_bus_unsolicited *unsol =
780 container_of(work, struct hda_bus_unsolicited, work);
781 struct hda_bus *bus = unsol->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 struct hda_codec *codec;
783 unsigned int rp, caddr, res;
784
785 while (unsol->rp != unsol->wp) {
786 rp = (unsol->rp + 1) % HDA_UNSOL_QUEUE_SIZE;
787 unsol->rp = rp;
788 rp <<= 1;
789 res = unsol->queue[rp];
790 caddr = unsol->queue[rp + 1];
Takashi Iwai0ba21762007-04-16 11:29:14 +0200791 if (!(caddr & (1 << 4))) /* no unsolicited event? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 continue;
793 codec = bus->caddr_tbl[caddr & 0x0f];
794 if (codec && codec->patch_ops.unsol_event)
795 codec->patch_ops.unsol_event(codec, res);
796 }
797}
798
799/*
800 * initialize unsolicited queue
801 */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200802static int init_unsol_queue(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
804 struct hda_bus_unsolicited *unsol;
805
Takashi Iwai9f146bb2005-11-17 11:07:49 +0100806 if (bus->unsol) /* already initialized */
807 return 0;
808
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200809 unsol = kzalloc(sizeof(*unsol), GFP_KERNEL);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200810 if (!unsol) {
811 snd_printk(KERN_ERR "hda_codec: "
812 "can't allocate unsolicited queue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return -ENOMEM;
814 }
David Howellsc4028952006-11-22 14:57:56 +0000815 INIT_WORK(&unsol->work, process_unsol_events);
816 unsol->bus = bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 bus->unsol = unsol;
818 return 0;
819}
820
821/*
822 * destructor
823 */
824static void snd_hda_codec_free(struct hda_codec *codec);
825
826static int snd_hda_bus_free(struct hda_bus *bus)
827{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200828 struct hda_codec *codec, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Takashi Iwai0ba21762007-04-16 11:29:14 +0200830 if (!bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return 0;
Takashi Iwai6acaed32009-01-12 10:09:24 +0100832 if (bus->workq)
833 flush_workqueue(bus->workq);
834 if (bus->unsol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 kfree(bus->unsol);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200836 list_for_each_entry_safe(codec, n, &bus->codec_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 snd_hda_codec_free(codec);
838 }
839 if (bus->ops.private_free)
840 bus->ops.private_free(bus);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100841 if (bus->workq)
842 destroy_workqueue(bus->workq);
Mengdong Lin0e24dbb2013-11-26 23:00:51 -0500843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 kfree(bus);
845 return 0;
846}
847
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100848static int snd_hda_bus_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
850 struct hda_bus *bus = device->device_data;
Takashi Iwaib94d35392008-11-21 09:08:06 +0100851 bus->shutdown = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 return snd_hda_bus_free(bus);
853}
854
Takashi Iwaid7ffba12008-07-30 15:01:46 +0200855#ifdef CONFIG_SND_HDA_HWDEP
856static int snd_hda_bus_dev_register(struct snd_device *device)
857{
858 struct hda_bus *bus = device->device_data;
859 struct hda_codec *codec;
860 list_for_each_entry(codec, &bus->codec_list, list) {
861 snd_hda_hwdep_add_sysfs(codec);
Takashi Iwaia2f63092009-11-11 09:34:25 +0100862 snd_hda_hwdep_add_power_sysfs(codec);
Takashi Iwaid7ffba12008-07-30 15:01:46 +0200863 }
864 return 0;
865}
866#else
867#define snd_hda_bus_dev_register NULL
868#endif
869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870/**
871 * snd_hda_bus_new - create a HDA bus
872 * @card: the card entry
873 * @temp: the template for hda_bus information
874 * @busp: the pointer to store the created bus instance
875 *
876 * Returns 0 if successful, or a negative error code.
877 */
Takashi Iwai6a0f56a2012-12-07 07:41:56 +0100878int snd_hda_bus_new(struct snd_card *card,
Takashi Iwai756e2b02007-04-16 11:27:07 +0200879 const struct hda_bus_template *temp,
880 struct hda_bus **busp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
882 struct hda_bus *bus;
883 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100884 static struct snd_device_ops dev_ops = {
Takashi Iwaid7ffba12008-07-30 15:01:46 +0200885 .dev_register = snd_hda_bus_dev_register,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 .dev_free = snd_hda_bus_dev_free,
887 };
888
Takashi Iwaida3cec32008-08-08 17:12:14 +0200889 if (snd_BUG_ON(!temp))
890 return -EINVAL;
891 if (snd_BUG_ON(!temp->ops.command || !temp->ops.get_response))
892 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 if (busp)
895 *busp = NULL;
896
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200897 bus = kzalloc(sizeof(*bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 if (bus == NULL) {
899 snd_printk(KERN_ERR "can't allocate struct hda_bus\n");
900 return -ENOMEM;
901 }
902
903 bus->card = card;
904 bus->private_data = temp->private_data;
905 bus->pci = temp->pci;
906 bus->modelname = temp->modelname;
Takashi Iwaifee2fba2008-11-27 12:43:28 +0100907 bus->power_save = temp->power_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 bus->ops = temp->ops;
909
Ingo Molnar62932df2006-01-16 16:34:20 +0100910 mutex_init(&bus->cmd_mutex);
Takashi Iwai3f50ac62010-08-20 09:44:36 +0200911 mutex_init(&bus->prepare_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 INIT_LIST_HEAD(&bus->codec_list);
913
Takashi Iwaie8c0ee52009-02-05 07:34:28 +0100914 snprintf(bus->workq_name, sizeof(bus->workq_name),
915 "hd-audio%d", card->number);
916 bus->workq = create_singlethread_workqueue(bus->workq_name);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100917 if (!bus->workq) {
Takashi Iwaie8c0ee52009-02-05 07:34:28 +0100918 snd_printk(KERN_ERR "cannot create workqueue %s\n",
919 bus->workq_name);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100920 kfree(bus);
921 return -ENOMEM;
922 }
923
Takashi Iwai0ba21762007-04-16 11:29:14 +0200924 err = snd_device_new(card, SNDRV_DEV_BUS, bus, &dev_ops);
925 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 snd_hda_bus_free(bus);
927 return err;
928 }
929 if (busp)
930 *busp = bus;
931 return 0;
932}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100933EXPORT_SYMBOL_GPL(snd_hda_bus_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Takashi Iwai82467612007-07-27 19:15:54 +0200935#ifdef CONFIG_SND_HDA_GENERIC
936#define is_generic_config(codec) \
Takashi Iwaif44ac832008-07-30 15:01:45 +0200937 (codec->modelname && !strcmp(codec->modelname, "generic"))
Takashi Iwai82467612007-07-27 19:15:54 +0200938#else
939#define is_generic_config(codec) 0
940#endif
941
Takashi Iwai645f10c2008-11-28 15:07:37 +0100942#ifdef MODULE
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100943#define HDA_MODREQ_MAX_COUNT 2 /* two request_modules()'s */
944#else
Takashi Iwai645f10c2008-11-28 15:07:37 +0100945#define HDA_MODREQ_MAX_COUNT 0 /* all presets are statically linked */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100946#endif
947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948/*
949 * find a matching codec preset
950 */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200951static const struct hda_codec_preset *
Takashi Iwai756e2b02007-04-16 11:27:07 +0200952find_codec_preset(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100954 struct hda_codec_preset_list *tbl;
955 const struct hda_codec_preset *preset;
Takashi Iwai5d908ab2012-08-24 18:40:10 +0200956 unsigned int mod_requested = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100958 again:
959 mutex_lock(&preset_mutex);
960 list_for_each_entry(tbl, &hda_preset_tables, list) {
961 if (!try_module_get(tbl->owner)) {
962 snd_printk(KERN_ERR "hda_codec: cannot module_get\n");
963 continue;
964 }
965 for (preset = tbl->preset; preset->id; preset++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 u32 mask = preset->mask;
Marc Boucherca7cfae2008-01-22 15:32:25 +0100967 if (preset->afg && preset->afg != codec->afg)
968 continue;
969 if (preset->mfg && preset->mfg != codec->mfg)
970 continue;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200971 if (!mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 mask = ~0;
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200973 if (preset->id == (codec->vendor_id & mask) &&
Takashi Iwai0ba21762007-04-16 11:29:14 +0200974 (!preset->rev ||
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100975 preset->rev == codec->revision_id)) {
976 mutex_unlock(&preset_mutex);
977 codec->owner = tbl->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 return preset;
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100979 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 }
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100981 module_put(tbl->owner);
982 }
983 mutex_unlock(&preset_mutex);
984
985 if (mod_requested < HDA_MODREQ_MAX_COUNT) {
986 char name[32];
987 if (!mod_requested)
988 snprintf(name, sizeof(name), "snd-hda-codec-id:%08x",
989 codec->vendor_id);
990 else
991 snprintf(name, sizeof(name), "snd-hda-codec-id:%04x*",
992 (codec->vendor_id >> 16) & 0xffff);
993 request_module(name);
994 mod_requested++;
995 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 }
997 return NULL;
998}
999
1000/*
Takashi Iwaif44ac832008-07-30 15:01:45 +02001001 * get_codec_name - store the codec name
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 */
Takashi Iwaif44ac832008-07-30 15:01:45 +02001003static int get_codec_name(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004{
1005 const struct hda_vendor_id *c;
1006 const char *vendor = NULL;
1007 u16 vendor_id = codec->vendor_id >> 16;
Takashi Iwai812a2cc2009-05-16 10:00:49 +02001008 char tmp[16];
1009
1010 if (codec->vendor_name)
1011 goto get_chip_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 for (c = hda_vendor_ids; c->id; c++) {
1014 if (c->id == vendor_id) {
1015 vendor = c->name;
1016 break;
1017 }
1018 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001019 if (!vendor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 sprintf(tmp, "Generic %04x", vendor_id);
1021 vendor = tmp;
1022 }
Takashi Iwai812a2cc2009-05-16 10:00:49 +02001023 codec->vendor_name = kstrdup(vendor, GFP_KERNEL);
1024 if (!codec->vendor_name)
1025 return -ENOMEM;
1026
1027 get_chip_name:
1028 if (codec->chip_name)
1029 return 0;
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (codec->preset && codec->preset->name)
Takashi Iwai812a2cc2009-05-16 10:00:49 +02001032 codec->chip_name = kstrdup(codec->preset->name, GFP_KERNEL);
1033 else {
1034 sprintf(tmp, "ID %x", codec->vendor_id & 0xffff);
1035 codec->chip_name = kstrdup(tmp, GFP_KERNEL);
1036 }
1037 if (!codec->chip_name)
Takashi Iwaif44ac832008-07-30 15:01:45 +02001038 return -ENOMEM;
1039 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040}
1041
1042/*
Sasha Khapyorsky673b6832005-08-11 11:00:16 +02001043 * look for an AFG and MFG nodes
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 */
Takashi Iwai6a0f56a2012-12-07 07:41:56 +01001045static void setup_fg_nodes(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
Takashi Iwai93e82ae2009-04-17 18:04:41 +02001047 int i, total_nodes, function_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 hda_nid_t nid;
1049
1050 total_nodes = snd_hda_get_sub_nodes(codec, AC_NODE_ROOT, &nid);
1051 for (i = 0; i < total_nodes; i++, nid++) {
Takashi Iwai93e82ae2009-04-17 18:04:41 +02001052 function_id = snd_hda_param_read(codec, nid,
Jaroslav Kysela79c944a2010-07-19 15:52:39 +02001053 AC_PAR_FUNCTION_TYPE);
Jaroslav Kyselacd7643b2010-07-20 12:11:25 +02001054 switch (function_id & 0xff) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +02001055 case AC_GRP_AUDIO_FUNCTION:
1056 codec->afg = nid;
Jaroslav Kysela79c944a2010-07-19 15:52:39 +02001057 codec->afg_function_id = function_id & 0xff;
1058 codec->afg_unsol = (function_id >> 8) & 1;
Sasha Khapyorsky673b6832005-08-11 11:00:16 +02001059 break;
1060 case AC_GRP_MODEM_FUNCTION:
1061 codec->mfg = nid;
Jaroslav Kysela79c944a2010-07-19 15:52:39 +02001062 codec->mfg_function_id = function_id & 0xff;
1063 codec->mfg_unsol = (function_id >> 8) & 1;
Sasha Khapyorsky673b6832005-08-11 11:00:16 +02001064 break;
1065 default:
1066 break;
1067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069}
1070
1071/*
Takashi Iwai54d17402005-11-21 16:33:22 +01001072 * read widget caps for each widget and store in cache
1073 */
1074static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node)
1075{
1076 int i;
1077 hda_nid_t nid;
1078
1079 codec->num_nodes = snd_hda_get_sub_nodes(codec, fg_node,
1080 &codec->start_nid);
1081 codec->wcaps = kmalloc(codec->num_nodes * 4, GFP_KERNEL);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001082 if (!codec->wcaps)
Takashi Iwai54d17402005-11-21 16:33:22 +01001083 return -ENOMEM;
1084 nid = codec->start_nid;
1085 for (i = 0; i < codec->num_nodes; i++, nid++)
1086 codec->wcaps[i] = snd_hda_param_read(codec, nid,
1087 AC_PAR_AUDIO_WIDGET_CAP);
1088 return 0;
1089}
1090
Takashi Iwai3be14142009-02-20 14:11:16 +01001091/* read all pin default configurations and save codec->init_pins */
1092static int read_pin_defaults(struct hda_codec *codec)
1093{
1094 int i;
1095 hda_nid_t nid = codec->start_nid;
1096
1097 for (i = 0; i < codec->num_nodes; i++, nid++) {
1098 struct hda_pincfg *pin;
1099 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwaia22d5432009-07-27 12:54:26 +02001100 unsigned int wid_type = get_wcaps_type(wcaps);
Takashi Iwai3be14142009-02-20 14:11:16 +01001101 if (wid_type != AC_WID_PIN)
1102 continue;
1103 pin = snd_array_new(&codec->init_pins);
1104 if (!pin)
1105 return -ENOMEM;
1106 pin->nid = nid;
1107 pin->cfg = snd_hda_codec_read(codec, nid, 0,
1108 AC_VERB_GET_CONFIG_DEFAULT, 0);
Takashi Iwaiac0547d2010-07-05 16:50:13 +02001109 pin->ctrl = snd_hda_codec_read(codec, nid, 0,
1110 AC_VERB_GET_PIN_WIDGET_CONTROL,
1111 0);
Takashi Iwai3be14142009-02-20 14:11:16 +01001112 }
1113 return 0;
1114}
1115
1116/* look up the given pin config list and return the item matching with NID */
1117static struct hda_pincfg *look_up_pincfg(struct hda_codec *codec,
1118 struct snd_array *array,
1119 hda_nid_t nid)
1120{
1121 int i;
1122 for (i = 0; i < array->used; i++) {
1123 struct hda_pincfg *pin = snd_array_elem(array, i);
1124 if (pin->nid == nid)
1125 return pin;
1126 }
1127 return NULL;
1128}
1129
Takashi Iwai3be14142009-02-20 14:11:16 +01001130/* set the current pin config value for the given NID.
1131 * the value is cached, and read via snd_hda_codec_get_pincfg()
1132 */
1133int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list,
1134 hda_nid_t nid, unsigned int cfg)
1135{
1136 struct hda_pincfg *pin;
1137
Takashi Iwaid5657ec2013-04-18 09:59:28 +02001138 /* the check below may be invalid when pins are added by a fixup
1139 * dynamically (e.g. via snd_hda_codec_update_widgets()), so disabled
1140 * for now
1141 */
1142 /*
Takashi Iwaib82855a2009-12-27 11:24:56 +01001143 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
1144 return -EINVAL;
Takashi Iwaid5657ec2013-04-18 09:59:28 +02001145 */
Takashi Iwaib82855a2009-12-27 11:24:56 +01001146
Takashi Iwai3be14142009-02-20 14:11:16 +01001147 pin = look_up_pincfg(codec, list, nid);
1148 if (!pin) {
1149 pin = snd_array_new(list);
1150 if (!pin)
1151 return -ENOMEM;
1152 pin->nid = nid;
1153 }
1154 pin->cfg = cfg;
Takashi Iwai3be14142009-02-20 14:11:16 +01001155 return 0;
1156}
1157
Takashi Iwaid5191e52009-11-16 14:58:17 +01001158/**
1159 * snd_hda_codec_set_pincfg - Override a pin default configuration
1160 * @codec: the HDA codec
1161 * @nid: NID to set the pin config
1162 * @cfg: the pin default config value
1163 *
1164 * Override a pin default configuration value in the cache.
1165 * This value can be read by snd_hda_codec_get_pincfg() in a higher
1166 * priority than the real hardware value.
1167 */
Takashi Iwai3be14142009-02-20 14:11:16 +01001168int snd_hda_codec_set_pincfg(struct hda_codec *codec,
1169 hda_nid_t nid, unsigned int cfg)
1170{
Takashi Iwai346ff702009-02-23 09:42:57 +01001171 return snd_hda_add_pincfg(codec, &codec->driver_pins, nid, cfg);
Takashi Iwai3be14142009-02-20 14:11:16 +01001172}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001173EXPORT_SYMBOL_GPL(snd_hda_codec_set_pincfg);
Takashi Iwai3be14142009-02-20 14:11:16 +01001174
Takashi Iwaid5191e52009-11-16 14:58:17 +01001175/**
1176 * snd_hda_codec_get_pincfg - Obtain a pin-default configuration
1177 * @codec: the HDA codec
1178 * @nid: NID to get the pin config
1179 *
1180 * Get the current pin config value of the given pin NID.
1181 * If the pincfg value is cached or overridden via sysfs or driver,
1182 * returns the cached value.
1183 */
Takashi Iwai3be14142009-02-20 14:11:16 +01001184unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid)
1185{
1186 struct hda_pincfg *pin;
1187
Takashi Iwai3be14142009-02-20 14:11:16 +01001188#ifdef CONFIG_SND_HDA_HWDEP
Takashi Iwai09b70e82013-01-10 18:21:56 +01001189 {
1190 unsigned int cfg = 0;
1191 mutex_lock(&codec->user_mutex);
1192 pin = look_up_pincfg(codec, &codec->user_pins, nid);
1193 if (pin)
1194 cfg = pin->cfg;
1195 mutex_unlock(&codec->user_mutex);
1196 if (cfg)
1197 return cfg;
1198 }
Takashi Iwai3be14142009-02-20 14:11:16 +01001199#endif
Takashi Iwai5e7b8e02009-02-23 09:45:59 +01001200 pin = look_up_pincfg(codec, &codec->driver_pins, nid);
1201 if (pin)
1202 return pin->cfg;
Takashi Iwai3be14142009-02-20 14:11:16 +01001203 pin = look_up_pincfg(codec, &codec->init_pins, nid);
1204 if (pin)
1205 return pin->cfg;
1206 return 0;
1207}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001208EXPORT_SYMBOL_GPL(snd_hda_codec_get_pincfg);
Takashi Iwai3be14142009-02-20 14:11:16 +01001209
Takashi Iwaid7fdc002013-01-10 08:38:04 +01001210/* remember the current pinctl target value */
1211int snd_hda_codec_set_pin_target(struct hda_codec *codec, hda_nid_t nid,
1212 unsigned int val)
1213{
1214 struct hda_pincfg *pin;
1215
1216 pin = look_up_pincfg(codec, &codec->init_pins, nid);
1217 if (!pin)
1218 return -EINVAL;
1219 pin->target = val;
1220 return 0;
1221}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001222EXPORT_SYMBOL_GPL(snd_hda_codec_set_pin_target);
Takashi Iwaid7fdc002013-01-10 08:38:04 +01001223
1224/* return the current pinctl target value */
1225int snd_hda_codec_get_pin_target(struct hda_codec *codec, hda_nid_t nid)
1226{
1227 struct hda_pincfg *pin;
1228
1229 pin = look_up_pincfg(codec, &codec->init_pins, nid);
1230 if (!pin)
1231 return 0;
1232 return pin->target;
1233}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001234EXPORT_SYMBOL_GPL(snd_hda_codec_get_pin_target);
Takashi Iwaid7fdc002013-01-10 08:38:04 +01001235
Takashi Iwai92ee6162009-12-27 11:18:59 +01001236/**
1237 * snd_hda_shutup_pins - Shut up all pins
1238 * @codec: the HDA codec
1239 *
1240 * Clear all pin controls to shup up before suspend for avoiding click noise.
1241 * The controls aren't cached so that they can be resumed properly.
1242 */
1243void snd_hda_shutup_pins(struct hda_codec *codec)
1244{
1245 int i;
Takashi Iwaiac0547d2010-07-05 16:50:13 +02001246 /* don't shut up pins when unloading the driver; otherwise it breaks
1247 * the default pin setup at the next load of the driver
1248 */
1249 if (codec->bus->shutdown)
1250 return;
Takashi Iwai92ee6162009-12-27 11:18:59 +01001251 for (i = 0; i < codec->init_pins.used; i++) {
1252 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
1253 /* use read here for syncing after issuing each verb */
1254 snd_hda_codec_read(codec, pin->nid, 0,
1255 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
1256 }
Takashi Iwaiac0547d2010-07-05 16:50:13 +02001257 codec->pins_shutup = 1;
Takashi Iwai92ee6162009-12-27 11:18:59 +01001258}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001259EXPORT_SYMBOL_GPL(snd_hda_shutup_pins);
Takashi Iwai92ee6162009-12-27 11:18:59 +01001260
Takashi Iwai2a439522011-07-26 09:52:50 +02001261#ifdef CONFIG_PM
Takashi Iwaiac0547d2010-07-05 16:50:13 +02001262/* Restore the pin controls cleared previously via snd_hda_shutup_pins() */
1263static void restore_shutup_pins(struct hda_codec *codec)
1264{
1265 int i;
1266 if (!codec->pins_shutup)
1267 return;
1268 if (codec->bus->shutdown)
1269 return;
1270 for (i = 0; i < codec->init_pins.used; i++) {
1271 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
1272 snd_hda_codec_write(codec, pin->nid, 0,
1273 AC_VERB_SET_PIN_WIDGET_CONTROL,
1274 pin->ctrl);
1275 }
1276 codec->pins_shutup = 0;
1277}
Mike Waychison1c7276c2011-04-20 12:04:36 -07001278#endif
Takashi Iwaiac0547d2010-07-05 16:50:13 +02001279
David Henningsson26a6cb62012-10-09 15:04:21 +02001280static void hda_jackpoll_work(struct work_struct *work)
1281{
1282 struct hda_codec *codec =
1283 container_of(work, struct hda_codec, jackpoll_work.work);
David Henningsson26a6cb62012-10-09 15:04:21 +02001284
1285 snd_hda_jack_set_dirty_all(codec);
1286 snd_hda_jack_poll_all(codec);
Wang Xingchao18e60622013-07-25 23:34:45 -04001287
1288 if (!codec->jackpoll_interval)
1289 return;
1290
David Henningsson26a6cb62012-10-09 15:04:21 +02001291 queue_delayed_work(codec->bus->workq, &codec->jackpoll_work,
1292 codec->jackpoll_interval);
1293}
1294
Takashi Iwai01751f52007-08-10 16:59:39 +02001295static void init_hda_cache(struct hda_cache_rec *cache,
1296 unsigned int record_size);
Takashi Iwai1fcaee62007-08-23 00:01:09 +02001297static void free_hda_cache(struct hda_cache_rec *cache);
Takashi Iwai01751f52007-08-10 16:59:39 +02001298
Takashi Iwai3fdf1462012-11-22 08:16:31 +01001299/* release all pincfg lists */
1300static void free_init_pincfgs(struct hda_codec *codec)
Takashi Iwai3be14142009-02-20 14:11:16 +01001301{
Takashi Iwai346ff702009-02-23 09:42:57 +01001302 snd_array_free(&codec->driver_pins);
Takashi Iwai3be14142009-02-20 14:11:16 +01001303#ifdef CONFIG_SND_HDA_HWDEP
Takashi Iwai346ff702009-02-23 09:42:57 +01001304 snd_array_free(&codec->user_pins);
Takashi Iwai3be14142009-02-20 14:11:16 +01001305#endif
Takashi Iwai3be14142009-02-20 14:11:16 +01001306 snd_array_free(&codec->init_pins);
1307}
1308
Takashi Iwai54d17402005-11-21 16:33:22 +01001309/*
Takashi Iwaieb541332010-08-06 13:48:11 +02001310 * audio-converter setup caches
1311 */
1312struct hda_cvt_setup {
1313 hda_nid_t nid;
1314 u8 stream_tag;
1315 u8 channel_id;
1316 u16 format_id;
1317 unsigned char active; /* cvt is currently used */
1318 unsigned char dirty; /* setups should be cleared */
1319};
1320
1321/* get or create a cache entry for the given audio converter NID */
1322static struct hda_cvt_setup *
1323get_hda_cvt_setup(struct hda_codec *codec, hda_nid_t nid)
1324{
1325 struct hda_cvt_setup *p;
1326 int i;
1327
1328 for (i = 0; i < codec->cvt_setups.used; i++) {
1329 p = snd_array_elem(&codec->cvt_setups, i);
1330 if (p->nid == nid)
1331 return p;
1332 }
1333 p = snd_array_new(&codec->cvt_setups);
1334 if (p)
1335 p->nid = nid;
1336 return p;
1337}
1338
1339/*
Takashi Iwaib21bdd02013-11-18 12:03:56 +01001340 * Dynamic symbol binding for the codec parsers
1341 */
1342#ifdef MODULE
1343#define load_parser_sym(sym) ((int (*)(struct hda_codec *))symbol_request(sym))
1344#define unload_parser_addr(addr) symbol_put_addr(addr)
1345#else
1346#define load_parser_sym(sym) (sym)
1347#define unload_parser_addr(addr) do {} while (0)
1348#endif
1349
1350#define load_parser(codec, sym) \
1351 ((codec)->parser = load_parser_sym(sym))
1352
1353static void unload_parser(struct hda_codec *codec)
1354{
1355 if (codec->parser) {
1356 unload_parser_addr(codec->parser);
1357 codec->parser = NULL;
1358 }
1359}
1360
1361/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 * codec destructor
1363 */
1364static void snd_hda_codec_free(struct hda_codec *codec)
1365{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001366 if (!codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 return;
David Henningsson26a6cb62012-10-09 15:04:21 +02001368 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwai59cad162012-06-26 15:00:20 +02001369 snd_hda_jack_tbl_clear(codec);
Takashi Iwai3fdf1462012-11-22 08:16:31 +01001370 free_init_pincfgs(codec);
Takashi Iwai83012a72012-08-24 18:38:08 +02001371#ifdef CONFIG_PM
Takashi Iwaicb53c622007-08-10 17:21:45 +02001372 cancel_delayed_work(&codec->power_work);
Takashi Iwai6acaed32009-01-12 10:09:24 +01001373 flush_workqueue(codec->bus->workq);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001374#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 list_del(&codec->list);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001376 snd_array_free(&codec->mixers);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001377 snd_array_free(&codec->nids);
Takashi Iwai59cad162012-06-26 15:00:20 +02001378 snd_array_free(&codec->cvt_setups);
Stephen Warren7c9359762011-06-01 11:14:17 -06001379 snd_array_free(&codec->spdif_out);
Takashi Iwaiee8e7652013-01-03 15:25:11 +01001380 remove_conn_list(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 codec->bus->caddr_tbl[codec->addr] = NULL;
1382 if (codec->patch_ops.free)
1383 codec->patch_ops.free(codec);
Takashi Iwaia40e0a82013-11-20 12:41:20 +01001384 hda_call_pm_notify(codec, false); /* cancel leftover refcounts */
Takashi Iwaib21bdd02013-11-18 12:03:56 +01001385 unload_parser(codec);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01001386 module_put(codec->owner);
Takashi Iwai01751f52007-08-10 16:59:39 +02001387 free_hda_cache(&codec->amp_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001388 free_hda_cache(&codec->cmd_cache);
Takashi Iwai812a2cc2009-05-16 10:00:49 +02001389 kfree(codec->vendor_name);
1390 kfree(codec->chip_name);
Takashi Iwaif44ac832008-07-30 15:01:45 +02001391 kfree(codec->modelname);
Takashi Iwai54d17402005-11-21 16:33:22 +01001392 kfree(codec->wcaps);
Mengdong Lin0e24dbb2013-11-26 23:00:51 -05001393 codec->bus->num_codecs--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 kfree(codec);
1395}
1396
Mengdong Linb8dfc4622012-08-23 17:32:30 +08001397static bool snd_hda_codec_get_supported_ps(struct hda_codec *codec,
1398 hda_nid_t fg, unsigned int power_state);
1399
Takashi Iwaid8193872012-08-31 07:54:38 -07001400static unsigned int hda_set_power_state(struct hda_codec *codec,
Takashi Iwaibb6ac722009-03-13 09:02:42 +01001401 unsigned int power_state);
1402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403/**
1404 * snd_hda_codec_new - create a HDA codec
1405 * @bus: the bus to assign
1406 * @codec_addr: the codec address
1407 * @codecp: the pointer to store the generated codec
1408 *
1409 * Returns 0 if successful, or a negative error code.
1410 */
Takashi Iwai6a0f56a2012-12-07 07:41:56 +01001411int snd_hda_codec_new(struct hda_bus *bus,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01001412 unsigned int codec_addr,
1413 struct hda_codec **codecp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
1415 struct hda_codec *codec;
Jaroslav Kyselaba443682008-08-13 20:55:32 +02001416 char component[31];
Takashi Iwaid8193872012-08-31 07:54:38 -07001417 hda_nid_t fg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 int err;
1419
Takashi Iwaida3cec32008-08-08 17:12:14 +02001420 if (snd_BUG_ON(!bus))
1421 return -EINVAL;
1422 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
1423 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425 if (bus->caddr_tbl[codec_addr]) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001426 snd_printk(KERN_ERR "hda_codec: "
1427 "address 0x%x is already occupied\n", codec_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 return -EBUSY;
1429 }
1430
Takashi Iwaie560d8d2005-09-09 14:21:46 +02001431 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 if (codec == NULL) {
1433 snd_printk(KERN_ERR "can't allocate struct hda_codec\n");
1434 return -ENOMEM;
1435 }
1436
1437 codec->bus = bus;
1438 codec->addr = codec_addr;
Ingo Molnar62932df2006-01-16 16:34:20 +01001439 mutex_init(&codec->spdif_mutex);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001440 mutex_init(&codec->control_mutex);
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001441 mutex_init(&codec->hash_mutex);
Takashi Iwai01751f52007-08-10 16:59:39 +02001442 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001443 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001444 snd_array_init(&codec->mixers, sizeof(struct hda_nid_item), 32);
1445 snd_array_init(&codec->nids, sizeof(struct hda_nid_item), 32);
Takashi Iwai3be14142009-02-20 14:11:16 +01001446 snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwai346ff702009-02-23 09:42:57 +01001447 snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwaieb541332010-08-06 13:48:11 +02001448 snd_array_init(&codec->cvt_setups, sizeof(struct hda_cvt_setup), 8);
Stephen Warren7c9359762011-06-01 11:14:17 -06001449 snd_array_init(&codec->spdif_out, sizeof(struct hda_spdif_out), 16);
Takashi Iwai361dab32012-05-09 14:35:27 +02001450 snd_array_init(&codec->jacktbl, sizeof(struct hda_jack_tbl), 16);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +01001451 snd_array_init(&codec->verbs, sizeof(struct hda_verb *), 8);
Takashi Iwaiee8e7652013-01-03 15:25:11 +01001452 INIT_LIST_HEAD(&codec->conn_list);
1453
David Henningsson26a6cb62012-10-09 15:04:21 +02001454 INIT_DELAYED_WORK(&codec->jackpoll_work, hda_jackpoll_work);
Mengdong Lin7f132922013-11-29 01:48:45 -05001455 codec->depop_delay = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Takashi Iwai83012a72012-08-24 18:38:08 +02001457#ifdef CONFIG_PM
Takashi Iwai5536c6d2012-05-08 17:08:10 +02001458 spin_lock_init(&codec->power_lock);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001459 INIT_DELAYED_WORK(&codec->power_work, hda_power_work);
1460 /* snd_hda_codec_new() marks the codec as power-up, and leave it as is.
1461 * the caller has to power down appropriatley after initialization
1462 * phase.
1463 */
1464 hda_keep_power_on(codec);
1465#endif
1466
Takashi Iwaic382a9f2012-05-07 15:01:02 +02001467 if (codec->bus->modelname) {
1468 codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL);
1469 if (!codec->modelname) {
1470 snd_hda_codec_free(codec);
1471 return -ENODEV;
1472 }
1473 }
1474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 list_add_tail(&codec->list, &bus->codec_list);
Mengdong Lin0e24dbb2013-11-26 23:00:51 -05001476 bus->num_codecs++;
Mengdong Lin0e24dbb2013-11-26 23:00:51 -05001477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 bus->caddr_tbl[codec_addr] = codec;
1479
Takashi Iwai0ba21762007-04-16 11:29:14 +02001480 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
1481 AC_PAR_VENDOR_ID);
Takashi Iwai111d3af2006-02-16 18:17:58 +01001482 if (codec->vendor_id == -1)
1483 /* read again, hopefully the access method was corrected
1484 * in the last read...
1485 */
1486 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
1487 AC_PAR_VENDOR_ID);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001488 codec->subsystem_id = snd_hda_param_read(codec, AC_NODE_ROOT,
1489 AC_PAR_SUBSYSTEM_ID);
1490 codec->revision_id = snd_hda_param_read(codec, AC_NODE_ROOT,
1491 AC_PAR_REV_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Sasha Khapyorsky673b6832005-08-11 11:00:16 +02001493 setup_fg_nodes(codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001494 if (!codec->afg && !codec->mfg) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +02001495 snd_printdd("hda_codec: no AFG or MFG node found\n");
Takashi Iwai3be14142009-02-20 14:11:16 +01001496 err = -ENODEV;
1497 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 }
1499
Takashi Iwaid8193872012-08-31 07:54:38 -07001500 fg = codec->afg ? codec->afg : codec->mfg;
1501 err = read_widget_caps(codec, fg);
Takashi Iwai3be14142009-02-20 14:11:16 +01001502 if (err < 0) {
Takashi Iwai54d17402005-11-21 16:33:22 +01001503 snd_printk(KERN_ERR "hda_codec: cannot malloc\n");
Takashi Iwai3be14142009-02-20 14:11:16 +01001504 goto error;
Takashi Iwai54d17402005-11-21 16:33:22 +01001505 }
Takashi Iwai3be14142009-02-20 14:11:16 +01001506 err = read_pin_defaults(codec);
1507 if (err < 0)
1508 goto error;
Takashi Iwai54d17402005-11-21 16:33:22 +01001509
Takashi Iwai0ba21762007-04-16 11:29:14 +02001510 if (!codec->subsystem_id) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001511 codec->subsystem_id =
Takashi Iwaid8193872012-08-31 07:54:38 -07001512 snd_hda_codec_read(codec, fg, 0,
Takashi Iwai0ba21762007-04-16 11:29:14 +02001513 AC_VERB_GET_SUBSYSTEM_ID, 0);
Takashi Iwai86284e42005-10-11 15:05:54 +02001514 }
1515
Takashi Iwai83012a72012-08-24 18:38:08 +02001516#ifdef CONFIG_PM
Takashi Iwaid8193872012-08-31 07:54:38 -07001517 codec->d3_stop_clk = snd_hda_codec_get_supported_ps(codec, fg,
Mengdong Linb8dfc4622012-08-23 17:32:30 +08001518 AC_PWRST_CLKSTOP);
Mengdong Lin5d6147f2012-08-24 12:06:30 +08001519#endif
Takashi Iwaid8193872012-08-31 07:54:38 -07001520 codec->epss = snd_hda_codec_get_supported_ps(codec, fg,
Takashi Iwai983f6b92012-08-28 09:18:01 -07001521 AC_PWRST_EPSS);
Takashi Iwai3e9bc582013-11-26 09:58:46 +01001522#ifdef CONFIG_PM
1523 if (!codec->d3_stop_clk || !codec->epss)
1524 bus->power_keep_link_on = 1;
1525#endif
1526
Mengdong Linb8dfc4622012-08-23 17:32:30 +08001527
Takashi Iwaibb6ac722009-03-13 09:02:42 +01001528 /* power-up all before initialization */
Takashi Iwaid8193872012-08-31 07:54:38 -07001529 hda_set_power_state(codec, AC_PWRST_D0);
Takashi Iwaibb6ac722009-03-13 09:02:42 +01001530
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001531 snd_hda_codec_proc_new(codec);
1532
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001533 snd_hda_create_hwdep(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001534
1535 sprintf(component, "HDA:%08x,%08x,%08x", codec->vendor_id,
1536 codec->subsystem_id, codec->revision_id);
1537 snd_component_add(codec->bus->card, component);
1538
1539 if (codecp)
1540 *codecp = codec;
1541 return 0;
Takashi Iwai3be14142009-02-20 14:11:16 +01001542
1543 error:
1544 snd_hda_codec_free(codec);
1545 return err;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001546}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001547EXPORT_SYMBOL_GPL(snd_hda_codec_new);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001548
Mengdong Lina15d05d2013-02-08 17:09:31 -05001549int snd_hda_codec_update_widgets(struct hda_codec *codec)
1550{
1551 hda_nid_t fg;
1552 int err;
1553
1554 /* Assume the function group node does not change,
1555 * only the widget nodes may change.
1556 */
1557 kfree(codec->wcaps);
1558 fg = codec->afg ? codec->afg : codec->mfg;
1559 err = read_widget_caps(codec, fg);
1560 if (err < 0) {
1561 snd_printk(KERN_ERR "hda_codec: cannot malloc\n");
1562 return err;
1563 }
1564
1565 snd_array_free(&codec->init_pins);
1566 err = read_pin_defaults(codec);
1567
1568 return err;
1569}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001570EXPORT_SYMBOL_GPL(snd_hda_codec_update_widgets);
Mengdong Lina15d05d2013-02-08 17:09:31 -05001571
1572
Takashi Iwaif0639272013-11-18 12:07:29 +01001573#ifdef CONFIG_SND_HDA_CODEC_HDMI
1574/* if all audio out widgets are digital, let's assume the codec as a HDMI/DP */
1575static bool is_likely_hdmi_codec(struct hda_codec *codec)
1576{
1577 hda_nid_t nid = codec->start_nid;
1578 int i;
1579
1580 for (i = 0; i < codec->num_nodes; i++, nid++) {
1581 unsigned int wcaps = get_wcaps(codec, nid);
1582 switch (get_wcaps_type(wcaps)) {
1583 case AC_WID_AUD_IN:
1584 return false; /* HDMI parser supports only HDMI out */
1585 case AC_WID_AUD_OUT:
1586 if (!(wcaps & AC_WCAP_DIGITAL))
1587 return false;
1588 break;
1589 }
1590 }
1591 return true;
1592}
1593#else
1594/* no HDMI codec parser support */
1595#define is_likely_hdmi_codec(codec) false
1596#endif /* CONFIG_SND_HDA_CODEC_HDMI */
1597
Takashi Iwaid5191e52009-11-16 14:58:17 +01001598/**
1599 * snd_hda_codec_configure - (Re-)configure the HD-audio codec
1600 * @codec: the HDA codec
1601 *
1602 * Start parsing of the given codec tree and (re-)initialize the whole
1603 * patch instance.
1604 *
1605 * Returns 0 if successful or a negative error code.
1606 */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001607int snd_hda_codec_configure(struct hda_codec *codec)
1608{
Takashi Iwaib21bdd02013-11-18 12:03:56 +01001609 int (*patch)(struct hda_codec *) = NULL;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001610 int err;
1611
Takashi Iwaid5ad6302007-03-07 15:55:59 +01001612 codec->preset = find_codec_preset(codec);
Takashi Iwai812a2cc2009-05-16 10:00:49 +02001613 if (!codec->vendor_name || !codec->chip_name) {
Takashi Iwaif44ac832008-07-30 15:01:45 +02001614 err = get_codec_name(codec);
1615 if (err < 0)
1616 return err;
1617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Takashi Iwaib21bdd02013-11-18 12:03:56 +01001619 if (!is_generic_config(codec) && codec->preset)
1620 patch = codec->preset->patch;
1621 if (!patch) {
1622 unload_parser(codec); /* to be sure */
Takashi Iwaif0639272013-11-18 12:07:29 +01001623 if (is_likely_hdmi_codec(codec))
1624 patch = load_parser(codec, snd_hda_parse_hdmi_codec);
Takashi Iwaib21bdd02013-11-18 12:03:56 +01001625#ifdef CONFIG_SND_HDA_GENERIC
1626 if (!patch)
1627 patch = load_parser(codec, snd_hda_parse_generic_codec);
1628#endif
1629 if (!patch) {
1630 printk(KERN_ERR "hda-codec: No codec parser is available\n");
1631 return -ENODEV;
1632 }
Takashi Iwai82467612007-07-27 19:15:54 +02001633 }
1634
Takashi Iwaib21bdd02013-11-18 12:03:56 +01001635 err = patch(codec);
1636 if (err < 0) {
1637 unload_parser(codec);
1638 return err;
1639 }
Takashi Iwai82467612007-07-27 19:15:54 +02001640
Takashi Iwaib21bdd02013-11-18 12:03:56 +01001641 if (codec->patch_ops.unsol_event) {
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001642 err = init_unsol_queue(codec->bus);
Takashi Iwaib21bdd02013-11-18 12:03:56 +01001643 if (err < 0)
1644 return err;
1645 }
1646
Takashi Iwaif62faed2009-12-23 09:27:51 +01001647 /* audio codec should override the mixer name */
Takashi Iwaib21bdd02013-11-18 12:03:56 +01001648 if (codec->afg || !*codec->bus->card->mixername)
Takashi Iwaif62faed2009-12-23 09:27:51 +01001649 snprintf(codec->bus->card->mixername,
1650 sizeof(codec->bus->card->mixername),
1651 "%s %s", codec->vendor_name, codec->chip_name);
Takashi Iwaib21bdd02013-11-18 12:03:56 +01001652 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001654EXPORT_SYMBOL_GPL(snd_hda_codec_configure);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Takashi Iwaied360812012-08-08 17:12:52 +02001656/* update the stream-id if changed */
1657static void update_pcm_stream_id(struct hda_codec *codec,
1658 struct hda_cvt_setup *p, hda_nid_t nid,
1659 u32 stream_tag, int channel_id)
1660{
1661 unsigned int oldval, newval;
1662
1663 if (p->stream_tag != stream_tag || p->channel_id != channel_id) {
1664 oldval = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0);
1665 newval = (stream_tag << 4) | channel_id;
1666 if (oldval != newval)
1667 snd_hda_codec_write(codec, nid, 0,
1668 AC_VERB_SET_CHANNEL_STREAMID,
1669 newval);
1670 p->stream_tag = stream_tag;
1671 p->channel_id = channel_id;
1672 }
1673}
1674
1675/* update the format-id if changed */
1676static void update_pcm_format(struct hda_codec *codec, struct hda_cvt_setup *p,
1677 hda_nid_t nid, int format)
1678{
1679 unsigned int oldval;
1680
1681 if (p->format_id != format) {
1682 oldval = snd_hda_codec_read(codec, nid, 0,
1683 AC_VERB_GET_STREAM_FORMAT, 0);
1684 if (oldval != format) {
1685 msleep(1);
1686 snd_hda_codec_write(codec, nid, 0,
1687 AC_VERB_SET_STREAM_FORMAT,
1688 format);
1689 }
1690 p->format_id = format;
1691 }
1692}
1693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694/**
1695 * snd_hda_codec_setup_stream - set up the codec for streaming
1696 * @codec: the CODEC to set up
1697 * @nid: the NID to set up
1698 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
1699 * @channel_id: channel id to pass, zero based.
1700 * @format: stream format.
1701 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001702void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
1703 u32 stream_tag,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 int channel_id, int format)
1705{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001706 struct hda_codec *c;
Takashi Iwaieb541332010-08-06 13:48:11 +02001707 struct hda_cvt_setup *p;
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001708 int type;
Takashi Iwaieb541332010-08-06 13:48:11 +02001709 int i;
1710
Takashi Iwai0ba21762007-04-16 11:29:14 +02001711 if (!nid)
Takashi Iwaid21b37e2005-04-20 13:45:55 +02001712 return;
1713
Takashi Iwai0ba21762007-04-16 11:29:14 +02001714 snd_printdd("hda_codec_setup_stream: "
1715 "NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 nid, stream_tag, channel_id, format);
Takashi Iwaieb541332010-08-06 13:48:11 +02001717 p = get_hda_cvt_setup(codec, nid);
Takashi Iwai6c35ae32013-05-10 13:39:50 +02001718 if (!p)
Takashi Iwaieb541332010-08-06 13:48:11 +02001719 return;
Takashi Iwaied360812012-08-08 17:12:52 +02001720
1721 if (codec->pcm_format_first)
1722 update_pcm_format(codec, p, nid, format);
1723 update_pcm_stream_id(codec, p, nid, stream_tag, channel_id);
1724 if (!codec->pcm_format_first)
1725 update_pcm_format(codec, p, nid, format);
1726
Takashi Iwaieb541332010-08-06 13:48:11 +02001727 p->active = 1;
1728 p->dirty = 0;
1729
1730 /* make other inactive cvts with the same stream-tag dirty */
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001731 type = get_wcaps_type(get_wcaps(codec, nid));
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001732 list_for_each_entry(c, &codec->bus->codec_list, list) {
1733 for (i = 0; i < c->cvt_setups.used; i++) {
1734 p = snd_array_elem(&c->cvt_setups, i);
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001735 if (!p->active && p->stream_tag == stream_tag &&
David Henningsson54c2a892012-02-01 12:05:41 +01001736 get_wcaps_type(get_wcaps(c, p->nid)) == type)
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001737 p->dirty = 1;
1738 }
Takashi Iwaieb541332010-08-06 13:48:11 +02001739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001741EXPORT_SYMBOL_GPL(snd_hda_codec_setup_stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Takashi Iwaif0cea792010-08-13 11:56:53 +02001743static void really_cleanup_stream(struct hda_codec *codec,
1744 struct hda_cvt_setup *q);
1745
Takashi Iwaid5191e52009-11-16 14:58:17 +01001746/**
Takashi Iwaif0cea792010-08-13 11:56:53 +02001747 * __snd_hda_codec_cleanup_stream - clean up the codec for closing
Takashi Iwaid5191e52009-11-16 14:58:17 +01001748 * @codec: the CODEC to clean up
1749 * @nid: the NID to clean up
Takashi Iwaif0cea792010-08-13 11:56:53 +02001750 * @do_now: really clean up the stream instead of clearing the active flag
Takashi Iwaid5191e52009-11-16 14:58:17 +01001751 */
Takashi Iwaif0cea792010-08-13 11:56:53 +02001752void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid,
1753 int do_now)
Takashi Iwai888afa12008-03-18 09:57:50 +01001754{
Takashi Iwaieb541332010-08-06 13:48:11 +02001755 struct hda_cvt_setup *p;
1756
Takashi Iwai888afa12008-03-18 09:57:50 +01001757 if (!nid)
1758 return;
1759
Takashi Iwai0e7adbe2010-10-25 10:37:11 +02001760 if (codec->no_sticky_stream)
1761 do_now = 1;
1762
Takashi Iwai888afa12008-03-18 09:57:50 +01001763 snd_printdd("hda_codec_cleanup_stream: NID=0x%x\n", nid);
Takashi Iwaieb541332010-08-06 13:48:11 +02001764 p = get_hda_cvt_setup(codec, nid);
Takashi Iwai6c35ae32013-05-10 13:39:50 +02001765 if (p) {
Takashi Iwaif0cea792010-08-13 11:56:53 +02001766 /* here we just clear the active flag when do_now isn't set;
1767 * actual clean-ups will be done later in
1768 * purify_inactive_streams() called from snd_hda_codec_prpapre()
1769 */
1770 if (do_now)
1771 really_cleanup_stream(codec, p);
1772 else
1773 p->active = 0;
1774 }
Takashi Iwai888afa12008-03-18 09:57:50 +01001775}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001776EXPORT_SYMBOL_GPL(__snd_hda_codec_cleanup_stream);
Takashi Iwai888afa12008-03-18 09:57:50 +01001777
Takashi Iwaieb541332010-08-06 13:48:11 +02001778static void really_cleanup_stream(struct hda_codec *codec,
1779 struct hda_cvt_setup *q)
1780{
1781 hda_nid_t nid = q->nid;
Takashi Iwai218264a2011-09-27 17:33:45 +02001782 if (q->stream_tag || q->channel_id)
1783 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
1784 if (q->format_id)
1785 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0
1786);
Takashi Iwaieb541332010-08-06 13:48:11 +02001787 memset(q, 0, sizeof(*q));
1788 q->nid = nid;
1789}
1790
1791/* clean up the all conflicting obsolete streams */
1792static void purify_inactive_streams(struct hda_codec *codec)
1793{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001794 struct hda_codec *c;
Takashi Iwaieb541332010-08-06 13:48:11 +02001795 int i;
1796
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001797 list_for_each_entry(c, &codec->bus->codec_list, list) {
1798 for (i = 0; i < c->cvt_setups.used; i++) {
1799 struct hda_cvt_setup *p;
1800 p = snd_array_elem(&c->cvt_setups, i);
1801 if (p->dirty)
1802 really_cleanup_stream(c, p);
1803 }
Takashi Iwaieb541332010-08-06 13:48:11 +02001804 }
1805}
1806
Takashi Iwai2a439522011-07-26 09:52:50 +02001807#ifdef CONFIG_PM
Takashi Iwaieb541332010-08-06 13:48:11 +02001808/* clean up all streams; called from suspend */
1809static void hda_cleanup_all_streams(struct hda_codec *codec)
1810{
1811 int i;
1812
1813 for (i = 0; i < codec->cvt_setups.used; i++) {
1814 struct hda_cvt_setup *p = snd_array_elem(&codec->cvt_setups, i);
1815 if (p->stream_tag)
1816 really_cleanup_stream(codec, p);
1817 }
1818}
Mike Waychison1c7276c2011-04-20 12:04:36 -07001819#endif
Takashi Iwaieb541332010-08-06 13:48:11 +02001820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821/*
1822 * amp access functions
1823 */
1824
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001825/* FIXME: more better hash key? */
Norberto Lopes28aedaf2010-02-28 20:16:53 +01001826#define HDA_HASH_KEY(nid, dir, idx) (u32)((nid) + ((idx) << 16) + ((dir) << 24))
Takashi Iwai1327a322009-03-23 13:07:47 +01001827#define HDA_HASH_PINCAP_KEY(nid) (u32)((nid) + (0x02 << 24))
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001828#define HDA_HASH_PARPCM_KEY(nid) (u32)((nid) + (0x03 << 24))
1829#define HDA_HASH_PARSTR_KEY(nid) (u32)((nid) + (0x04 << 24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830#define INFO_AMP_CAPS (1<<0)
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001831#define INFO_AMP_VOL(ch) (1 << (1 + (ch)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
1833/* initialize the hash table */
Takashi Iwai6a0f56a2012-12-07 07:41:56 +01001834static void init_hda_cache(struct hda_cache_rec *cache,
Takashi Iwai01751f52007-08-10 16:59:39 +02001835 unsigned int record_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836{
Takashi Iwai01751f52007-08-10 16:59:39 +02001837 memset(cache, 0, sizeof(*cache));
1838 memset(cache->hash, 0xff, sizeof(cache->hash));
Takashi Iwai603c4012008-07-30 15:01:44 +02001839 snd_array_init(&cache->buf, record_size, 64);
Takashi Iwai01751f52007-08-10 16:59:39 +02001840}
1841
Takashi Iwai1fcaee62007-08-23 00:01:09 +02001842static void free_hda_cache(struct hda_cache_rec *cache)
Takashi Iwai01751f52007-08-10 16:59:39 +02001843{
Takashi Iwai603c4012008-07-30 15:01:44 +02001844 snd_array_free(&cache->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845}
1846
1847/* query the hash. allocate an entry if not found. */
Takashi Iwaia68d5a52010-03-30 18:03:44 +02001848static struct hda_cache_head *get_hash(struct hda_cache_rec *cache, u32 key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849{
Takashi Iwai01751f52007-08-10 16:59:39 +02001850 u16 idx = key % (u16)ARRAY_SIZE(cache->hash);
1851 u16 cur = cache->hash[idx];
1852 struct hda_cache_head *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
1854 while (cur != 0xffff) {
Takashi Iwaif43aa022008-11-10 16:24:26 +01001855 info = snd_array_elem(&cache->buf, cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 if (info->key == key)
1857 return info;
1858 cur = info->next;
1859 }
Takashi Iwaia68d5a52010-03-30 18:03:44 +02001860 return NULL;
1861}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Takashi Iwaia68d5a52010-03-30 18:03:44 +02001863/* query the hash. allocate an entry if not found. */
1864static struct hda_cache_head *get_alloc_hash(struct hda_cache_rec *cache,
1865 u32 key)
1866{
1867 struct hda_cache_head *info = get_hash(cache, key);
1868 if (!info) {
1869 u16 idx, cur;
1870 /* add a new hash entry */
1871 info = snd_array_new(&cache->buf);
1872 if (!info)
1873 return NULL;
1874 cur = snd_array_index(&cache->buf, info);
1875 info->key = key;
1876 info->val = 0;
Takashi Iwaic370dd62012-12-13 18:30:04 +01001877 info->dirty = 0;
Takashi Iwaia68d5a52010-03-30 18:03:44 +02001878 idx = key % (u16)ARRAY_SIZE(cache->hash);
1879 info->next = cache->hash[idx];
1880 cache->hash[idx] = cur;
1881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 return info;
1883}
1884
Takashi Iwai01751f52007-08-10 16:59:39 +02001885/* query and allocate an amp hash entry */
1886static inline struct hda_amp_info *
1887get_alloc_amp_hash(struct hda_codec *codec, u32 key)
1888{
1889 return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key);
1890}
1891
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001892/* overwrite the value with the key in the caps hash */
1893static int write_caps_hash(struct hda_codec *codec, u32 key, unsigned int val)
1894{
1895 struct hda_amp_info *info;
1896
1897 mutex_lock(&codec->hash_mutex);
1898 info = get_alloc_amp_hash(codec, key);
1899 if (!info) {
1900 mutex_unlock(&codec->hash_mutex);
1901 return -EINVAL;
1902 }
1903 info->amp_caps = val;
1904 info->head.val |= INFO_AMP_CAPS;
1905 mutex_unlock(&codec->hash_mutex);
1906 return 0;
1907}
1908
1909/* query the value from the caps hash; if not found, fetch the current
1910 * value from the given function and store in the hash
1911 */
1912static unsigned int
1913query_caps_hash(struct hda_codec *codec, hda_nid_t nid, int dir, u32 key,
1914 unsigned int (*func)(struct hda_codec *, hda_nid_t, int))
1915{
1916 struct hda_amp_info *info;
1917 unsigned int val;
1918
1919 mutex_lock(&codec->hash_mutex);
1920 info = get_alloc_amp_hash(codec, key);
1921 if (!info) {
1922 mutex_unlock(&codec->hash_mutex);
1923 return 0;
1924 }
1925 if (!(info->head.val & INFO_AMP_CAPS)) {
1926 mutex_unlock(&codec->hash_mutex); /* for reentrance */
1927 val = func(codec, nid, dir);
1928 write_caps_hash(codec, key, val);
1929 } else {
1930 val = info->amp_caps;
1931 mutex_unlock(&codec->hash_mutex);
1932 }
1933 return val;
1934}
1935
1936static unsigned int read_amp_cap(struct hda_codec *codec, hda_nid_t nid,
1937 int direction)
1938{
1939 if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
1940 nid = codec->afg;
1941 return snd_hda_param_read(codec, nid,
1942 direction == HDA_OUTPUT ?
1943 AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP);
1944}
1945
Takashi Iwaid5191e52009-11-16 14:58:17 +01001946/**
1947 * query_amp_caps - query AMP capabilities
1948 * @codec: the HD-auio codec
1949 * @nid: the NID to query
1950 * @direction: either #HDA_INPUT or #HDA_OUTPUT
1951 *
1952 * Query AMP capabilities for the given widget and direction.
1953 * Returns the obtained capability bits.
1954 *
1955 * When cap bits have been already read, this doesn't read again but
1956 * returns the cached value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 */
Matthew Ranostay09a99952008-01-24 11:49:21 +01001958u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001960 return query_caps_hash(codec, nid, direction,
1961 HDA_HASH_KEY(nid, direction, 0),
1962 read_amp_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001964EXPORT_SYMBOL_GPL(query_amp_caps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Takashi Iwaid5191e52009-11-16 14:58:17 +01001966/**
1967 * snd_hda_override_amp_caps - Override the AMP capabilities
1968 * @codec: the CODEC to clean up
1969 * @nid: the NID to clean up
1970 * @direction: either #HDA_INPUT or #HDA_OUTPUT
1971 * @caps: the capability bits to set
1972 *
1973 * Override the cached AMP caps bits value by the given one.
1974 * This function is useful if the driver needs to adjust the AMP ranges,
1975 * e.g. limit to 0dB, etc.
1976 *
1977 * Returns zero if successful or a negative error code.
1978 */
Takashi Iwai897cc182007-05-29 19:01:37 +02001979int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
1980 unsigned int caps)
1981{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001982 return write_caps_hash(codec, HDA_HASH_KEY(nid, dir, 0), caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001983}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001984EXPORT_SYMBOL_GPL(snd_hda_override_amp_caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001985
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001986static unsigned int read_pin_cap(struct hda_codec *codec, hda_nid_t nid,
1987 int dir)
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001988{
1989 return snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP);
1990}
1991
Takashi Iwaid5191e52009-11-16 14:58:17 +01001992/**
1993 * snd_hda_query_pin_caps - Query PIN capabilities
1994 * @codec: the HD-auio codec
1995 * @nid: the NID to query
1996 *
1997 * Query PIN capabilities for the given widget.
1998 * Returns the obtained capability bits.
1999 *
2000 * When cap bits have been already read, this doesn't read again but
2001 * returns the cached value.
2002 */
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01002003u32 snd_hda_query_pin_caps(struct hda_codec *codec, hda_nid_t nid)
2004{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02002005 return query_caps_hash(codec, nid, 0, HDA_HASH_PINCAP_KEY(nid),
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01002006 read_pin_cap);
2007}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002008EXPORT_SYMBOL_GPL(snd_hda_query_pin_caps);
Takashi Iwai1327a322009-03-23 13:07:47 +01002009
Wu Fengguang864f92b2009-11-18 12:38:02 +08002010/**
Takashi Iwaif57c2562011-08-15 12:49:07 +02002011 * snd_hda_override_pin_caps - Override the pin capabilities
2012 * @codec: the CODEC
2013 * @nid: the NID to override
2014 * @caps: the capability bits to set
2015 *
2016 * Override the cached PIN capabilitiy bits value by the given one.
2017 *
2018 * Returns zero if successful or a negative error code.
2019 */
2020int snd_hda_override_pin_caps(struct hda_codec *codec, hda_nid_t nid,
2021 unsigned int caps)
2022{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02002023 return write_caps_hash(codec, HDA_HASH_PINCAP_KEY(nid), caps);
Takashi Iwaif57c2562011-08-15 12:49:07 +02002024}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002025EXPORT_SYMBOL_GPL(snd_hda_override_pin_caps);
Takashi Iwaif57c2562011-08-15 12:49:07 +02002026
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02002027/* read or sync the hash value with the current value;
2028 * call within hash_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 */
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02002030static struct hda_amp_info *
2031update_amp_hash(struct hda_codec *codec, hda_nid_t nid, int ch,
Takashi Iwai280e57d2012-12-14 10:32:21 +01002032 int direction, int index, bool init_only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02002034 struct hda_amp_info *info;
2035 unsigned int parm, val = 0;
2036 bool val_read = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02002038 retry:
2039 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, index));
2040 if (!info)
2041 return NULL;
2042 if (!(info->head.val & INFO_AMP_VOL(ch))) {
2043 if (!val_read) {
2044 mutex_unlock(&codec->hash_mutex);
2045 parm = ch ? AC_AMP_GET_RIGHT : AC_AMP_GET_LEFT;
2046 parm |= direction == HDA_OUTPUT ?
2047 AC_AMP_GET_OUTPUT : AC_AMP_GET_INPUT;
2048 parm |= index;
2049 val = snd_hda_codec_read(codec, nid, 0,
Takashi Iwai0ba21762007-04-16 11:29:14 +02002050 AC_VERB_GET_AMP_GAIN_MUTE, parm);
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02002051 val &= 0xff;
2052 val_read = true;
2053 mutex_lock(&codec->hash_mutex);
2054 goto retry;
2055 }
2056 info->vol[ch] = val;
2057 info->head.val |= INFO_AMP_VOL(ch);
Takashi Iwai280e57d2012-12-14 10:32:21 +01002058 } else if (init_only)
2059 return NULL;
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02002060 return info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061}
2062
2063/*
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02002064 * write the current volume in info to the h/w
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 */
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01002066static void put_vol_mute(struct hda_codec *codec, unsigned int amp_caps,
Takashi Iwai0ba21762007-04-16 11:29:14 +02002067 hda_nid_t nid, int ch, int direction, int index,
2068 int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069{
2070 u32 parm;
2071
2072 parm = ch ? AC_AMP_SET_RIGHT : AC_AMP_SET_LEFT;
2073 parm |= direction == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT;
2074 parm |= index << AC_AMP_SET_INDEX_SHIFT;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01002075 if ((val & HDA_AMP_MUTE) && !(amp_caps & AC_AMPCAP_MUTE) &&
2076 (amp_caps & AC_AMPCAP_MIN_MUTE))
Takashi Iwai38681372012-02-27 15:00:58 +01002077 ; /* set the zero value as a fake mute */
2078 else
2079 parm |= val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, parm);
2081}
2082
Takashi Iwaid5191e52009-11-16 14:58:17 +01002083/**
2084 * snd_hda_codec_amp_read - Read AMP value
2085 * @codec: HD-audio codec
2086 * @nid: NID to read the AMP value
2087 * @ch: channel (left=0 or right=1)
2088 * @direction: #HDA_INPUT or #HDA_OUTPUT
2089 * @index: the index value (only for input direction)
2090 *
2091 * Read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 */
Takashi Iwai834be882006-03-01 14:16:17 +01002093int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch,
2094 int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002096 struct hda_amp_info *info;
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02002097 unsigned int val = 0;
2098
2099 mutex_lock(&codec->hash_mutex);
Takashi Iwai280e57d2012-12-14 10:32:21 +01002100 info = update_amp_hash(codec, nid, ch, direction, index, false);
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02002101 if (info)
2102 val = info->vol[ch];
2103 mutex_unlock(&codec->hash_mutex);
2104 return val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002106EXPORT_SYMBOL_GPL(snd_hda_codec_amp_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Takashi Iwai280e57d2012-12-14 10:32:21 +01002108static int codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch,
2109 int direction, int idx, int mask, int val,
2110 bool init_only)
2111{
2112 struct hda_amp_info *info;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01002113 unsigned int caps;
Takashi Iwaide1e37b2012-12-20 11:00:21 +01002114 unsigned int cache_only;
Takashi Iwai280e57d2012-12-14 10:32:21 +01002115
2116 if (snd_BUG_ON(mask & ~0xff))
2117 mask &= 0xff;
2118 val &= mask;
2119
2120 mutex_lock(&codec->hash_mutex);
2121 info = update_amp_hash(codec, nid, ch, direction, idx, init_only);
2122 if (!info) {
2123 mutex_unlock(&codec->hash_mutex);
2124 return 0;
2125 }
2126 val |= info->vol[ch] & ~mask;
2127 if (info->vol[ch] == val) {
2128 mutex_unlock(&codec->hash_mutex);
2129 return 0;
2130 }
2131 info->vol[ch] = val;
Takashi Iwaide1e37b2012-12-20 11:00:21 +01002132 cache_only = info->head.dirty = codec->cached_write;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01002133 caps = info->amp_caps;
Takashi Iwai280e57d2012-12-14 10:32:21 +01002134 mutex_unlock(&codec->hash_mutex);
Takashi Iwaide1e37b2012-12-20 11:00:21 +01002135 if (!cache_only)
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01002136 put_vol_mute(codec, caps, nid, ch, direction, idx, val);
Takashi Iwai280e57d2012-12-14 10:32:21 +01002137 return 1;
2138}
2139
Takashi Iwaid5191e52009-11-16 14:58:17 +01002140/**
2141 * snd_hda_codec_amp_update - update the AMP value
2142 * @codec: HD-audio codec
2143 * @nid: NID to read the AMP value
2144 * @ch: channel (left=0 or right=1)
2145 * @direction: #HDA_INPUT or #HDA_OUTPUT
2146 * @idx: the index value (only for input direction)
2147 * @mask: bit mask to set
2148 * @val: the bits value to set
2149 *
2150 * Update the AMP value with a bit mask.
2151 * Returns 0 if the value is unchanged, 1 if changed.
Takashi Iwai4a19fae2005-06-08 14:43:58 +02002152 */
Takashi Iwai834be882006-03-01 14:16:17 +01002153int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch,
2154 int direction, int idx, int mask, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155{
Takashi Iwai280e57d2012-12-14 10:32:21 +01002156 return codec_amp_update(codec, nid, ch, direction, idx, mask, val, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002158EXPORT_SYMBOL_GPL(snd_hda_codec_amp_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
Takashi Iwaid5191e52009-11-16 14:58:17 +01002160/**
2161 * snd_hda_codec_amp_stereo - update the AMP stereo values
2162 * @codec: HD-audio codec
2163 * @nid: NID to read the AMP value
2164 * @direction: #HDA_INPUT or #HDA_OUTPUT
2165 * @idx: the index value (only for input direction)
2166 * @mask: bit mask to set
2167 * @val: the bits value to set
2168 *
2169 * Update the AMP values like snd_hda_codec_amp_update(), but for a
2170 * stereo widget with the same mask and value.
Takashi Iwai47fd8302007-08-10 17:11:07 +02002171 */
2172int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
2173 int direction, int idx, int mask, int val)
2174{
2175 int ch, ret = 0;
Takashi Iwai467126462010-03-29 09:19:38 +02002176
2177 if (snd_BUG_ON(mask & ~0xff))
2178 mask &= 0xff;
Takashi Iwai47fd8302007-08-10 17:11:07 +02002179 for (ch = 0; ch < 2; ch++)
2180 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
2181 idx, mask, val);
2182 return ret;
2183}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002184EXPORT_SYMBOL_GPL(snd_hda_codec_amp_stereo);
Takashi Iwai47fd8302007-08-10 17:11:07 +02002185
Takashi Iwai280e57d2012-12-14 10:32:21 +01002186/* Works like snd_hda_codec_amp_update() but it writes the value only at
2187 * the first access. If the amp was already initialized / updated beforehand,
2188 * this does nothing.
2189 */
2190int snd_hda_codec_amp_init(struct hda_codec *codec, hda_nid_t nid, int ch,
2191 int dir, int idx, int mask, int val)
2192{
2193 return codec_amp_update(codec, nid, ch, dir, idx, mask, val, true);
2194}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002195EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init);
Takashi Iwai280e57d2012-12-14 10:32:21 +01002196
2197int snd_hda_codec_amp_init_stereo(struct hda_codec *codec, hda_nid_t nid,
2198 int dir, int idx, int mask, int val)
2199{
2200 int ch, ret = 0;
2201
2202 if (snd_BUG_ON(mask & ~0xff))
2203 mask &= 0xff;
2204 for (ch = 0; ch < 2; ch++)
2205 ret |= snd_hda_codec_amp_init(codec, nid, ch, dir,
2206 idx, mask, val);
2207 return ret;
2208}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002209EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init_stereo);
Takashi Iwai280e57d2012-12-14 10:32:21 +01002210
Takashi Iwaid5191e52009-11-16 14:58:17 +01002211/**
2212 * snd_hda_codec_resume_amp - Resume all AMP commands from the cache
2213 * @codec: HD-audio codec
2214 *
2215 * Resume the all amp commands from the cache.
2216 */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002217void snd_hda_codec_resume_amp(struct hda_codec *codec)
2218{
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002219 int i;
2220
Takashi Iwaic370dd62012-12-13 18:30:04 +01002221 mutex_lock(&codec->hash_mutex);
Takashi Iwaiaa88a352012-12-20 11:02:00 +01002222 codec->cached_write = 0;
Takashi Iwaic370dd62012-12-13 18:30:04 +01002223 for (i = 0; i < codec->amp_cache.buf.used; i++) {
2224 struct hda_amp_info *buffer;
2225 u32 key;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002226 hda_nid_t nid;
2227 unsigned int idx, dir, ch;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01002228 struct hda_amp_info info;
Takashi Iwaic370dd62012-12-13 18:30:04 +01002229
2230 buffer = snd_array_elem(&codec->amp_cache.buf, i);
Takashi Iwai8565f052012-12-20 12:54:18 +01002231 if (!buffer->head.dirty)
2232 continue;
2233 buffer->head.dirty = 0;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01002234 info = *buffer;
2235 key = info.head.key;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002236 if (!key)
2237 continue;
2238 nid = key & 0xff;
2239 idx = (key >> 16) & 0xff;
2240 dir = (key >> 24) & 0xff;
2241 for (ch = 0; ch < 2; ch++) {
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01002242 if (!(info.head.val & INFO_AMP_VOL(ch)))
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002243 continue;
Takashi Iwaic370dd62012-12-13 18:30:04 +01002244 mutex_unlock(&codec->hash_mutex);
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01002245 put_vol_mute(codec, info.amp_caps, nid, ch, dir, idx,
2246 info.vol[ch]);
Takashi Iwaic370dd62012-12-13 18:30:04 +01002247 mutex_lock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002248 }
2249 }
Takashi Iwaic370dd62012-12-13 18:30:04 +01002250 mutex_unlock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002251}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002252EXPORT_SYMBOL_GPL(snd_hda_codec_resume_amp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02002254static u32 get_amp_max_value(struct hda_codec *codec, hda_nid_t nid, int dir,
2255 unsigned int ofs)
2256{
2257 u32 caps = query_amp_caps(codec, nid, dir);
2258 /* get num steps */
2259 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
2260 if (ofs < caps)
2261 caps -= ofs;
2262 return caps;
2263}
2264
Takashi Iwaid5191e52009-11-16 14:58:17 +01002265/**
2266 * snd_hda_mixer_amp_volume_info - Info callback for a standard AMP mixer
2267 *
2268 * The control element is supposed to have the private_value field
2269 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2270 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002271int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
2272 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273{
2274 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2275 u16 nid = get_amp_nid(kcontrol);
2276 u8 chs = get_amp_channels(kcontrol);
2277 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002278 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02002280 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2281 uinfo->count = chs == 3 ? 2 : 1;
2282 uinfo->value.integer.min = 0;
2283 uinfo->value.integer.max = get_amp_max_value(codec, nid, dir, ofs);
2284 if (!uinfo->value.integer.max) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002285 printk(KERN_WARNING "hda_codec: "
Takashi Iwai9c8f2ab2008-01-11 16:12:23 +01002286 "num_steps = 0 for NID=0x%x (ctl = %s)\n", nid,
2287 kcontrol->id.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 return -EINVAL;
2289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 return 0;
2291}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002292EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002294
2295static inline unsigned int
2296read_amp_value(struct hda_codec *codec, hda_nid_t nid,
2297 int ch, int dir, int idx, unsigned int ofs)
2298{
2299 unsigned int val;
2300 val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx);
2301 val &= HDA_AMP_VOLMASK;
2302 if (val >= ofs)
2303 val -= ofs;
2304 else
2305 val = 0;
2306 return val;
2307}
2308
2309static inline int
2310update_amp_value(struct hda_codec *codec, hda_nid_t nid,
2311 int ch, int dir, int idx, unsigned int ofs,
2312 unsigned int val)
2313{
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02002314 unsigned int maxval;
2315
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002316 if (val > 0)
2317 val += ofs;
Takashi Iwai7ccc3ef2010-07-26 17:00:15 +02002318 /* ofs = 0: raw max value */
2319 maxval = get_amp_max_value(codec, nid, dir, 0);
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02002320 if (val > maxval)
2321 val = maxval;
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002322 return snd_hda_codec_amp_update(codec, nid, ch, dir, idx,
2323 HDA_AMP_VOLMASK, val);
2324}
2325
Takashi Iwaid5191e52009-11-16 14:58:17 +01002326/**
2327 * snd_hda_mixer_amp_volume_get - Get callback for a standard AMP mixer volume
2328 *
2329 * The control element is supposed to have the private_value field
2330 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2331 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002332int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
2333 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334{
2335 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2336 hda_nid_t nid = get_amp_nid(kcontrol);
2337 int chs = get_amp_channels(kcontrol);
2338 int dir = get_amp_direction(kcontrol);
2339 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002340 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 long *valp = ucontrol->value.integer.value;
2342
2343 if (chs & 1)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002344 *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002346 *valp = read_amp_value(codec, nid, 1, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 return 0;
2348}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002349EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
Takashi Iwaid5191e52009-11-16 14:58:17 +01002351/**
2352 * snd_hda_mixer_amp_volume_put - Put callback for a standard AMP mixer volume
2353 *
2354 * The control element is supposed to have the private_value field
2355 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2356 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002357int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
2358 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359{
2360 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2361 hda_nid_t nid = get_amp_nid(kcontrol);
2362 int chs = get_amp_channels(kcontrol);
2363 int dir = get_amp_direction(kcontrol);
2364 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002365 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 long *valp = ucontrol->value.integer.value;
2367 int change = 0;
2368
Takashi Iwaicb53c622007-08-10 17:21:45 +02002369 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002370 if (chs & 1) {
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002371 change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002372 valp++;
2373 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02002374 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002375 change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002376 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 return change;
2378}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002379EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380
Takashi Iwaid5191e52009-11-16 14:58:17 +01002381/**
2382 * snd_hda_mixer_amp_volume_put - TLV callback for a standard AMP mixer volume
2383 *
2384 * The control element is supposed to have the private_value field
2385 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2386 */
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02002387int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
2388 unsigned int size, unsigned int __user *_tlv)
2389{
2390 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2391 hda_nid_t nid = get_amp_nid(kcontrol);
2392 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002393 unsigned int ofs = get_amp_offset(kcontrol);
Clemens Ladischde8c85f2010-10-15 10:32:50 +02002394 bool min_mute = get_amp_min_mute(kcontrol);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02002395 u32 caps, val1, val2;
2396
2397 if (size < 4 * sizeof(unsigned int))
2398 return -ENOMEM;
2399 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002400 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
2401 val2 = (val2 + 1) * 25;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02002402 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002403 val1 += ofs;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02002404 val1 = ((int)val1) * ((int)val2);
Takashi Iwai38681372012-02-27 15:00:58 +01002405 if (min_mute || (caps & AC_AMPCAP_MIN_MUTE))
Takashi Iwaic08d9162010-10-17 10:40:53 +02002406 val2 |= TLV_DB_SCALE_MUTE;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02002407 if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv))
2408 return -EFAULT;
2409 if (put_user(2 * sizeof(unsigned int), _tlv + 1))
2410 return -EFAULT;
2411 if (put_user(val1, _tlv + 2))
2412 return -EFAULT;
2413 if (put_user(val2, _tlv + 3))
2414 return -EFAULT;
2415 return 0;
2416}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002417EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_tlv);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02002418
Takashi Iwaid5191e52009-11-16 14:58:17 +01002419/**
2420 * snd_hda_set_vmaster_tlv - Set TLV for a virtual master control
2421 * @codec: HD-audio codec
2422 * @nid: NID of a reference widget
2423 * @dir: #HDA_INPUT or #HDA_OUTPUT
2424 * @tlv: TLV data to be stored, at least 4 elements
2425 *
2426 * Set (static) TLV data for a virtual master volume using the AMP caps
2427 * obtained from the reference NID.
2428 * The volume range is recalculated as if the max volume is 0dB.
Takashi Iwai2134ea42008-01-10 16:53:55 +01002429 */
2430void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
2431 unsigned int *tlv)
2432{
2433 u32 caps;
2434 int nums, step;
2435
2436 caps = query_amp_caps(codec, nid, dir);
2437 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
2438 step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
2439 step = (step + 1) * 25;
2440 tlv[0] = SNDRV_CTL_TLVT_DB_SCALE;
2441 tlv[1] = 2 * sizeof(unsigned int);
2442 tlv[2] = -nums * step;
2443 tlv[3] = step;
2444}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002445EXPORT_SYMBOL_GPL(snd_hda_set_vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01002446
2447/* find a mixer control element with the given name */
Takashi Iwai09f99702008-02-04 12:31:13 +01002448static struct snd_kcontrol *
Takashi Iwaidcda5802012-10-12 17:24:51 +02002449find_mixer_ctl(struct hda_codec *codec, const char *name, int dev, int idx)
Takashi Iwai2134ea42008-01-10 16:53:55 +01002450{
2451 struct snd_ctl_elem_id id;
2452 memset(&id, 0, sizeof(id));
2453 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Takashi Iwaidcda5802012-10-12 17:24:51 +02002454 id.device = dev;
Takashi Iwai09f99702008-02-04 12:31:13 +01002455 id.index = idx;
Takashi Iwai18cb7102009-04-16 10:22:24 +02002456 if (snd_BUG_ON(strlen(name) >= sizeof(id.name)))
2457 return NULL;
Takashi Iwai2134ea42008-01-10 16:53:55 +01002458 strcpy(id.name, name);
2459 return snd_ctl_find_id(codec->bus->card, &id);
2460}
2461
Takashi Iwaid5191e52009-11-16 14:58:17 +01002462/**
2463 * snd_hda_find_mixer_ctl - Find a mixer control element with the given name
2464 * @codec: HD-audio codec
2465 * @name: ctl id name string
2466 *
2467 * Get the control element with the given id string and IFACE_MIXER.
2468 */
Takashi Iwai09f99702008-02-04 12:31:13 +01002469struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
2470 const char *name)
2471{
Takashi Iwaidcda5802012-10-12 17:24:51 +02002472 return find_mixer_ctl(codec, name, 0, 0);
Takashi Iwai09f99702008-02-04 12:31:13 +01002473}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002474EXPORT_SYMBOL_GPL(snd_hda_find_mixer_ctl);
Takashi Iwai09f99702008-02-04 12:31:13 +01002475
Takashi Iwaidcda5802012-10-12 17:24:51 +02002476static int find_empty_mixer_ctl_idx(struct hda_codec *codec, const char *name,
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002477 int start_idx)
Takashi Iwai1afe2062010-12-23 10:17:52 +01002478{
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002479 int i, idx;
2480 /* 16 ctlrs should be large enough */
2481 for (i = 0, idx = start_idx; i < 16; i++, idx++) {
2482 if (!find_mixer_ctl(codec, name, 0, idx))
Takashi Iwai1afe2062010-12-23 10:17:52 +01002483 return idx;
2484 }
2485 return -EBUSY;
2486}
2487
Takashi Iwaid5191e52009-11-16 14:58:17 +01002488/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002489 * snd_hda_ctl_add - Add a control element and assign to the codec
Takashi Iwaid5191e52009-11-16 14:58:17 +01002490 * @codec: HD-audio codec
2491 * @nid: corresponding NID (optional)
2492 * @kctl: the control element to assign
2493 *
2494 * Add the given control element to an array inside the codec instance.
2495 * All control elements belonging to a codec are supposed to be added
2496 * by this function so that a proper clean-up works at the free or
2497 * reconfiguration time.
2498 *
2499 * If non-zero @nid is passed, the NID is assigned to the control element.
2500 * The assignment is shown in the codec proc file.
2501 *
2502 * snd_hda_ctl_add() checks the control subdev id field whether
2503 * #HDA_SUBDEV_NID_FLAG bit is set. If set (and @nid is zero), the lower
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002504 * bits value is taken as the NID to assign. The #HDA_NID_ITEM_AMP bit
2505 * specifies if kctl->private_value is a HDA amplifier value.
Takashi Iwaid5191e52009-11-16 14:58:17 +01002506 */
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002507int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid,
2508 struct snd_kcontrol *kctl)
Takashi Iwaid13bd412008-07-30 15:01:45 +02002509{
2510 int err;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002511 unsigned short flags = 0;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002512 struct hda_nid_item *item;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002513
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002514 if (kctl->id.subdevice & HDA_SUBDEV_AMP_FLAG) {
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002515 flags |= HDA_NID_ITEM_AMP;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002516 if (nid == 0)
2517 nid = get_amp_nid_(kctl->private_value);
2518 }
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002519 if ((kctl->id.subdevice & HDA_SUBDEV_NID_FLAG) != 0 && nid == 0)
2520 nid = kctl->id.subdevice & 0xffff;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002521 if (kctl->id.subdevice & (HDA_SUBDEV_NID_FLAG|HDA_SUBDEV_AMP_FLAG))
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01002522 kctl->id.subdevice = 0;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002523 err = snd_ctl_add(codec->bus->card, kctl);
2524 if (err < 0)
2525 return err;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002526 item = snd_array_new(&codec->mixers);
2527 if (!item)
Takashi Iwaid13bd412008-07-30 15:01:45 +02002528 return -ENOMEM;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002529 item->kctl = kctl;
2530 item->nid = nid;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002531 item->flags = flags;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002532 return 0;
2533}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002534EXPORT_SYMBOL_GPL(snd_hda_ctl_add);
Takashi Iwaid13bd412008-07-30 15:01:45 +02002535
Takashi Iwaid5191e52009-11-16 14:58:17 +01002536/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002537 * snd_hda_add_nid - Assign a NID to a control element
2538 * @codec: HD-audio codec
2539 * @nid: corresponding NID (optional)
2540 * @kctl: the control element to assign
2541 * @index: index to kctl
2542 *
2543 * Add the given control element to an array inside the codec instance.
2544 * This function is used when #snd_hda_ctl_add cannot be used for 1:1
2545 * NID:KCTL mapping - for example "Capture Source" selector.
2546 */
2547int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl,
2548 unsigned int index, hda_nid_t nid)
2549{
2550 struct hda_nid_item *item;
2551
2552 if (nid > 0) {
2553 item = snd_array_new(&codec->nids);
2554 if (!item)
2555 return -ENOMEM;
2556 item->kctl = kctl;
2557 item->index = index;
2558 item->nid = nid;
2559 return 0;
2560 }
Takashi Iwai28d1a852010-03-15 09:05:46 +01002561 printk(KERN_ERR "hda-codec: no NID for mapping control %s:%d:%d\n",
2562 kctl->id.name, kctl->id.index, index);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002563 return -EINVAL;
2564}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002565EXPORT_SYMBOL_GPL(snd_hda_add_nid);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002566
2567/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01002568 * snd_hda_ctls_clear - Clear all controls assigned to the given codec
2569 * @codec: HD-audio codec
2570 */
Takashi Iwaid13bd412008-07-30 15:01:45 +02002571void snd_hda_ctls_clear(struct hda_codec *codec)
2572{
2573 int i;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002574 struct hda_nid_item *items = codec->mixers.list;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002575 for (i = 0; i < codec->mixers.used; i++)
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002576 snd_ctl_remove(codec->bus->card, items[i].kctl);
Takashi Iwaid13bd412008-07-30 15:01:45 +02002577 snd_array_free(&codec->mixers);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002578 snd_array_free(&codec->nids);
Takashi Iwaid13bd412008-07-30 15:01:45 +02002579}
2580
Takashi Iwaia65d6292009-02-23 16:57:04 +01002581/* pseudo device locking
2582 * toggle card->shutdown to allow/disallow the device access (as a hack)
2583 */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002584int snd_hda_lock_devices(struct hda_bus *bus)
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002585{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002586 struct snd_card *card = bus->card;
2587 struct hda_codec *codec;
2588
Takashi Iwaia65d6292009-02-23 16:57:04 +01002589 spin_lock(&card->files_lock);
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002590 if (card->shutdown)
2591 goto err_unlock;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002592 card->shutdown = 1;
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002593 if (!list_empty(&card->ctl_files))
2594 goto err_clear;
2595
2596 list_for_each_entry(codec, &bus->codec_list, list) {
2597 int pcm;
2598 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
2599 struct hda_pcm *cpcm = &codec->pcm_info[pcm];
2600 if (!cpcm->pcm)
2601 continue;
2602 if (cpcm->pcm->streams[0].substream_opened ||
2603 cpcm->pcm->streams[1].substream_opened)
2604 goto err_clear;
2605 }
2606 }
Takashi Iwaia65d6292009-02-23 16:57:04 +01002607 spin_unlock(&card->files_lock);
2608 return 0;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002609
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002610 err_clear:
2611 card->shutdown = 0;
2612 err_unlock:
2613 spin_unlock(&card->files_lock);
2614 return -EINVAL;
2615}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002616EXPORT_SYMBOL_GPL(snd_hda_lock_devices);
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002617
2618void snd_hda_unlock_devices(struct hda_bus *bus)
Takashi Iwaia65d6292009-02-23 16:57:04 +01002619{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002620 struct snd_card *card = bus->card;
2621
2622 card = bus->card;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002623 spin_lock(&card->files_lock);
2624 card->shutdown = 0;
2625 spin_unlock(&card->files_lock);
2626}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002627EXPORT_SYMBOL_GPL(snd_hda_unlock_devices);
Takashi Iwaia65d6292009-02-23 16:57:04 +01002628
Takashi Iwaid5191e52009-11-16 14:58:17 +01002629/**
2630 * snd_hda_codec_reset - Clear all objects assigned to the codec
2631 * @codec: HD-audio codec
2632 *
2633 * This frees the all PCM and control elements assigned to the codec, and
2634 * clears the caches and restores the pin default configurations.
2635 *
2636 * When a device is being used, it returns -EBSY. If successfully freed,
2637 * returns zero.
2638 */
Takashi Iwaia65d6292009-02-23 16:57:04 +01002639int snd_hda_codec_reset(struct hda_codec *codec)
2640{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002641 struct hda_bus *bus = codec->bus;
2642 struct snd_card *card = bus->card;
2643 int i;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002644
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002645 if (snd_hda_lock_devices(bus) < 0)
Takashi Iwaia65d6292009-02-23 16:57:04 +01002646 return -EBUSY;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002647
2648 /* OK, let it free */
David Henningsson26a6cb62012-10-09 15:04:21 +02002649 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwai83012a72012-08-24 18:38:08 +02002650#ifdef CONFIG_PM
Takashi Iwaia2d96e72012-05-09 12:36:22 +02002651 cancel_delayed_work_sync(&codec->power_work);
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002652 flush_workqueue(bus->workq);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002653#endif
2654 snd_hda_ctls_clear(codec);
Geert Uytterhoeven83a35e32013-06-28 11:27:31 +02002655 /* release PCMs */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002656 for (i = 0; i < codec->num_pcms; i++) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002657 if (codec->pcm_info[i].pcm) {
Takashi Iwaia65d6292009-02-23 16:57:04 +01002658 snd_device_free(card, codec->pcm_info[i].pcm);
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002659 clear_bit(codec->pcm_info[i].device,
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002660 bus->pcm_dev_bits);
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002661 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002662 }
2663 if (codec->patch_ops.free)
2664 codec->patch_ops.free(codec);
Takashi Iwai07dc59f2012-09-10 09:39:31 +02002665 memset(&codec->patch_ops, 0, sizeof(codec->patch_ops));
Takashi Iwai1835a0f2011-10-27 22:12:46 +02002666 snd_hda_jack_tbl_clear(codec);
Takashi Iwai56d17712008-11-28 14:36:23 +01002667 codec->proc_widget_hook = NULL;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002668 codec->spec = NULL;
2669 free_hda_cache(&codec->amp_cache);
2670 free_hda_cache(&codec->cmd_cache);
Takashi Iwai827057f2008-12-19 10:12:02 +01002671 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
2672 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Takashi Iwai346ff702009-02-23 09:42:57 +01002673 /* free only driver_pins so that init_pins + user_pins are restored */
2674 snd_array_free(&codec->driver_pins);
Takashi Iwai09a60712012-06-26 15:01:33 +02002675 snd_array_free(&codec->cvt_setups);
2676 snd_array_free(&codec->spdif_out);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +01002677 snd_array_free(&codec->verbs);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002678 codec->num_pcms = 0;
2679 codec->pcm_info = NULL;
2680 codec->preset = NULL;
Takashi Iwaid1f1af22009-03-02 10:35:29 +01002681 codec->slave_dig_outs = NULL;
2682 codec->spdif_status_reset = 0;
Takashi Iwaib21bdd02013-11-18 12:03:56 +01002683 unload_parser(codec);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01002684 module_put(codec->owner);
2685 codec->owner = NULL;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002686
2687 /* allow device access again */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002688 snd_hda_unlock_devices(bus);
Takashi Iwaia65d6292009-02-23 16:57:04 +01002689 return 0;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002690}
2691
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002692typedef int (*map_slave_func_t)(void *, struct snd_kcontrol *);
2693
2694/* apply the function to all matching slave ctls in the mixer list */
2695static int map_slaves(struct hda_codec *codec, const char * const *slaves,
Takashi Iwai9322ca52012-02-03 14:28:01 +01002696 const char *suffix, map_slave_func_t func, void *data)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002697{
2698 struct hda_nid_item *items;
2699 const char * const *s;
2700 int i, err;
2701
2702 items = codec->mixers.list;
2703 for (i = 0; i < codec->mixers.used; i++) {
2704 struct snd_kcontrol *sctl = items[i].kctl;
Takashi Iwaica16ec02013-10-28 12:00:35 +01002705 if (!sctl || sctl->id.iface != SNDRV_CTL_ELEM_IFACE_MIXER)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002706 continue;
2707 for (s = slaves; *s; s++) {
Takashi Iwai9322ca52012-02-03 14:28:01 +01002708 char tmpname[sizeof(sctl->id.name)];
2709 const char *name = *s;
2710 if (suffix) {
2711 snprintf(tmpname, sizeof(tmpname), "%s %s",
2712 name, suffix);
2713 name = tmpname;
2714 }
Takashi Iwai9322ca52012-02-03 14:28:01 +01002715 if (!strcmp(sctl->id.name, name)) {
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002716 err = func(data, sctl);
2717 if (err)
2718 return err;
2719 break;
2720 }
2721 }
2722 }
2723 return 0;
2724}
2725
2726static int check_slave_present(void *data, struct snd_kcontrol *sctl)
2727{
2728 return 1;
2729}
2730
Takashi Iwai18478e82012-03-09 17:51:10 +01002731/* guess the value corresponding to 0dB */
Takashi Iwai485e3e02013-11-04 15:51:00 +01002732static int get_kctl_0dB_offset(struct snd_kcontrol *kctl, int *step_to_check)
Takashi Iwai18478e82012-03-09 17:51:10 +01002733{
2734 int _tlv[4];
2735 const int *tlv = NULL;
2736 int val = -1;
2737
2738 if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
2739 /* FIXME: set_fs() hack for obtaining user-space TLV data */
2740 mm_segment_t fs = get_fs();
2741 set_fs(get_ds());
2742 if (!kctl->tlv.c(kctl, 0, sizeof(_tlv), _tlv))
2743 tlv = _tlv;
2744 set_fs(fs);
2745 } else if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_READ)
2746 tlv = kctl->tlv.p;
Takashi Iwaia4e7a122013-11-04 15:44:09 +01002747 if (tlv && tlv[0] == SNDRV_CTL_TLVT_DB_SCALE) {
2748 int step = tlv[3];
2749 step &= ~TLV_DB_SCALE_MUTE;
2750 if (!step)
2751 return -1;
Takashi Iwai485e3e02013-11-04 15:51:00 +01002752 if (*step_to_check && *step_to_check != step) {
2753 snd_printk(KERN_ERR "hda_codec: Mismatching dB step for vmaster slave (%d!=%d)\n",
2754 *step_to_check, step);
2755 return -1;
2756 }
2757 *step_to_check = step;
Takashi Iwaia4e7a122013-11-04 15:44:09 +01002758 val = -tlv[2] / step;
2759 }
Takashi Iwai18478e82012-03-09 17:51:10 +01002760 return val;
2761}
2762
2763/* call kctl->put with the given value(s) */
2764static int put_kctl_with_value(struct snd_kcontrol *kctl, int val)
2765{
2766 struct snd_ctl_elem_value *ucontrol;
2767 ucontrol = kzalloc(sizeof(*ucontrol), GFP_KERNEL);
2768 if (!ucontrol)
2769 return -ENOMEM;
2770 ucontrol->value.integer.value[0] = val;
2771 ucontrol->value.integer.value[1] = val;
2772 kctl->put(kctl, ucontrol);
2773 kfree(ucontrol);
2774 return 0;
2775}
2776
2777/* initialize the slave volume with 0dB */
2778static int init_slave_0dB(void *data, struct snd_kcontrol *slave)
2779{
Takashi Iwai485e3e02013-11-04 15:51:00 +01002780 int offset = get_kctl_0dB_offset(slave, data);
Takashi Iwai18478e82012-03-09 17:51:10 +01002781 if (offset > 0)
2782 put_kctl_with_value(slave, offset);
2783 return 0;
2784}
2785
2786/* unmute the slave */
2787static int init_slave_unmute(void *data, struct snd_kcontrol *slave)
2788{
2789 return put_kctl_with_value(slave, 1);
2790}
2791
Takashi Iwaid5191e52009-11-16 14:58:17 +01002792/**
2793 * snd_hda_add_vmaster - create a virtual master control and add slaves
2794 * @codec: HD-audio codec
2795 * @name: vmaster control name
2796 * @tlv: TLV data (optional)
2797 * @slaves: slave control names (optional)
Takashi Iwai9322ca52012-02-03 14:28:01 +01002798 * @suffix: suffix string to each slave name (optional)
Takashi Iwai18478e82012-03-09 17:51:10 +01002799 * @init_slave_vol: initialize slaves to unmute/0dB
Takashi Iwai29e58532012-03-12 12:25:03 +01002800 * @ctl_ret: store the vmaster kcontrol in return
Takashi Iwaid5191e52009-11-16 14:58:17 +01002801 *
2802 * Create a virtual master control with the given name. The TLV data
2803 * must be either NULL or a valid data.
2804 *
2805 * @slaves is a NULL-terminated array of strings, each of which is a
2806 * slave control name. All controls with these names are assigned to
2807 * the new virtual master control.
2808 *
2809 * This function returns zero if successful or a negative error code.
2810 */
Takashi Iwai18478e82012-03-09 17:51:10 +01002811int __snd_hda_add_vmaster(struct hda_codec *codec, char *name,
Takashi Iwai9322ca52012-02-03 14:28:01 +01002812 unsigned int *tlv, const char * const *slaves,
Takashi Iwai29e58532012-03-12 12:25:03 +01002813 const char *suffix, bool init_slave_vol,
2814 struct snd_kcontrol **ctl_ret)
Takashi Iwai2134ea42008-01-10 16:53:55 +01002815{
2816 struct snd_kcontrol *kctl;
Takashi Iwai2134ea42008-01-10 16:53:55 +01002817 int err;
2818
Takashi Iwai29e58532012-03-12 12:25:03 +01002819 if (ctl_ret)
2820 *ctl_ret = NULL;
2821
Takashi Iwai9322ca52012-02-03 14:28:01 +01002822 err = map_slaves(codec, slaves, suffix, check_slave_present, NULL);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002823 if (err != 1) {
Takashi Iwai2f085542008-02-22 18:43:50 +01002824 snd_printdd("No slave found for %s\n", name);
2825 return 0;
2826 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01002827 kctl = snd_ctl_make_virtual_master(name, tlv);
2828 if (!kctl)
2829 return -ENOMEM;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002830 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai2134ea42008-01-10 16:53:55 +01002831 if (err < 0)
2832 return err;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002833
Takashi Iwai9322ca52012-02-03 14:28:01 +01002834 err = map_slaves(codec, slaves, suffix,
2835 (map_slave_func_t)snd_ctl_add_slave, kctl);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002836 if (err < 0)
2837 return err;
Takashi Iwai18478e82012-03-09 17:51:10 +01002838
2839 /* init with master mute & zero volume */
2840 put_kctl_with_value(kctl, 0);
Takashi Iwai485e3e02013-11-04 15:51:00 +01002841 if (init_slave_vol) {
2842 int step = 0;
Takashi Iwai18478e82012-03-09 17:51:10 +01002843 map_slaves(codec, slaves, suffix,
Takashi Iwai485e3e02013-11-04 15:51:00 +01002844 tlv ? init_slave_0dB : init_slave_unmute, &step);
2845 }
Takashi Iwai18478e82012-03-09 17:51:10 +01002846
Takashi Iwai29e58532012-03-12 12:25:03 +01002847 if (ctl_ret)
2848 *ctl_ret = kctl;
Takashi Iwai2134ea42008-01-10 16:53:55 +01002849 return 0;
2850}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002851EXPORT_SYMBOL_GPL(__snd_hda_add_vmaster);
Takashi Iwai2134ea42008-01-10 16:53:55 +01002852
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002853/*
2854 * mute-LED control using vmaster
2855 */
2856static int vmaster_mute_mode_info(struct snd_kcontrol *kcontrol,
2857 struct snd_ctl_elem_info *uinfo)
2858{
2859 static const char * const texts[] = {
David Henningssonc86c2d42013-01-03 14:12:29 +01002860 "On", "Off", "Follow Master"
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002861 };
2862 unsigned int index;
2863
2864 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2865 uinfo->count = 1;
2866 uinfo->value.enumerated.items = 3;
2867 index = uinfo->value.enumerated.item;
2868 if (index >= 3)
2869 index = 2;
2870 strcpy(uinfo->value.enumerated.name, texts[index]);
2871 return 0;
2872}
2873
2874static int vmaster_mute_mode_get(struct snd_kcontrol *kcontrol,
2875 struct snd_ctl_elem_value *ucontrol)
2876{
2877 struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol);
2878 ucontrol->value.enumerated.item[0] = hook->mute_mode;
2879 return 0;
2880}
2881
2882static int vmaster_mute_mode_put(struct snd_kcontrol *kcontrol,
2883 struct snd_ctl_elem_value *ucontrol)
2884{
2885 struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol);
2886 unsigned int old_mode = hook->mute_mode;
2887
2888 hook->mute_mode = ucontrol->value.enumerated.item[0];
2889 if (hook->mute_mode > HDA_VMUTE_FOLLOW_MASTER)
2890 hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER;
2891 if (old_mode == hook->mute_mode)
2892 return 0;
2893 snd_hda_sync_vmaster_hook(hook);
2894 return 1;
2895}
2896
2897static struct snd_kcontrol_new vmaster_mute_mode = {
2898 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2899 .name = "Mute-LED Mode",
2900 .info = vmaster_mute_mode_info,
2901 .get = vmaster_mute_mode_get,
2902 .put = vmaster_mute_mode_put,
2903};
2904
2905/*
2906 * Add a mute-LED hook with the given vmaster switch kctl
2907 * "Mute-LED Mode" control is automatically created and associated with
2908 * the given hook.
2909 */
2910int snd_hda_add_vmaster_hook(struct hda_codec *codec,
Takashi Iwaif29735c2012-03-13 07:55:10 +01002911 struct hda_vmaster_mute_hook *hook,
2912 bool expose_enum_ctl)
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002913{
2914 struct snd_kcontrol *kctl;
2915
2916 if (!hook->hook || !hook->sw_kctl)
2917 return 0;
2918 snd_ctl_add_vmaster_hook(hook->sw_kctl, hook->hook, codec);
2919 hook->codec = codec;
2920 hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER;
Takashi Iwaif29735c2012-03-13 07:55:10 +01002921 if (!expose_enum_ctl)
2922 return 0;
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002923 kctl = snd_ctl_new1(&vmaster_mute_mode, hook);
2924 if (!kctl)
2925 return -ENOMEM;
2926 return snd_hda_ctl_add(codec, 0, kctl);
2927}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002928EXPORT_SYMBOL_GPL(snd_hda_add_vmaster_hook);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002929
2930/*
2931 * Call the hook with the current value for synchronization
2932 * Should be called in init callback
2933 */
2934void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook *hook)
2935{
2936 if (!hook->hook || !hook->codec)
2937 return;
Takashi Iwai594813f2013-04-17 18:16:05 +02002938 /* don't call vmaster hook in the destructor since it might have
2939 * been already destroyed
2940 */
2941 if (hook->codec->bus->shutdown)
2942 return;
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002943 switch (hook->mute_mode) {
2944 case HDA_VMUTE_FOLLOW_MASTER:
2945 snd_ctl_sync_vmaster_hook(hook->sw_kctl);
2946 break;
2947 default:
2948 hook->hook(hook->codec, hook->mute_mode);
2949 break;
2950 }
2951}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002952EXPORT_SYMBOL_GPL(snd_hda_sync_vmaster_hook);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002953
2954
Takashi Iwaid5191e52009-11-16 14:58:17 +01002955/**
2956 * snd_hda_mixer_amp_switch_info - Info callback for a standard AMP mixer switch
2957 *
2958 * The control element is supposed to have the private_value field
2959 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2960 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002961int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
2962 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963{
2964 int chs = get_amp_channels(kcontrol);
2965
2966 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2967 uinfo->count = chs == 3 ? 2 : 1;
2968 uinfo->value.integer.min = 0;
2969 uinfo->value.integer.max = 1;
2970 return 0;
2971}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002972EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973
Takashi Iwaid5191e52009-11-16 14:58:17 +01002974/**
2975 * snd_hda_mixer_amp_switch_get - Get callback for a standard AMP mixer switch
2976 *
2977 * The control element is supposed to have the private_value field
2978 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2979 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002980int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
2981 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982{
2983 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2984 hda_nid_t nid = get_amp_nid(kcontrol);
2985 int chs = get_amp_channels(kcontrol);
2986 int dir = get_amp_direction(kcontrol);
2987 int idx = get_amp_index(kcontrol);
2988 long *valp = ucontrol->value.integer.value;
2989
2990 if (chs & 1)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002991 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002992 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 if (chs & 2)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002994 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002995 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 return 0;
2997}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002998EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
Takashi Iwaid5191e52009-11-16 14:58:17 +01003000/**
3001 * snd_hda_mixer_amp_switch_put - Put callback for a standard AMP mixer switch
3002 *
3003 * The control element is supposed to have the private_value field
3004 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
3005 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003006int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
3007 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008{
3009 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3010 hda_nid_t nid = get_amp_nid(kcontrol);
3011 int chs = get_amp_channels(kcontrol);
3012 int dir = get_amp_direction(kcontrol);
3013 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 long *valp = ucontrol->value.integer.value;
3015 int change = 0;
3016
Takashi Iwaicb53c622007-08-10 17:21:45 +02003017 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02003018 if (chs & 1) {
Takashi Iwai4a19fae2005-06-08 14:43:58 +02003019 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02003020 HDA_AMP_MUTE,
3021 *valp ? 0 : HDA_AMP_MUTE);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02003022 valp++;
3023 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02003024 if (chs & 2)
3025 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02003026 HDA_AMP_MUTE,
3027 *valp ? 0 : HDA_AMP_MUTE);
Takashi Iwai9e5341b2010-09-21 09:57:06 +02003028 hda_call_check_power_status(codec, nid);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003029 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 return change;
3031}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003032EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033
3034/*
Takashi Iwai985be542005-11-02 18:26:49 +01003035 * bound volume controls
3036 *
3037 * bind multiple volumes (# indices, from 0)
3038 */
3039
3040#define AMP_VAL_IDX_SHIFT 19
3041#define AMP_VAL_IDX_MASK (0x0f<<19)
3042
Takashi Iwaid5191e52009-11-16 14:58:17 +01003043/**
3044 * snd_hda_mixer_bind_switch_get - Get callback for a bound volume control
3045 *
3046 * The control element is supposed to have the private_value field
3047 * set up via HDA_BIND_MUTE*() macros.
3048 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003049int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol,
3050 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01003051{
3052 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3053 unsigned long pval;
3054 int err;
3055
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003056 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01003057 pval = kcontrol->private_value;
3058 kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */
3059 err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
3060 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003061 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01003062 return err;
3063}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003064EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_switch_get);
Takashi Iwai985be542005-11-02 18:26:49 +01003065
Takashi Iwaid5191e52009-11-16 14:58:17 +01003066/**
3067 * snd_hda_mixer_bind_switch_put - Put callback for a bound volume control
3068 *
3069 * The control element is supposed to have the private_value field
3070 * set up via HDA_BIND_MUTE*() macros.
3071 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003072int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol,
3073 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01003074{
3075 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3076 unsigned long pval;
3077 int i, indices, err = 0, change = 0;
3078
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003079 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01003080 pval = kcontrol->private_value;
3081 indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT;
3082 for (i = 0; i < indices; i++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003083 kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) |
3084 (i << AMP_VAL_IDX_SHIFT);
Takashi Iwai985be542005-11-02 18:26:49 +01003085 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
3086 if (err < 0)
3087 break;
3088 change |= err;
3089 }
3090 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003091 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01003092 return err < 0 ? err : change;
3093}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003094EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_switch_put);
Takashi Iwai985be542005-11-02 18:26:49 +01003095
Takashi Iwaid5191e52009-11-16 14:58:17 +01003096/**
3097 * snd_hda_mixer_bind_ctls_info - Info callback for a generic bound control
3098 *
3099 * The control element is supposed to have the private_value field
3100 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
Takashi Iwai532d5382007-07-27 19:02:40 +02003101 */
3102int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol,
3103 struct snd_ctl_elem_info *uinfo)
3104{
3105 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3106 struct hda_bind_ctls *c;
3107 int err;
3108
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003109 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01003110 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02003111 kcontrol->private_value = *c->values;
3112 err = c->ops->info(kcontrol, uinfo);
3113 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003114 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02003115 return err;
3116}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003117EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_info);
Takashi Iwai532d5382007-07-27 19:02:40 +02003118
Takashi Iwaid5191e52009-11-16 14:58:17 +01003119/**
3120 * snd_hda_mixer_bind_ctls_get - Get callback for a generic bound control
3121 *
3122 * The control element is supposed to have the private_value field
3123 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
3124 */
Takashi Iwai532d5382007-07-27 19:02:40 +02003125int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol,
3126 struct snd_ctl_elem_value *ucontrol)
3127{
3128 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3129 struct hda_bind_ctls *c;
3130 int err;
3131
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003132 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01003133 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02003134 kcontrol->private_value = *c->values;
3135 err = c->ops->get(kcontrol, ucontrol);
3136 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003137 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02003138 return err;
3139}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003140EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_get);
Takashi Iwai532d5382007-07-27 19:02:40 +02003141
Takashi Iwaid5191e52009-11-16 14:58:17 +01003142/**
3143 * snd_hda_mixer_bind_ctls_put - Put callback for a generic bound control
3144 *
3145 * The control element is supposed to have the private_value field
3146 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
3147 */
Takashi Iwai532d5382007-07-27 19:02:40 +02003148int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol,
3149 struct snd_ctl_elem_value *ucontrol)
3150{
3151 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3152 struct hda_bind_ctls *c;
3153 unsigned long *vals;
3154 int err = 0, change = 0;
3155
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003156 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01003157 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02003158 for (vals = c->values; *vals; vals++) {
3159 kcontrol->private_value = *vals;
3160 err = c->ops->put(kcontrol, ucontrol);
3161 if (err < 0)
3162 break;
3163 change |= err;
3164 }
3165 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003166 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02003167 return err < 0 ? err : change;
3168}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003169EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_put);
Takashi Iwai532d5382007-07-27 19:02:40 +02003170
Takashi Iwaid5191e52009-11-16 14:58:17 +01003171/**
3172 * snd_hda_mixer_bind_tlv - TLV callback for a generic bound control
3173 *
3174 * The control element is supposed to have the private_value field
3175 * set up via HDA_BIND_VOL() macro.
3176 */
Takashi Iwai532d5382007-07-27 19:02:40 +02003177int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag,
3178 unsigned int size, unsigned int __user *tlv)
3179{
3180 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3181 struct hda_bind_ctls *c;
3182 int err;
3183
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003184 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01003185 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02003186 kcontrol->private_value = *c->values;
3187 err = c->ops->tlv(kcontrol, op_flag, size, tlv);
3188 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003189 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02003190 return err;
3191}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003192EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_tlv);
Takashi Iwai532d5382007-07-27 19:02:40 +02003193
3194struct hda_ctl_ops snd_hda_bind_vol = {
3195 .info = snd_hda_mixer_amp_volume_info,
3196 .get = snd_hda_mixer_amp_volume_get,
3197 .put = snd_hda_mixer_amp_volume_put,
3198 .tlv = snd_hda_mixer_amp_tlv
3199};
Takashi Iwai2698ea92013-12-18 07:45:52 +01003200EXPORT_SYMBOL_GPL(snd_hda_bind_vol);
Takashi Iwai532d5382007-07-27 19:02:40 +02003201
3202struct hda_ctl_ops snd_hda_bind_sw = {
3203 .info = snd_hda_mixer_amp_switch_info,
3204 .get = snd_hda_mixer_amp_switch_get,
3205 .put = snd_hda_mixer_amp_switch_put,
3206 .tlv = snd_hda_mixer_amp_tlv
3207};
Takashi Iwai2698ea92013-12-18 07:45:52 +01003208EXPORT_SYMBOL_GPL(snd_hda_bind_sw);
Takashi Iwai532d5382007-07-27 19:02:40 +02003209
3210/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 * SPDIF out controls
3212 */
3213
Takashi Iwai0ba21762007-04-16 11:29:14 +02003214static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
3215 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216{
3217 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
3218 uinfo->count = 1;
3219 return 0;
3220}
3221
Takashi Iwai0ba21762007-04-16 11:29:14 +02003222static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
3223 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224{
3225 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
3226 IEC958_AES0_NONAUDIO |
3227 IEC958_AES0_CON_EMPHASIS_5015 |
3228 IEC958_AES0_CON_NOT_COPYRIGHT;
3229 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
3230 IEC958_AES1_CON_ORIGINAL;
3231 return 0;
3232}
3233
Takashi Iwai0ba21762007-04-16 11:29:14 +02003234static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
3235 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236{
3237 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
3238 IEC958_AES0_NONAUDIO |
3239 IEC958_AES0_PRO_EMPHASIS_5015;
3240 return 0;
3241}
3242
Takashi Iwai0ba21762007-04-16 11:29:14 +02003243static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
3244 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245{
3246 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c9359762011-06-01 11:14:17 -06003247 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003248 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003250 mutex_lock(&codec->spdif_mutex);
3251 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren7c9359762011-06-01 11:14:17 -06003252 ucontrol->value.iec958.status[0] = spdif->status & 0xff;
3253 ucontrol->value.iec958.status[1] = (spdif->status >> 8) & 0xff;
3254 ucontrol->value.iec958.status[2] = (spdif->status >> 16) & 0xff;
3255 ucontrol->value.iec958.status[3] = (spdif->status >> 24) & 0xff;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003256 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257
3258 return 0;
3259}
3260
3261/* convert from SPDIF status bits to HDA SPDIF bits
3262 * bit 0 (DigEn) is always set zero (to be filled later)
3263 */
3264static unsigned short convert_from_spdif_status(unsigned int sbits)
3265{
3266 unsigned short val = 0;
3267
3268 if (sbits & IEC958_AES0_PROFESSIONAL)
Takashi Iwai0ba21762007-04-16 11:29:14 +02003269 val |= AC_DIG1_PROFESSIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 if (sbits & IEC958_AES0_NONAUDIO)
Takashi Iwai0ba21762007-04-16 11:29:14 +02003271 val |= AC_DIG1_NONAUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003273 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
3274 IEC958_AES0_PRO_EMPHASIS_5015)
3275 val |= AC_DIG1_EMPHASIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003277 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
3278 IEC958_AES0_CON_EMPHASIS_5015)
3279 val |= AC_DIG1_EMPHASIS;
3280 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
3281 val |= AC_DIG1_COPYRIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
Takashi Iwai0ba21762007-04-16 11:29:14 +02003283 val |= AC_DIG1_LEVEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
3285 }
3286 return val;
3287}
3288
3289/* convert to SPDIF status bits from HDA SPDIF bits
3290 */
3291static unsigned int convert_to_spdif_status(unsigned short val)
3292{
3293 unsigned int sbits = 0;
3294
Takashi Iwai0ba21762007-04-16 11:29:14 +02003295 if (val & AC_DIG1_NONAUDIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 sbits |= IEC958_AES0_NONAUDIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003297 if (val & AC_DIG1_PROFESSIONAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 sbits |= IEC958_AES0_PROFESSIONAL;
3299 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwaia686fd12013-03-20 15:42:00 +01003300 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
3302 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003303 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003305 if (!(val & AC_DIG1_COPYRIGHT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003307 if (val & AC_DIG1_LEVEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
3309 sbits |= val & (0x7f << 8);
3310 }
3311 return sbits;
3312}
3313
Takashi Iwai2f728532008-09-25 16:32:41 +02003314/* set digital convert verbs both for the given NID and its slaves */
3315static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
3316 int verb, int val)
3317{
Takashi Iwaidda14412011-05-02 11:29:30 +02003318 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02003319
Takashi Iwai9e976972008-11-25 08:17:20 +01003320 snd_hda_codec_write_cache(codec, nid, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02003321 d = codec->slave_dig_outs;
3322 if (!d)
3323 return;
3324 for (; *d; d++)
Takashi Iwai9e976972008-11-25 08:17:20 +01003325 snd_hda_codec_write_cache(codec, *d, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02003326}
3327
3328static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,
3329 int dig1, int dig2)
3330{
3331 if (dig1 != -1)
3332 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_1, dig1);
3333 if (dig2 != -1)
3334 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_2, dig2);
3335}
3336
Takashi Iwai0ba21762007-04-16 11:29:14 +02003337static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
3338 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339{
3340 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c9359762011-06-01 11:14:17 -06003341 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003342 struct hda_spdif_out *spdif;
3343 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 unsigned short val;
3345 int change;
3346
Ingo Molnar62932df2006-01-16 16:34:20 +01003347 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003348 spdif = snd_array_elem(&codec->spdif_out, idx);
3349 nid = spdif->nid;
Stephen Warren7c9359762011-06-01 11:14:17 -06003350 spdif->status = ucontrol->value.iec958.status[0] |
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
3352 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
3353 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
Stephen Warren7c9359762011-06-01 11:14:17 -06003354 val = convert_from_spdif_status(spdif->status);
3355 val |= spdif->ctls & 1;
3356 change = spdif->ctls != val;
3357 spdif->ctls = val;
Stephen Warren74b654c2011-06-01 11:14:18 -06003358 if (change && nid != (u16)-1)
Takashi Iwai2f728532008-09-25 16:32:41 +02003359 set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff);
Ingo Molnar62932df2006-01-16 16:34:20 +01003360 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 return change;
3362}
3363
Takashi Iwaia5ce8892007-07-23 15:42:26 +02003364#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365
Takashi Iwai0ba21762007-04-16 11:29:14 +02003366static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
3367 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368{
3369 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c9359762011-06-01 11:14:17 -06003370 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003371 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003373 mutex_lock(&codec->spdif_mutex);
3374 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren7c9359762011-06-01 11:14:17 -06003375 ucontrol->value.integer.value[0] = spdif->ctls & AC_DIG1_ENABLE;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003376 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 return 0;
3378}
3379
Stephen Warren74b654c2011-06-01 11:14:18 -06003380static inline void set_spdif_ctls(struct hda_codec *codec, hda_nid_t nid,
3381 int dig1, int dig2)
3382{
3383 set_dig_out_convert(codec, nid, dig1, dig2);
3384 /* unmute amp switch (if any) */
3385 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
3386 (dig1 & AC_DIG1_ENABLE))
3387 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3388 HDA_AMP_MUTE, 0);
3389}
3390
Takashi Iwai0ba21762007-04-16 11:29:14 +02003391static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
3392 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393{
3394 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c9359762011-06-01 11:14:17 -06003395 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003396 struct hda_spdif_out *spdif;
3397 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 unsigned short val;
3399 int change;
3400
Ingo Molnar62932df2006-01-16 16:34:20 +01003401 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003402 spdif = snd_array_elem(&codec->spdif_out, idx);
3403 nid = spdif->nid;
Stephen Warren7c9359762011-06-01 11:14:17 -06003404 val = spdif->ctls & ~AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 if (ucontrol->value.integer.value[0])
Takashi Iwai0ba21762007-04-16 11:29:14 +02003406 val |= AC_DIG1_ENABLE;
Stephen Warren7c9359762011-06-01 11:14:17 -06003407 change = spdif->ctls != val;
Stephen Warren74b654c2011-06-01 11:14:18 -06003408 spdif->ctls = val;
3409 if (change && nid != (u16)-1)
3410 set_spdif_ctls(codec, nid, val & 0xff, -1);
Ingo Molnar62932df2006-01-16 16:34:20 +01003411 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 return change;
3413}
3414
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003415static struct snd_kcontrol_new dig_mixes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 {
3417 .access = SNDRV_CTL_ELEM_ACCESS_READ,
3418 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003419 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 .info = snd_hda_spdif_mask_info,
3421 .get = snd_hda_spdif_cmask_get,
3422 },
3423 {
3424 .access = SNDRV_CTL_ELEM_ACCESS_READ,
3425 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003426 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 .info = snd_hda_spdif_mask_info,
3428 .get = snd_hda_spdif_pmask_get,
3429 },
3430 {
3431 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003432 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 .info = snd_hda_spdif_mask_info,
3434 .get = snd_hda_spdif_default_get,
3435 .put = snd_hda_spdif_default_put,
3436 },
3437 {
3438 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003439 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 .info = snd_hda_spdif_out_switch_info,
3441 .get = snd_hda_spdif_out_switch_get,
3442 .put = snd_hda_spdif_out_switch_put,
3443 },
3444 { } /* end */
3445};
3446
3447/**
Takashi Iwaidcda5802012-10-12 17:24:51 +02003448 * snd_hda_create_dig_out_ctls - create Output SPDIF-related controls
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 * @codec: the HDA codec
Takashi Iwaidcda5802012-10-12 17:24:51 +02003450 * @associated_nid: NID that new ctls associated with
3451 * @cvt_nid: converter NID
3452 * @type: HDA_PCM_TYPE_*
3453 * Creates controls related with the digital output.
3454 * Called from each patch supporting the digital out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455 *
3456 * Returns 0 if successful, or a negative error code.
3457 */
Takashi Iwaidcda5802012-10-12 17:24:51 +02003458int snd_hda_create_dig_out_ctls(struct hda_codec *codec,
3459 hda_nid_t associated_nid,
3460 hda_nid_t cvt_nid,
3461 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462{
3463 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003464 struct snd_kcontrol *kctl;
3465 struct snd_kcontrol_new *dig_mix;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003466 int idx = 0;
3467 const int spdif_index = 16;
Stephen Warren7c9359762011-06-01 11:14:17 -06003468 struct hda_spdif_out *spdif;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003469 struct hda_bus *bus = codec->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003471 if (bus->primary_dig_out_type == HDA_PCM_TYPE_HDMI &&
Takashi Iwaidcda5802012-10-12 17:24:51 +02003472 type == HDA_PCM_TYPE_SPDIF) {
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003473 idx = spdif_index;
3474 } else if (bus->primary_dig_out_type == HDA_PCM_TYPE_SPDIF &&
Takashi Iwaidcda5802012-10-12 17:24:51 +02003475 type == HDA_PCM_TYPE_HDMI) {
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003476 /* suppose a single SPDIF device */
3477 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
3478 kctl = find_mixer_ctl(codec, dig_mix->name, 0, 0);
3479 if (!kctl)
3480 break;
3481 kctl->id.index = spdif_index;
Takashi Iwaidcda5802012-10-12 17:24:51 +02003482 }
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003483 bus->primary_dig_out_type = HDA_PCM_TYPE_HDMI;
Takashi Iwaidcda5802012-10-12 17:24:51 +02003484 }
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003485 if (!bus->primary_dig_out_type)
3486 bus->primary_dig_out_type = type;
Takashi Iwaidcda5802012-10-12 17:24:51 +02003487
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003488 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Playback Switch", idx);
Takashi Iwai1afe2062010-12-23 10:17:52 +01003489 if (idx < 0) {
Takashi Iwai09f99702008-02-04 12:31:13 +01003490 printk(KERN_ERR "hda_codec: too many IEC958 outputs\n");
3491 return -EBUSY;
3492 }
Stephen Warren7c9359762011-06-01 11:14:17 -06003493 spdif = snd_array_new(&codec->spdif_out);
Mengdong Lin25336e82013-03-07 14:10:25 -05003494 if (!spdif)
3495 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
3497 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaib91f0802008-11-04 08:43:08 +01003498 if (!kctl)
3499 return -ENOMEM;
Takashi Iwai09f99702008-02-04 12:31:13 +01003500 kctl->id.index = idx;
Stephen Warren7c9359762011-06-01 11:14:17 -06003501 kctl->private_value = codec->spdif_out.used - 1;
Stephen Warren74b654c2011-06-01 11:14:18 -06003502 err = snd_hda_ctl_add(codec, associated_nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003503 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 return err;
3505 }
Stephen Warren74b654c2011-06-01 11:14:18 -06003506 spdif->nid = cvt_nid;
3507 spdif->ctls = snd_hda_codec_read(codec, cvt_nid, 0,
Stephen Warren7c9359762011-06-01 11:14:17 -06003508 AC_VERB_GET_DIGI_CONVERT_1, 0);
3509 spdif->status = convert_to_spdif_status(spdif->ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 return 0;
3511}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003512EXPORT_SYMBOL_GPL(snd_hda_create_dig_out_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003514/* get the hda_spdif_out entry from the given NID
3515 * call within spdif_mutex lock
3516 */
Stephen Warren7c9359762011-06-01 11:14:17 -06003517struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec,
3518 hda_nid_t nid)
3519{
3520 int i;
3521 for (i = 0; i < codec->spdif_out.used; i++) {
3522 struct hda_spdif_out *spdif =
3523 snd_array_elem(&codec->spdif_out, i);
3524 if (spdif->nid == nid)
3525 return spdif;
3526 }
3527 return NULL;
3528}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003529EXPORT_SYMBOL_GPL(snd_hda_spdif_out_of_nid);
Stephen Warren7c9359762011-06-01 11:14:17 -06003530
Stephen Warren74b654c2011-06-01 11:14:18 -06003531void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx)
3532{
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003533 struct hda_spdif_out *spdif;
Stephen Warren74b654c2011-06-01 11:14:18 -06003534
3535 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003536 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren74b654c2011-06-01 11:14:18 -06003537 spdif->nid = (u16)-1;
3538 mutex_unlock(&codec->spdif_mutex);
3539}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003540EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_unassign);
Stephen Warren74b654c2011-06-01 11:14:18 -06003541
3542void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid)
3543{
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003544 struct hda_spdif_out *spdif;
Stephen Warren74b654c2011-06-01 11:14:18 -06003545 unsigned short val;
3546
3547 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003548 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren74b654c2011-06-01 11:14:18 -06003549 if (spdif->nid != nid) {
3550 spdif->nid = nid;
3551 val = spdif->ctls;
3552 set_spdif_ctls(codec, nid, val & 0xff, (val >> 8) & 0xff);
3553 }
3554 mutex_unlock(&codec->spdif_mutex);
3555}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003556EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_assign);
Stephen Warren74b654c2011-06-01 11:14:18 -06003557
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558/*
Takashi Iwai9a081602008-02-12 18:37:26 +01003559 * SPDIF sharing with analog output
3560 */
3561static int spdif_share_sw_get(struct snd_kcontrol *kcontrol,
3562 struct snd_ctl_elem_value *ucontrol)
3563{
3564 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
3565 ucontrol->value.integer.value[0] = mout->share_spdif;
3566 return 0;
3567}
3568
3569static int spdif_share_sw_put(struct snd_kcontrol *kcontrol,
3570 struct snd_ctl_elem_value *ucontrol)
3571{
3572 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
3573 mout->share_spdif = !!ucontrol->value.integer.value[0];
3574 return 0;
3575}
3576
3577static struct snd_kcontrol_new spdif_share_sw = {
3578 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3579 .name = "IEC958 Default PCM Playback Switch",
3580 .info = snd_ctl_boolean_mono_info,
3581 .get = spdif_share_sw_get,
3582 .put = spdif_share_sw_put,
3583};
3584
Takashi Iwaid5191e52009-11-16 14:58:17 +01003585/**
3586 * snd_hda_create_spdif_share_sw - create Default PCM switch
3587 * @codec: the HDA codec
3588 * @mout: multi-out instance
3589 */
Takashi Iwai9a081602008-02-12 18:37:26 +01003590int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
3591 struct hda_multi_out *mout)
3592{
Mengdong Lin4c7a5482013-03-07 14:11:05 -05003593 struct snd_kcontrol *kctl;
3594
Takashi Iwai9a081602008-02-12 18:37:26 +01003595 if (!mout->dig_out_nid)
3596 return 0;
Mengdong Lin4c7a5482013-03-07 14:11:05 -05003597
3598 kctl = snd_ctl_new1(&spdif_share_sw, mout);
3599 if (!kctl)
3600 return -ENOMEM;
Takashi Iwai9a081602008-02-12 18:37:26 +01003601 /* ATTENTION: here mout is passed as private_data, instead of codec */
Mengdong Lin4c7a5482013-03-07 14:11:05 -05003602 return snd_hda_ctl_add(codec, mout->dig_out_nid, kctl);
Takashi Iwai9a081602008-02-12 18:37:26 +01003603}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003604EXPORT_SYMBOL_GPL(snd_hda_create_spdif_share_sw);
Takashi Iwai9a081602008-02-12 18:37:26 +01003605
3606/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 * SPDIF input
3608 */
3609
3610#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
3611
Takashi Iwai0ba21762007-04-16 11:29:14 +02003612static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
3613 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614{
3615 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3616
3617 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
3618 return 0;
3619}
3620
Takashi Iwai0ba21762007-04-16 11:29:14 +02003621static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
3622 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623{
3624 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3625 hda_nid_t nid = kcontrol->private_value;
3626 unsigned int val = !!ucontrol->value.integer.value[0];
3627 int change;
3628
Ingo Molnar62932df2006-01-16 16:34:20 +01003629 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003631 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 codec->spdif_in_enable = val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003633 snd_hda_codec_write_cache(codec, nid, 0,
3634 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003636 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 return change;
3638}
3639
Takashi Iwai0ba21762007-04-16 11:29:14 +02003640static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
3641 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642{
3643 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3644 hda_nid_t nid = kcontrol->private_value;
3645 unsigned short val;
3646 unsigned int sbits;
3647
Andrew Paprocki3982d172007-12-19 12:13:44 +01003648 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 sbits = convert_to_spdif_status(val);
3650 ucontrol->value.iec958.status[0] = sbits;
3651 ucontrol->value.iec958.status[1] = sbits >> 8;
3652 ucontrol->value.iec958.status[2] = sbits >> 16;
3653 ucontrol->value.iec958.status[3] = sbits >> 24;
3654 return 0;
3655}
3656
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003657static struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 {
3659 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003660 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 .info = snd_hda_spdif_in_switch_info,
3662 .get = snd_hda_spdif_in_switch_get,
3663 .put = snd_hda_spdif_in_switch_put,
3664 },
3665 {
3666 .access = SNDRV_CTL_ELEM_ACCESS_READ,
3667 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003668 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 .info = snd_hda_spdif_mask_info,
3670 .get = snd_hda_spdif_in_status_get,
3671 },
3672 { } /* end */
3673};
3674
3675/**
3676 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
3677 * @codec: the HDA codec
3678 * @nid: audio in widget NID
3679 *
3680 * Creates controls related with the SPDIF input.
3681 * Called from each patch supporting the SPDIF in.
3682 *
3683 * Returns 0 if successful, or a negative error code.
3684 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02003685int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686{
3687 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003688 struct snd_kcontrol *kctl;
3689 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01003690 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
Takashi Iwaidcda5802012-10-12 17:24:51 +02003692 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Capture Switch", 0);
Takashi Iwai1afe2062010-12-23 10:17:52 +01003693 if (idx < 0) {
Takashi Iwai09f99702008-02-04 12:31:13 +01003694 printk(KERN_ERR "hda_codec: too many IEC958 inputs\n");
3695 return -EBUSY;
3696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
3698 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaic8dcdf82009-02-06 16:21:20 +01003699 if (!kctl)
3700 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 kctl->private_value = nid;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01003702 err = snd_hda_ctl_add(codec, nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003703 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704 return err;
3705 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02003706 codec->spdif_in_enable =
Andrew Paprocki3982d172007-12-19 12:13:44 +01003707 snd_hda_codec_read(codec, nid, 0,
3708 AC_VERB_GET_DIGI_CONVERT_1, 0) &
Takashi Iwai0ba21762007-04-16 11:29:14 +02003709 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 return 0;
3711}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003712EXPORT_SYMBOL_GPL(snd_hda_create_spdif_in_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003714/*
3715 * command cache
3716 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717
Takashi Iwaic370dd62012-12-13 18:30:04 +01003718/* build a 31bit cache key with the widget id and the command parameter */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003719#define build_cmd_cache_key(nid, verb) ((verb << 8) | nid)
3720#define get_cmd_cache_nid(key) ((key) & 0xff)
3721#define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff)
3722
3723/**
3724 * snd_hda_codec_write_cache - send a single command with caching
3725 * @codec: the HDA codec
3726 * @nid: NID to send the command
Takashi Iwaie7ecc272013-06-06 14:00:23 +02003727 * @flags: optional bit flags
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003728 * @verb: the verb to send
3729 * @parm: the parameter for the verb
3730 *
3731 * Send a single command without waiting for response.
3732 *
3733 * Returns 0 if successful, or a negative error code.
3734 */
3735int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwaie7ecc272013-06-06 14:00:23 +02003736 int flags, unsigned int verb, unsigned int parm)
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003737{
Takashi Iwaic370dd62012-12-13 18:30:04 +01003738 int err;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003739 struct hda_cache_head *c;
3740 u32 key;
Takashi Iwaide1e37b2012-12-20 11:00:21 +01003741 unsigned int cache_only;
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003742
Takashi Iwaide1e37b2012-12-20 11:00:21 +01003743 cache_only = codec->cached_write;
3744 if (!cache_only) {
Takashi Iwaie7ecc272013-06-06 14:00:23 +02003745 err = snd_hda_codec_write(codec, nid, flags, verb, parm);
Takashi Iwaic370dd62012-12-13 18:30:04 +01003746 if (err < 0)
3747 return err;
3748 }
3749
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003750 /* parm may contain the verb stuff for get/set amp */
3751 verb = verb | (parm >> 8);
3752 parm &= 0xff;
3753 key = build_cmd_cache_key(nid, verb);
3754 mutex_lock(&codec->bus->cmd_mutex);
3755 c = get_alloc_hash(&codec->cmd_cache, key);
Takashi Iwaic370dd62012-12-13 18:30:04 +01003756 if (c) {
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003757 c->val = parm;
Takashi Iwaide1e37b2012-12-20 11:00:21 +01003758 c->dirty = cache_only;
Takashi Iwaic370dd62012-12-13 18:30:04 +01003759 }
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003760 mutex_unlock(&codec->bus->cmd_mutex);
3761 return 0;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003762}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003763EXPORT_SYMBOL_GPL(snd_hda_codec_write_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003764
Takashi Iwaid5191e52009-11-16 14:58:17 +01003765/**
Takashi Iwaia68d5a52010-03-30 18:03:44 +02003766 * snd_hda_codec_update_cache - check cache and write the cmd only when needed
3767 * @codec: the HDA codec
3768 * @nid: NID to send the command
Takashi Iwaie7ecc272013-06-06 14:00:23 +02003769 * @flags: optional bit flags
Takashi Iwaia68d5a52010-03-30 18:03:44 +02003770 * @verb: the verb to send
3771 * @parm: the parameter for the verb
3772 *
3773 * This function works like snd_hda_codec_write_cache(), but it doesn't send
3774 * command if the parameter is already identical with the cached value.
3775 * If not, it sends the command and refreshes the cache.
3776 *
3777 * Returns 0 if successful, or a negative error code.
3778 */
3779int snd_hda_codec_update_cache(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwaie7ecc272013-06-06 14:00:23 +02003780 int flags, unsigned int verb, unsigned int parm)
Takashi Iwaia68d5a52010-03-30 18:03:44 +02003781{
3782 struct hda_cache_head *c;
3783 u32 key;
3784
3785 /* parm may contain the verb stuff for get/set amp */
3786 verb = verb | (parm >> 8);
3787 parm &= 0xff;
3788 key = build_cmd_cache_key(nid, verb);
3789 mutex_lock(&codec->bus->cmd_mutex);
3790 c = get_hash(&codec->cmd_cache, key);
3791 if (c && c->val == parm) {
3792 mutex_unlock(&codec->bus->cmd_mutex);
3793 return 0;
3794 }
3795 mutex_unlock(&codec->bus->cmd_mutex);
Takashi Iwaie7ecc272013-06-06 14:00:23 +02003796 return snd_hda_codec_write_cache(codec, nid, flags, verb, parm);
Takashi Iwaia68d5a52010-03-30 18:03:44 +02003797}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003798EXPORT_SYMBOL_GPL(snd_hda_codec_update_cache);
Takashi Iwaia68d5a52010-03-30 18:03:44 +02003799
3800/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01003801 * snd_hda_codec_resume_cache - Resume the all commands from the cache
3802 * @codec: HD-audio codec
3803 *
3804 * Execute all verbs recorded in the command caches to resume.
3805 */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003806void snd_hda_codec_resume_cache(struct hda_codec *codec)
3807{
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003808 int i;
3809
Takashi Iwaic370dd62012-12-13 18:30:04 +01003810 mutex_lock(&codec->hash_mutex);
Takashi Iwaiaa88a352012-12-20 11:02:00 +01003811 codec->cached_write = 0;
Takashi Iwaic370dd62012-12-13 18:30:04 +01003812 for (i = 0; i < codec->cmd_cache.buf.used; i++) {
3813 struct hda_cache_head *buffer;
3814 u32 key;
3815
3816 buffer = snd_array_elem(&codec->cmd_cache.buf, i);
3817 key = buffer->key;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003818 if (!key)
3819 continue;
Takashi Iwaic370dd62012-12-13 18:30:04 +01003820 if (!buffer->dirty)
3821 continue;
3822 buffer->dirty = 0;
3823 mutex_unlock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003824 snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0,
3825 get_cmd_cache_cmd(key), buffer->val);
Takashi Iwaic370dd62012-12-13 18:30:04 +01003826 mutex_lock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003827 }
Takashi Iwaic370dd62012-12-13 18:30:04 +01003828 mutex_unlock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003829}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003830EXPORT_SYMBOL_GPL(snd_hda_codec_resume_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003831
3832/**
3833 * snd_hda_sequence_write_cache - sequence writes with caching
3834 * @codec: the HDA codec
3835 * @seq: VERB array to send
3836 *
3837 * Send the commands sequentially from the given array.
3838 * Thte commands are recorded on cache for power-save and resume.
3839 * The array must be terminated with NID=0.
3840 */
3841void snd_hda_sequence_write_cache(struct hda_codec *codec,
3842 const struct hda_verb *seq)
3843{
3844 for (; seq->nid; seq++)
3845 snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb,
3846 seq->param);
3847}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003848EXPORT_SYMBOL_GPL(snd_hda_sequence_write_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003849
Takashi Iwaidc870f32013-01-22 15:24:30 +01003850/**
3851 * snd_hda_codec_flush_cache - Execute all pending (cached) amps / verbs
3852 * @codec: HD-audio codec
3853 */
3854void snd_hda_codec_flush_cache(struct hda_codec *codec)
3855{
3856 snd_hda_codec_resume_amp(codec);
3857 snd_hda_codec_resume_cache(codec);
3858}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003859EXPORT_SYMBOL_GPL(snd_hda_codec_flush_cache);
Takashi Iwaidc870f32013-01-22 15:24:30 +01003860
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003861void snd_hda_codec_set_power_to_all(struct hda_codec *codec, hda_nid_t fg,
Takashi Iwai9419ab62013-01-24 17:23:35 +01003862 unsigned int power_state)
Takashi Iwai54d17402005-11-21 16:33:22 +01003863{
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003864 hda_nid_t nid = codec->start_nid;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003865 int i;
Takashi Iwai54d17402005-11-21 16:33:22 +01003866
Takashi Iwaicb53c622007-08-10 17:21:45 +02003867 for (i = 0; i < codec->num_nodes; i++, nid++) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01003868 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwai9419ab62013-01-24 17:23:35 +01003869 unsigned int state = power_state;
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003870 if (!(wcaps & AC_WCAP_POWER))
3871 continue;
Takashi Iwai9419ab62013-01-24 17:23:35 +01003872 if (codec->power_filter) {
3873 state = codec->power_filter(codec, nid, power_state);
3874 if (state != power_state && power_state == AC_PWRST_D3)
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003875 continue;
Takashi Iwai1194b5b2007-10-10 10:04:26 +02003876 }
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003877 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE,
Takashi Iwai9419ab62013-01-24 17:23:35 +01003878 state);
Takashi Iwai54d17402005-11-21 16:33:22 +01003879 }
Takashi Iwai54d17402005-11-21 16:33:22 +01003880}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003881EXPORT_SYMBOL_GPL(snd_hda_codec_set_power_to_all);
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003882
3883/*
Wang Xingchao0c7f46a2012-06-06 22:02:48 +08003884 * supported power states check
3885 */
3886static bool snd_hda_codec_get_supported_ps(struct hda_codec *codec, hda_nid_t fg,
3887 unsigned int power_state)
3888{
3889 int sup = snd_hda_param_read(codec, fg, AC_PAR_POWER_STATE);
3890
Mengdong Line037cb42012-08-10 14:11:58 +02003891 if (sup == -1)
Wang Xingchao0c7f46a2012-06-06 22:02:48 +08003892 return false;
3893 if (sup & power_state)
3894 return true;
3895 else
3896 return false;
3897}
3898
3899/*
Takashi Iwai432c6412012-08-28 09:59:20 -07003900 * wait until the state is reached, returns the current state
3901 */
3902static unsigned int hda_sync_power_state(struct hda_codec *codec,
3903 hda_nid_t fg,
3904 unsigned int power_state)
3905{
3906 unsigned long end_time = jiffies + msecs_to_jiffies(500);
3907 unsigned int state, actual_state;
3908
3909 for (;;) {
3910 state = snd_hda_codec_read(codec, fg, 0,
3911 AC_VERB_GET_POWER_STATE, 0);
3912 if (state & AC_PWRST_ERROR)
3913 break;
3914 actual_state = (state >> 4) & 0x0f;
3915 if (actual_state == power_state)
3916 break;
3917 if (time_after_eq(jiffies, end_time))
3918 break;
3919 /* wait until the codec reachs to the target state */
3920 msleep(1);
3921 }
3922 return state;
3923}
3924
Takashi Iwai9419ab62013-01-24 17:23:35 +01003925/* don't power down the widget if it controls eapd and EAPD_BTLENABLE is set */
Takashi Iwaiba615b82013-03-13 14:47:21 +01003926unsigned int snd_hda_codec_eapd_power_filter(struct hda_codec *codec,
3927 hda_nid_t nid,
3928 unsigned int power_state)
Takashi Iwai9419ab62013-01-24 17:23:35 +01003929{
Takashi Iwaidfc6e462014-01-13 16:09:57 +01003930 if (nid == codec->afg || nid == codec->mfg)
3931 return power_state;
Takashi Iwai9419ab62013-01-24 17:23:35 +01003932 if (power_state == AC_PWRST_D3 &&
3933 get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_PIN &&
3934 (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)) {
3935 int eapd = snd_hda_codec_read(codec, nid, 0,
3936 AC_VERB_GET_EAPD_BTLENABLE, 0);
3937 if (eapd & 0x02)
3938 return AC_PWRST_D0;
3939 }
3940 return power_state;
3941}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003942EXPORT_SYMBOL_GPL(snd_hda_codec_eapd_power_filter);
Takashi Iwai9419ab62013-01-24 17:23:35 +01003943
Takashi Iwai432c6412012-08-28 09:59:20 -07003944/*
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003945 * set power state of the codec, and return the power state
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003946 */
Takashi Iwaid8193872012-08-31 07:54:38 -07003947static unsigned int hda_set_power_state(struct hda_codec *codec,
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003948 unsigned int power_state)
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003949{
Takashi Iwaid8193872012-08-31 07:54:38 -07003950 hda_nid_t fg = codec->afg ? codec->afg : codec->mfg;
Wang Xingchao09617ce2012-06-08 10:26:08 +08003951 int count;
3952 unsigned int state;
Takashi Iwai63e51fd2013-06-06 14:20:19 +02003953 int flags = 0;
Wang Xingchao09617ce2012-06-08 10:26:08 +08003954
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003955 /* this delay seems necessary to avoid click noise at power-down */
Wang Xingchao0f4ccbb2012-06-07 16:51:33 +08003956 if (power_state == AC_PWRST_D3) {
Mengdong Lin7f132922013-11-29 01:48:45 -05003957 if (codec->depop_delay < 0)
3958 msleep(codec->epss ? 10 : 100);
3959 else if (codec->depop_delay > 0)
3960 msleep(codec->depop_delay);
Takashi Iwai63e51fd2013-06-06 14:20:19 +02003961 flags = HDA_RW_NO_RESPONSE_FALLBACK;
Wang Xingchao0f4ccbb2012-06-07 16:51:33 +08003962 }
Wang Xingchao09617ce2012-06-08 10:26:08 +08003963
3964 /* repeat power states setting at most 10 times*/
3965 for (count = 0; count < 10; count++) {
Takashi Iwai432c6412012-08-28 09:59:20 -07003966 if (codec->patch_ops.set_power_state)
3967 codec->patch_ops.set_power_state(codec, fg,
3968 power_state);
3969 else {
Takashi Iwaidfc6e462014-01-13 16:09:57 +01003970 state = power_state;
3971 if (codec->power_filter)
3972 state = codec->power_filter(codec, fg, state);
3973 if (state == power_state || power_state != AC_PWRST_D3)
3974 snd_hda_codec_read(codec, fg, flags,
3975 AC_VERB_SET_POWER_STATE,
3976 state);
Takashi Iwai9419ab62013-01-24 17:23:35 +01003977 snd_hda_codec_set_power_to_all(codec, fg, power_state);
Takashi Iwai432c6412012-08-28 09:59:20 -07003978 }
3979 state = hda_sync_power_state(codec, fg, power_state);
Wang Xingchao09617ce2012-06-08 10:26:08 +08003980 if (!(state & AC_PWRST_ERROR))
3981 break;
3982 }
Mengdong Linb8dfc4622012-08-23 17:32:30 +08003983
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003984 return state;
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003985}
Takashi Iwai54d17402005-11-21 16:33:22 +01003986
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003987/* sync power states of all widgets;
3988 * this is called at the end of codec parsing
3989 */
3990static void sync_power_up_states(struct hda_codec *codec)
3991{
3992 hda_nid_t nid = codec->start_nid;
3993 int i;
3994
Takashi Iwaiba615b82013-03-13 14:47:21 +01003995 /* don't care if no filter is used */
3996 if (!codec->power_filter)
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003997 return;
3998
3999 for (i = 0; i < codec->num_nodes; i++, nid++) {
4000 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwai9040d102013-01-24 17:47:17 +01004001 unsigned int target;
Takashi Iwaib9c590b2013-01-24 17:27:32 +01004002 if (!(wcaps & AC_WCAP_POWER))
4003 continue;
4004 target = codec->power_filter(codec, nid, AC_PWRST_D0);
4005 if (target == AC_PWRST_D0)
4006 continue;
Takashi Iwai9040d102013-01-24 17:47:17 +01004007 if (!snd_hda_check_power_state(codec, nid, target))
Takashi Iwaib9c590b2013-01-24 17:27:32 +01004008 snd_hda_codec_write(codec, nid, 0,
4009 AC_VERB_SET_POWER_STATE, target);
4010 }
4011}
4012
Takashi Iwai11aeff02008-07-30 15:01:46 +02004013#ifdef CONFIG_SND_HDA_HWDEP
4014/* execute additional init verbs */
4015static void hda_exec_init_verbs(struct hda_codec *codec)
4016{
4017 if (codec->init_verbs.list)
4018 snd_hda_sequence_write(codec, codec->init_verbs.list);
4019}
4020#else
4021static inline void hda_exec_init_verbs(struct hda_codec *codec) {}
4022#endif
4023
Takashi Iwai2a439522011-07-26 09:52:50 +02004024#ifdef CONFIG_PM
Takashi Iwaicb53c622007-08-10 17:21:45 +02004025/*
4026 * call suspend and power-down; used both from PM and power-save
Takashi Iwai08fa20a2012-08-31 07:46:56 -07004027 * this function returns the power state in the end
Takashi Iwaicb53c622007-08-10 17:21:45 +02004028 */
Dylan Reidd17344b2012-09-28 15:57:01 -07004029static unsigned int hda_call_codec_suspend(struct hda_codec *codec, bool in_wq)
Takashi Iwaicb53c622007-08-10 17:21:45 +02004030{
Takashi Iwai08fa20a2012-08-31 07:46:56 -07004031 unsigned int state;
4032
Takashi Iwai989c3182012-11-19 14:14:58 +01004033 codec->in_pm = 1;
4034
Takashi Iwaicb53c622007-08-10 17:21:45 +02004035 if (codec->patch_ops.suspend)
Takashi Iwai68cb2b52012-07-02 15:20:37 +02004036 codec->patch_ops.suspend(codec);
Takashi Iwaieb541332010-08-06 13:48:11 +02004037 hda_cleanup_all_streams(codec);
Takashi Iwaid8193872012-08-31 07:54:38 -07004038 state = hda_set_power_state(codec, AC_PWRST_D3);
Dylan Reidd17344b2012-09-28 15:57:01 -07004039 /* Cancel delayed work if we aren't currently running from it. */
4040 if (!in_wq)
4041 cancel_delayed_work_sync(&codec->power_work);
Takashi Iwaia2d96e72012-05-09 12:36:22 +02004042 spin_lock(&codec->power_lock);
4043 snd_hda_update_power_acct(codec);
4044 trace_hda_power_down(codec);
Takashi Iwai95e99fd2007-08-13 15:29:04 +02004045 codec->power_on = 0;
Takashi Iwaia221e282007-08-16 16:35:33 +02004046 codec->power_transition = 0;
Takashi Iwaia2f63092009-11-11 09:34:25 +01004047 codec->power_jiffies = jiffies;
Takashi Iwaia2d96e72012-05-09 12:36:22 +02004048 spin_unlock(&codec->power_lock);
Takashi Iwai989c3182012-11-19 14:14:58 +01004049 codec->in_pm = 0;
Takashi Iwai08fa20a2012-08-31 07:46:56 -07004050 return state;
Takashi Iwaicb53c622007-08-10 17:21:45 +02004051}
4052
Takashi Iwaic370dd62012-12-13 18:30:04 +01004053/* mark all entries of cmd and amp caches dirty */
4054static void hda_mark_cmd_cache_dirty(struct hda_codec *codec)
4055{
4056 int i;
4057 for (i = 0; i < codec->cmd_cache.buf.used; i++) {
4058 struct hda_cache_head *cmd;
4059 cmd = snd_array_elem(&codec->cmd_cache.buf, i);
4060 cmd->dirty = 1;
4061 }
4062 for (i = 0; i < codec->amp_cache.buf.used; i++) {
4063 struct hda_amp_info *amp;
David Henningssonf038fca2013-01-15 15:27:19 +01004064 amp = snd_array_elem(&codec->amp_cache.buf, i);
Takashi Iwaic370dd62012-12-13 18:30:04 +01004065 amp->head.dirty = 1;
4066 }
4067}
4068
Takashi Iwaicb53c622007-08-10 17:21:45 +02004069/*
4070 * kick up codec; used both from PM and power-save
4071 */
4072static void hda_call_codec_resume(struct hda_codec *codec)
4073{
Takashi Iwai989c3182012-11-19 14:14:58 +01004074 codec->in_pm = 1;
4075
Takashi Iwaic370dd62012-12-13 18:30:04 +01004076 hda_mark_cmd_cache_dirty(codec);
4077
Takashi Iwai7f308302012-05-08 16:52:23 +02004078 /* set as if powered on for avoiding re-entering the resume
4079 * in the resume / power-save sequence
4080 */
4081 hda_keep_power_on(codec);
Takashi Iwaid8193872012-08-31 07:54:38 -07004082 hda_set_power_state(codec, AC_PWRST_D0);
Takashi Iwaiac0547d2010-07-05 16:50:13 +02004083 restore_shutup_pins(codec);
Takashi Iwai11aeff02008-07-30 15:01:46 +02004084 hda_exec_init_verbs(codec);
Takashi Iwai31614bb2013-01-23 15:58:40 +01004085 snd_hda_jack_set_dirty_all(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004086 if (codec->patch_ops.resume)
4087 codec->patch_ops.resume(codec);
4088 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02004089 if (codec->patch_ops.init)
4090 codec->patch_ops.init(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004091 snd_hda_codec_resume_amp(codec);
4092 snd_hda_codec_resume_cache(codec);
4093 }
David Henningsson26a6cb62012-10-09 15:04:21 +02004094
4095 if (codec->jackpoll_interval)
4096 hda_jackpoll_work(&codec->jackpoll_work.work);
Takashi Iwai31614bb2013-01-23 15:58:40 +01004097 else
David Henningsson26a6cb62012-10-09 15:04:21 +02004098 snd_hda_jack_report_sync(codec);
Takashi Iwai989c3182012-11-19 14:14:58 +01004099
4100 codec->in_pm = 0;
Takashi Iwai7f308302012-05-08 16:52:23 +02004101 snd_hda_power_down(codec); /* flag down before returning */
Takashi Iwaicb53c622007-08-10 17:21:45 +02004102}
Takashi Iwai2a439522011-07-26 09:52:50 +02004103#endif /* CONFIG_PM */
Takashi Iwaicb53c622007-08-10 17:21:45 +02004104
Takashi Iwai54d17402005-11-21 16:33:22 +01004105
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106/**
4107 * snd_hda_build_controls - build mixer controls
4108 * @bus: the BUS
4109 *
4110 * Creates mixer controls for each codec included in the bus.
4111 *
4112 * Returns 0 if successful, otherwise a negative error code.
4113 */
Takashi Iwai6a0f56a2012-12-07 07:41:56 +01004114int snd_hda_build_controls(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115{
Takashi Iwai0ba21762007-04-16 11:29:14 +02004116 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117
Takashi Iwai0ba21762007-04-16 11:29:14 +02004118 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004119 int err = snd_hda_codec_build_controls(codec);
Takashi Iwaif93d4612009-03-02 10:44:15 +01004120 if (err < 0) {
Takashi Iwai28d1a852010-03-15 09:05:46 +01004121 printk(KERN_ERR "hda_codec: cannot build controls "
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004122 "for #%d (error %d)\n", codec->addr, err);
Takashi Iwaif93d4612009-03-02 10:44:15 +01004123 err = snd_hda_codec_reset(codec);
4124 if (err < 0) {
4125 printk(KERN_ERR
4126 "hda_codec: cannot revert codec\n");
4127 return err;
4128 }
4129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004131 return 0;
4132}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004133EXPORT_SYMBOL_GPL(snd_hda_build_controls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134
Takashi Iwai9c9a5172012-07-31 11:35:35 +02004135/*
4136 * add standard channel maps if not specified
4137 */
4138static int add_std_chmaps(struct hda_codec *codec)
4139{
4140 int i, str, err;
4141
4142 for (i = 0; i < codec->num_pcms; i++) {
4143 for (str = 0; str < 2; str++) {
4144 struct snd_pcm *pcm = codec->pcm_info[i].pcm;
4145 struct hda_pcm_stream *hinfo =
4146 &codec->pcm_info[i].stream[str];
4147 struct snd_pcm_chmap *chmap;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01004148 const struct snd_pcm_chmap_elem *elem;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02004149
4150 if (codec->pcm_info[i].own_chmap)
4151 continue;
4152 if (!pcm || !hinfo->substreams)
4153 continue;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01004154 elem = hinfo->chmap ? hinfo->chmap : snd_pcm_std_chmaps;
4155 err = snd_pcm_add_chmap_ctls(pcm, str, elem,
Takashi Iwai9c9a5172012-07-31 11:35:35 +02004156 hinfo->channels_max,
4157 0, &chmap);
4158 if (err < 0)
4159 return err;
4160 chmap->channel_mask = SND_PCM_CHMAP_MASK_2468;
4161 }
4162 }
4163 return 0;
4164}
4165
Takashi Iwaiee81abb2012-11-08 17:12:10 +01004166/* default channel maps for 2.1 speakers;
4167 * since HD-audio supports only stereo, odd number channels are omitted
4168 */
4169const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps[] = {
4170 { .channels = 2,
4171 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
4172 { .channels = 4,
4173 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
4174 SNDRV_CHMAP_LFE, SNDRV_CHMAP_LFE } },
4175 { }
4176};
4177EXPORT_SYMBOL_GPL(snd_pcm_2_1_chmaps);
4178
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004179int snd_hda_codec_build_controls(struct hda_codec *codec)
4180{
4181 int err = 0;
Takashi Iwai11aeff02008-07-30 15:01:46 +02004182 hda_exec_init_verbs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004183 /* continue to initialize... */
4184 if (codec->patch_ops.init)
4185 err = codec->patch_ops.init(codec);
4186 if (!err && codec->patch_ops.build_controls)
4187 err = codec->patch_ops.build_controls(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004188 if (err < 0)
4189 return err;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02004190
4191 /* we create chmaps here instead of build_pcms */
4192 err = add_std_chmaps(codec);
4193 if (err < 0)
4194 return err;
4195
David Henningsson26a6cb62012-10-09 15:04:21 +02004196 if (codec->jackpoll_interval)
4197 hda_jackpoll_work(&codec->jackpoll_work.work);
4198 else
4199 snd_hda_jack_report_sync(codec); /* call at the last init point */
Takashi Iwaib9c590b2013-01-24 17:27:32 +01004200 sync_power_up_states(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 return 0;
4202}
4203
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204/*
4205 * stream formats
4206 */
Takashi Iwaibefdf312005-08-22 13:57:55 +02004207struct hda_rate_tbl {
4208 unsigned int hz;
4209 unsigned int alsa_bits;
4210 unsigned int hda_fmt;
4211};
4212
Takashi Iwai92f10b32010-08-03 14:21:00 +02004213/* rate = base * mult / div */
4214#define HDA_RATE(base, mult, div) \
4215 (AC_FMT_BASE_##base##K | (((mult) - 1) << AC_FMT_MULT_SHIFT) | \
4216 (((div) - 1) << AC_FMT_DIV_SHIFT))
4217
Takashi Iwaibefdf312005-08-22 13:57:55 +02004218static struct hda_rate_tbl rate_bits[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219 /* rate in Hz, ALSA rate bitmask, HDA format value */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02004220
4221 /* autodetected value used in snd_hda_query_supported_pcm */
Takashi Iwai92f10b32010-08-03 14:21:00 +02004222 { 8000, SNDRV_PCM_RATE_8000, HDA_RATE(48, 1, 6) },
4223 { 11025, SNDRV_PCM_RATE_11025, HDA_RATE(44, 1, 4) },
4224 { 16000, SNDRV_PCM_RATE_16000, HDA_RATE(48, 1, 3) },
4225 { 22050, SNDRV_PCM_RATE_22050, HDA_RATE(44, 1, 2) },
4226 { 32000, SNDRV_PCM_RATE_32000, HDA_RATE(48, 2, 3) },
4227 { 44100, SNDRV_PCM_RATE_44100, HDA_RATE(44, 1, 1) },
4228 { 48000, SNDRV_PCM_RATE_48000, HDA_RATE(48, 1, 1) },
4229 { 88200, SNDRV_PCM_RATE_88200, HDA_RATE(44, 2, 1) },
4230 { 96000, SNDRV_PCM_RATE_96000, HDA_RATE(48, 2, 1) },
4231 { 176400, SNDRV_PCM_RATE_176400, HDA_RATE(44, 4, 1) },
4232 { 192000, SNDRV_PCM_RATE_192000, HDA_RATE(48, 4, 1) },
Takashi Iwaia961f9f2007-04-12 13:08:09 +02004233#define AC_PAR_PCM_RATE_BITS 11
4234 /* up to bits 10, 384kHZ isn't supported properly */
4235
4236 /* not autodetected value */
Takashi Iwai92f10b32010-08-03 14:21:00 +02004237 { 9600, SNDRV_PCM_RATE_KNOT, HDA_RATE(48, 1, 5) },
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02004238
Takashi Iwaibefdf312005-08-22 13:57:55 +02004239 { 0 } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240};
4241
4242/**
4243 * snd_hda_calc_stream_format - calculate format bitset
4244 * @rate: the sample rate
4245 * @channels: the number of channels
4246 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
4247 * @maxbps: the max. bps
4248 *
4249 * Calculate the format bitset from the given rate, channels and th PCM format.
4250 *
4251 * Return zero if invalid.
4252 */
4253unsigned int snd_hda_calc_stream_format(unsigned int rate,
4254 unsigned int channels,
4255 unsigned int format,
Anssi Hannula32c168c2010-08-03 13:28:57 +03004256 unsigned int maxbps,
4257 unsigned short spdif_ctls)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258{
4259 int i;
4260 unsigned int val = 0;
4261
Takashi Iwaibefdf312005-08-22 13:57:55 +02004262 for (i = 0; rate_bits[i].hz; i++)
4263 if (rate_bits[i].hz == rate) {
4264 val = rate_bits[i].hda_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265 break;
4266 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02004267 if (!rate_bits[i].hz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268 snd_printdd("invalid rate %d\n", rate);
4269 return 0;
4270 }
4271
4272 if (channels == 0 || channels > 8) {
4273 snd_printdd("invalid channels %d\n", channels);
4274 return 0;
4275 }
4276 val |= channels - 1;
4277
4278 switch (snd_pcm_format_width(format)) {
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004279 case 8:
Takashi Iwai92f10b32010-08-03 14:21:00 +02004280 val |= AC_FMT_BITS_8;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004281 break;
4282 case 16:
Takashi Iwai92f10b32010-08-03 14:21:00 +02004283 val |= AC_FMT_BITS_16;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004284 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 case 20:
4286 case 24:
4287 case 32:
Takashi Iwaib0bb3aa2009-07-03 23:25:37 +02004288 if (maxbps >= 32 || format == SNDRV_PCM_FORMAT_FLOAT_LE)
Takashi Iwai92f10b32010-08-03 14:21:00 +02004289 val |= AC_FMT_BITS_32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290 else if (maxbps >= 24)
Takashi Iwai92f10b32010-08-03 14:21:00 +02004291 val |= AC_FMT_BITS_24;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292 else
Takashi Iwai92f10b32010-08-03 14:21:00 +02004293 val |= AC_FMT_BITS_20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 break;
4295 default:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004296 snd_printdd("invalid format width %d\n",
4297 snd_pcm_format_width(format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 return 0;
4299 }
4300
Anssi Hannula32c168c2010-08-03 13:28:57 +03004301 if (spdif_ctls & AC_DIG1_NONAUDIO)
Takashi Iwai92f10b32010-08-03 14:21:00 +02004302 val |= AC_FMT_TYPE_NON_PCM;
Anssi Hannula32c168c2010-08-03 13:28:57 +03004303
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 return val;
4305}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004306EXPORT_SYMBOL_GPL(snd_hda_calc_stream_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02004308static unsigned int get_pcm_param(struct hda_codec *codec, hda_nid_t nid,
4309 int dir)
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004310{
4311 unsigned int val = 0;
4312 if (nid != codec->afg &&
4313 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD))
4314 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
4315 if (!val || val == -1)
4316 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
4317 if (!val || val == -1)
4318 return 0;
4319 return val;
4320}
4321
4322static unsigned int query_pcm_param(struct hda_codec *codec, hda_nid_t nid)
4323{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02004324 return query_caps_hash(codec, nid, 0, HDA_HASH_PARPCM_KEY(nid),
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004325 get_pcm_param);
4326}
4327
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02004328static unsigned int get_stream_param(struct hda_codec *codec, hda_nid_t nid,
4329 int dir)
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004330{
4331 unsigned int streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
4332 if (!streams || streams == -1)
4333 streams = snd_hda_param_read(codec, codec->afg, AC_PAR_STREAM);
4334 if (!streams || streams == -1)
4335 return 0;
4336 return streams;
4337}
4338
4339static unsigned int query_stream_param(struct hda_codec *codec, hda_nid_t nid)
4340{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02004341 return query_caps_hash(codec, nid, 0, HDA_HASH_PARSTR_KEY(nid),
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004342 get_stream_param);
4343}
4344
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345/**
4346 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
4347 * @codec: the HDA codec
4348 * @nid: NID to query
4349 * @ratesp: the pointer to store the detected rate bitflags
4350 * @formatsp: the pointer to store the detected formats
4351 * @bpsp: the pointer to store the detected format widths
4352 *
4353 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
4354 * or @bsps argument is ignored.
4355 *
4356 * Returns 0 if successful, otherwise a negative error code.
4357 */
Stephen Warren384a48d2011-06-01 11:14:21 -06004358int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 u32 *ratesp, u64 *formatsp, unsigned int *bpsp)
4360{
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004361 unsigned int i, val, wcaps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004363 wcaps = get_wcaps(codec, nid);
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004364 val = query_pcm_param(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365
4366 if (ratesp) {
4367 u32 rates = 0;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02004368 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369 if (val & (1 << i))
Takashi Iwaibefdf312005-08-22 13:57:55 +02004370 rates |= rate_bits[i].alsa_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 }
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004372 if (rates == 0) {
4373 snd_printk(KERN_ERR "hda_codec: rates == 0 "
4374 "(nid=0x%x, val=0x%x, ovrd=%i)\n",
4375 nid, val,
4376 (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0);
4377 return -EIO;
4378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379 *ratesp = rates;
4380 }
4381
4382 if (formatsp || bpsp) {
4383 u64 formats = 0;
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004384 unsigned int streams, bps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004386 streams = query_stream_param(codec, nid);
4387 if (!streams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389
4390 bps = 0;
4391 if (streams & AC_SUPFMT_PCM) {
4392 if (val & AC_SUPPCM_BITS_8) {
4393 formats |= SNDRV_PCM_FMTBIT_U8;
4394 bps = 8;
4395 }
4396 if (val & AC_SUPPCM_BITS_16) {
4397 formats |= SNDRV_PCM_FMTBIT_S16_LE;
4398 bps = 16;
4399 }
4400 if (wcaps & AC_WCAP_DIGITAL) {
4401 if (val & AC_SUPPCM_BITS_32)
4402 formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
4403 if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24))
4404 formats |= SNDRV_PCM_FMTBIT_S32_LE;
4405 if (val & AC_SUPPCM_BITS_24)
4406 bps = 24;
4407 else if (val & AC_SUPPCM_BITS_20)
4408 bps = 20;
Takashi Iwai0ba21762007-04-16 11:29:14 +02004409 } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24|
4410 AC_SUPPCM_BITS_32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411 formats |= SNDRV_PCM_FMTBIT_S32_LE;
4412 if (val & AC_SUPPCM_BITS_32)
4413 bps = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 else if (val & AC_SUPPCM_BITS_24)
4415 bps = 24;
Nicolas Graziano33ef76512006-09-19 14:23:14 +02004416 else if (val & AC_SUPPCM_BITS_20)
4417 bps = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418 }
4419 }
Takashi Iwai8c7dd892012-05-12 09:38:05 +02004420#if 0 /* FIXME: CS4206 doesn't work, which is the only codec supporting float */
Takashi Iwaib5025c52009-07-01 18:05:27 +02004421 if (streams & AC_SUPFMT_FLOAT32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422 formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
Takashi Iwaib0bb3aa2009-07-03 23:25:37 +02004423 if (!bps)
4424 bps = 32;
Takashi Iwaib5025c52009-07-01 18:05:27 +02004425 }
Takashi Iwai8c7dd892012-05-12 09:38:05 +02004426#endif
Takashi Iwaib5025c52009-07-01 18:05:27 +02004427 if (streams == AC_SUPFMT_AC3) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02004428 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429 /* temporary hack: we have still no proper support
4430 * for the direct AC3 stream...
4431 */
4432 formats |= SNDRV_PCM_FMTBIT_U8;
4433 bps = 8;
4434 }
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004435 if (formats == 0) {
4436 snd_printk(KERN_ERR "hda_codec: formats == 0 "
4437 "(nid=0x%x, val=0x%x, ovrd=%i, "
4438 "streams=0x%x)\n",
4439 nid, val,
4440 (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0,
4441 streams);
4442 return -EIO;
4443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444 if (formatsp)
4445 *formatsp = formats;
4446 if (bpsp)
4447 *bpsp = bps;
4448 }
4449
4450 return 0;
4451}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004452EXPORT_SYMBOL_GPL(snd_hda_query_supported_pcm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453
4454/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01004455 * snd_hda_is_supported_format - Check the validity of the format
4456 * @codec: HD-audio codec
4457 * @nid: NID to check
4458 * @format: the HD-audio format value to check
4459 *
4460 * Check whether the given node supports the format value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461 *
4462 * Returns 1 if supported, 0 if not.
4463 */
4464int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
4465 unsigned int format)
4466{
4467 int i;
4468 unsigned int val = 0, rate, stream;
4469
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004470 val = query_pcm_param(codec, nid);
4471 if (!val)
4472 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473
4474 rate = format & 0xff00;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02004475 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++)
Takashi Iwaibefdf312005-08-22 13:57:55 +02004476 if (rate_bits[i].hda_fmt == rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477 if (val & (1 << i))
4478 break;
4479 return 0;
4480 }
Takashi Iwaia961f9f2007-04-12 13:08:09 +02004481 if (i >= AC_PAR_PCM_RATE_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482 return 0;
4483
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004484 stream = query_stream_param(codec, nid);
4485 if (!stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486 return 0;
4487
4488 if (stream & AC_SUPFMT_PCM) {
4489 switch (format & 0xf0) {
4490 case 0x00:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004491 if (!(val & AC_SUPPCM_BITS_8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492 return 0;
4493 break;
4494 case 0x10:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004495 if (!(val & AC_SUPPCM_BITS_16))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496 return 0;
4497 break;
4498 case 0x20:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004499 if (!(val & AC_SUPPCM_BITS_20))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 return 0;
4501 break;
4502 case 0x30:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004503 if (!(val & AC_SUPPCM_BITS_24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504 return 0;
4505 break;
4506 case 0x40:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004507 if (!(val & AC_SUPPCM_BITS_32))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508 return 0;
4509 break;
4510 default:
4511 return 0;
4512 }
4513 } else {
4514 /* FIXME: check for float32 and AC3? */
4515 }
4516
4517 return 1;
4518}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004519EXPORT_SYMBOL_GPL(snd_hda_is_supported_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520
4521/*
4522 * PCM stuff
4523 */
4524static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
4525 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004526 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527{
4528 return 0;
4529}
4530
4531static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
4532 struct hda_codec *codec,
4533 unsigned int stream_tag,
4534 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004535 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536{
4537 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
4538 return 0;
4539}
4540
4541static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
4542 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004543 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544{
Takashi Iwai888afa12008-03-18 09:57:50 +01004545 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 return 0;
4547}
4548
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004549static int set_pcm_default_values(struct hda_codec *codec,
4550 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551{
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004552 int err;
4553
Takashi Iwai0ba21762007-04-16 11:29:14 +02004554 /* query support PCM information from the given NID */
4555 if (info->nid && (!info->rates || !info->formats)) {
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004556 err = snd_hda_query_supported_pcm(codec, info->nid,
Takashi Iwai0ba21762007-04-16 11:29:14 +02004557 info->rates ? NULL : &info->rates,
4558 info->formats ? NULL : &info->formats,
4559 info->maxbps ? NULL : &info->maxbps);
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004560 if (err < 0)
4561 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562 }
4563 if (info->ops.open == NULL)
4564 info->ops.open = hda_pcm_default_open_close;
4565 if (info->ops.close == NULL)
4566 info->ops.close = hda_pcm_default_open_close;
4567 if (info->ops.prepare == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02004568 if (snd_BUG_ON(!info->nid))
4569 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570 info->ops.prepare = hda_pcm_default_prepare;
4571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004572 if (info->ops.cleanup == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02004573 if (snd_BUG_ON(!info->nid))
4574 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575 info->ops.cleanup = hda_pcm_default_cleanup;
4576 }
4577 return 0;
4578}
4579
Takashi Iwaieb541332010-08-06 13:48:11 +02004580/*
4581 * codec prepare/cleanup entries
4582 */
4583int snd_hda_codec_prepare(struct hda_codec *codec,
4584 struct hda_pcm_stream *hinfo,
4585 unsigned int stream,
4586 unsigned int format,
4587 struct snd_pcm_substream *substream)
4588{
4589 int ret;
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004590 mutex_lock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02004591 ret = hinfo->ops.prepare(hinfo, codec, stream, format, substream);
4592 if (ret >= 0)
4593 purify_inactive_streams(codec);
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004594 mutex_unlock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02004595 return ret;
4596}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004597EXPORT_SYMBOL_GPL(snd_hda_codec_prepare);
Takashi Iwaieb541332010-08-06 13:48:11 +02004598
4599void snd_hda_codec_cleanup(struct hda_codec *codec,
4600 struct hda_pcm_stream *hinfo,
4601 struct snd_pcm_substream *substream)
4602{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004603 mutex_lock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02004604 hinfo->ops.cleanup(hinfo, codec, substream);
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004605 mutex_unlock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02004606}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004607EXPORT_SYMBOL_GPL(snd_hda_codec_cleanup);
Takashi Iwaieb541332010-08-06 13:48:11 +02004608
Takashi Iwaid5191e52009-11-16 14:58:17 +01004609/* global */
Jaroslav Kyselae3303232009-11-10 14:53:02 +01004610const char *snd_hda_pcm_type_name[HDA_PCM_NTYPES] = {
4611 "Audio", "SPDIF", "HDMI", "Modem"
4612};
4613
Takashi Iwai176d5332008-07-30 15:01:44 +02004614/*
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004615 * get the empty PCM device number to assign
4616 */
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004617static int get_empty_pcm_device(struct hda_bus *bus, unsigned int type)
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004618{
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004619 /* audio device indices; not linear to keep compatibility */
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004620 /* assigned to static slots up to dev#10; if more needed, assign
4621 * the later slot dynamically (when CONFIG_SND_DYNAMIC_MINORS=y)
4622 */
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004623 static int audio_idx[HDA_PCM_NTYPES][5] = {
4624 [HDA_PCM_TYPE_AUDIO] = { 0, 2, 4, 5, -1 },
4625 [HDA_PCM_TYPE_SPDIF] = { 1, -1 },
Wu Fengguang92608ba2009-10-30 11:40:03 +01004626 [HDA_PCM_TYPE_HDMI] = { 3, 7, 8, 9, -1 },
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004627 [HDA_PCM_TYPE_MODEM] = { 6, -1 },
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004628 };
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004629 int i;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004630
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004631 if (type >= HDA_PCM_NTYPES) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004632 snd_printk(KERN_WARNING "Invalid PCM type %d\n", type);
4633 return -EINVAL;
4634 }
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004635
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004636 for (i = 0; audio_idx[type][i] >= 0; i++) {
4637#ifndef CONFIG_SND_DYNAMIC_MINORS
4638 if (audio_idx[type][i] >= 8)
4639 break;
4640#endif
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004641 if (!test_and_set_bit(audio_idx[type][i], bus->pcm_dev_bits))
4642 return audio_idx[type][i];
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004643 }
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004644
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004645#ifdef CONFIG_SND_DYNAMIC_MINORS
Takashi Iwai01b65bf2011-11-24 14:31:46 +01004646 /* non-fixed slots starting from 10 */
4647 for (i = 10; i < 32; i++) {
4648 if (!test_and_set_bit(i, bus->pcm_dev_bits))
4649 return i;
4650 }
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004651#endif
Takashi Iwai01b65bf2011-11-24 14:31:46 +01004652
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004653 snd_printk(KERN_WARNING "Too many %s devices\n",
4654 snd_hda_pcm_type_name[type]);
Takashi Iwai36bb00d2013-06-06 12:10:24 +02004655#ifndef CONFIG_SND_DYNAMIC_MINORS
4656 snd_printk(KERN_WARNING "Consider building the kernel with CONFIG_SND_DYNAMIC_MINORS=y\n");
4657#endif
Wu Fengguangf5d6def2009-10-30 11:38:26 +01004658 return -EAGAIN;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004659}
4660
4661/*
Takashi Iwai176d5332008-07-30 15:01:44 +02004662 * attach a new PCM stream
4663 */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004664static int snd_hda_attach_pcm(struct hda_codec *codec, struct hda_pcm *pcm)
Takashi Iwai176d5332008-07-30 15:01:44 +02004665{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01004666 struct hda_bus *bus = codec->bus;
Takashi Iwai176d5332008-07-30 15:01:44 +02004667 struct hda_pcm_stream *info;
4668 int stream, err;
4669
Takashi Iwaib91f0802008-11-04 08:43:08 +01004670 if (snd_BUG_ON(!pcm->name))
Takashi Iwai176d5332008-07-30 15:01:44 +02004671 return -EINVAL;
4672 for (stream = 0; stream < 2; stream++) {
4673 info = &pcm->stream[stream];
4674 if (info->substreams) {
4675 err = set_pcm_default_values(codec, info);
4676 if (err < 0)
4677 return err;
4678 }
4679 }
Takashi Iwai33fa35e2008-11-06 16:50:40 +01004680 return bus->ops.attach_pcm(bus, codec, pcm);
Takashi Iwai176d5332008-07-30 15:01:44 +02004681}
4682
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004683/* assign all PCMs of the given codec */
4684int snd_hda_codec_build_pcms(struct hda_codec *codec)
4685{
4686 unsigned int pcm;
4687 int err;
4688
4689 if (!codec->num_pcms) {
4690 if (!codec->patch_ops.build_pcms)
4691 return 0;
4692 err = codec->patch_ops.build_pcms(codec);
Takashi Iwai6e655bf2009-03-02 10:46:03 +01004693 if (err < 0) {
4694 printk(KERN_ERR "hda_codec: cannot build PCMs"
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004695 "for #%d (error %d)\n", codec->addr, err);
Takashi Iwai6e655bf2009-03-02 10:46:03 +01004696 err = snd_hda_codec_reset(codec);
4697 if (err < 0) {
4698 printk(KERN_ERR
4699 "hda_codec: cannot revert codec\n");
4700 return err;
4701 }
4702 }
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004703 }
4704 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
4705 struct hda_pcm *cpcm = &codec->pcm_info[pcm];
4706 int dev;
4707
4708 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
Takashi Iwai41b5b012009-01-20 18:21:23 +01004709 continue; /* no substreams assigned */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004710
4711 if (!cpcm->pcm) {
4712 dev = get_empty_pcm_device(codec->bus, cpcm->pcm_type);
4713 if (dev < 0)
Takashi Iwai6e655bf2009-03-02 10:46:03 +01004714 continue; /* no fatal error */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004715 cpcm->device = dev;
4716 err = snd_hda_attach_pcm(codec, cpcm);
Takashi Iwai6e655bf2009-03-02 10:46:03 +01004717 if (err < 0) {
4718 printk(KERN_ERR "hda_codec: cannot attach "
4719 "PCM stream %d for codec #%d\n",
4720 dev, codec->addr);
4721 continue; /* no fatal error */
4722 }
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004723 }
4724 }
4725 return 0;
4726}
4727
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728/**
4729 * snd_hda_build_pcms - build PCM information
4730 * @bus: the BUS
4731 *
4732 * Create PCM information for each codec included in the bus.
4733 *
4734 * The build_pcms codec patch is requested to set up codec->num_pcms and
4735 * codec->pcm_info properly. The array is referred by the top-level driver
4736 * to create its PCM instances.
4737 * The allocated codec->pcm_info should be released in codec->patch_ops.free
4738 * callback.
4739 *
4740 * At least, substreams, channels_min and channels_max must be filled for
4741 * each stream. substreams = 0 indicates that the stream doesn't exist.
4742 * When rates and/or formats are zero, the supported values are queried
4743 * from the given nid. The nid is used also by the default ops.prepare
4744 * and ops.cleanup callbacks.
4745 *
4746 * The driver needs to call ops.open in its open callback. Similarly,
4747 * ops.close is supposed to be called in the close callback.
4748 * ops.prepare should be called in the prepare or hw_params callback
4749 * with the proper parameters for set up.
4750 * ops.cleanup should be called in hw_free for clean up of streams.
4751 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004752 * This function returns 0 if successful, or a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753 */
Takashi Iwai5cb543d2012-08-09 13:49:23 +02004754int snd_hda_build_pcms(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755{
Takashi Iwai0ba21762007-04-16 11:29:14 +02004756 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757
Takashi Iwai0ba21762007-04-16 11:29:14 +02004758 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004759 int err = snd_hda_codec_build_pcms(codec);
4760 if (err < 0)
4761 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762 }
4763 return 0;
4764}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004765EXPORT_SYMBOL_GPL(snd_hda_build_pcms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004766
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767/**
4768 * snd_hda_check_board_config - compare the current codec with the config table
4769 * @codec: the HDA codec
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004770 * @num_configs: number of config enums
4771 * @models: array of model name strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07004772 * @tbl: configuration table, terminated by null entries
4773 *
4774 * Compares the modelname or PCI subsystem id of the current codec with the
4775 * given configuration table. If a matching entry is found, returns its
4776 * config value (supposed to be 0 or positive).
4777 *
4778 * If no entries are matching, the function returns a negative value.
4779 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02004780int snd_hda_check_board_config(struct hda_codec *codec,
Takashi Iwaiea734962011-01-17 11:29:34 +01004781 int num_configs, const char * const *models,
Takashi Iwai12f288b2007-08-02 15:51:59 +02004782 const struct snd_pci_quirk *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783{
Takashi Iwaif44ac832008-07-30 15:01:45 +02004784 if (codec->modelname && models) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004785 int i;
4786 for (i = 0; i < num_configs; i++) {
4787 if (models[i] &&
Takashi Iwaif44ac832008-07-30 15:01:45 +02004788 !strcmp(codec->modelname, models[i])) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004789 snd_printd(KERN_INFO "hda_codec: model '%s' is "
4790 "selected\n", models[i]);
4791 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792 }
4793 }
4794 }
4795
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004796 if (!codec->bus->pci || !tbl)
4797 return -1;
4798
4799 tbl = snd_pci_quirk_lookup(codec->bus->pci, tbl);
4800 if (!tbl)
4801 return -1;
4802 if (tbl->value >= 0 && tbl->value < num_configs) {
Takashi Iwai62cf8722008-05-20 12:15:15 +02004803#ifdef CONFIG_SND_DEBUG_VERBOSE
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004804 char tmp[10];
4805 const char *model = NULL;
4806 if (models)
4807 model = models[tbl->value];
4808 if (!model) {
4809 sprintf(tmp, "#%d", tbl->value);
4810 model = tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811 }
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004812 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
4813 "for config %x:%x (%s)\n",
4814 model, tbl->subvendor, tbl->subdevice,
4815 (tbl->name ? tbl->name : "Unknown device"));
4816#endif
4817 return tbl->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818 }
4819 return -1;
4820}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004821EXPORT_SYMBOL_GPL(snd_hda_check_board_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822
4823/**
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02004824 * snd_hda_check_board_codec_sid_config - compare the current codec
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004825 subsystem ID with the
4826 config table
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02004827
4828 This is important for Gateway notebooks with SB450 HDA Audio
4829 where the vendor ID of the PCI device is:
4830 ATI Technologies Inc SB450 HDA Audio [1002:437b]
4831 and the vendor/subvendor are found only at the codec.
4832
4833 * @codec: the HDA codec
4834 * @num_configs: number of config enums
4835 * @models: array of model name strings
4836 * @tbl: configuration table, terminated by null entries
4837 *
4838 * Compares the modelname or PCI subsystem id of the current codec with the
4839 * given configuration table. If a matching entry is found, returns its
4840 * config value (supposed to be 0 or positive).
4841 *
4842 * If no entries are matching, the function returns a negative value.
4843 */
4844int snd_hda_check_board_codec_sid_config(struct hda_codec *codec,
Takashi Iwaiea734962011-01-17 11:29:34 +01004845 int num_configs, const char * const *models,
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02004846 const struct snd_pci_quirk *tbl)
4847{
4848 const struct snd_pci_quirk *q;
4849
4850 /* Search for codec ID */
4851 for (q = tbl; q->subvendor; q++) {
Takashi Iwaie2301a42011-11-22 19:58:56 +01004852 unsigned int mask = 0xffff0000 | q->subdevice_mask;
4853 unsigned int id = (q->subdevice | (q->subvendor << 16)) & mask;
4854 if ((codec->subsystem_id & mask) == id)
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02004855 break;
4856 }
4857
4858 if (!q->subvendor)
4859 return -1;
4860
4861 tbl = q;
4862
4863 if (tbl->value >= 0 && tbl->value < num_configs) {
Takashi Iwaid94ff6b2009-09-02 00:20:21 +02004864#ifdef CONFIG_SND_DEBUG_VERBOSE
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02004865 char tmp[10];
4866 const char *model = NULL;
4867 if (models)
4868 model = models[tbl->value];
4869 if (!model) {
4870 sprintf(tmp, "#%d", tbl->value);
4871 model = tmp;
4872 }
4873 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
4874 "for config %x:%x (%s)\n",
4875 model, tbl->subvendor, tbl->subdevice,
4876 (tbl->name ? tbl->name : "Unknown device"));
4877#endif
4878 return tbl->value;
4879 }
4880 return -1;
4881}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004882EXPORT_SYMBOL_GPL(snd_hda_check_board_codec_sid_config);
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02004883
4884/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004885 * snd_hda_add_new_ctls - create controls from the array
4886 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004887 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07004888 *
4889 * This helper function creates and add new controls in the given array.
4890 * The array must be terminated with an empty entry as terminator.
4891 *
4892 * Returns 0 if successful, or a negative error code.
4893 */
Takashi Iwai031024e2011-05-02 11:29:30 +02004894int snd_hda_add_new_ctls(struct hda_codec *codec,
4895 const struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004896{
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01004897 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898
4899 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01004900 struct snd_kcontrol *kctl;
Takashi Iwai1afe2062010-12-23 10:17:52 +01004901 int addr = 0, idx = 0;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01004902 if (knew->iface == -1) /* skip this codec private value */
4903 continue;
Takashi Iwai1afe2062010-12-23 10:17:52 +01004904 for (;;) {
Takashi Iwai54d17402005-11-21 16:33:22 +01004905 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02004906 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01004907 return -ENOMEM;
Takashi Iwai1afe2062010-12-23 10:17:52 +01004908 if (addr > 0)
4909 kctl->id.device = addr;
4910 if (idx > 0)
4911 kctl->id.index = idx;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01004912 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai1afe2062010-12-23 10:17:52 +01004913 if (!err)
4914 break;
4915 /* try first with another device index corresponding to
4916 * the codec addr; if it still fails (or it's the
4917 * primary codec), then try another control index
4918 */
4919 if (!addr && codec->addr)
4920 addr = codec->addr;
4921 else if (!idx && !knew->index) {
4922 idx = find_empty_mixer_ctl_idx(codec,
Takashi Iwaidcda5802012-10-12 17:24:51 +02004923 knew->name, 0);
Takashi Iwai1afe2062010-12-23 10:17:52 +01004924 if (idx <= 0)
4925 return err;
4926 } else
Takashi Iwai54d17402005-11-21 16:33:22 +01004927 return err;
4928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929 }
4930 return 0;
4931}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004932EXPORT_SYMBOL_GPL(snd_hda_add_new_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004933
Takashi Iwai83012a72012-08-24 18:38:08 +02004934#ifdef CONFIG_PM
Takashi Iwaicb53c622007-08-10 17:21:45 +02004935static void hda_power_work(struct work_struct *work)
4936{
4937 struct hda_codec *codec =
4938 container_of(work, struct hda_codec, power_work.work);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01004939 struct hda_bus *bus = codec->bus;
Takashi Iwai08fa20a2012-08-31 07:46:56 -07004940 unsigned int state;
Takashi Iwaicb53c622007-08-10 17:21:45 +02004941
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004942 spin_lock(&codec->power_lock);
Takashi Iwaia2d96e72012-05-09 12:36:22 +02004943 if (codec->power_transition > 0) { /* during power-up sequence? */
4944 spin_unlock(&codec->power_lock);
4945 return;
4946 }
Maxim Levitsky2e492462007-09-03 15:26:57 +02004947 if (!codec->power_on || codec->power_count) {
4948 codec->power_transition = 0;
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004949 spin_unlock(&codec->power_lock);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004950 return;
Maxim Levitsky2e492462007-09-03 15:26:57 +02004951 }
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004952 spin_unlock(&codec->power_lock);
4953
Dylan Reidd17344b2012-09-28 15:57:01 -07004954 state = hda_call_codec_suspend(codec, true);
Takashi Iwaia40e0a82013-11-20 12:41:20 +01004955 if (!bus->power_keep_link_on && (state & AC_PWRST_CLK_STOP_OK))
4956 hda_call_pm_notify(codec, false);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004957}
4958
4959static void hda_keep_power_on(struct hda_codec *codec)
4960{
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004961 spin_lock(&codec->power_lock);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004962 codec->power_count++;
4963 codec->power_on = 1;
Takashi Iwaia2f63092009-11-11 09:34:25 +01004964 codec->power_jiffies = jiffies;
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004965 spin_unlock(&codec->power_lock);
Takashi Iwaia40e0a82013-11-20 12:41:20 +01004966 hda_call_pm_notify(codec, true);
Takashi Iwaia2f63092009-11-11 09:34:25 +01004967}
4968
Takashi Iwaid5191e52009-11-16 14:58:17 +01004969/* update the power on/off account with the current jiffies */
Takashi Iwaia2f63092009-11-11 09:34:25 +01004970void snd_hda_update_power_acct(struct hda_codec *codec)
4971{
4972 unsigned long delta = jiffies - codec->power_jiffies;
4973 if (codec->power_on)
4974 codec->power_on_acct += delta;
4975 else
4976 codec->power_off_acct += delta;
4977 codec->power_jiffies += delta;
Takashi Iwaicb53c622007-08-10 17:21:45 +02004978}
4979
Dylan Reidb4a91cf2012-06-15 19:36:23 -07004980/* Transition to powered up, if wait_power_down then wait for a pending
4981 * transition to D3 to complete. A pending D3 transition is indicated
4982 * with power_transition == -1. */
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004983/* call this with codec->power_lock held! */
Dylan Reidb4a91cf2012-06-15 19:36:23 -07004984static void __snd_hda_power_up(struct hda_codec *codec, bool wait_power_down)
Takashi Iwaicb53c622007-08-10 17:21:45 +02004985{
Dylan Reidb4a91cf2012-06-15 19:36:23 -07004986 /* Return if power_on or transitioning to power_on, unless currently
4987 * powering down. */
4988 if ((codec->power_on || codec->power_transition > 0) &&
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004989 !(wait_power_down && codec->power_transition < 0))
Takashi Iwaicb53c622007-08-10 17:21:45 +02004990 return;
Takashi Iwaia2d96e72012-05-09 12:36:22 +02004991 spin_unlock(&codec->power_lock);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004992
Takashi Iwaia2d96e72012-05-09 12:36:22 +02004993 cancel_delayed_work_sync(&codec->power_work);
4994
4995 spin_lock(&codec->power_lock);
Dylan Reidb43d2242012-06-21 21:51:22 -07004996 /* If the power down delayed work was cancelled above before starting,
4997 * then there is no need to go through power up here.
4998 */
4999 if (codec->power_on) {
Takashi Iwai535b6c52012-08-20 21:25:22 +02005000 if (codec->power_transition < 0)
5001 codec->power_transition = 0;
Dylan Reidb43d2242012-06-21 21:51:22 -07005002 return;
5003 }
Takashi Iwaic376e2c2012-08-14 17:12:47 +02005004
Takashi Iwaid66fee52011-08-02 15:39:31 +02005005 trace_hda_power_up(codec);
Takashi Iwaia2f63092009-11-11 09:34:25 +01005006 snd_hda_update_power_acct(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02005007 codec->power_on = 1;
Takashi Iwaia2f63092009-11-11 09:34:25 +01005008 codec->power_jiffies = jiffies;
Takashi Iwai7f308302012-05-08 16:52:23 +02005009 codec->power_transition = 1; /* avoid reentrance */
Takashi Iwai5536c6d2012-05-08 17:08:10 +02005010 spin_unlock(&codec->power_lock);
5011
Takashi Iwaicb53c622007-08-10 17:21:45 +02005012 hda_call_codec_resume(codec);
Takashi Iwai5536c6d2012-05-08 17:08:10 +02005013
5014 spin_lock(&codec->power_lock);
Takashi Iwaia221e282007-08-16 16:35:33 +02005015 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02005016}
Dylan Reidb4a91cf2012-06-15 19:36:23 -07005017
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005018#define power_save(codec) \
5019 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0)
Takashi Iwaicb53c622007-08-10 17:21:45 +02005020
Takashi Iwaic376e2c2012-08-14 17:12:47 +02005021/* Transition to powered down */
5022static void __snd_hda_power_down(struct hda_codec *codec)
Takashi Iwaicb53c622007-08-10 17:21:45 +02005023{
Takashi Iwaic376e2c2012-08-14 17:12:47 +02005024 if (!codec->power_on || codec->power_count || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02005025 return;
Takashi Iwaic376e2c2012-08-14 17:12:47 +02005026
Takashi Iwaifee2fba2008-11-27 12:43:28 +01005027 if (power_save(codec)) {
Takashi Iwaia2d96e72012-05-09 12:36:22 +02005028 codec->power_transition = -1; /* avoid reentrance */
Takashi Iwaic107b412009-01-13 17:46:37 +01005029 queue_delayed_work(codec->bus->workq, &codec->power_work,
Takashi Iwaifee2fba2008-11-27 12:43:28 +01005030 msecs_to_jiffies(power_save(codec) * 1000));
Takashi Iwaia221e282007-08-16 16:35:33 +02005031 }
Takashi Iwaic376e2c2012-08-14 17:12:47 +02005032}
5033
5034/**
5035 * snd_hda_power_save - Power-up/down/sync the codec
5036 * @codec: HD-audio codec
5037 * @delta: the counter delta to change
5038 *
5039 * Change the power-up counter via @delta, and power up or down the hardware
5040 * appropriately. For the power-down, queue to the delayed action.
5041 * Passing zero to @delta means to synchronize the power state.
5042 */
5043void snd_hda_power_save(struct hda_codec *codec, int delta, bool d3wait)
5044{
5045 spin_lock(&codec->power_lock);
5046 codec->power_count += delta;
5047 trace_hda_power_count(codec);
5048 if (delta > 0)
5049 __snd_hda_power_up(codec, d3wait);
5050 else
5051 __snd_hda_power_down(codec);
Takashi Iwai5536c6d2012-05-08 17:08:10 +02005052 spin_unlock(&codec->power_lock);
Takashi Iwaicb53c622007-08-10 17:21:45 +02005053}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005054EXPORT_SYMBOL_GPL(snd_hda_power_save);
Takashi Iwaicb53c622007-08-10 17:21:45 +02005055
Takashi Iwaid5191e52009-11-16 14:58:17 +01005056/**
5057 * snd_hda_check_amp_list_power - Check the amp list and update the power
5058 * @codec: HD-audio codec
5059 * @check: the object containing an AMP list and the status
5060 * @nid: NID to check / update
5061 *
5062 * Check whether the given NID is in the amp list. If it's in the list,
5063 * check the current AMP status, and update the the power-status according
5064 * to the mute status.
5065 *
5066 * This function is supposed to be set or called from the check_power_status
5067 * patch ops.
Norberto Lopes28aedaf2010-02-28 20:16:53 +01005068 */
Takashi Iwaicb53c622007-08-10 17:21:45 +02005069int snd_hda_check_amp_list_power(struct hda_codec *codec,
5070 struct hda_loopback_check *check,
5071 hda_nid_t nid)
5072{
Takashi Iwai031024e2011-05-02 11:29:30 +02005073 const struct hda_amp_list *p;
Takashi Iwaicb53c622007-08-10 17:21:45 +02005074 int ch, v;
5075
5076 if (!check->amplist)
5077 return 0;
5078 for (p = check->amplist; p->nid; p++) {
5079 if (p->nid == nid)
5080 break;
5081 }
5082 if (!p->nid)
5083 return 0; /* nothing changed */
5084
5085 for (p = check->amplist; p->nid; p++) {
5086 for (ch = 0; ch < 2; ch++) {
5087 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
5088 p->idx);
5089 if (!(v & HDA_AMP_MUTE) && v > 0) {
5090 if (!check->power_on) {
5091 check->power_on = 1;
5092 snd_hda_power_up(codec);
5093 }
5094 return 1;
5095 }
5096 }
5097 }
5098 if (check->power_on) {
5099 check->power_on = 0;
5100 snd_hda_power_down(codec);
5101 }
5102 return 0;
5103}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005104EXPORT_SYMBOL_GPL(snd_hda_check_amp_list_power);
Takashi Iwaicb53c622007-08-10 17:21:45 +02005105#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07005106
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01005107/*
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01005108 * Channel mode helper
5109 */
Takashi Iwaid5191e52009-11-16 14:58:17 +01005110
5111/**
5112 * snd_hda_ch_mode_info - Info callback helper for the channel mode enum
5113 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005114int snd_hda_ch_mode_info(struct hda_codec *codec,
5115 struct snd_ctl_elem_info *uinfo,
5116 const struct hda_channel_mode *chmode,
5117 int num_chmodes)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01005118{
5119 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
5120 uinfo->count = 1;
5121 uinfo->value.enumerated.items = num_chmodes;
5122 if (uinfo->value.enumerated.item >= num_chmodes)
5123 uinfo->value.enumerated.item = num_chmodes - 1;
5124 sprintf(uinfo->value.enumerated.name, "%dch",
5125 chmode[uinfo->value.enumerated.item].channels);
5126 return 0;
5127}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005128EXPORT_SYMBOL_GPL(snd_hda_ch_mode_info);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01005129
Takashi Iwaid5191e52009-11-16 14:58:17 +01005130/**
5131 * snd_hda_ch_mode_get - Get callback helper for the channel mode enum
5132 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005133int snd_hda_ch_mode_get(struct hda_codec *codec,
5134 struct snd_ctl_elem_value *ucontrol,
5135 const struct hda_channel_mode *chmode,
5136 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01005137 int max_channels)
5138{
5139 int i;
5140
5141 for (i = 0; i < num_chmodes; i++) {
5142 if (max_channels == chmode[i].channels) {
5143 ucontrol->value.enumerated.item[0] = i;
5144 break;
5145 }
5146 }
5147 return 0;
5148}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005149EXPORT_SYMBOL_GPL(snd_hda_ch_mode_get);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01005150
Takashi Iwaid5191e52009-11-16 14:58:17 +01005151/**
5152 * snd_hda_ch_mode_put - Put callback helper for the channel mode enum
5153 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005154int snd_hda_ch_mode_put(struct hda_codec *codec,
5155 struct snd_ctl_elem_value *ucontrol,
5156 const struct hda_channel_mode *chmode,
5157 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01005158 int *max_channelsp)
5159{
5160 unsigned int mode;
5161
5162 mode = ucontrol->value.enumerated.item[0];
Takashi Iwai68ea7b22007-11-15 15:54:38 +01005163 if (mode >= num_chmodes)
5164 return -EINVAL;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02005165 if (*max_channelsp == chmode[mode].channels)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01005166 return 0;
5167 /* change the current channel setting */
5168 *max_channelsp = chmode[mode].channels;
5169 if (chmode[mode].sequence)
Takashi Iwai82beb8f2007-08-10 17:09:26 +02005170 snd_hda_sequence_write_cache(codec, chmode[mode].sequence);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01005171 return 1;
5172}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005173EXPORT_SYMBOL_GPL(snd_hda_ch_mode_put);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01005174
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175/*
5176 * input MUX helper
5177 */
Takashi Iwaid5191e52009-11-16 14:58:17 +01005178
5179/**
5180 * snd_hda_input_mux_info_info - Info callback helper for the input-mux enum
5181 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005182int snd_hda_input_mux_info(const struct hda_input_mux *imux,
5183 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184{
5185 unsigned int index;
5186
5187 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
5188 uinfo->count = 1;
5189 uinfo->value.enumerated.items = imux->num_items;
Takashi Iwai5513b0c2007-10-09 11:58:41 +02005190 if (!imux->num_items)
5191 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192 index = uinfo->value.enumerated.item;
5193 if (index >= imux->num_items)
5194 index = imux->num_items - 1;
5195 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
5196 return 0;
5197}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005198EXPORT_SYMBOL_GPL(snd_hda_input_mux_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199
Takashi Iwaid5191e52009-11-16 14:58:17 +01005200/**
5201 * snd_hda_input_mux_info_put - Put callback helper for the input-mux enum
5202 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005203int snd_hda_input_mux_put(struct hda_codec *codec,
5204 const struct hda_input_mux *imux,
5205 struct snd_ctl_elem_value *ucontrol,
5206 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207 unsigned int *cur_val)
5208{
5209 unsigned int idx;
5210
Takashi Iwai5513b0c2007-10-09 11:58:41 +02005211 if (!imux->num_items)
5212 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213 idx = ucontrol->value.enumerated.item[0];
5214 if (idx >= imux->num_items)
5215 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02005216 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005217 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02005218 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
5219 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220 *cur_val = idx;
5221 return 1;
5222}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005223EXPORT_SYMBOL_GPL(snd_hda_input_mux_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224
5225
5226/*
Takashi Iwaidda415d2012-11-30 18:34:38 +01005227 * process kcontrol info callback of a simple string enum array
5228 * when @num_items is 0 or @texts is NULL, assume a boolean enum array
5229 */
5230int snd_hda_enum_helper_info(struct snd_kcontrol *kcontrol,
5231 struct snd_ctl_elem_info *uinfo,
5232 int num_items, const char * const *texts)
5233{
5234 static const char * const texts_default[] = {
5235 "Disabled", "Enabled"
5236 };
5237
5238 if (!texts || !num_items) {
5239 num_items = 2;
5240 texts = texts_default;
5241 }
5242
5243 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
5244 uinfo->count = 1;
5245 uinfo->value.enumerated.items = num_items;
5246 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
5247 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
5248 strcpy(uinfo->value.enumerated.name,
5249 texts[uinfo->value.enumerated.item]);
5250 return 0;
5251}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005252EXPORT_SYMBOL_GPL(snd_hda_enum_helper_info);
Takashi Iwaidda415d2012-11-30 18:34:38 +01005253
5254/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255 * Multi-channel / digital-out PCM helper functions
5256 */
5257
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005258/* setup SPDIF output stream */
5259static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
5260 unsigned int stream_tag, unsigned int format)
5261{
Laurence Darby3bef1c32012-11-03 17:00:06 +00005262 struct hda_spdif_out *spdif;
5263 unsigned int curr_fmt;
5264 bool reset;
Stephen Warren7c9359762011-06-01 11:14:17 -06005265
Laurence Darby3bef1c32012-11-03 17:00:06 +00005266 spdif = snd_hda_spdif_out_of_nid(codec, nid);
5267 curr_fmt = snd_hda_codec_read(codec, nid, 0,
5268 AC_VERB_GET_STREAM_FORMAT, 0);
5269 reset = codec->spdif_status_reset &&
5270 (spdif->ctls & AC_DIG1_ENABLE) &&
5271 curr_fmt != format;
5272
5273 /* turn off SPDIF if needed; otherwise the IEC958 bits won't be
5274 updated */
5275 if (reset)
Norberto Lopes28aedaf2010-02-28 20:16:53 +01005276 set_dig_out_convert(codec, nid,
Stephen Warren7c9359762011-06-01 11:14:17 -06005277 spdif->ctls & ~AC_DIG1_ENABLE & 0xff,
Takashi Iwai2f728532008-09-25 16:32:41 +02005278 -1);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005279 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Takashi Iwai2f728532008-09-25 16:32:41 +02005280 if (codec->slave_dig_outs) {
Takashi Iwaidda14412011-05-02 11:29:30 +02005281 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02005282 for (d = codec->slave_dig_outs; *d; d++)
5283 snd_hda_codec_setup_stream(codec, *d, stream_tag, 0,
5284 format);
Matthew Ranostayde51ca12008-09-07 14:31:40 -04005285 }
Takashi Iwai2f728532008-09-25 16:32:41 +02005286 /* turn on again (if needed) */
Laurence Darby3bef1c32012-11-03 17:00:06 +00005287 if (reset)
Takashi Iwai2f728532008-09-25 16:32:41 +02005288 set_dig_out_convert(codec, nid,
Stephen Warren7c9359762011-06-01 11:14:17 -06005289 spdif->ctls & 0xff, -1);
Takashi Iwai2f728532008-09-25 16:32:41 +02005290}
Matthew Ranostayde51ca12008-09-07 14:31:40 -04005291
Takashi Iwai2f728532008-09-25 16:32:41 +02005292static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid)
5293{
5294 snd_hda_codec_cleanup_stream(codec, nid);
5295 if (codec->slave_dig_outs) {
Takashi Iwaidda14412011-05-02 11:29:30 +02005296 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02005297 for (d = codec->slave_dig_outs; *d; d++)
5298 snd_hda_codec_cleanup_stream(codec, *d);
5299 }
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005300}
5301
Takashi Iwaid5191e52009-11-16 14:58:17 +01005302/**
5303 * snd_hda_bus_reboot_notify - call the reboot notifier of each codec
5304 * @bus: HD-audio bus
5305 */
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01005306void snd_hda_bus_reboot_notify(struct hda_bus *bus)
5307{
5308 struct hda_codec *codec;
5309
5310 if (!bus)
5311 return;
5312 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwaie581f3d2011-07-26 10:19:20 +02005313 if (hda_codec_is_power_on(codec) &&
5314 codec->patch_ops.reboot_notify)
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01005315 codec->patch_ops.reboot_notify(codec);
5316 }
5317}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005318EXPORT_SYMBOL_GPL(snd_hda_bus_reboot_notify);
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01005319
Takashi Iwaid5191e52009-11-16 14:58:17 +01005320/**
5321 * snd_hda_multi_out_dig_open - open the digital out in the exclusive mode
Linus Torvalds1da177e2005-04-16 15:20:36 -07005322 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005323int snd_hda_multi_out_dig_open(struct hda_codec *codec,
5324 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325{
Ingo Molnar62932df2006-01-16 16:34:20 +01005326 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02005327 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
5328 /* already opened as analog dup; reset it once */
Takashi Iwai2f728532008-09-25 16:32:41 +02005329 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01005331 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332 return 0;
5333}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005334EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005335
Takashi Iwaid5191e52009-11-16 14:58:17 +01005336/**
5337 * snd_hda_multi_out_dig_prepare - prepare the digital out stream
5338 */
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005339int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
5340 struct hda_multi_out *mout,
5341 unsigned int stream_tag,
5342 unsigned int format,
5343 struct snd_pcm_substream *substream)
5344{
5345 mutex_lock(&codec->spdif_mutex);
5346 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
5347 mutex_unlock(&codec->spdif_mutex);
5348 return 0;
5349}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005350EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_prepare);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005351
Takashi Iwaid5191e52009-11-16 14:58:17 +01005352/**
5353 * snd_hda_multi_out_dig_cleanup - clean-up the digital out stream
5354 */
Takashi Iwai9411e212009-02-13 11:32:28 +01005355int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
5356 struct hda_multi_out *mout)
5357{
5358 mutex_lock(&codec->spdif_mutex);
5359 cleanup_dig_out_stream(codec, mout->dig_out_nid);
5360 mutex_unlock(&codec->spdif_mutex);
5361 return 0;
5362}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005363EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_cleanup);
Takashi Iwai9411e212009-02-13 11:32:28 +01005364
Takashi Iwaid5191e52009-11-16 14:58:17 +01005365/**
5366 * snd_hda_multi_out_dig_close - release the digital out stream
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005368int snd_hda_multi_out_dig_close(struct hda_codec *codec,
5369 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005370{
Ingo Molnar62932df2006-01-16 16:34:20 +01005371 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005372 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01005373 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374 return 0;
5375}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005376EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377
Takashi Iwaid5191e52009-11-16 14:58:17 +01005378/**
5379 * snd_hda_multi_out_analog_open - open analog outputs
5380 *
5381 * Open analog outputs and set up the hw-constraints.
5382 * If the digital outputs can be opened as slave, open the digital
5383 * outputs, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005385int snd_hda_multi_out_analog_open(struct hda_codec *codec,
5386 struct hda_multi_out *mout,
Takashi Iwai9a081602008-02-12 18:37:26 +01005387 struct snd_pcm_substream *substream,
5388 struct hda_pcm_stream *hinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389{
Takashi Iwai9a081602008-02-12 18:37:26 +01005390 struct snd_pcm_runtime *runtime = substream->runtime;
5391 runtime->hw.channels_max = mout->max_channels;
5392 if (mout->dig_out_nid) {
5393 if (!mout->analog_rates) {
5394 mout->analog_rates = hinfo->rates;
5395 mout->analog_formats = hinfo->formats;
5396 mout->analog_maxbps = hinfo->maxbps;
5397 } else {
5398 runtime->hw.rates = mout->analog_rates;
5399 runtime->hw.formats = mout->analog_formats;
5400 hinfo->maxbps = mout->analog_maxbps;
5401 }
5402 if (!mout->spdif_rates) {
5403 snd_hda_query_supported_pcm(codec, mout->dig_out_nid,
5404 &mout->spdif_rates,
5405 &mout->spdif_formats,
5406 &mout->spdif_maxbps);
5407 }
5408 mutex_lock(&codec->spdif_mutex);
5409 if (mout->share_spdif) {
Takashi Iwai022b4662009-07-03 23:03:30 +02005410 if ((runtime->hw.rates & mout->spdif_rates) &&
5411 (runtime->hw.formats & mout->spdif_formats)) {
5412 runtime->hw.rates &= mout->spdif_rates;
5413 runtime->hw.formats &= mout->spdif_formats;
5414 if (mout->spdif_maxbps < hinfo->maxbps)
5415 hinfo->maxbps = mout->spdif_maxbps;
5416 } else {
5417 mout->share_spdif = 0;
5418 /* FIXME: need notify? */
5419 }
Takashi Iwai9a081602008-02-12 18:37:26 +01005420 }
Frederik Deweerdteaa99852008-04-14 13:11:44 +02005421 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01005422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005423 return snd_pcm_hw_constraint_step(substream->runtime, 0,
5424 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
5425}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005426EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427
Takashi Iwaid5191e52009-11-16 14:58:17 +01005428/**
5429 * snd_hda_multi_out_analog_prepare - Preapre the analog outputs.
5430 *
5431 * Set up the i/o for analog out.
5432 * When the digital out is available, copy the front out to digital out, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005434int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
5435 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005436 unsigned int stream_tag,
5437 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01005438 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439{
Takashi Iwaidda14412011-05-02 11:29:30 +02005440 const hda_nid_t *nids = mout->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005441 int chs = substream->runtime->channels;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02005442 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443 int i;
5444
Ingo Molnar62932df2006-01-16 16:34:20 +01005445 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02005446 spdif = snd_hda_spdif_out_of_nid(codec, mout->dig_out_nid);
Takashi Iwai9a081602008-02-12 18:37:26 +01005447 if (mout->dig_out_nid && mout->share_spdif &&
5448 mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005449 if (chs == 2 &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02005450 snd_hda_is_supported_format(codec, mout->dig_out_nid,
5451 format) &&
Stephen Warren7c9359762011-06-01 11:14:17 -06005452 !(spdif->status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005454 setup_dig_out_stream(codec, mout->dig_out_nid,
5455 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456 } else {
5457 mout->dig_out_used = 0;
Takashi Iwai2f728532008-09-25 16:32:41 +02005458 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459 }
5460 }
Ingo Molnar62932df2006-01-16 16:34:20 +01005461 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462
5463 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005464 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
5465 0, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02005466 if (!mout->no_share_stream &&
5467 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005469 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
5470 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01005471 /* extra outputs copied from front */
Takashi Iwaia06dbfc2011-08-23 18:16:13 +02005472 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
5473 if (!mout->no_share_stream && mout->hp_out_nid[i])
5474 snd_hda_codec_setup_stream(codec,
5475 mout->hp_out_nid[i],
5476 stream_tag, 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01005477
Linus Torvalds1da177e2005-04-16 15:20:36 -07005478 /* surrounds */
5479 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02005480 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005481 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
5482 i * 2, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02005483 else if (!mout->no_share_stream) /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005484 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
5485 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005486 }
David Henningssoncd4035e2013-10-10 09:01:25 +02005487
5488 /* extra surrounds */
5489 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) {
5490 int ch = 0;
5491 if (!mout->extra_out_nid[i])
5492 break;
5493 if (chs >= (i + 1) * 2)
5494 ch = i * 2;
5495 else if (!mout->no_share_stream)
5496 break;
5497 snd_hda_codec_setup_stream(codec, mout->extra_out_nid[i],
5498 stream_tag, ch, format);
5499 }
5500
Linus Torvalds1da177e2005-04-16 15:20:36 -07005501 return 0;
5502}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005503EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504
Takashi Iwaid5191e52009-11-16 14:58:17 +01005505/**
5506 * snd_hda_multi_out_analog_cleanup - clean up the setting for analog out
Linus Torvalds1da177e2005-04-16 15:20:36 -07005507 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005508int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
5509 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510{
Takashi Iwaidda14412011-05-02 11:29:30 +02005511 const hda_nid_t *nids = mout->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512 int i;
5513
5514 for (i = 0; i < mout->num_dacs; i++)
Takashi Iwai888afa12008-03-18 09:57:50 +01005515 snd_hda_codec_cleanup_stream(codec, nids[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005516 if (mout->hp_nid)
Takashi Iwai888afa12008-03-18 09:57:50 +01005517 snd_hda_codec_cleanup_stream(codec, mout->hp_nid);
Takashi Iwaia06dbfc2011-08-23 18:16:13 +02005518 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
5519 if (mout->hp_out_nid[i])
5520 snd_hda_codec_cleanup_stream(codec,
5521 mout->hp_out_nid[i]);
Takashi Iwai82bc9552006-03-21 11:24:42 +01005522 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
5523 if (mout->extra_out_nid[i])
Takashi Iwai888afa12008-03-18 09:57:50 +01005524 snd_hda_codec_cleanup_stream(codec,
5525 mout->extra_out_nid[i]);
Ingo Molnar62932df2006-01-16 16:34:20 +01005526 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005527 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
Takashi Iwai2f728532008-09-25 16:32:41 +02005528 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529 mout->dig_out_used = 0;
5530 }
Ingo Molnar62932df2006-01-16 16:34:20 +01005531 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532 return 0;
5533}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005534EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005535
Takashi Iwai47408602012-04-20 13:06:53 +02005536/**
5537 * snd_hda_get_default_vref - Get the default (mic) VREF pin bits
5538 *
5539 * Guess the suitable VREF pin bits to be set as the pin-control value.
5540 * Note: the function doesn't set the AC_PINCTL_IN_EN bit.
5541 */
5542unsigned int snd_hda_get_default_vref(struct hda_codec *codec, hda_nid_t pin)
5543{
5544 unsigned int pincap;
5545 unsigned int oldval;
5546 oldval = snd_hda_codec_read(codec, pin, 0,
5547 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
5548 pincap = snd_hda_query_pin_caps(codec, pin);
5549 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
5550 /* Exception: if the default pin setup is vref50, we give it priority */
5551 if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50)
5552 return AC_PINCTL_VREF_80;
5553 else if (pincap & AC_PINCAP_VREF_50)
5554 return AC_PINCTL_VREF_50;
5555 else if (pincap & AC_PINCAP_VREF_100)
5556 return AC_PINCTL_VREF_100;
5557 else if (pincap & AC_PINCAP_VREF_GRD)
5558 return AC_PINCTL_VREF_GRD;
5559 return AC_PINCTL_VREF_HIZ;
5560}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005561EXPORT_SYMBOL_GPL(snd_hda_get_default_vref);
Takashi Iwai47408602012-04-20 13:06:53 +02005562
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01005563/* correct the pin ctl value for matching with the pin cap */
5564unsigned int snd_hda_correct_pin_ctl(struct hda_codec *codec,
5565 hda_nid_t pin, unsigned int val)
5566{
5567 static unsigned int cap_lists[][2] = {
5568 { AC_PINCTL_VREF_100, AC_PINCAP_VREF_100 },
5569 { AC_PINCTL_VREF_80, AC_PINCAP_VREF_80 },
5570 { AC_PINCTL_VREF_50, AC_PINCAP_VREF_50 },
5571 { AC_PINCTL_VREF_GRD, AC_PINCAP_VREF_GRD },
5572 };
5573 unsigned int cap;
5574
5575 if (!val)
5576 return 0;
5577 cap = snd_hda_query_pin_caps(codec, pin);
5578 if (!cap)
5579 return val; /* don't know what to do... */
5580
5581 if (val & AC_PINCTL_OUT_EN) {
5582 if (!(cap & AC_PINCAP_OUT))
5583 val &= ~(AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
5584 else if ((val & AC_PINCTL_HP_EN) && !(cap & AC_PINCAP_HP_DRV))
5585 val &= ~AC_PINCTL_HP_EN;
5586 }
5587
5588 if (val & AC_PINCTL_IN_EN) {
5589 if (!(cap & AC_PINCAP_IN))
5590 val &= ~(AC_PINCTL_IN_EN | AC_PINCTL_VREFEN);
5591 else {
5592 unsigned int vcap, vref;
5593 int i;
5594 vcap = (cap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
5595 vref = val & AC_PINCTL_VREFEN;
5596 for (i = 0; i < ARRAY_SIZE(cap_lists); i++) {
5597 if (vref == cap_lists[i][0] &&
5598 !(vcap & cap_lists[i][1])) {
5599 if (i == ARRAY_SIZE(cap_lists) - 1)
5600 vref = AC_PINCTL_VREF_HIZ;
5601 else
5602 vref = cap_lists[i + 1][0];
5603 }
5604 }
5605 val &= ~AC_PINCTL_VREFEN;
5606 val |= vref;
5607 }
5608 }
5609
5610 return val;
5611}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005612EXPORT_SYMBOL_GPL(snd_hda_correct_pin_ctl);
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01005613
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02005614int _snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin,
5615 unsigned int val, bool cached)
5616{
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01005617 val = snd_hda_correct_pin_ctl(codec, pin, val);
Takashi Iwaid7fdc002013-01-10 08:38:04 +01005618 snd_hda_codec_set_pin_target(codec, pin, val);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02005619 if (cached)
5620 return snd_hda_codec_update_cache(codec, pin, 0,
5621 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
5622 else
5623 return snd_hda_codec_write(codec, pin, 0,
5624 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
5625}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005626EXPORT_SYMBOL_GPL(_snd_hda_set_pin_ctl);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02005627
Takashi Iwai990061c2010-09-09 22:08:44 +02005628/**
5629 * snd_hda_add_imux_item - Add an item to input_mux
5630 *
5631 * When the same label is used already in the existing items, the number
5632 * suffix is appended to the label. This label index number is stored
5633 * to type_idx when non-NULL pointer is given.
5634 */
Takashi Iwai10a20af2010-09-09 16:28:02 +02005635int snd_hda_add_imux_item(struct hda_input_mux *imux, const char *label,
5636 int index, int *type_idx)
5637{
5638 int i, label_idx = 0;
5639 if (imux->num_items >= HDA_MAX_NUM_INPUTS) {
5640 snd_printd(KERN_ERR "hda_codec: Too many imux items!\n");
5641 return -EINVAL;
5642 }
5643 for (i = 0; i < imux->num_items; i++) {
5644 if (!strncmp(label, imux->items[i].label, strlen(label)))
5645 label_idx++;
5646 }
5647 if (type_idx)
5648 *type_idx = label_idx;
5649 if (label_idx > 0)
5650 snprintf(imux->items[imux->num_items].label,
5651 sizeof(imux->items[imux->num_items].label),
5652 "%s %d", label, label_idx);
5653 else
5654 strlcpy(imux->items[imux->num_items].label, label,
5655 sizeof(imux->items[imux->num_items].label));
5656 imux->items[imux->num_items].index = index;
5657 imux->num_items++;
5658 return 0;
5659}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005660EXPORT_SYMBOL_GPL(snd_hda_add_imux_item);
Takashi Iwaid7b1ae92010-08-30 13:00:16 +02005661
Takashi Iwai4a471b72005-12-07 13:56:29 +01005662
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663#ifdef CONFIG_PM
5664/*
5665 * power management
5666 */
5667
Takashi Iwaif4d6a552013-12-05 11:55:05 +01005668
5669static void hda_async_suspend(void *data, async_cookie_t cookie)
5670{
5671 hda_call_codec_suspend(data, false);
5672}
5673
5674static void hda_async_resume(void *data, async_cookie_t cookie)
5675{
5676 hda_call_codec_resume(data);
5677}
5678
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679/**
5680 * snd_hda_suspend - suspend the codecs
5681 * @bus: the HDA bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682 *
5683 * Returns 0 if successful.
5684 */
Takashi Iwai8dd78332009-06-02 01:16:07 +02005685int snd_hda_suspend(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005686{
Takashi Iwai0ba21762007-04-16 11:29:14 +02005687 struct hda_codec *codec;
Takashi Iwaif4d6a552013-12-05 11:55:05 +01005688 ASYNC_DOMAIN_EXCLUSIVE(domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005689
Takashi Iwai0ba21762007-04-16 11:29:14 +02005690 list_for_each_entry(codec, &bus->codec_list, list) {
David Henningsson26a6cb62012-10-09 15:04:21 +02005691 cancel_delayed_work_sync(&codec->jackpoll_work);
Mengdong Lin0e24dbb2013-11-26 23:00:51 -05005692 if (hda_codec_is_power_on(codec)) {
5693 if (bus->num_codecs > 1)
Takashi Iwaif4d6a552013-12-05 11:55:05 +01005694 async_schedule_domain(hda_async_suspend, codec,
5695 &domain);
Mengdong Lin0e24dbb2013-11-26 23:00:51 -05005696 else
5697 hda_call_codec_suspend(codec, false);
5698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005699 }
Mengdong Lin0e24dbb2013-11-26 23:00:51 -05005700
5701 if (bus->num_codecs > 1)
Takashi Iwaif4d6a552013-12-05 11:55:05 +01005702 async_synchronize_full_domain(&domain);
Mengdong Lin0e24dbb2013-11-26 23:00:51 -05005703
Linus Torvalds1da177e2005-04-16 15:20:36 -07005704 return 0;
5705}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005706EXPORT_SYMBOL_GPL(snd_hda_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005707
5708/**
5709 * snd_hda_resume - resume the codecs
5710 * @bus: the HDA bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07005711 *
5712 * Returns 0 if successful.
5713 */
5714int snd_hda_resume(struct hda_bus *bus)
5715{
Takashi Iwai0ba21762007-04-16 11:29:14 +02005716 struct hda_codec *codec;
Takashi Iwaif4d6a552013-12-05 11:55:05 +01005717 ASYNC_DOMAIN_EXCLUSIVE(domain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005718
Takashi Iwai0ba21762007-04-16 11:29:14 +02005719 list_for_each_entry(codec, &bus->codec_list, list) {
Mengdong Lin12edb892013-11-26 23:32:23 -05005720 if (bus->num_codecs > 1)
Takashi Iwaif4d6a552013-12-05 11:55:05 +01005721 async_schedule_domain(hda_async_resume, codec, &domain);
Mengdong Lin12edb892013-11-26 23:32:23 -05005722 else
5723 hda_call_codec_resume(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005724 }
Mengdong Lin12edb892013-11-26 23:32:23 -05005725
5726 if (bus->num_codecs > 1)
Takashi Iwaif4d6a552013-12-05 11:55:05 +01005727 async_synchronize_full_domain(&domain);
Mengdong Lin12edb892013-11-26 23:32:23 -05005728
Linus Torvalds1da177e2005-04-16 15:20:36 -07005729 return 0;
5730}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005731EXPORT_SYMBOL_GPL(snd_hda_resume);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005732#endif /* CONFIG_PM */
Takashi Iwaib2e18592008-07-30 15:01:44 +02005733
5734/*
5735 * generic arrays
5736 */
5737
Takashi Iwaid5191e52009-11-16 14:58:17 +01005738/**
5739 * snd_array_new - get a new element from the given array
5740 * @array: the array object
Norberto Lopes28aedaf2010-02-28 20:16:53 +01005741 *
Takashi Iwaid5191e52009-11-16 14:58:17 +01005742 * Get a new element from the given array. If it exceeds the
5743 * pre-allocated array size, re-allocate the array.
5744 *
5745 * Returns NULL if allocation failed.
Takashi Iwaib2e18592008-07-30 15:01:44 +02005746 */
5747void *snd_array_new(struct snd_array *array)
5748{
Takashi Iwai12f17712012-10-10 08:59:14 +02005749 if (snd_BUG_ON(!array->elem_size))
5750 return NULL;
Takashi Iwaib2e18592008-07-30 15:01:44 +02005751 if (array->used >= array->alloced) {
5752 int num = array->alloced + array->alloc_align;
Takashi Iwai3101ba02011-07-12 08:05:16 +02005753 int size = (num + 1) * array->elem_size;
Takashi Iwaib910d9a2008-11-07 00:26:52 +01005754 void *nlist;
5755 if (snd_BUG_ON(num >= 4096))
5756 return NULL;
Takashi Iwai5265fd92013-03-13 12:15:28 +01005757 nlist = krealloc(array->list, size, GFP_KERNEL | __GFP_ZERO);
Takashi Iwaib2e18592008-07-30 15:01:44 +02005758 if (!nlist)
5759 return NULL;
Takashi Iwaib2e18592008-07-30 15:01:44 +02005760 array->list = nlist;
5761 array->alloced = num;
5762 }
Takashi Iwaif43aa022008-11-10 16:24:26 +01005763 return snd_array_elem(array, array->used++);
Takashi Iwaib2e18592008-07-30 15:01:44 +02005764}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005765EXPORT_SYMBOL_GPL(snd_array_new);
Takashi Iwaib2e18592008-07-30 15:01:44 +02005766
Takashi Iwaid5191e52009-11-16 14:58:17 +01005767/**
5768 * snd_array_free - free the given array elements
5769 * @array: the array object
5770 */
Takashi Iwaib2e18592008-07-30 15:01:44 +02005771void snd_array_free(struct snd_array *array)
5772{
5773 kfree(array->list);
5774 array->used = 0;
5775 array->alloced = 0;
5776 array->list = NULL;
5777}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005778EXPORT_SYMBOL_GPL(snd_array_free);
Takashi Iwaib2022262008-11-21 21:24:03 +01005779
Takashi Iwaid5191e52009-11-16 14:58:17 +01005780/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01005781 * snd_print_pcm_bits - Print the supported PCM fmt bits to the string buffer
5782 * @pcm: PCM caps bits
5783 * @buf: the string buffer to write
5784 * @buflen: the max buffer length
5785 *
5786 * used by hda_proc.c and hda_eld.c
5787 */
Takashi Iwaib2022262008-11-21 21:24:03 +01005788void snd_print_pcm_bits(int pcm, char *buf, int buflen)
5789{
5790 static unsigned int bits[] = { 8, 16, 20, 24, 32 };
5791 int i, j;
5792
5793 for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++)
5794 if (pcm & (AC_SUPPCM_BITS_8 << i))
5795 j += snprintf(buf + j, buflen - j, " %d", bits[i]);
5796
5797 buf[j] = '\0'; /* necessary when j == 0 */
5798}
Takashi Iwai2698ea92013-12-18 07:45:52 +01005799EXPORT_SYMBOL_GPL(snd_print_pcm_bits);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005800
5801MODULE_DESCRIPTION("HDA codec core");
5802MODULE_LICENSE("GPL");