blob: 04b57383e8cbcb89212e2d63960242653e774b21 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <sound/core.h>
30#include "hda_codec.h"
31#include <sound/asoundef.h>
Jaroslav Kysela302e9c52006-07-05 17:39:49 +020032#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <sound/initval.h>
Takashi Iwaicd372fb2011-03-03 14:40:14 +010034#include <sound/jack.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "hda_local.h"
Jaroslav Kysela123c07a2009-10-21 14:48:23 +020036#include "hda_beep.h"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020037#include "hda_jack.h"
Takashi Iwai28073142007-07-27 18:58:06 +020038#include <sound/hda_hwdep.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Takashi Iwaid66fee52011-08-02 15:39:31 +020040#define CREATE_TRACE_POINTS
41#include "hda_trace.h"
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/*
44 * vendor / preset table
45 */
46
47struct hda_vendor_id {
48 unsigned int id;
49 const char *name;
50};
51
52/* codec vendor labels */
53static struct hda_vendor_id hda_vendor_ids[] = {
Takashi Iwaic8cd1282008-02-13 16:59:29 +010054 { 0x1002, "ATI" },
Takashi Iwaie5f14242009-07-01 18:11:44 +020055 { 0x1013, "Cirrus Logic" },
Takashi Iwaia9226252006-09-17 22:05:54 +020056 { 0x1057, "Motorola" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010057 { 0x1095, "Silicon Image" },
Takashi Iwai31117b72008-12-16 14:43:21 +010058 { 0x10de, "Nvidia" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010059 { 0x10ec, "Realtek" },
Takashi Iwai4e01f542009-04-16 08:53:34 +020060 { 0x1102, "Creative" },
Joseph Chanc577b8a2006-11-29 15:29:40 +010061 { 0x1106, "VIA" },
Matthew Ranostay7f168592007-10-18 17:38:17 +020062 { 0x111d, "IDT" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010063 { 0x11c1, "LSI" },
Takashi Iwai54b903e2005-05-15 14:30:10 +020064 { 0x11d4, "Analog Devices" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 { 0x13f6, "C-Media" },
Takashi Iwaia9226252006-09-17 22:05:54 +020066 { 0x14f1, "Conexant" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010067 { 0x17e8, "Chrontel" },
68 { 0x1854, "LG" },
Mark Brown8199de32008-10-28 14:50:13 +000069 { 0x1aec, "Wolfson Microelectronics" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 { 0x434d, "C-Media" },
Takashi Iwai74c61132008-12-18 09:11:33 +010071 { 0x8086, "Intel" },
Matt2f2f4252005-04-13 14:45:30 +020072 { 0x8384, "SigmaTel" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 {} /* terminator */
74};
75
Takashi Iwai1289e9e2008-11-27 15:47:11 +010076static DEFINE_MUTEX(preset_mutex);
77static LIST_HEAD(hda_preset_tables);
78
79int snd_hda_add_codec_preset(struct hda_codec_preset_list *preset)
80{
81 mutex_lock(&preset_mutex);
82 list_add_tail(&preset->list, &hda_preset_tables);
83 mutex_unlock(&preset_mutex);
84 return 0;
85}
Takashi Iwaiff7a3262008-11-28 15:17:06 +010086EXPORT_SYMBOL_HDA(snd_hda_add_codec_preset);
Takashi Iwai1289e9e2008-11-27 15:47:11 +010087
88int snd_hda_delete_codec_preset(struct hda_codec_preset_list *preset)
89{
90 mutex_lock(&preset_mutex);
91 list_del(&preset->list);
92 mutex_unlock(&preset_mutex);
93 return 0;
94}
Takashi Iwaiff7a3262008-11-28 15:17:06 +010095EXPORT_SYMBOL_HDA(snd_hda_delete_codec_preset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Takashi Iwai83012a72012-08-24 18:38:08 +020097#ifdef CONFIG_PM
Takashi Iwaid846b172012-11-24 11:58:24 +010098#define codec_in_pm(codec) ((codec)->in_pm)
Takashi Iwaicb53c622007-08-10 17:21:45 +020099static void hda_power_work(struct work_struct *work);
100static void hda_keep_power_on(struct hda_codec *codec);
Takashi Iwaie581f3d2011-07-26 10:19:20 +0200101#define hda_codec_is_power_on(codec) ((codec)->power_on)
Takashi Iwai68467f52012-08-28 09:14:29 -0700102static inline void hda_call_pm_notify(struct hda_bus *bus, bool power_up)
103{
104 if (bus->ops.pm_notify)
105 bus->ops.pm_notify(bus, power_up);
106}
Takashi Iwaicb53c622007-08-10 17:21:45 +0200107#else
Takashi Iwaid846b172012-11-24 11:58:24 +0100108#define codec_in_pm(codec) 0
Takashi Iwaicb53c622007-08-10 17:21:45 +0200109static inline void hda_keep_power_on(struct hda_codec *codec) {}
Takashi Iwaie581f3d2011-07-26 10:19:20 +0200110#define hda_codec_is_power_on(codec) 1
Takashi Iwai68467f52012-08-28 09:14:29 -0700111#define hda_call_pm_notify(bus, state) {}
Takashi Iwaicb53c622007-08-10 17:21:45 +0200112#endif
113
Takashi Iwaid5191e52009-11-16 14:58:17 +0100114/**
115 * snd_hda_get_jack_location - Give a location string of the jack
116 * @cfg: pin default config value
117 *
118 * Parse the pin default config value and returns the string of the
119 * jack location, e.g. "Rear", "Front", etc.
120 */
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400121const char *snd_hda_get_jack_location(u32 cfg)
122{
123 static char *bases[7] = {
124 "N/A", "Rear", "Front", "Left", "Right", "Top", "Bottom",
125 };
126 static unsigned char specials_idx[] = {
127 0x07, 0x08,
128 0x17, 0x18, 0x19,
129 0x37, 0x38
130 };
131 static char *specials[] = {
132 "Rear Panel", "Drive Bar",
133 "Riser", "HDMI", "ATAPI",
134 "Mobile-In", "Mobile-Out"
135 };
136 int i;
137 cfg = (cfg & AC_DEFCFG_LOCATION) >> AC_DEFCFG_LOCATION_SHIFT;
138 if ((cfg & 0x0f) < 7)
139 return bases[cfg & 0x0f];
140 for (i = 0; i < ARRAY_SIZE(specials_idx); i++) {
141 if (cfg == specials_idx[i])
142 return specials[i];
143 }
144 return "UNKNOWN";
145}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100146EXPORT_SYMBOL_HDA(snd_hda_get_jack_location);
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400147
Takashi Iwaid5191e52009-11-16 14:58:17 +0100148/**
149 * snd_hda_get_jack_connectivity - Give a connectivity string of the jack
150 * @cfg: pin default config value
151 *
152 * Parse the pin default config value and returns the string of the
153 * jack connectivity, i.e. external or internal connection.
154 */
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400155const char *snd_hda_get_jack_connectivity(u32 cfg)
156{
157 static char *jack_locations[4] = { "Ext", "Int", "Sep", "Oth" };
158
159 return jack_locations[(cfg >> (AC_DEFCFG_LOCATION_SHIFT + 4)) & 3];
160}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100161EXPORT_SYMBOL_HDA(snd_hda_get_jack_connectivity);
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400162
Takashi Iwaid5191e52009-11-16 14:58:17 +0100163/**
164 * snd_hda_get_jack_type - Give a type string of the jack
165 * @cfg: pin default config value
166 *
167 * Parse the pin default config value and returns the string of the
168 * jack type, i.e. the purpose of the jack, such as Line-Out or CD.
169 */
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400170const char *snd_hda_get_jack_type(u32 cfg)
171{
172 static char *jack_types[16] = {
173 "Line Out", "Speaker", "HP Out", "CD",
174 "SPDIF Out", "Digital Out", "Modem Line", "Modem Hand",
175 "Line In", "Aux", "Mic", "Telephony",
176 "SPDIF In", "Digitial In", "Reserved", "Other"
177 };
178
179 return jack_types[(cfg & AC_DEFCFG_DEVICE)
180 >> AC_DEFCFG_DEVICE_SHIFT];
181}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100182EXPORT_SYMBOL_HDA(snd_hda_get_jack_type);
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400183
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100184/*
185 * Compose a 32bit command word to be sent to the HD-audio controller
186 */
187static inline unsigned int
188make_codec_cmd(struct hda_codec *codec, hda_nid_t nid, int direct,
189 unsigned int verb, unsigned int parm)
190{
191 u32 val;
192
Takashi Iwai82e1b802009-07-17 12:47:34 +0200193 if ((codec->addr & ~0xf) || (direct & ~1) || (nid & ~0x7f) ||
194 (verb & ~0xfff) || (parm & ~0xffff)) {
Wu Fengguang6430aee2009-07-17 16:49:19 +0800195 printk(KERN_ERR "hda-codec: out of range cmd %x:%x:%x:%x:%x\n",
196 codec->addr, direct, nid, verb, parm);
197 return ~0;
198 }
199
200 val = (u32)codec->addr << 28;
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100201 val |= (u32)direct << 27;
202 val |= (u32)nid << 20;
203 val |= verb << 8;
204 val |= parm;
205 return val;
206}
207
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200208/*
209 * Send and receive a verb
210 */
211static int codec_exec_verb(struct hda_codec *codec, unsigned int cmd,
212 unsigned int *res)
213{
214 struct hda_bus *bus = codec->bus;
Takashi Iwai8dd78332009-06-02 01:16:07 +0200215 int err;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200216
Wu Fengguang6430aee2009-07-17 16:49:19 +0800217 if (cmd == ~0)
218 return -1;
219
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200220 if (res)
221 *res = -1;
Takashi Iwai8dd78332009-06-02 01:16:07 +0200222 again:
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200223 snd_hda_power_up(codec);
224 mutex_lock(&bus->cmd_mutex);
Takashi Iwai3bcce5c2012-12-20 11:17:17 +0100225 for (;;) {
226 trace_hda_send_cmd(codec, cmd);
227 err = bus->ops.command(bus, cmd);
228 if (err != -EAGAIN)
229 break;
230 /* process pending verbs */
231 bus->ops.get_response(bus, codec->addr);
232 }
Takashi Iwaid66fee52011-08-02 15:39:31 +0200233 if (!err && res) {
Wu Fengguangdeadff12009-08-01 18:45:16 +0800234 *res = bus->ops.get_response(bus, codec->addr);
Takashi Iwaid66fee52011-08-02 15:39:31 +0200235 trace_hda_get_response(codec, *res);
236 }
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200237 mutex_unlock(&bus->cmd_mutex);
238 snd_hda_power_down(codec);
Takashi Iwaid846b172012-11-24 11:58:24 +0100239 if (!codec_in_pm(codec) && res && *res == -1 && bus->rirb_error) {
Takashi Iwai8dd78332009-06-02 01:16:07 +0200240 if (bus->response_reset) {
241 snd_printd("hda_codec: resetting BUS due to "
242 "fatal communication error\n");
Takashi Iwaid66fee52011-08-02 15:39:31 +0200243 trace_hda_bus_reset(bus);
Takashi Iwai8dd78332009-06-02 01:16:07 +0200244 bus->ops.bus_reset(bus);
245 }
246 goto again;
247 }
248 /* clear reset-flag when the communication gets recovered */
Takashi Iwaid846b172012-11-24 11:58:24 +0100249 if (!err || codec_in_pm(codec))
Takashi Iwai8dd78332009-06-02 01:16:07 +0200250 bus->response_reset = 0;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200251 return err;
252}
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254/**
255 * snd_hda_codec_read - send a command and get the response
256 * @codec: the HDA codec
257 * @nid: NID to send the command
258 * @direct: direct flag
259 * @verb: the verb to send
260 * @parm: the parameter for the verb
261 *
262 * Send a single command and read the corresponding response.
263 *
264 * Returns the obtained response value, or -1 for an error.
265 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200266unsigned int snd_hda_codec_read(struct hda_codec *codec, hda_nid_t nid,
267 int direct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 unsigned int verb, unsigned int parm)
269{
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200270 unsigned cmd = make_codec_cmd(codec, nid, direct, verb, parm);
271 unsigned int res;
Greg Thelen9857edf2011-06-13 07:45:45 -0700272 if (codec_exec_verb(codec, cmd, &res))
273 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 return res;
275}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100276EXPORT_SYMBOL_HDA(snd_hda_codec_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278/**
279 * snd_hda_codec_write - send a single command without waiting for response
280 * @codec: the HDA codec
281 * @nid: NID to send the command
282 * @direct: direct flag
283 * @verb: the verb to send
284 * @parm: the parameter for the verb
285 *
286 * Send a single command without waiting for response.
287 *
288 * Returns 0 if successful, or a negative error code.
289 */
290int snd_hda_codec_write(struct hda_codec *codec, hda_nid_t nid, int direct,
291 unsigned int verb, unsigned int parm)
292{
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200293 unsigned int cmd = make_codec_cmd(codec, nid, direct, verb, parm);
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100294 unsigned int res;
Takashi Iwaib20f3b82009-06-02 01:20:22 +0200295 return codec_exec_verb(codec, cmd,
296 codec->bus->sync_write ? &res : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100298EXPORT_SYMBOL_HDA(snd_hda_codec_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300/**
301 * snd_hda_sequence_write - sequence writes
302 * @codec: the HDA codec
303 * @seq: VERB array to send
304 *
305 * Send the commands sequentially from the given array.
306 * The array must be terminated with NID=0.
307 */
308void snd_hda_sequence_write(struct hda_codec *codec, const struct hda_verb *seq)
309{
310 for (; seq->nid; seq++)
311 snd_hda_codec_write(codec, seq->nid, 0, seq->verb, seq->param);
312}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100313EXPORT_SYMBOL_HDA(snd_hda_sequence_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315/**
316 * snd_hda_get_sub_nodes - get the range of sub nodes
317 * @codec: the HDA codec
318 * @nid: NID to parse
319 * @start_id: the pointer to store the start NID
320 *
321 * Parse the NID and store the start NID of its sub-nodes.
322 * Returns the number of sub-nodes.
323 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200324int snd_hda_get_sub_nodes(struct hda_codec *codec, hda_nid_t nid,
325 hda_nid_t *start_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327 unsigned int parm;
328
329 parm = snd_hda_param_read(codec, nid, AC_PAR_NODE_COUNT);
Danny Tholene8a7f132007-09-11 21:41:56 +0200330 if (parm == -1)
331 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 *start_id = (parm >> 16) & 0x7fff;
333 return (int)(parm & 0x7fff);
334}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100335EXPORT_SYMBOL_HDA(snd_hda_get_sub_nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100337/* connection list element */
338struct hda_conn_list {
339 struct list_head list;
340 int len;
341 hda_nid_t nid;
342 hda_nid_t conns[0];
343};
344
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200345/* look up the cached results */
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100346static struct hda_conn_list *
347lookup_conn_list(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200348{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100349 struct hda_conn_list *p;
350 list_for_each_entry(p, &codec->conn_list, list) {
351 if (p->nid == nid)
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200352 return p;
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200353 }
354 return NULL;
355}
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200356
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100357static int add_conn_list(struct hda_codec *codec, hda_nid_t nid, int len,
358 const hda_nid_t *list)
359{
360 struct hda_conn_list *p;
361
362 p = kmalloc(sizeof(*p) + len * sizeof(hda_nid_t), GFP_KERNEL);
363 if (!p)
364 return -ENOMEM;
365 p->len = len;
366 p->nid = nid;
367 memcpy(p->conns, list, len * sizeof(hda_nid_t));
368 list_add(&p->list, &codec->conn_list);
369 return 0;
370}
371
372static void remove_conn_list(struct hda_codec *codec)
373{
374 while (!list_empty(&codec->conn_list)) {
375 struct hda_conn_list *p;
376 p = list_first_entry(&codec->conn_list, typeof(*p), list);
377 list_del(&p->list);
378 kfree(p);
379 }
380}
381
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200382/* read the connection and add to the cache */
383static int read_and_add_raw_conns(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200384{
Takashi Iwai4eea3092013-02-07 18:18:19 +0100385 hda_nid_t list[32];
386 hda_nid_t *result = list;
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200387 int len;
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200388
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200389 len = snd_hda_get_raw_connections(codec, nid, list, ARRAY_SIZE(list));
Takashi Iwai4eea3092013-02-07 18:18:19 +0100390 if (len == -ENOSPC) {
391 len = snd_hda_get_num_raw_conns(codec, nid);
392 result = kmalloc(sizeof(hda_nid_t) * len, GFP_KERNEL);
393 if (!result)
394 return -ENOMEM;
395 len = snd_hda_get_raw_connections(codec, nid, result, len);
396 }
397 if (len >= 0)
398 len = snd_hda_override_conn_list(codec, nid, len, result);
399 if (result != list)
400 kfree(result);
401 return len;
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200402}
Takashi Iwaidce20792011-06-24 14:10:28 +0200403
404/**
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100405 * snd_hda_get_conn_list - get connection list
406 * @codec: the HDA codec
407 * @nid: NID to parse
408 * @len: number of connection list entries
409 * @listp: the pointer to store NID list
410 *
411 * Parses the connection list of the given widget and stores the pointer
412 * to the list of NIDs.
413 *
414 * Returns the number of connections, or a negative error code.
415 *
416 * Note that the returned pointer isn't protected against the list
417 * modification. If snd_hda_override_conn_list() might be called
418 * concurrently, protect with a mutex appropriately.
419 */
420int snd_hda_get_conn_list(struct hda_codec *codec, hda_nid_t nid,
421 const hda_nid_t **listp)
422{
423 bool added = false;
424
425 for (;;) {
426 int err;
427 const struct hda_conn_list *p;
428
429 /* if the connection-list is already cached, read it */
430 p = lookup_conn_list(codec, nid);
431 if (p) {
432 if (listp)
433 *listp = p->conns;
434 return p->len;
435 }
436 if (snd_BUG_ON(added))
437 return -EINVAL;
438
439 err = read_and_add_raw_conns(codec, nid);
440 if (err < 0)
441 return err;
442 added = true;
443 }
444}
445EXPORT_SYMBOL_HDA(snd_hda_get_conn_list);
446
447/**
Takashi Iwaidce20792011-06-24 14:10:28 +0200448 * snd_hda_get_connections - copy connection list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 * @codec: the HDA codec
450 * @nid: NID to parse
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200451 * @conn_list: connection list array; when NULL, checks only the size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 * @max_conns: max. number of connections to store
453 *
454 * Parses the connection list of the given widget and stores the list
455 * of NIDs.
456 *
457 * Returns the number of connections, or a negative error code.
458 */
459int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200460 hda_nid_t *conn_list, int max_conns)
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200461{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100462 const hda_nid_t *list;
463 int len = snd_hda_get_conn_list(codec, nid, &list);
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200464
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100465 if (len > 0 && conn_list) {
466 if (len > max_conns) {
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200467 snd_printk(KERN_ERR "hda_codec: "
468 "Too many connections %d for NID 0x%x\n",
469 len, nid);
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200470 return -EINVAL;
471 }
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100472 memcpy(conn_list, list, len * sizeof(hda_nid_t));
Takashi Iwaidce20792011-06-24 14:10:28 +0200473 }
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200474
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100475 return len;
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200476}
477EXPORT_SYMBOL_HDA(snd_hda_get_connections);
478
Takashi Iwai4eea3092013-02-07 18:18:19 +0100479/* return CONNLIST_LEN parameter of the given widget */
480static unsigned int get_num_conns(struct hda_codec *codec, hda_nid_t nid)
481{
482 unsigned int wcaps = get_wcaps(codec, nid);
483 unsigned int parm;
484
485 if (!(wcaps & AC_WCAP_CONN_LIST) &&
486 get_wcaps_type(wcaps) != AC_WID_VOL_KNB)
487 return 0;
488
489 parm = snd_hda_param_read(codec, nid, AC_PAR_CONNLIST_LEN);
490 if (parm == -1)
491 parm = 0;
492 return parm;
493}
494
495int snd_hda_get_num_raw_conns(struct hda_codec *codec, hda_nid_t nid)
496{
497 return get_num_conns(codec, nid) & AC_CLIST_LENGTH;
498}
499
Takashi Iwai9e7717c2011-07-11 15:42:52 +0200500/**
501 * snd_hda_get_raw_connections - copy connection list without cache
502 * @codec: the HDA codec
503 * @nid: NID to parse
504 * @conn_list: connection list array
505 * @max_conns: max. number of connections to store
506 *
507 * Like snd_hda_get_connections(), copy the connection list but without
508 * checking through the connection-list cache.
509 * Currently called only from hda_proc.c, so not exported.
510 */
511int snd_hda_get_raw_connections(struct hda_codec *codec, hda_nid_t nid,
512 hda_nid_t *conn_list, int max_conns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
514 unsigned int parm;
Takashi Iwai54d17402005-11-21 16:33:22 +0100515 int i, conn_len, conns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 unsigned int shift, num_elems, mask;
Takashi Iwai54d17402005-11-21 16:33:22 +0100517 hda_nid_t prev_nid;
Takashi Iwai5fdaecd2012-12-20 10:45:55 +0100518 int null_count = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Takashi Iwaida3cec32008-08-08 17:12:14 +0200520 if (snd_BUG_ON(!conn_list || max_conns <= 0))
521 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Takashi Iwai4eea3092013-02-07 18:18:19 +0100523 parm = get_num_conns(codec, nid);
524 if (!parm)
Takashi Iwai8d087c72011-06-28 12:45:47 +0200525 return 0;
Jaroslav Kysela16a433d2009-07-22 16:20:40 +0200526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (parm & AC_CLIST_LONG) {
528 /* long form */
529 shift = 16;
530 num_elems = 2;
531 } else {
532 /* short form */
533 shift = 8;
534 num_elems = 4;
535 }
536 conn_len = parm & AC_CLIST_LENGTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 mask = (1 << (shift-1)) - 1;
538
Takashi Iwai0ba21762007-04-16 11:29:14 +0200539 if (!conn_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return 0; /* no connection */
541
542 if (conn_len == 1) {
543 /* single connection */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200544 parm = snd_hda_codec_read(codec, nid, 0,
545 AC_VERB_GET_CONNECT_LIST, 0);
Takashi Iwai3c6aae42009-07-10 12:52:27 +0200546 if (parm == -1 && codec->bus->rirb_error)
547 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 conn_list[0] = parm & mask;
549 return 1;
550 }
551
552 /* multi connection */
553 conns = 0;
Takashi Iwai54d17402005-11-21 16:33:22 +0100554 prev_nid = 0;
555 for (i = 0; i < conn_len; i++) {
556 int range_val;
557 hda_nid_t val, n;
558
Takashi Iwai3c6aae42009-07-10 12:52:27 +0200559 if (i % num_elems == 0) {
Takashi Iwai54d17402005-11-21 16:33:22 +0100560 parm = snd_hda_codec_read(codec, nid, 0,
561 AC_VERB_GET_CONNECT_LIST, i);
Takashi Iwai3c6aae42009-07-10 12:52:27 +0200562 if (parm == -1 && codec->bus->rirb_error)
563 return -EIO;
564 }
Takashi Iwai0ba21762007-04-16 11:29:14 +0200565 range_val = !!(parm & (1 << (shift-1))); /* ranges */
Takashi Iwai54d17402005-11-21 16:33:22 +0100566 val = parm & mask;
Takashi Iwai5fdaecd2012-12-20 10:45:55 +0100567 if (val == 0 && null_count++) { /* no second chance */
Jaroslav Kysela2e9bf242009-07-18 11:48:19 +0200568 snd_printk(KERN_WARNING "hda_codec: "
569 "invalid CONNECT_LIST verb %x[%i]:%x\n",
570 nid, i, parm);
571 return 0;
572 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100573 parm >>= shift;
574 if (range_val) {
575 /* ranges between the previous and this one */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200576 if (!prev_nid || prev_nid >= val) {
577 snd_printk(KERN_WARNING "hda_codec: "
578 "invalid dep_range_val %x:%x\n",
579 prev_nid, val);
Takashi Iwai54d17402005-11-21 16:33:22 +0100580 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100582 for (n = prev_nid + 1; n <= val; n++) {
Takashi Iwai4eea3092013-02-07 18:18:19 +0100583 if (conns >= max_conns)
584 return -ENOSPC;
Takashi Iwai54d17402005-11-21 16:33:22 +0100585 conn_list[conns++] = n;
586 }
587 } else {
Takashi Iwai4eea3092013-02-07 18:18:19 +0100588 if (conns >= max_conns)
589 return -ENOSPC;
Takashi Iwai54d17402005-11-21 16:33:22 +0100590 conn_list[conns++] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100592 prev_nid = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
594 return conns;
595}
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597/**
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200598 * snd_hda_override_conn_list - add/modify the connection-list to cache
599 * @codec: the HDA codec
600 * @nid: NID to parse
601 * @len: number of connection list entries
602 * @list: the list of connection entries
603 *
604 * Add or modify the given connection-list to the cache. If the corresponding
605 * cache already exists, invalidate it and append a new one.
606 *
607 * Returns zero or a negative error code.
608 */
609int snd_hda_override_conn_list(struct hda_codec *codec, hda_nid_t nid, int len,
610 const hda_nid_t *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100612 struct hda_conn_list *p;
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200613
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100614 p = lookup_conn_list(codec, nid);
615 if (p) {
616 list_del(&p->list);
617 kfree(p);
618 }
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200619
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100620 return add_conn_list(codec, nid, len, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200622EXPORT_SYMBOL_HDA(snd_hda_override_conn_list);
623
624/**
Takashi Iwai8d087c72011-06-28 12:45:47 +0200625 * snd_hda_get_conn_index - get the connection index of the given NID
626 * @codec: the HDA codec
627 * @mux: NID containing the list
628 * @nid: NID to select
629 * @recursive: 1 when searching NID recursively, otherwise 0
630 *
631 * Parses the connection list of the widget @mux and checks whether the
632 * widget @nid is present. If it is, return the connection index.
633 * Otherwise it returns -1.
634 */
635int snd_hda_get_conn_index(struct hda_codec *codec, hda_nid_t mux,
636 hda_nid_t nid, int recursive)
637{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100638 const hda_nid_t *conn;
Takashi Iwai8d087c72011-06-28 12:45:47 +0200639 int i, nums;
640
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100641 nums = snd_hda_get_conn_list(codec, mux, &conn);
Takashi Iwai8d087c72011-06-28 12:45:47 +0200642 for (i = 0; i < nums; i++)
643 if (conn[i] == nid)
644 return i;
645 if (!recursive)
646 return -1;
Takashi Iwaid94ddd82012-12-20 14:42:42 +0100647 if (recursive > 10) {
Takashi Iwai8d087c72011-06-28 12:45:47 +0200648 snd_printd("hda_codec: too deep connection for 0x%x\n", nid);
649 return -1;
650 }
651 recursive++;
Takashi Iwai99e14c92011-09-13 10:33:16 +0200652 for (i = 0; i < nums; i++) {
653 unsigned int type = get_wcaps_type(get_wcaps(codec, conn[i]));
654 if (type == AC_WID_PIN || type == AC_WID_AUD_OUT)
655 continue;
Takashi Iwai8d087c72011-06-28 12:45:47 +0200656 if (snd_hda_get_conn_index(codec, conn[i], nid, recursive) >= 0)
657 return i;
Takashi Iwai99e14c92011-09-13 10:33:16 +0200658 }
Takashi Iwai8d087c72011-06-28 12:45:47 +0200659 return -1;
660}
661EXPORT_SYMBOL_HDA(snd_hda_get_conn_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663/**
664 * snd_hda_queue_unsol_event - add an unsolicited event to queue
665 * @bus: the BUS
666 * @res: unsolicited event (lower 32bit of RIRB entry)
667 * @res_ex: codec addr and flags (upper 32bit or RIRB entry)
668 *
669 * Adds the given event to the queue. The events are processed in
670 * the workqueue asynchronously. Call this function in the interrupt
671 * hanlder when RIRB receives an unsolicited event.
672 *
673 * Returns 0 if successful, or a negative error code.
674 */
675int snd_hda_queue_unsol_event(struct hda_bus *bus, u32 res, u32 res_ex)
676{
677 struct hda_bus_unsolicited *unsol;
678 unsigned int wp;
679
Takashi Iwaiecf726f2011-08-09 14:22:44 +0200680 trace_hda_unsol_event(bus, res, res_ex);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200681 unsol = bus->unsol;
682 if (!unsol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return 0;
684
685 wp = (unsol->wp + 1) % HDA_UNSOL_QUEUE_SIZE;
686 unsol->wp = wp;
687
688 wp <<= 1;
689 unsol->queue[wp] = res;
690 unsol->queue[wp + 1] = res_ex;
691
Takashi Iwai6acaed32009-01-12 10:09:24 +0100692 queue_work(bus->workq, &unsol->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 return 0;
695}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100696EXPORT_SYMBOL_HDA(snd_hda_queue_unsol_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698/*
Wu Fengguang5c1d1a92008-10-07 14:17:53 +0800699 * process queued unsolicited events
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 */
David Howellsc4028952006-11-22 14:57:56 +0000701static void process_unsol_events(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
David Howellsc4028952006-11-22 14:57:56 +0000703 struct hda_bus_unsolicited *unsol =
704 container_of(work, struct hda_bus_unsolicited, work);
705 struct hda_bus *bus = unsol->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 struct hda_codec *codec;
707 unsigned int rp, caddr, res;
708
709 while (unsol->rp != unsol->wp) {
710 rp = (unsol->rp + 1) % HDA_UNSOL_QUEUE_SIZE;
711 unsol->rp = rp;
712 rp <<= 1;
713 res = unsol->queue[rp];
714 caddr = unsol->queue[rp + 1];
Takashi Iwai0ba21762007-04-16 11:29:14 +0200715 if (!(caddr & (1 << 4))) /* no unsolicited event? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 continue;
717 codec = bus->caddr_tbl[caddr & 0x0f];
718 if (codec && codec->patch_ops.unsol_event)
719 codec->patch_ops.unsol_event(codec, res);
720 }
721}
722
723/*
724 * initialize unsolicited queue
725 */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200726static int init_unsol_queue(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727{
728 struct hda_bus_unsolicited *unsol;
729
Takashi Iwai9f146bb2005-11-17 11:07:49 +0100730 if (bus->unsol) /* already initialized */
731 return 0;
732
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200733 unsol = kzalloc(sizeof(*unsol), GFP_KERNEL);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200734 if (!unsol) {
735 snd_printk(KERN_ERR "hda_codec: "
736 "can't allocate unsolicited queue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return -ENOMEM;
738 }
David Howellsc4028952006-11-22 14:57:56 +0000739 INIT_WORK(&unsol->work, process_unsol_events);
740 unsol->bus = bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 bus->unsol = unsol;
742 return 0;
743}
744
745/*
746 * destructor
747 */
748static void snd_hda_codec_free(struct hda_codec *codec);
749
750static int snd_hda_bus_free(struct hda_bus *bus)
751{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200752 struct hda_codec *codec, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Takashi Iwai0ba21762007-04-16 11:29:14 +0200754 if (!bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 return 0;
Takashi Iwai6acaed32009-01-12 10:09:24 +0100756 if (bus->workq)
757 flush_workqueue(bus->workq);
758 if (bus->unsol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 kfree(bus->unsol);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200760 list_for_each_entry_safe(codec, n, &bus->codec_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 snd_hda_codec_free(codec);
762 }
763 if (bus->ops.private_free)
764 bus->ops.private_free(bus);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100765 if (bus->workq)
766 destroy_workqueue(bus->workq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 kfree(bus);
768 return 0;
769}
770
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100771static int snd_hda_bus_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
773 struct hda_bus *bus = device->device_data;
Takashi Iwaib94d35392008-11-21 09:08:06 +0100774 bus->shutdown = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return snd_hda_bus_free(bus);
776}
777
Takashi Iwaid7ffba12008-07-30 15:01:46 +0200778#ifdef CONFIG_SND_HDA_HWDEP
779static int snd_hda_bus_dev_register(struct snd_device *device)
780{
781 struct hda_bus *bus = device->device_data;
782 struct hda_codec *codec;
783 list_for_each_entry(codec, &bus->codec_list, list) {
784 snd_hda_hwdep_add_sysfs(codec);
Takashi Iwaia2f63092009-11-11 09:34:25 +0100785 snd_hda_hwdep_add_power_sysfs(codec);
Takashi Iwaid7ffba12008-07-30 15:01:46 +0200786 }
787 return 0;
788}
789#else
790#define snd_hda_bus_dev_register NULL
791#endif
792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793/**
794 * snd_hda_bus_new - create a HDA bus
795 * @card: the card entry
796 * @temp: the template for hda_bus information
797 * @busp: the pointer to store the created bus instance
798 *
799 * Returns 0 if successful, or a negative error code.
800 */
Takashi Iwai6a0f56a2012-12-07 07:41:56 +0100801int snd_hda_bus_new(struct snd_card *card,
Takashi Iwai756e2b02007-04-16 11:27:07 +0200802 const struct hda_bus_template *temp,
803 struct hda_bus **busp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
805 struct hda_bus *bus;
806 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100807 static struct snd_device_ops dev_ops = {
Takashi Iwaid7ffba12008-07-30 15:01:46 +0200808 .dev_register = snd_hda_bus_dev_register,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 .dev_free = snd_hda_bus_dev_free,
810 };
811
Takashi Iwaida3cec32008-08-08 17:12:14 +0200812 if (snd_BUG_ON(!temp))
813 return -EINVAL;
814 if (snd_BUG_ON(!temp->ops.command || !temp->ops.get_response))
815 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 if (busp)
818 *busp = NULL;
819
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200820 bus = kzalloc(sizeof(*bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 if (bus == NULL) {
822 snd_printk(KERN_ERR "can't allocate struct hda_bus\n");
823 return -ENOMEM;
824 }
825
826 bus->card = card;
827 bus->private_data = temp->private_data;
828 bus->pci = temp->pci;
829 bus->modelname = temp->modelname;
Takashi Iwaifee2fba2008-11-27 12:43:28 +0100830 bus->power_save = temp->power_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 bus->ops = temp->ops;
832
Ingo Molnar62932df2006-01-16 16:34:20 +0100833 mutex_init(&bus->cmd_mutex);
Takashi Iwai3f50ac62010-08-20 09:44:36 +0200834 mutex_init(&bus->prepare_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 INIT_LIST_HEAD(&bus->codec_list);
836
Takashi Iwaie8c0ee52009-02-05 07:34:28 +0100837 snprintf(bus->workq_name, sizeof(bus->workq_name),
838 "hd-audio%d", card->number);
839 bus->workq = create_singlethread_workqueue(bus->workq_name);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100840 if (!bus->workq) {
Takashi Iwaie8c0ee52009-02-05 07:34:28 +0100841 snd_printk(KERN_ERR "cannot create workqueue %s\n",
842 bus->workq_name);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100843 kfree(bus);
844 return -ENOMEM;
845 }
846
Takashi Iwai0ba21762007-04-16 11:29:14 +0200847 err = snd_device_new(card, SNDRV_DEV_BUS, bus, &dev_ops);
848 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 snd_hda_bus_free(bus);
850 return err;
851 }
852 if (busp)
853 *busp = bus;
854 return 0;
855}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100856EXPORT_SYMBOL_HDA(snd_hda_bus_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Takashi Iwai82467612007-07-27 19:15:54 +0200858#ifdef CONFIG_SND_HDA_GENERIC
859#define is_generic_config(codec) \
Takashi Iwaif44ac832008-07-30 15:01:45 +0200860 (codec->modelname && !strcmp(codec->modelname, "generic"))
Takashi Iwai82467612007-07-27 19:15:54 +0200861#else
862#define is_generic_config(codec) 0
863#endif
864
Takashi Iwai645f10c2008-11-28 15:07:37 +0100865#ifdef MODULE
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100866#define HDA_MODREQ_MAX_COUNT 2 /* two request_modules()'s */
867#else
Takashi Iwai645f10c2008-11-28 15:07:37 +0100868#define HDA_MODREQ_MAX_COUNT 0 /* all presets are statically linked */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100869#endif
870
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871/*
872 * find a matching codec preset
873 */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200874static const struct hda_codec_preset *
Takashi Iwai756e2b02007-04-16 11:27:07 +0200875find_codec_preset(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100877 struct hda_codec_preset_list *tbl;
878 const struct hda_codec_preset *preset;
Takashi Iwai5d908ab2012-08-24 18:40:10 +0200879 unsigned int mod_requested = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Takashi Iwai82467612007-07-27 19:15:54 +0200881 if (is_generic_config(codec))
Takashi Iwaid5ad6302007-03-07 15:55:59 +0100882 return NULL; /* use the generic parser */
883
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100884 again:
885 mutex_lock(&preset_mutex);
886 list_for_each_entry(tbl, &hda_preset_tables, list) {
887 if (!try_module_get(tbl->owner)) {
888 snd_printk(KERN_ERR "hda_codec: cannot module_get\n");
889 continue;
890 }
891 for (preset = tbl->preset; preset->id; preset++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 u32 mask = preset->mask;
Marc Boucherca7cfae2008-01-22 15:32:25 +0100893 if (preset->afg && preset->afg != codec->afg)
894 continue;
895 if (preset->mfg && preset->mfg != codec->mfg)
896 continue;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200897 if (!mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 mask = ~0;
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200899 if (preset->id == (codec->vendor_id & mask) &&
Takashi Iwai0ba21762007-04-16 11:29:14 +0200900 (!preset->rev ||
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100901 preset->rev == codec->revision_id)) {
902 mutex_unlock(&preset_mutex);
903 codec->owner = tbl->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 return preset;
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100905 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 }
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100907 module_put(tbl->owner);
908 }
909 mutex_unlock(&preset_mutex);
910
911 if (mod_requested < HDA_MODREQ_MAX_COUNT) {
912 char name[32];
913 if (!mod_requested)
914 snprintf(name, sizeof(name), "snd-hda-codec-id:%08x",
915 codec->vendor_id);
916 else
917 snprintf(name, sizeof(name), "snd-hda-codec-id:%04x*",
918 (codec->vendor_id >> 16) & 0xffff);
919 request_module(name);
920 mod_requested++;
921 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 }
923 return NULL;
924}
925
926/*
Takashi Iwaif44ac832008-07-30 15:01:45 +0200927 * get_codec_name - store the codec name
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 */
Takashi Iwaif44ac832008-07-30 15:01:45 +0200929static int get_codec_name(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
931 const struct hda_vendor_id *c;
932 const char *vendor = NULL;
933 u16 vendor_id = codec->vendor_id >> 16;
Takashi Iwai812a2cc2009-05-16 10:00:49 +0200934 char tmp[16];
935
936 if (codec->vendor_name)
937 goto get_chip_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 for (c = hda_vendor_ids; c->id; c++) {
940 if (c->id == vendor_id) {
941 vendor = c->name;
942 break;
943 }
944 }
Takashi Iwai0ba21762007-04-16 11:29:14 +0200945 if (!vendor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 sprintf(tmp, "Generic %04x", vendor_id);
947 vendor = tmp;
948 }
Takashi Iwai812a2cc2009-05-16 10:00:49 +0200949 codec->vendor_name = kstrdup(vendor, GFP_KERNEL);
950 if (!codec->vendor_name)
951 return -ENOMEM;
952
953 get_chip_name:
954 if (codec->chip_name)
955 return 0;
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (codec->preset && codec->preset->name)
Takashi Iwai812a2cc2009-05-16 10:00:49 +0200958 codec->chip_name = kstrdup(codec->preset->name, GFP_KERNEL);
959 else {
960 sprintf(tmp, "ID %x", codec->vendor_id & 0xffff);
961 codec->chip_name = kstrdup(tmp, GFP_KERNEL);
962 }
963 if (!codec->chip_name)
Takashi Iwaif44ac832008-07-30 15:01:45 +0200964 return -ENOMEM;
965 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966}
967
968/*
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200969 * look for an AFG and MFG nodes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 */
Takashi Iwai6a0f56a2012-12-07 07:41:56 +0100971static void setup_fg_nodes(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Takashi Iwai93e82ae2009-04-17 18:04:41 +0200973 int i, total_nodes, function_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 hda_nid_t nid;
975
976 total_nodes = snd_hda_get_sub_nodes(codec, AC_NODE_ROOT, &nid);
977 for (i = 0; i < total_nodes; i++, nid++) {
Takashi Iwai93e82ae2009-04-17 18:04:41 +0200978 function_id = snd_hda_param_read(codec, nid,
Jaroslav Kysela79c944a2010-07-19 15:52:39 +0200979 AC_PAR_FUNCTION_TYPE);
Jaroslav Kyselacd7643b2010-07-20 12:11:25 +0200980 switch (function_id & 0xff) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200981 case AC_GRP_AUDIO_FUNCTION:
982 codec->afg = nid;
Jaroslav Kysela79c944a2010-07-19 15:52:39 +0200983 codec->afg_function_id = function_id & 0xff;
984 codec->afg_unsol = (function_id >> 8) & 1;
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200985 break;
986 case AC_GRP_MODEM_FUNCTION:
987 codec->mfg = nid;
Jaroslav Kysela79c944a2010-07-19 15:52:39 +0200988 codec->mfg_function_id = function_id & 0xff;
989 codec->mfg_unsol = (function_id >> 8) & 1;
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200990 break;
991 default:
992 break;
993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
996
997/*
Takashi Iwai54d17402005-11-21 16:33:22 +0100998 * read widget caps for each widget and store in cache
999 */
1000static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node)
1001{
1002 int i;
1003 hda_nid_t nid;
1004
1005 codec->num_nodes = snd_hda_get_sub_nodes(codec, fg_node,
1006 &codec->start_nid);
1007 codec->wcaps = kmalloc(codec->num_nodes * 4, GFP_KERNEL);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001008 if (!codec->wcaps)
Takashi Iwai54d17402005-11-21 16:33:22 +01001009 return -ENOMEM;
1010 nid = codec->start_nid;
1011 for (i = 0; i < codec->num_nodes; i++, nid++)
1012 codec->wcaps[i] = snd_hda_param_read(codec, nid,
1013 AC_PAR_AUDIO_WIDGET_CAP);
1014 return 0;
1015}
1016
Takashi Iwai3be14142009-02-20 14:11:16 +01001017/* read all pin default configurations and save codec->init_pins */
1018static int read_pin_defaults(struct hda_codec *codec)
1019{
1020 int i;
1021 hda_nid_t nid = codec->start_nid;
1022
1023 for (i = 0; i < codec->num_nodes; i++, nid++) {
1024 struct hda_pincfg *pin;
1025 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwaia22d5432009-07-27 12:54:26 +02001026 unsigned int wid_type = get_wcaps_type(wcaps);
Takashi Iwai3be14142009-02-20 14:11:16 +01001027 if (wid_type != AC_WID_PIN)
1028 continue;
1029 pin = snd_array_new(&codec->init_pins);
1030 if (!pin)
1031 return -ENOMEM;
1032 pin->nid = nid;
1033 pin->cfg = snd_hda_codec_read(codec, nid, 0,
1034 AC_VERB_GET_CONFIG_DEFAULT, 0);
Takashi Iwaiac0547d2010-07-05 16:50:13 +02001035 pin->ctrl = snd_hda_codec_read(codec, nid, 0,
1036 AC_VERB_GET_PIN_WIDGET_CONTROL,
1037 0);
Takashi Iwai3be14142009-02-20 14:11:16 +01001038 }
1039 return 0;
1040}
1041
1042/* look up the given pin config list and return the item matching with NID */
1043static struct hda_pincfg *look_up_pincfg(struct hda_codec *codec,
1044 struct snd_array *array,
1045 hda_nid_t nid)
1046{
1047 int i;
1048 for (i = 0; i < array->used; i++) {
1049 struct hda_pincfg *pin = snd_array_elem(array, i);
1050 if (pin->nid == nid)
1051 return pin;
1052 }
1053 return NULL;
1054}
1055
Takashi Iwai3be14142009-02-20 14:11:16 +01001056/* set the current pin config value for the given NID.
1057 * the value is cached, and read via snd_hda_codec_get_pincfg()
1058 */
1059int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list,
1060 hda_nid_t nid, unsigned int cfg)
1061{
1062 struct hda_pincfg *pin;
1063
Takashi Iwaib82855a2009-12-27 11:24:56 +01001064 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
1065 return -EINVAL;
1066
Takashi Iwai3be14142009-02-20 14:11:16 +01001067 pin = look_up_pincfg(codec, list, nid);
1068 if (!pin) {
1069 pin = snd_array_new(list);
1070 if (!pin)
1071 return -ENOMEM;
1072 pin->nid = nid;
1073 }
1074 pin->cfg = cfg;
Takashi Iwai3be14142009-02-20 14:11:16 +01001075 return 0;
1076}
1077
Takashi Iwaid5191e52009-11-16 14:58:17 +01001078/**
1079 * snd_hda_codec_set_pincfg - Override a pin default configuration
1080 * @codec: the HDA codec
1081 * @nid: NID to set the pin config
1082 * @cfg: the pin default config value
1083 *
1084 * Override a pin default configuration value in the cache.
1085 * This value can be read by snd_hda_codec_get_pincfg() in a higher
1086 * priority than the real hardware value.
1087 */
Takashi Iwai3be14142009-02-20 14:11:16 +01001088int snd_hda_codec_set_pincfg(struct hda_codec *codec,
1089 hda_nid_t nid, unsigned int cfg)
1090{
Takashi Iwai346ff702009-02-23 09:42:57 +01001091 return snd_hda_add_pincfg(codec, &codec->driver_pins, nid, cfg);
Takashi Iwai3be14142009-02-20 14:11:16 +01001092}
1093EXPORT_SYMBOL_HDA(snd_hda_codec_set_pincfg);
1094
Takashi Iwaid5191e52009-11-16 14:58:17 +01001095/**
1096 * snd_hda_codec_get_pincfg - Obtain a pin-default configuration
1097 * @codec: the HDA codec
1098 * @nid: NID to get the pin config
1099 *
1100 * Get the current pin config value of the given pin NID.
1101 * If the pincfg value is cached or overridden via sysfs or driver,
1102 * returns the cached value.
1103 */
Takashi Iwai3be14142009-02-20 14:11:16 +01001104unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid)
1105{
1106 struct hda_pincfg *pin;
1107
Takashi Iwai3be14142009-02-20 14:11:16 +01001108#ifdef CONFIG_SND_HDA_HWDEP
Takashi Iwai09b70e82013-01-10 18:21:56 +01001109 {
1110 unsigned int cfg = 0;
1111 mutex_lock(&codec->user_mutex);
1112 pin = look_up_pincfg(codec, &codec->user_pins, nid);
1113 if (pin)
1114 cfg = pin->cfg;
1115 mutex_unlock(&codec->user_mutex);
1116 if (cfg)
1117 return cfg;
1118 }
Takashi Iwai3be14142009-02-20 14:11:16 +01001119#endif
Takashi Iwai5e7b8e02009-02-23 09:45:59 +01001120 pin = look_up_pincfg(codec, &codec->driver_pins, nid);
1121 if (pin)
1122 return pin->cfg;
Takashi Iwai3be14142009-02-20 14:11:16 +01001123 pin = look_up_pincfg(codec, &codec->init_pins, nid);
1124 if (pin)
1125 return pin->cfg;
1126 return 0;
1127}
1128EXPORT_SYMBOL_HDA(snd_hda_codec_get_pincfg);
1129
Takashi Iwaid7fdc002013-01-10 08:38:04 +01001130/* remember the current pinctl target value */
1131int snd_hda_codec_set_pin_target(struct hda_codec *codec, hda_nid_t nid,
1132 unsigned int val)
1133{
1134 struct hda_pincfg *pin;
1135
1136 pin = look_up_pincfg(codec, &codec->init_pins, nid);
1137 if (!pin)
1138 return -EINVAL;
1139 pin->target = val;
1140 return 0;
1141}
1142EXPORT_SYMBOL_HDA(snd_hda_codec_set_pin_target);
1143
1144/* return the current pinctl target value */
1145int snd_hda_codec_get_pin_target(struct hda_codec *codec, hda_nid_t nid)
1146{
1147 struct hda_pincfg *pin;
1148
1149 pin = look_up_pincfg(codec, &codec->init_pins, nid);
1150 if (!pin)
1151 return 0;
1152 return pin->target;
1153}
1154EXPORT_SYMBOL_HDA(snd_hda_codec_get_pin_target);
1155
Takashi Iwai92ee6162009-12-27 11:18:59 +01001156/**
1157 * snd_hda_shutup_pins - Shut up all pins
1158 * @codec: the HDA codec
1159 *
1160 * Clear all pin controls to shup up before suspend for avoiding click noise.
1161 * The controls aren't cached so that they can be resumed properly.
1162 */
1163void snd_hda_shutup_pins(struct hda_codec *codec)
1164{
1165 int i;
Takashi Iwaiac0547d2010-07-05 16:50:13 +02001166 /* don't shut up pins when unloading the driver; otherwise it breaks
1167 * the default pin setup at the next load of the driver
1168 */
1169 if (codec->bus->shutdown)
1170 return;
Takashi Iwai92ee6162009-12-27 11:18:59 +01001171 for (i = 0; i < codec->init_pins.used; i++) {
1172 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
1173 /* use read here for syncing after issuing each verb */
1174 snd_hda_codec_read(codec, pin->nid, 0,
1175 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
1176 }
Takashi Iwaiac0547d2010-07-05 16:50:13 +02001177 codec->pins_shutup = 1;
Takashi Iwai92ee6162009-12-27 11:18:59 +01001178}
1179EXPORT_SYMBOL_HDA(snd_hda_shutup_pins);
1180
Takashi Iwai2a439522011-07-26 09:52:50 +02001181#ifdef CONFIG_PM
Takashi Iwaiac0547d2010-07-05 16:50:13 +02001182/* Restore the pin controls cleared previously via snd_hda_shutup_pins() */
1183static void restore_shutup_pins(struct hda_codec *codec)
1184{
1185 int i;
1186 if (!codec->pins_shutup)
1187 return;
1188 if (codec->bus->shutdown)
1189 return;
1190 for (i = 0; i < codec->init_pins.used; i++) {
1191 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
1192 snd_hda_codec_write(codec, pin->nid, 0,
1193 AC_VERB_SET_PIN_WIDGET_CONTROL,
1194 pin->ctrl);
1195 }
1196 codec->pins_shutup = 0;
1197}
Mike Waychison1c7276c2011-04-20 12:04:36 -07001198#endif
Takashi Iwaiac0547d2010-07-05 16:50:13 +02001199
David Henningsson26a6cb62012-10-09 15:04:21 +02001200static void hda_jackpoll_work(struct work_struct *work)
1201{
1202 struct hda_codec *codec =
1203 container_of(work, struct hda_codec, jackpoll_work.work);
1204 if (!codec->jackpoll_interval)
1205 return;
1206
1207 snd_hda_jack_set_dirty_all(codec);
1208 snd_hda_jack_poll_all(codec);
1209 queue_delayed_work(codec->bus->workq, &codec->jackpoll_work,
1210 codec->jackpoll_interval);
1211}
1212
Takashi Iwai01751f52007-08-10 16:59:39 +02001213static void init_hda_cache(struct hda_cache_rec *cache,
1214 unsigned int record_size);
Takashi Iwai1fcaee62007-08-23 00:01:09 +02001215static void free_hda_cache(struct hda_cache_rec *cache);
Takashi Iwai01751f52007-08-10 16:59:39 +02001216
Takashi Iwai3fdf1462012-11-22 08:16:31 +01001217/* release all pincfg lists */
1218static void free_init_pincfgs(struct hda_codec *codec)
Takashi Iwai3be14142009-02-20 14:11:16 +01001219{
Takashi Iwai346ff702009-02-23 09:42:57 +01001220 snd_array_free(&codec->driver_pins);
Takashi Iwai3be14142009-02-20 14:11:16 +01001221#ifdef CONFIG_SND_HDA_HWDEP
Takashi Iwai346ff702009-02-23 09:42:57 +01001222 snd_array_free(&codec->user_pins);
Takashi Iwai3be14142009-02-20 14:11:16 +01001223#endif
Takashi Iwai3be14142009-02-20 14:11:16 +01001224 snd_array_free(&codec->init_pins);
1225}
1226
Takashi Iwai54d17402005-11-21 16:33:22 +01001227/*
Takashi Iwaieb541332010-08-06 13:48:11 +02001228 * audio-converter setup caches
1229 */
1230struct hda_cvt_setup {
1231 hda_nid_t nid;
1232 u8 stream_tag;
1233 u8 channel_id;
1234 u16 format_id;
1235 unsigned char active; /* cvt is currently used */
1236 unsigned char dirty; /* setups should be cleared */
1237};
1238
1239/* get or create a cache entry for the given audio converter NID */
1240static struct hda_cvt_setup *
1241get_hda_cvt_setup(struct hda_codec *codec, hda_nid_t nid)
1242{
1243 struct hda_cvt_setup *p;
1244 int i;
1245
1246 for (i = 0; i < codec->cvt_setups.used; i++) {
1247 p = snd_array_elem(&codec->cvt_setups, i);
1248 if (p->nid == nid)
1249 return p;
1250 }
1251 p = snd_array_new(&codec->cvt_setups);
1252 if (p)
1253 p->nid = nid;
1254 return p;
1255}
1256
1257/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 * codec destructor
1259 */
1260static void snd_hda_codec_free(struct hda_codec *codec)
1261{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001262 if (!codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 return;
David Henningsson26a6cb62012-10-09 15:04:21 +02001264 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwai59cad162012-06-26 15:00:20 +02001265 snd_hda_jack_tbl_clear(codec);
Takashi Iwai3fdf1462012-11-22 08:16:31 +01001266 free_init_pincfgs(codec);
Takashi Iwai83012a72012-08-24 18:38:08 +02001267#ifdef CONFIG_PM
Takashi Iwaicb53c622007-08-10 17:21:45 +02001268 cancel_delayed_work(&codec->power_work);
Takashi Iwai6acaed32009-01-12 10:09:24 +01001269 flush_workqueue(codec->bus->workq);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001270#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 list_del(&codec->list);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001272 snd_array_free(&codec->mixers);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001273 snd_array_free(&codec->nids);
Takashi Iwai59cad162012-06-26 15:00:20 +02001274 snd_array_free(&codec->cvt_setups);
Stephen Warren7c935972011-06-01 11:14:17 -06001275 snd_array_free(&codec->spdif_out);
Takashi Iwaiee8e7652013-01-03 15:25:11 +01001276 remove_conn_list(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 codec->bus->caddr_tbl[codec->addr] = NULL;
1278 if (codec->patch_ops.free)
1279 codec->patch_ops.free(codec);
Takashi Iwai83012a72012-08-24 18:38:08 +02001280#ifdef CONFIG_PM
Takashi Iwai08fa20a2012-08-31 07:46:56 -07001281 if (!codec->pm_down_notified) /* cancel leftover refcounts */
Takashi Iwai68467f52012-08-28 09:14:29 -07001282 hda_call_pm_notify(codec->bus, false);
1283#endif
Takashi Iwai1289e9e2008-11-27 15:47:11 +01001284 module_put(codec->owner);
Takashi Iwai01751f52007-08-10 16:59:39 +02001285 free_hda_cache(&codec->amp_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001286 free_hda_cache(&codec->cmd_cache);
Takashi Iwai812a2cc2009-05-16 10:00:49 +02001287 kfree(codec->vendor_name);
1288 kfree(codec->chip_name);
Takashi Iwaif44ac832008-07-30 15:01:45 +02001289 kfree(codec->modelname);
Takashi Iwai54d17402005-11-21 16:33:22 +01001290 kfree(codec->wcaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 kfree(codec);
1292}
1293
Mengdong Linb8dfc4622012-08-23 17:32:30 +08001294static bool snd_hda_codec_get_supported_ps(struct hda_codec *codec,
1295 hda_nid_t fg, unsigned int power_state);
1296
Takashi Iwaid8193872012-08-31 07:54:38 -07001297static unsigned int hda_set_power_state(struct hda_codec *codec,
Takashi Iwaibb6ac722009-03-13 09:02:42 +01001298 unsigned int power_state);
Takashi Iwai9419ab62013-01-24 17:23:35 +01001299static unsigned int default_power_filter(struct hda_codec *codec, hda_nid_t nid,
1300 unsigned int power_state);
Takashi Iwaibb6ac722009-03-13 09:02:42 +01001301
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302/**
1303 * snd_hda_codec_new - create a HDA codec
1304 * @bus: the bus to assign
1305 * @codec_addr: the codec address
1306 * @codecp: the pointer to store the generated codec
1307 *
1308 * Returns 0 if successful, or a negative error code.
1309 */
Takashi Iwai6a0f56a2012-12-07 07:41:56 +01001310int snd_hda_codec_new(struct hda_bus *bus,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01001311 unsigned int codec_addr,
1312 struct hda_codec **codecp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313{
1314 struct hda_codec *codec;
Jaroslav Kyselaba443682008-08-13 20:55:32 +02001315 char component[31];
Takashi Iwaid8193872012-08-31 07:54:38 -07001316 hda_nid_t fg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 int err;
1318
Takashi Iwaida3cec32008-08-08 17:12:14 +02001319 if (snd_BUG_ON(!bus))
1320 return -EINVAL;
1321 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
1322 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
1324 if (bus->caddr_tbl[codec_addr]) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001325 snd_printk(KERN_ERR "hda_codec: "
1326 "address 0x%x is already occupied\n", codec_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 return -EBUSY;
1328 }
1329
Takashi Iwaie560d8d2005-09-09 14:21:46 +02001330 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 if (codec == NULL) {
1332 snd_printk(KERN_ERR "can't allocate struct hda_codec\n");
1333 return -ENOMEM;
1334 }
1335
1336 codec->bus = bus;
1337 codec->addr = codec_addr;
Ingo Molnar62932df2006-01-16 16:34:20 +01001338 mutex_init(&codec->spdif_mutex);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001339 mutex_init(&codec->control_mutex);
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001340 mutex_init(&codec->hash_mutex);
Takashi Iwai01751f52007-08-10 16:59:39 +02001341 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001342 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001343 snd_array_init(&codec->mixers, sizeof(struct hda_nid_item), 32);
1344 snd_array_init(&codec->nids, sizeof(struct hda_nid_item), 32);
Takashi Iwai3be14142009-02-20 14:11:16 +01001345 snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwai346ff702009-02-23 09:42:57 +01001346 snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwaieb541332010-08-06 13:48:11 +02001347 snd_array_init(&codec->cvt_setups, sizeof(struct hda_cvt_setup), 8);
Stephen Warren7c935972011-06-01 11:14:17 -06001348 snd_array_init(&codec->spdif_out, sizeof(struct hda_spdif_out), 16);
Takashi Iwai361dab32012-05-09 14:35:27 +02001349 snd_array_init(&codec->jacktbl, sizeof(struct hda_jack_tbl), 16);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +01001350 snd_array_init(&codec->verbs, sizeof(struct hda_verb *), 8);
Takashi Iwaiee8e7652013-01-03 15:25:11 +01001351 INIT_LIST_HEAD(&codec->conn_list);
1352
David Henningsson26a6cb62012-10-09 15:04:21 +02001353 INIT_DELAYED_WORK(&codec->jackpoll_work, hda_jackpoll_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Takashi Iwai83012a72012-08-24 18:38:08 +02001355#ifdef CONFIG_PM
Takashi Iwai5536c6d2012-05-08 17:08:10 +02001356 spin_lock_init(&codec->power_lock);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001357 INIT_DELAYED_WORK(&codec->power_work, hda_power_work);
1358 /* snd_hda_codec_new() marks the codec as power-up, and leave it as is.
1359 * the caller has to power down appropriatley after initialization
1360 * phase.
1361 */
1362 hda_keep_power_on(codec);
Takashi Iwai68467f52012-08-28 09:14:29 -07001363 hda_call_pm_notify(bus, true);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001364#endif
1365
Takashi Iwaic382a9f2012-05-07 15:01:02 +02001366 if (codec->bus->modelname) {
1367 codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL);
1368 if (!codec->modelname) {
1369 snd_hda_codec_free(codec);
1370 return -ENODEV;
1371 }
1372 }
1373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 list_add_tail(&codec->list, &bus->codec_list);
1375 bus->caddr_tbl[codec_addr] = codec;
1376
Takashi Iwai0ba21762007-04-16 11:29:14 +02001377 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
1378 AC_PAR_VENDOR_ID);
Takashi Iwai111d3af2006-02-16 18:17:58 +01001379 if (codec->vendor_id == -1)
1380 /* read again, hopefully the access method was corrected
1381 * in the last read...
1382 */
1383 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
1384 AC_PAR_VENDOR_ID);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001385 codec->subsystem_id = snd_hda_param_read(codec, AC_NODE_ROOT,
1386 AC_PAR_SUBSYSTEM_ID);
1387 codec->revision_id = snd_hda_param_read(codec, AC_NODE_ROOT,
1388 AC_PAR_REV_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Sasha Khapyorsky673b6832005-08-11 11:00:16 +02001390 setup_fg_nodes(codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001391 if (!codec->afg && !codec->mfg) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +02001392 snd_printdd("hda_codec: no AFG or MFG node found\n");
Takashi Iwai3be14142009-02-20 14:11:16 +01001393 err = -ENODEV;
1394 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 }
1396
Takashi Iwaid8193872012-08-31 07:54:38 -07001397 fg = codec->afg ? codec->afg : codec->mfg;
1398 err = read_widget_caps(codec, fg);
Takashi Iwai3be14142009-02-20 14:11:16 +01001399 if (err < 0) {
Takashi Iwai54d17402005-11-21 16:33:22 +01001400 snd_printk(KERN_ERR "hda_codec: cannot malloc\n");
Takashi Iwai3be14142009-02-20 14:11:16 +01001401 goto error;
Takashi Iwai54d17402005-11-21 16:33:22 +01001402 }
Takashi Iwai3be14142009-02-20 14:11:16 +01001403 err = read_pin_defaults(codec);
1404 if (err < 0)
1405 goto error;
Takashi Iwai54d17402005-11-21 16:33:22 +01001406
Takashi Iwai0ba21762007-04-16 11:29:14 +02001407 if (!codec->subsystem_id) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001408 codec->subsystem_id =
Takashi Iwaid8193872012-08-31 07:54:38 -07001409 snd_hda_codec_read(codec, fg, 0,
Takashi Iwai0ba21762007-04-16 11:29:14 +02001410 AC_VERB_GET_SUBSYSTEM_ID, 0);
Takashi Iwai86284e42005-10-11 15:05:54 +02001411 }
1412
Takashi Iwai83012a72012-08-24 18:38:08 +02001413#ifdef CONFIG_PM
Takashi Iwaid8193872012-08-31 07:54:38 -07001414 codec->d3_stop_clk = snd_hda_codec_get_supported_ps(codec, fg,
Mengdong Linb8dfc4622012-08-23 17:32:30 +08001415 AC_PWRST_CLKSTOP);
1416 if (!codec->d3_stop_clk)
1417 bus->power_keep_link_on = 1;
Mengdong Lin5d6147f2012-08-24 12:06:30 +08001418#endif
Takashi Iwaid8193872012-08-31 07:54:38 -07001419 codec->epss = snd_hda_codec_get_supported_ps(codec, fg,
Takashi Iwai983f6b92012-08-28 09:18:01 -07001420 AC_PWRST_EPSS);
Takashi Iwai9419ab62013-01-24 17:23:35 +01001421 codec->power_filter = default_power_filter;
Mengdong Linb8dfc4622012-08-23 17:32:30 +08001422
Takashi Iwaibb6ac722009-03-13 09:02:42 +01001423 /* power-up all before initialization */
Takashi Iwaid8193872012-08-31 07:54:38 -07001424 hda_set_power_state(codec, AC_PWRST_D0);
Takashi Iwaibb6ac722009-03-13 09:02:42 +01001425
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001426 snd_hda_codec_proc_new(codec);
1427
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001428 snd_hda_create_hwdep(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001429
1430 sprintf(component, "HDA:%08x,%08x,%08x", codec->vendor_id,
1431 codec->subsystem_id, codec->revision_id);
1432 snd_component_add(codec->bus->card, component);
1433
1434 if (codecp)
1435 *codecp = codec;
1436 return 0;
Takashi Iwai3be14142009-02-20 14:11:16 +01001437
1438 error:
1439 snd_hda_codec_free(codec);
1440 return err;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001441}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001442EXPORT_SYMBOL_HDA(snd_hda_codec_new);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001443
Mengdong Lina15d05d2013-02-08 17:09:31 -05001444int snd_hda_codec_update_widgets(struct hda_codec *codec)
1445{
1446 hda_nid_t fg;
1447 int err;
1448
1449 /* Assume the function group node does not change,
1450 * only the widget nodes may change.
1451 */
1452 kfree(codec->wcaps);
1453 fg = codec->afg ? codec->afg : codec->mfg;
1454 err = read_widget_caps(codec, fg);
1455 if (err < 0) {
1456 snd_printk(KERN_ERR "hda_codec: cannot malloc\n");
1457 return err;
1458 }
1459
1460 snd_array_free(&codec->init_pins);
1461 err = read_pin_defaults(codec);
1462
1463 return err;
1464}
1465EXPORT_SYMBOL_HDA(snd_hda_codec_update_widgets);
1466
1467
Takashi Iwaid5191e52009-11-16 14:58:17 +01001468/**
1469 * snd_hda_codec_configure - (Re-)configure the HD-audio codec
1470 * @codec: the HDA codec
1471 *
1472 * Start parsing of the given codec tree and (re-)initialize the whole
1473 * patch instance.
1474 *
1475 * Returns 0 if successful or a negative error code.
1476 */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001477int snd_hda_codec_configure(struct hda_codec *codec)
1478{
1479 int err;
1480
Takashi Iwaid5ad6302007-03-07 15:55:59 +01001481 codec->preset = find_codec_preset(codec);
Takashi Iwai812a2cc2009-05-16 10:00:49 +02001482 if (!codec->vendor_name || !codec->chip_name) {
Takashi Iwaif44ac832008-07-30 15:01:45 +02001483 err = get_codec_name(codec);
1484 if (err < 0)
1485 return err;
1486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Takashi Iwai82467612007-07-27 19:15:54 +02001488 if (is_generic_config(codec)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 err = snd_hda_parse_generic_codec(codec);
Takashi Iwai82467612007-07-27 19:15:54 +02001490 goto patched;
1491 }
Takashi Iwai82467612007-07-27 19:15:54 +02001492 if (codec->preset && codec->preset->patch) {
1493 err = codec->preset->patch(codec);
1494 goto patched;
1495 }
1496
1497 /* call the default parser */
Takashi Iwai82467612007-07-27 19:15:54 +02001498 err = snd_hda_parse_generic_codec(codec);
Takashi Iwai35a1e0c2007-10-19 08:13:40 +02001499 if (err < 0)
1500 printk(KERN_ERR "hda-codec: No codec parser is available\n");
Takashi Iwai82467612007-07-27 19:15:54 +02001501
1502 patched:
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001503 if (!err && codec->patch_ops.unsol_event)
1504 err = init_unsol_queue(codec->bus);
Takashi Iwaif62faed2009-12-23 09:27:51 +01001505 /* audio codec should override the mixer name */
1506 if (!err && (codec->afg || !*codec->bus->card->mixername))
1507 snprintf(codec->bus->card->mixername,
1508 sizeof(codec->bus->card->mixername),
1509 "%s %s", codec->vendor_name, codec->chip_name);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001510 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511}
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001512EXPORT_SYMBOL_HDA(snd_hda_codec_configure);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Takashi Iwaied360812012-08-08 17:12:52 +02001514/* update the stream-id if changed */
1515static void update_pcm_stream_id(struct hda_codec *codec,
1516 struct hda_cvt_setup *p, hda_nid_t nid,
1517 u32 stream_tag, int channel_id)
1518{
1519 unsigned int oldval, newval;
1520
1521 if (p->stream_tag != stream_tag || p->channel_id != channel_id) {
1522 oldval = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0);
1523 newval = (stream_tag << 4) | channel_id;
1524 if (oldval != newval)
1525 snd_hda_codec_write(codec, nid, 0,
1526 AC_VERB_SET_CHANNEL_STREAMID,
1527 newval);
1528 p->stream_tag = stream_tag;
1529 p->channel_id = channel_id;
1530 }
1531}
1532
1533/* update the format-id if changed */
1534static void update_pcm_format(struct hda_codec *codec, struct hda_cvt_setup *p,
1535 hda_nid_t nid, int format)
1536{
1537 unsigned int oldval;
1538
1539 if (p->format_id != format) {
1540 oldval = snd_hda_codec_read(codec, nid, 0,
1541 AC_VERB_GET_STREAM_FORMAT, 0);
1542 if (oldval != format) {
1543 msleep(1);
1544 snd_hda_codec_write(codec, nid, 0,
1545 AC_VERB_SET_STREAM_FORMAT,
1546 format);
1547 }
1548 p->format_id = format;
1549 }
1550}
1551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552/**
1553 * snd_hda_codec_setup_stream - set up the codec for streaming
1554 * @codec: the CODEC to set up
1555 * @nid: the NID to set up
1556 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
1557 * @channel_id: channel id to pass, zero based.
1558 * @format: stream format.
1559 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001560void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
1561 u32 stream_tag,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 int channel_id, int format)
1563{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001564 struct hda_codec *c;
Takashi Iwaieb541332010-08-06 13:48:11 +02001565 struct hda_cvt_setup *p;
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001566 int type;
Takashi Iwaieb541332010-08-06 13:48:11 +02001567 int i;
1568
Takashi Iwai0ba21762007-04-16 11:29:14 +02001569 if (!nid)
Takashi Iwaid21b37e2005-04-20 13:45:55 +02001570 return;
1571
Takashi Iwai0ba21762007-04-16 11:29:14 +02001572 snd_printdd("hda_codec_setup_stream: "
1573 "NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 nid, stream_tag, channel_id, format);
Takashi Iwaieb541332010-08-06 13:48:11 +02001575 p = get_hda_cvt_setup(codec, nid);
Takashi Iwaiaffdb622013-01-07 15:36:45 +01001576 if (!p || p->active)
Takashi Iwaieb541332010-08-06 13:48:11 +02001577 return;
Takashi Iwaied360812012-08-08 17:12:52 +02001578
1579 if (codec->pcm_format_first)
1580 update_pcm_format(codec, p, nid, format);
1581 update_pcm_stream_id(codec, p, nid, stream_tag, channel_id);
1582 if (!codec->pcm_format_first)
1583 update_pcm_format(codec, p, nid, format);
1584
Takashi Iwaieb541332010-08-06 13:48:11 +02001585 p->active = 1;
1586 p->dirty = 0;
1587
1588 /* make other inactive cvts with the same stream-tag dirty */
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001589 type = get_wcaps_type(get_wcaps(codec, nid));
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001590 list_for_each_entry(c, &codec->bus->codec_list, list) {
1591 for (i = 0; i < c->cvt_setups.used; i++) {
1592 p = snd_array_elem(&c->cvt_setups, i);
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001593 if (!p->active && p->stream_tag == stream_tag &&
David Henningsson54c2a892012-02-01 12:05:41 +01001594 get_wcaps_type(get_wcaps(c, p->nid)) == type)
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001595 p->dirty = 1;
1596 }
Takashi Iwaieb541332010-08-06 13:48:11 +02001597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001599EXPORT_SYMBOL_HDA(snd_hda_codec_setup_stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Takashi Iwaif0cea792010-08-13 11:56:53 +02001601static void really_cleanup_stream(struct hda_codec *codec,
1602 struct hda_cvt_setup *q);
1603
Takashi Iwaid5191e52009-11-16 14:58:17 +01001604/**
Takashi Iwaif0cea792010-08-13 11:56:53 +02001605 * __snd_hda_codec_cleanup_stream - clean up the codec for closing
Takashi Iwaid5191e52009-11-16 14:58:17 +01001606 * @codec: the CODEC to clean up
1607 * @nid: the NID to clean up
Takashi Iwaif0cea792010-08-13 11:56:53 +02001608 * @do_now: really clean up the stream instead of clearing the active flag
Takashi Iwaid5191e52009-11-16 14:58:17 +01001609 */
Takashi Iwaif0cea792010-08-13 11:56:53 +02001610void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid,
1611 int do_now)
Takashi Iwai888afa12008-03-18 09:57:50 +01001612{
Takashi Iwaieb541332010-08-06 13:48:11 +02001613 struct hda_cvt_setup *p;
1614
Takashi Iwai888afa12008-03-18 09:57:50 +01001615 if (!nid)
1616 return;
1617
Takashi Iwai0e7adbe2010-10-25 10:37:11 +02001618 if (codec->no_sticky_stream)
1619 do_now = 1;
1620
Takashi Iwai888afa12008-03-18 09:57:50 +01001621 snd_printdd("hda_codec_cleanup_stream: NID=0x%x\n", nid);
Takashi Iwaieb541332010-08-06 13:48:11 +02001622 p = get_hda_cvt_setup(codec, nid);
Takashi Iwaiaffdb622013-01-07 15:36:45 +01001623 if (p && p->active) {
Takashi Iwaif0cea792010-08-13 11:56:53 +02001624 /* here we just clear the active flag when do_now isn't set;
1625 * actual clean-ups will be done later in
1626 * purify_inactive_streams() called from snd_hda_codec_prpapre()
1627 */
1628 if (do_now)
1629 really_cleanup_stream(codec, p);
1630 else
1631 p->active = 0;
1632 }
Takashi Iwai888afa12008-03-18 09:57:50 +01001633}
Takashi Iwaif0cea792010-08-13 11:56:53 +02001634EXPORT_SYMBOL_HDA(__snd_hda_codec_cleanup_stream);
Takashi Iwai888afa12008-03-18 09:57:50 +01001635
Takashi Iwaieb541332010-08-06 13:48:11 +02001636static void really_cleanup_stream(struct hda_codec *codec,
1637 struct hda_cvt_setup *q)
1638{
1639 hda_nid_t nid = q->nid;
Takashi Iwai218264a2011-09-27 17:33:45 +02001640 if (q->stream_tag || q->channel_id)
1641 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
1642 if (q->format_id)
1643 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0
1644);
Takashi Iwaieb541332010-08-06 13:48:11 +02001645 memset(q, 0, sizeof(*q));
1646 q->nid = nid;
1647}
1648
1649/* clean up the all conflicting obsolete streams */
1650static void purify_inactive_streams(struct hda_codec *codec)
1651{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001652 struct hda_codec *c;
Takashi Iwaieb541332010-08-06 13:48:11 +02001653 int i;
1654
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001655 list_for_each_entry(c, &codec->bus->codec_list, list) {
1656 for (i = 0; i < c->cvt_setups.used; i++) {
1657 struct hda_cvt_setup *p;
1658 p = snd_array_elem(&c->cvt_setups, i);
1659 if (p->dirty)
1660 really_cleanup_stream(c, p);
1661 }
Takashi Iwaieb541332010-08-06 13:48:11 +02001662 }
1663}
1664
Takashi Iwai2a439522011-07-26 09:52:50 +02001665#ifdef CONFIG_PM
Takashi Iwaieb541332010-08-06 13:48:11 +02001666/* clean up all streams; called from suspend */
1667static void hda_cleanup_all_streams(struct hda_codec *codec)
1668{
1669 int i;
1670
1671 for (i = 0; i < codec->cvt_setups.used; i++) {
1672 struct hda_cvt_setup *p = snd_array_elem(&codec->cvt_setups, i);
1673 if (p->stream_tag)
1674 really_cleanup_stream(codec, p);
1675 }
1676}
Mike Waychison1c7276c2011-04-20 12:04:36 -07001677#endif
Takashi Iwaieb541332010-08-06 13:48:11 +02001678
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679/*
1680 * amp access functions
1681 */
1682
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001683/* FIXME: more better hash key? */
Norberto Lopes28aedaf2010-02-28 20:16:53 +01001684#define HDA_HASH_KEY(nid, dir, idx) (u32)((nid) + ((idx) << 16) + ((dir) << 24))
Takashi Iwai1327a322009-03-23 13:07:47 +01001685#define HDA_HASH_PINCAP_KEY(nid) (u32)((nid) + (0x02 << 24))
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001686#define HDA_HASH_PARPCM_KEY(nid) (u32)((nid) + (0x03 << 24))
1687#define HDA_HASH_PARSTR_KEY(nid) (u32)((nid) + (0x04 << 24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688#define INFO_AMP_CAPS (1<<0)
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001689#define INFO_AMP_VOL(ch) (1 << (1 + (ch)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691/* initialize the hash table */
Takashi Iwai6a0f56a2012-12-07 07:41:56 +01001692static void init_hda_cache(struct hda_cache_rec *cache,
Takashi Iwai01751f52007-08-10 16:59:39 +02001693 unsigned int record_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694{
Takashi Iwai01751f52007-08-10 16:59:39 +02001695 memset(cache, 0, sizeof(*cache));
1696 memset(cache->hash, 0xff, sizeof(cache->hash));
Takashi Iwai603c4012008-07-30 15:01:44 +02001697 snd_array_init(&cache->buf, record_size, 64);
Takashi Iwai01751f52007-08-10 16:59:39 +02001698}
1699
Takashi Iwai1fcaee62007-08-23 00:01:09 +02001700static void free_hda_cache(struct hda_cache_rec *cache)
Takashi Iwai01751f52007-08-10 16:59:39 +02001701{
Takashi Iwai603c4012008-07-30 15:01:44 +02001702 snd_array_free(&cache->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703}
1704
1705/* query the hash. allocate an entry if not found. */
Takashi Iwaia68d5a542010-03-30 18:03:44 +02001706static struct hda_cache_head *get_hash(struct hda_cache_rec *cache, u32 key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707{
Takashi Iwai01751f52007-08-10 16:59:39 +02001708 u16 idx = key % (u16)ARRAY_SIZE(cache->hash);
1709 u16 cur = cache->hash[idx];
1710 struct hda_cache_head *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
1712 while (cur != 0xffff) {
Takashi Iwaif43aa022008-11-10 16:24:26 +01001713 info = snd_array_elem(&cache->buf, cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 if (info->key == key)
1715 return info;
1716 cur = info->next;
1717 }
Takashi Iwaia68d5a542010-03-30 18:03:44 +02001718 return NULL;
1719}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Takashi Iwaia68d5a542010-03-30 18:03:44 +02001721/* query the hash. allocate an entry if not found. */
1722static struct hda_cache_head *get_alloc_hash(struct hda_cache_rec *cache,
1723 u32 key)
1724{
1725 struct hda_cache_head *info = get_hash(cache, key);
1726 if (!info) {
1727 u16 idx, cur;
1728 /* add a new hash entry */
1729 info = snd_array_new(&cache->buf);
1730 if (!info)
1731 return NULL;
1732 cur = snd_array_index(&cache->buf, info);
1733 info->key = key;
1734 info->val = 0;
Takashi Iwaic370dd62012-12-13 18:30:04 +01001735 info->dirty = 0;
Takashi Iwaia68d5a542010-03-30 18:03:44 +02001736 idx = key % (u16)ARRAY_SIZE(cache->hash);
1737 info->next = cache->hash[idx];
1738 cache->hash[idx] = cur;
1739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 return info;
1741}
1742
Takashi Iwai01751f52007-08-10 16:59:39 +02001743/* query and allocate an amp hash entry */
1744static inline struct hda_amp_info *
1745get_alloc_amp_hash(struct hda_codec *codec, u32 key)
1746{
1747 return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key);
1748}
1749
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001750/* overwrite the value with the key in the caps hash */
1751static int write_caps_hash(struct hda_codec *codec, u32 key, unsigned int val)
1752{
1753 struct hda_amp_info *info;
1754
1755 mutex_lock(&codec->hash_mutex);
1756 info = get_alloc_amp_hash(codec, key);
1757 if (!info) {
1758 mutex_unlock(&codec->hash_mutex);
1759 return -EINVAL;
1760 }
1761 info->amp_caps = val;
1762 info->head.val |= INFO_AMP_CAPS;
1763 mutex_unlock(&codec->hash_mutex);
1764 return 0;
1765}
1766
1767/* query the value from the caps hash; if not found, fetch the current
1768 * value from the given function and store in the hash
1769 */
1770static unsigned int
1771query_caps_hash(struct hda_codec *codec, hda_nid_t nid, int dir, u32 key,
1772 unsigned int (*func)(struct hda_codec *, hda_nid_t, int))
1773{
1774 struct hda_amp_info *info;
1775 unsigned int val;
1776
1777 mutex_lock(&codec->hash_mutex);
1778 info = get_alloc_amp_hash(codec, key);
1779 if (!info) {
1780 mutex_unlock(&codec->hash_mutex);
1781 return 0;
1782 }
1783 if (!(info->head.val & INFO_AMP_CAPS)) {
1784 mutex_unlock(&codec->hash_mutex); /* for reentrance */
1785 val = func(codec, nid, dir);
1786 write_caps_hash(codec, key, val);
1787 } else {
1788 val = info->amp_caps;
1789 mutex_unlock(&codec->hash_mutex);
1790 }
1791 return val;
1792}
1793
1794static unsigned int read_amp_cap(struct hda_codec *codec, hda_nid_t nid,
1795 int direction)
1796{
1797 if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
1798 nid = codec->afg;
1799 return snd_hda_param_read(codec, nid,
1800 direction == HDA_OUTPUT ?
1801 AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP);
1802}
1803
Takashi Iwaid5191e52009-11-16 14:58:17 +01001804/**
1805 * query_amp_caps - query AMP capabilities
1806 * @codec: the HD-auio codec
1807 * @nid: the NID to query
1808 * @direction: either #HDA_INPUT or #HDA_OUTPUT
1809 *
1810 * Query AMP capabilities for the given widget and direction.
1811 * Returns the obtained capability bits.
1812 *
1813 * When cap bits have been already read, this doesn't read again but
1814 * returns the cached value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 */
Matthew Ranostay09a99952008-01-24 11:49:21 +01001816u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001818 return query_caps_hash(codec, nid, direction,
1819 HDA_HASH_KEY(nid, direction, 0),
1820 read_amp_cap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001822EXPORT_SYMBOL_HDA(query_amp_caps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
Takashi Iwaid5191e52009-11-16 14:58:17 +01001824/**
1825 * snd_hda_override_amp_caps - Override the AMP capabilities
1826 * @codec: the CODEC to clean up
1827 * @nid: the NID to clean up
1828 * @direction: either #HDA_INPUT or #HDA_OUTPUT
1829 * @caps: the capability bits to set
1830 *
1831 * Override the cached AMP caps bits value by the given one.
1832 * This function is useful if the driver needs to adjust the AMP ranges,
1833 * e.g. limit to 0dB, etc.
1834 *
1835 * Returns zero if successful or a negative error code.
1836 */
Takashi Iwai897cc182007-05-29 19:01:37 +02001837int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
1838 unsigned int caps)
1839{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001840 return write_caps_hash(codec, HDA_HASH_KEY(nid, dir, 0), caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001841}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001842EXPORT_SYMBOL_HDA(snd_hda_override_amp_caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001843
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001844static unsigned int read_pin_cap(struct hda_codec *codec, hda_nid_t nid,
1845 int dir)
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001846{
1847 return snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP);
1848}
1849
Takashi Iwaid5191e52009-11-16 14:58:17 +01001850/**
1851 * snd_hda_query_pin_caps - Query PIN capabilities
1852 * @codec: the HD-auio codec
1853 * @nid: the NID to query
1854 *
1855 * Query PIN capabilities for the given widget.
1856 * Returns the obtained capability bits.
1857 *
1858 * When cap bits have been already read, this doesn't read again but
1859 * returns the cached value.
1860 */
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001861u32 snd_hda_query_pin_caps(struct hda_codec *codec, hda_nid_t nid)
1862{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001863 return query_caps_hash(codec, nid, 0, HDA_HASH_PINCAP_KEY(nid),
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001864 read_pin_cap);
1865}
Takashi Iwai1327a322009-03-23 13:07:47 +01001866EXPORT_SYMBOL_HDA(snd_hda_query_pin_caps);
1867
Wu Fengguang864f92b2009-11-18 12:38:02 +08001868/**
Takashi Iwaif57c2562011-08-15 12:49:07 +02001869 * snd_hda_override_pin_caps - Override the pin capabilities
1870 * @codec: the CODEC
1871 * @nid: the NID to override
1872 * @caps: the capability bits to set
1873 *
1874 * Override the cached PIN capabilitiy bits value by the given one.
1875 *
1876 * Returns zero if successful or a negative error code.
1877 */
1878int snd_hda_override_pin_caps(struct hda_codec *codec, hda_nid_t nid,
1879 unsigned int caps)
1880{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001881 return write_caps_hash(codec, HDA_HASH_PINCAP_KEY(nid), caps);
Takashi Iwaif57c2562011-08-15 12:49:07 +02001882}
1883EXPORT_SYMBOL_HDA(snd_hda_override_pin_caps);
1884
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001885/* read or sync the hash value with the current value;
1886 * call within hash_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 */
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001888static struct hda_amp_info *
1889update_amp_hash(struct hda_codec *codec, hda_nid_t nid, int ch,
Takashi Iwai280e57d2012-12-14 10:32:21 +01001890 int direction, int index, bool init_only)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001892 struct hda_amp_info *info;
1893 unsigned int parm, val = 0;
1894 bool val_read = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001896 retry:
1897 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, index));
1898 if (!info)
1899 return NULL;
1900 if (!(info->head.val & INFO_AMP_VOL(ch))) {
1901 if (!val_read) {
1902 mutex_unlock(&codec->hash_mutex);
1903 parm = ch ? AC_AMP_GET_RIGHT : AC_AMP_GET_LEFT;
1904 parm |= direction == HDA_OUTPUT ?
1905 AC_AMP_GET_OUTPUT : AC_AMP_GET_INPUT;
1906 parm |= index;
1907 val = snd_hda_codec_read(codec, nid, 0,
Takashi Iwai0ba21762007-04-16 11:29:14 +02001908 AC_VERB_GET_AMP_GAIN_MUTE, parm);
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001909 val &= 0xff;
1910 val_read = true;
1911 mutex_lock(&codec->hash_mutex);
1912 goto retry;
1913 }
1914 info->vol[ch] = val;
1915 info->head.val |= INFO_AMP_VOL(ch);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001916 } else if (init_only)
1917 return NULL;
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001918 return info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919}
1920
1921/*
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001922 * write the current volume in info to the h/w
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 */
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01001924static void put_vol_mute(struct hda_codec *codec, unsigned int amp_caps,
Takashi Iwai0ba21762007-04-16 11:29:14 +02001925 hda_nid_t nid, int ch, int direction, int index,
1926 int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927{
1928 u32 parm;
1929
1930 parm = ch ? AC_AMP_SET_RIGHT : AC_AMP_SET_LEFT;
1931 parm |= direction == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT;
1932 parm |= index << AC_AMP_SET_INDEX_SHIFT;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01001933 if ((val & HDA_AMP_MUTE) && !(amp_caps & AC_AMPCAP_MUTE) &&
1934 (amp_caps & AC_AMPCAP_MIN_MUTE))
Takashi Iwai38681372012-02-27 15:00:58 +01001935 ; /* set the zero value as a fake mute */
1936 else
1937 parm |= val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, parm);
1939}
1940
Takashi Iwaid5191e52009-11-16 14:58:17 +01001941/**
1942 * snd_hda_codec_amp_read - Read AMP value
1943 * @codec: HD-audio codec
1944 * @nid: NID to read the AMP value
1945 * @ch: channel (left=0 or right=1)
1946 * @direction: #HDA_INPUT or #HDA_OUTPUT
1947 * @index: the index value (only for input direction)
1948 *
1949 * Read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 */
Takashi Iwai834be882006-03-01 14:16:17 +01001951int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch,
1952 int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001954 struct hda_amp_info *info;
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001955 unsigned int val = 0;
1956
1957 mutex_lock(&codec->hash_mutex);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001958 info = update_amp_hash(codec, nid, ch, direction, index, false);
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02001959 if (info)
1960 val = info->vol[ch];
1961 mutex_unlock(&codec->hash_mutex);
1962 return val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001964EXPORT_SYMBOL_HDA(snd_hda_codec_amp_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Takashi Iwai280e57d2012-12-14 10:32:21 +01001966static int codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch,
1967 int direction, int idx, int mask, int val,
1968 bool init_only)
1969{
1970 struct hda_amp_info *info;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01001971 unsigned int caps;
Takashi Iwaide1e37b2012-12-20 11:00:21 +01001972 unsigned int cache_only;
Takashi Iwai280e57d2012-12-14 10:32:21 +01001973
1974 if (snd_BUG_ON(mask & ~0xff))
1975 mask &= 0xff;
1976 val &= mask;
1977
1978 mutex_lock(&codec->hash_mutex);
1979 info = update_amp_hash(codec, nid, ch, direction, idx, init_only);
1980 if (!info) {
1981 mutex_unlock(&codec->hash_mutex);
1982 return 0;
1983 }
1984 val |= info->vol[ch] & ~mask;
1985 if (info->vol[ch] == val) {
1986 mutex_unlock(&codec->hash_mutex);
1987 return 0;
1988 }
1989 info->vol[ch] = val;
Takashi Iwaide1e37b2012-12-20 11:00:21 +01001990 cache_only = info->head.dirty = codec->cached_write;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01001991 caps = info->amp_caps;
Takashi Iwai280e57d2012-12-14 10:32:21 +01001992 mutex_unlock(&codec->hash_mutex);
Takashi Iwaide1e37b2012-12-20 11:00:21 +01001993 if (!cache_only)
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01001994 put_vol_mute(codec, caps, nid, ch, direction, idx, val);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001995 return 1;
1996}
1997
Takashi Iwaid5191e52009-11-16 14:58:17 +01001998/**
1999 * snd_hda_codec_amp_update - update the AMP value
2000 * @codec: HD-audio codec
2001 * @nid: NID to read the AMP value
2002 * @ch: channel (left=0 or right=1)
2003 * @direction: #HDA_INPUT or #HDA_OUTPUT
2004 * @idx: the index value (only for input direction)
2005 * @mask: bit mask to set
2006 * @val: the bits value to set
2007 *
2008 * Update the AMP value with a bit mask.
2009 * Returns 0 if the value is unchanged, 1 if changed.
Takashi Iwai4a19fae2005-06-08 14:43:58 +02002010 */
Takashi Iwai834be882006-03-01 14:16:17 +01002011int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch,
2012 int direction, int idx, int mask, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013{
Takashi Iwai280e57d2012-12-14 10:32:21 +01002014 return codec_amp_update(codec, nid, ch, direction, idx, mask, val, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002016EXPORT_SYMBOL_HDA(snd_hda_codec_amp_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Takashi Iwaid5191e52009-11-16 14:58:17 +01002018/**
2019 * snd_hda_codec_amp_stereo - update the AMP stereo values
2020 * @codec: HD-audio codec
2021 * @nid: NID to read the AMP value
2022 * @direction: #HDA_INPUT or #HDA_OUTPUT
2023 * @idx: the index value (only for input direction)
2024 * @mask: bit mask to set
2025 * @val: the bits value to set
2026 *
2027 * Update the AMP values like snd_hda_codec_amp_update(), but for a
2028 * stereo widget with the same mask and value.
Takashi Iwai47fd8302007-08-10 17:11:07 +02002029 */
2030int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
2031 int direction, int idx, int mask, int val)
2032{
2033 int ch, ret = 0;
Takashi Iwai467126462010-03-29 09:19:38 +02002034
2035 if (snd_BUG_ON(mask & ~0xff))
2036 mask &= 0xff;
Takashi Iwai47fd8302007-08-10 17:11:07 +02002037 for (ch = 0; ch < 2; ch++)
2038 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
2039 idx, mask, val);
2040 return ret;
2041}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002042EXPORT_SYMBOL_HDA(snd_hda_codec_amp_stereo);
Takashi Iwai47fd8302007-08-10 17:11:07 +02002043
Takashi Iwai280e57d2012-12-14 10:32:21 +01002044/* Works like snd_hda_codec_amp_update() but it writes the value only at
2045 * the first access. If the amp was already initialized / updated beforehand,
2046 * this does nothing.
2047 */
2048int snd_hda_codec_amp_init(struct hda_codec *codec, hda_nid_t nid, int ch,
2049 int dir, int idx, int mask, int val)
2050{
2051 return codec_amp_update(codec, nid, ch, dir, idx, mask, val, true);
2052}
2053EXPORT_SYMBOL_HDA(snd_hda_codec_amp_init);
2054
2055int snd_hda_codec_amp_init_stereo(struct hda_codec *codec, hda_nid_t nid,
2056 int dir, int idx, int mask, int val)
2057{
2058 int ch, ret = 0;
2059
2060 if (snd_BUG_ON(mask & ~0xff))
2061 mask &= 0xff;
2062 for (ch = 0; ch < 2; ch++)
2063 ret |= snd_hda_codec_amp_init(codec, nid, ch, dir,
2064 idx, mask, val);
2065 return ret;
2066}
2067EXPORT_SYMBOL_HDA(snd_hda_codec_amp_init_stereo);
2068
Takashi Iwaid5191e52009-11-16 14:58:17 +01002069/**
2070 * snd_hda_codec_resume_amp - Resume all AMP commands from the cache
2071 * @codec: HD-audio codec
2072 *
2073 * Resume the all amp commands from the cache.
2074 */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002075void snd_hda_codec_resume_amp(struct hda_codec *codec)
2076{
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002077 int i;
2078
Takashi Iwaic370dd62012-12-13 18:30:04 +01002079 mutex_lock(&codec->hash_mutex);
Takashi Iwaiaa88a352012-12-20 11:02:00 +01002080 codec->cached_write = 0;
Takashi Iwaic370dd62012-12-13 18:30:04 +01002081 for (i = 0; i < codec->amp_cache.buf.used; i++) {
2082 struct hda_amp_info *buffer;
2083 u32 key;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002084 hda_nid_t nid;
2085 unsigned int idx, dir, ch;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01002086 struct hda_amp_info info;
Takashi Iwaic370dd62012-12-13 18:30:04 +01002087
2088 buffer = snd_array_elem(&codec->amp_cache.buf, i);
Takashi Iwai8565f052012-12-20 12:54:18 +01002089 if (!buffer->head.dirty)
2090 continue;
2091 buffer->head.dirty = 0;
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01002092 info = *buffer;
2093 key = info.head.key;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002094 if (!key)
2095 continue;
2096 nid = key & 0xff;
2097 idx = (key >> 16) & 0xff;
2098 dir = (key >> 24) & 0xff;
2099 for (ch = 0; ch < 2; ch++) {
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01002100 if (!(info.head.val & INFO_AMP_VOL(ch)))
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002101 continue;
Takashi Iwaic370dd62012-12-13 18:30:04 +01002102 mutex_unlock(&codec->hash_mutex);
Takashi Iwai2ce4886a2012-12-20 12:58:12 +01002103 put_vol_mute(codec, info.amp_caps, nid, ch, dir, idx,
2104 info.vol[ch]);
Takashi Iwaic370dd62012-12-13 18:30:04 +01002105 mutex_lock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002106 }
2107 }
Takashi Iwaic370dd62012-12-13 18:30:04 +01002108 mutex_unlock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002109}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002110EXPORT_SYMBOL_HDA(snd_hda_codec_resume_amp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02002112static u32 get_amp_max_value(struct hda_codec *codec, hda_nid_t nid, int dir,
2113 unsigned int ofs)
2114{
2115 u32 caps = query_amp_caps(codec, nid, dir);
2116 /* get num steps */
2117 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
2118 if (ofs < caps)
2119 caps -= ofs;
2120 return caps;
2121}
2122
Takashi Iwaid5191e52009-11-16 14:58:17 +01002123/**
2124 * snd_hda_mixer_amp_volume_info - Info callback for a standard AMP mixer
2125 *
2126 * The control element is supposed to have the private_value field
2127 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2128 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002129int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
2130 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131{
2132 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2133 u16 nid = get_amp_nid(kcontrol);
2134 u8 chs = get_amp_channels(kcontrol);
2135 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002136 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02002138 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2139 uinfo->count = chs == 3 ? 2 : 1;
2140 uinfo->value.integer.min = 0;
2141 uinfo->value.integer.max = get_amp_max_value(codec, nid, dir, ofs);
2142 if (!uinfo->value.integer.max) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002143 printk(KERN_WARNING "hda_codec: "
Takashi Iwai9c8f2ab2008-01-11 16:12:23 +01002144 "num_steps = 0 for NID=0x%x (ctl = %s)\n", nid,
2145 kcontrol->id.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 return -EINVAL;
2147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 return 0;
2149}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002150EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002152
2153static inline unsigned int
2154read_amp_value(struct hda_codec *codec, hda_nid_t nid,
2155 int ch, int dir, int idx, unsigned int ofs)
2156{
2157 unsigned int val;
2158 val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx);
2159 val &= HDA_AMP_VOLMASK;
2160 if (val >= ofs)
2161 val -= ofs;
2162 else
2163 val = 0;
2164 return val;
2165}
2166
2167static inline int
2168update_amp_value(struct hda_codec *codec, hda_nid_t nid,
2169 int ch, int dir, int idx, unsigned int ofs,
2170 unsigned int val)
2171{
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02002172 unsigned int maxval;
2173
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002174 if (val > 0)
2175 val += ofs;
Takashi Iwai7ccc3ef2010-07-26 17:00:15 +02002176 /* ofs = 0: raw max value */
2177 maxval = get_amp_max_value(codec, nid, dir, 0);
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02002178 if (val > maxval)
2179 val = maxval;
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002180 return snd_hda_codec_amp_update(codec, nid, ch, dir, idx,
2181 HDA_AMP_VOLMASK, val);
2182}
2183
Takashi Iwaid5191e52009-11-16 14:58:17 +01002184/**
2185 * snd_hda_mixer_amp_volume_get - Get callback for a standard AMP mixer volume
2186 *
2187 * The control element is supposed to have the private_value field
2188 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2189 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002190int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
2191 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192{
2193 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2194 hda_nid_t nid = get_amp_nid(kcontrol);
2195 int chs = get_amp_channels(kcontrol);
2196 int dir = get_amp_direction(kcontrol);
2197 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002198 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 long *valp = ucontrol->value.integer.value;
2200
2201 if (chs & 1)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002202 *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002204 *valp = read_amp_value(codec, nid, 1, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 return 0;
2206}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002207EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
Takashi Iwaid5191e52009-11-16 14:58:17 +01002209/**
2210 * snd_hda_mixer_amp_volume_put - Put callback for a standard AMP mixer volume
2211 *
2212 * The control element is supposed to have the private_value field
2213 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2214 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002215int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
2216 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217{
2218 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2219 hda_nid_t nid = get_amp_nid(kcontrol);
2220 int chs = get_amp_channels(kcontrol);
2221 int dir = get_amp_direction(kcontrol);
2222 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002223 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 long *valp = ucontrol->value.integer.value;
2225 int change = 0;
2226
Takashi Iwaicb53c622007-08-10 17:21:45 +02002227 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002228 if (chs & 1) {
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002229 change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002230 valp++;
2231 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02002232 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002233 change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002234 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 return change;
2236}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002237EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
Takashi Iwaid5191e52009-11-16 14:58:17 +01002239/**
2240 * snd_hda_mixer_amp_volume_put - TLV callback for a standard AMP mixer volume
2241 *
2242 * The control element is supposed to have the private_value field
2243 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2244 */
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02002245int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
2246 unsigned int size, unsigned int __user *_tlv)
2247{
2248 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2249 hda_nid_t nid = get_amp_nid(kcontrol);
2250 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002251 unsigned int ofs = get_amp_offset(kcontrol);
Clemens Ladischde8c85f2010-10-15 10:32:50 +02002252 bool min_mute = get_amp_min_mute(kcontrol);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02002253 u32 caps, val1, val2;
2254
2255 if (size < 4 * sizeof(unsigned int))
2256 return -ENOMEM;
2257 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002258 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
2259 val2 = (val2 + 1) * 25;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02002260 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01002261 val1 += ofs;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02002262 val1 = ((int)val1) * ((int)val2);
Takashi Iwai38681372012-02-27 15:00:58 +01002263 if (min_mute || (caps & AC_AMPCAP_MIN_MUTE))
Takashi Iwaic08d9162010-10-17 10:40:53 +02002264 val2 |= TLV_DB_SCALE_MUTE;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02002265 if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv))
2266 return -EFAULT;
2267 if (put_user(2 * sizeof(unsigned int), _tlv + 1))
2268 return -EFAULT;
2269 if (put_user(val1, _tlv + 2))
2270 return -EFAULT;
2271 if (put_user(val2, _tlv + 3))
2272 return -EFAULT;
2273 return 0;
2274}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002275EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_tlv);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02002276
Takashi Iwaid5191e52009-11-16 14:58:17 +01002277/**
2278 * snd_hda_set_vmaster_tlv - Set TLV for a virtual master control
2279 * @codec: HD-audio codec
2280 * @nid: NID of a reference widget
2281 * @dir: #HDA_INPUT or #HDA_OUTPUT
2282 * @tlv: TLV data to be stored, at least 4 elements
2283 *
2284 * Set (static) TLV data for a virtual master volume using the AMP caps
2285 * obtained from the reference NID.
2286 * The volume range is recalculated as if the max volume is 0dB.
Takashi Iwai2134ea42008-01-10 16:53:55 +01002287 */
2288void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
2289 unsigned int *tlv)
2290{
2291 u32 caps;
2292 int nums, step;
2293
2294 caps = query_amp_caps(codec, nid, dir);
2295 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
2296 step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
2297 step = (step + 1) * 25;
2298 tlv[0] = SNDRV_CTL_TLVT_DB_SCALE;
2299 tlv[1] = 2 * sizeof(unsigned int);
2300 tlv[2] = -nums * step;
2301 tlv[3] = step;
2302}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002303EXPORT_SYMBOL_HDA(snd_hda_set_vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01002304
2305/* find a mixer control element with the given name */
Takashi Iwai09f99702008-02-04 12:31:13 +01002306static struct snd_kcontrol *
Takashi Iwaidcda5802012-10-12 17:24:51 +02002307find_mixer_ctl(struct hda_codec *codec, const char *name, int dev, int idx)
Takashi Iwai2134ea42008-01-10 16:53:55 +01002308{
2309 struct snd_ctl_elem_id id;
2310 memset(&id, 0, sizeof(id));
2311 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Takashi Iwaidcda5802012-10-12 17:24:51 +02002312 id.device = dev;
Takashi Iwai09f99702008-02-04 12:31:13 +01002313 id.index = idx;
Takashi Iwai18cb7102009-04-16 10:22:24 +02002314 if (snd_BUG_ON(strlen(name) >= sizeof(id.name)))
2315 return NULL;
Takashi Iwai2134ea42008-01-10 16:53:55 +01002316 strcpy(id.name, name);
2317 return snd_ctl_find_id(codec->bus->card, &id);
2318}
2319
Takashi Iwaid5191e52009-11-16 14:58:17 +01002320/**
2321 * snd_hda_find_mixer_ctl - Find a mixer control element with the given name
2322 * @codec: HD-audio codec
2323 * @name: ctl id name string
2324 *
2325 * Get the control element with the given id string and IFACE_MIXER.
2326 */
Takashi Iwai09f99702008-02-04 12:31:13 +01002327struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
2328 const char *name)
2329{
Takashi Iwaidcda5802012-10-12 17:24:51 +02002330 return find_mixer_ctl(codec, name, 0, 0);
Takashi Iwai09f99702008-02-04 12:31:13 +01002331}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002332EXPORT_SYMBOL_HDA(snd_hda_find_mixer_ctl);
Takashi Iwai09f99702008-02-04 12:31:13 +01002333
Takashi Iwaidcda5802012-10-12 17:24:51 +02002334static int find_empty_mixer_ctl_idx(struct hda_codec *codec, const char *name,
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002335 int start_idx)
Takashi Iwai1afe2062010-12-23 10:17:52 +01002336{
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002337 int i, idx;
2338 /* 16 ctlrs should be large enough */
2339 for (i = 0, idx = start_idx; i < 16; i++, idx++) {
2340 if (!find_mixer_ctl(codec, name, 0, idx))
Takashi Iwai1afe2062010-12-23 10:17:52 +01002341 return idx;
2342 }
2343 return -EBUSY;
2344}
2345
Takashi Iwaid5191e52009-11-16 14:58:17 +01002346/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002347 * snd_hda_ctl_add - Add a control element and assign to the codec
Takashi Iwaid5191e52009-11-16 14:58:17 +01002348 * @codec: HD-audio codec
2349 * @nid: corresponding NID (optional)
2350 * @kctl: the control element to assign
2351 *
2352 * Add the given control element to an array inside the codec instance.
2353 * All control elements belonging to a codec are supposed to be added
2354 * by this function so that a proper clean-up works at the free or
2355 * reconfiguration time.
2356 *
2357 * If non-zero @nid is passed, the NID is assigned to the control element.
2358 * The assignment is shown in the codec proc file.
2359 *
2360 * snd_hda_ctl_add() checks the control subdev id field whether
2361 * #HDA_SUBDEV_NID_FLAG bit is set. If set (and @nid is zero), the lower
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002362 * bits value is taken as the NID to assign. The #HDA_NID_ITEM_AMP bit
2363 * specifies if kctl->private_value is a HDA amplifier value.
Takashi Iwaid5191e52009-11-16 14:58:17 +01002364 */
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002365int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid,
2366 struct snd_kcontrol *kctl)
Takashi Iwaid13bd412008-07-30 15:01:45 +02002367{
2368 int err;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002369 unsigned short flags = 0;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002370 struct hda_nid_item *item;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002371
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002372 if (kctl->id.subdevice & HDA_SUBDEV_AMP_FLAG) {
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002373 flags |= HDA_NID_ITEM_AMP;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002374 if (nid == 0)
2375 nid = get_amp_nid_(kctl->private_value);
2376 }
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002377 if ((kctl->id.subdevice & HDA_SUBDEV_NID_FLAG) != 0 && nid == 0)
2378 nid = kctl->id.subdevice & 0xffff;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002379 if (kctl->id.subdevice & (HDA_SUBDEV_NID_FLAG|HDA_SUBDEV_AMP_FLAG))
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01002380 kctl->id.subdevice = 0;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002381 err = snd_ctl_add(codec->bus->card, kctl);
2382 if (err < 0)
2383 return err;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002384 item = snd_array_new(&codec->mixers);
2385 if (!item)
Takashi Iwaid13bd412008-07-30 15:01:45 +02002386 return -ENOMEM;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002387 item->kctl = kctl;
2388 item->nid = nid;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002389 item->flags = flags;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002390 return 0;
2391}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002392EXPORT_SYMBOL_HDA(snd_hda_ctl_add);
Takashi Iwaid13bd412008-07-30 15:01:45 +02002393
Takashi Iwaid5191e52009-11-16 14:58:17 +01002394/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002395 * snd_hda_add_nid - Assign a NID to a control element
2396 * @codec: HD-audio codec
2397 * @nid: corresponding NID (optional)
2398 * @kctl: the control element to assign
2399 * @index: index to kctl
2400 *
2401 * Add the given control element to an array inside the codec instance.
2402 * This function is used when #snd_hda_ctl_add cannot be used for 1:1
2403 * NID:KCTL mapping - for example "Capture Source" selector.
2404 */
2405int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl,
2406 unsigned int index, hda_nid_t nid)
2407{
2408 struct hda_nid_item *item;
2409
2410 if (nid > 0) {
2411 item = snd_array_new(&codec->nids);
2412 if (!item)
2413 return -ENOMEM;
2414 item->kctl = kctl;
2415 item->index = index;
2416 item->nid = nid;
2417 return 0;
2418 }
Takashi Iwai28d1a852010-03-15 09:05:46 +01002419 printk(KERN_ERR "hda-codec: no NID for mapping control %s:%d:%d\n",
2420 kctl->id.name, kctl->id.index, index);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002421 return -EINVAL;
2422}
2423EXPORT_SYMBOL_HDA(snd_hda_add_nid);
2424
2425/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01002426 * snd_hda_ctls_clear - Clear all controls assigned to the given codec
2427 * @codec: HD-audio codec
2428 */
Takashi Iwaid13bd412008-07-30 15:01:45 +02002429void snd_hda_ctls_clear(struct hda_codec *codec)
2430{
2431 int i;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002432 struct hda_nid_item *items = codec->mixers.list;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002433 for (i = 0; i < codec->mixers.used; i++)
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002434 snd_ctl_remove(codec->bus->card, items[i].kctl);
Takashi Iwaid13bd412008-07-30 15:01:45 +02002435 snd_array_free(&codec->mixers);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002436 snd_array_free(&codec->nids);
Takashi Iwaid13bd412008-07-30 15:01:45 +02002437}
2438
Takashi Iwaia65d6292009-02-23 16:57:04 +01002439/* pseudo device locking
2440 * toggle card->shutdown to allow/disallow the device access (as a hack)
2441 */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002442int snd_hda_lock_devices(struct hda_bus *bus)
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002443{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002444 struct snd_card *card = bus->card;
2445 struct hda_codec *codec;
2446
Takashi Iwaia65d6292009-02-23 16:57:04 +01002447 spin_lock(&card->files_lock);
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002448 if (card->shutdown)
2449 goto err_unlock;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002450 card->shutdown = 1;
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002451 if (!list_empty(&card->ctl_files))
2452 goto err_clear;
2453
2454 list_for_each_entry(codec, &bus->codec_list, list) {
2455 int pcm;
2456 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
2457 struct hda_pcm *cpcm = &codec->pcm_info[pcm];
2458 if (!cpcm->pcm)
2459 continue;
2460 if (cpcm->pcm->streams[0].substream_opened ||
2461 cpcm->pcm->streams[1].substream_opened)
2462 goto err_clear;
2463 }
2464 }
Takashi Iwaia65d6292009-02-23 16:57:04 +01002465 spin_unlock(&card->files_lock);
2466 return 0;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002467
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002468 err_clear:
2469 card->shutdown = 0;
2470 err_unlock:
2471 spin_unlock(&card->files_lock);
2472 return -EINVAL;
2473}
2474EXPORT_SYMBOL_HDA(snd_hda_lock_devices);
2475
2476void snd_hda_unlock_devices(struct hda_bus *bus)
Takashi Iwaia65d6292009-02-23 16:57:04 +01002477{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002478 struct snd_card *card = bus->card;
2479
2480 card = bus->card;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002481 spin_lock(&card->files_lock);
2482 card->shutdown = 0;
2483 spin_unlock(&card->files_lock);
2484}
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002485EXPORT_SYMBOL_HDA(snd_hda_unlock_devices);
Takashi Iwaia65d6292009-02-23 16:57:04 +01002486
Takashi Iwaid5191e52009-11-16 14:58:17 +01002487/**
2488 * snd_hda_codec_reset - Clear all objects assigned to the codec
2489 * @codec: HD-audio codec
2490 *
2491 * This frees the all PCM and control elements assigned to the codec, and
2492 * clears the caches and restores the pin default configurations.
2493 *
2494 * When a device is being used, it returns -EBSY. If successfully freed,
2495 * returns zero.
2496 */
Takashi Iwaia65d6292009-02-23 16:57:04 +01002497int snd_hda_codec_reset(struct hda_codec *codec)
2498{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002499 struct hda_bus *bus = codec->bus;
2500 struct snd_card *card = bus->card;
2501 int i;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002502
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002503 if (snd_hda_lock_devices(bus) < 0)
Takashi Iwaia65d6292009-02-23 16:57:04 +01002504 return -EBUSY;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002505
2506 /* OK, let it free */
David Henningsson26a6cb62012-10-09 15:04:21 +02002507 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwai83012a72012-08-24 18:38:08 +02002508#ifdef CONFIG_PM
Takashi Iwaia2d96e72012-05-09 12:36:22 +02002509 cancel_delayed_work_sync(&codec->power_work);
Takashi Iwai339876d2012-05-08 16:57:12 +02002510 codec->power_on = 0;
2511 codec->power_transition = 0;
2512 codec->power_jiffies = jiffies;
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002513 flush_workqueue(bus->workq);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002514#endif
2515 snd_hda_ctls_clear(codec);
2516 /* relase PCMs */
2517 for (i = 0; i < codec->num_pcms; i++) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002518 if (codec->pcm_info[i].pcm) {
Takashi Iwaia65d6292009-02-23 16:57:04 +01002519 snd_device_free(card, codec->pcm_info[i].pcm);
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002520 clear_bit(codec->pcm_info[i].device,
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002521 bus->pcm_dev_bits);
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002522 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002523 }
2524 if (codec->patch_ops.free)
2525 codec->patch_ops.free(codec);
Takashi Iwai07dc59f2012-09-10 09:39:31 +02002526 memset(&codec->patch_ops, 0, sizeof(codec->patch_ops));
Takashi Iwai1835a0f2011-10-27 22:12:46 +02002527 snd_hda_jack_tbl_clear(codec);
Takashi Iwai56d17712008-11-28 14:36:23 +01002528 codec->proc_widget_hook = NULL;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002529 codec->spec = NULL;
2530 free_hda_cache(&codec->amp_cache);
2531 free_hda_cache(&codec->cmd_cache);
Takashi Iwai827057f2008-12-19 10:12:02 +01002532 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
2533 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Takashi Iwai346ff702009-02-23 09:42:57 +01002534 /* free only driver_pins so that init_pins + user_pins are restored */
2535 snd_array_free(&codec->driver_pins);
Takashi Iwai09a60712012-06-26 15:01:33 +02002536 snd_array_free(&codec->cvt_setups);
2537 snd_array_free(&codec->spdif_out);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +01002538 snd_array_free(&codec->verbs);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002539 codec->num_pcms = 0;
2540 codec->pcm_info = NULL;
2541 codec->preset = NULL;
Takashi Iwaid1f1af22009-03-02 10:35:29 +01002542 codec->slave_dig_outs = NULL;
2543 codec->spdif_status_reset = 0;
Takashi Iwai1289e9e2008-11-27 15:47:11 +01002544 module_put(codec->owner);
2545 codec->owner = NULL;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002546
2547 /* allow device access again */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002548 snd_hda_unlock_devices(bus);
Takashi Iwaia65d6292009-02-23 16:57:04 +01002549 return 0;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002550}
2551
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002552typedef int (*map_slave_func_t)(void *, struct snd_kcontrol *);
2553
2554/* apply the function to all matching slave ctls in the mixer list */
2555static int map_slaves(struct hda_codec *codec, const char * const *slaves,
Takashi Iwai9322ca52012-02-03 14:28:01 +01002556 const char *suffix, map_slave_func_t func, void *data)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002557{
2558 struct hda_nid_item *items;
2559 const char * const *s;
2560 int i, err;
2561
2562 items = codec->mixers.list;
2563 for (i = 0; i < codec->mixers.used; i++) {
2564 struct snd_kcontrol *sctl = items[i].kctl;
2565 if (!sctl || !sctl->id.name ||
2566 sctl->id.iface != SNDRV_CTL_ELEM_IFACE_MIXER)
2567 continue;
2568 for (s = slaves; *s; s++) {
Takashi Iwai9322ca52012-02-03 14:28:01 +01002569 char tmpname[sizeof(sctl->id.name)];
2570 const char *name = *s;
2571 if (suffix) {
2572 snprintf(tmpname, sizeof(tmpname), "%s %s",
2573 name, suffix);
2574 name = tmpname;
2575 }
Takashi Iwai9322ca52012-02-03 14:28:01 +01002576 if (!strcmp(sctl->id.name, name)) {
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002577 err = func(data, sctl);
2578 if (err)
2579 return err;
2580 break;
2581 }
2582 }
2583 }
2584 return 0;
2585}
2586
2587static int check_slave_present(void *data, struct snd_kcontrol *sctl)
2588{
2589 return 1;
2590}
2591
Takashi Iwai18478e82012-03-09 17:51:10 +01002592/* guess the value corresponding to 0dB */
2593static int get_kctl_0dB_offset(struct snd_kcontrol *kctl)
2594{
2595 int _tlv[4];
2596 const int *tlv = NULL;
2597 int val = -1;
2598
2599 if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
2600 /* FIXME: set_fs() hack for obtaining user-space TLV data */
2601 mm_segment_t fs = get_fs();
2602 set_fs(get_ds());
2603 if (!kctl->tlv.c(kctl, 0, sizeof(_tlv), _tlv))
2604 tlv = _tlv;
2605 set_fs(fs);
2606 } else if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_READ)
2607 tlv = kctl->tlv.p;
2608 if (tlv && tlv[0] == SNDRV_CTL_TLVT_DB_SCALE)
2609 val = -tlv[2] / tlv[3];
2610 return val;
2611}
2612
2613/* call kctl->put with the given value(s) */
2614static int put_kctl_with_value(struct snd_kcontrol *kctl, int val)
2615{
2616 struct snd_ctl_elem_value *ucontrol;
2617 ucontrol = kzalloc(sizeof(*ucontrol), GFP_KERNEL);
2618 if (!ucontrol)
2619 return -ENOMEM;
2620 ucontrol->value.integer.value[0] = val;
2621 ucontrol->value.integer.value[1] = val;
2622 kctl->put(kctl, ucontrol);
2623 kfree(ucontrol);
2624 return 0;
2625}
2626
2627/* initialize the slave volume with 0dB */
2628static int init_slave_0dB(void *data, struct snd_kcontrol *slave)
2629{
2630 int offset = get_kctl_0dB_offset(slave);
2631 if (offset > 0)
2632 put_kctl_with_value(slave, offset);
2633 return 0;
2634}
2635
2636/* unmute the slave */
2637static int init_slave_unmute(void *data, struct snd_kcontrol *slave)
2638{
2639 return put_kctl_with_value(slave, 1);
2640}
2641
Takashi Iwaid5191e52009-11-16 14:58:17 +01002642/**
2643 * snd_hda_add_vmaster - create a virtual master control and add slaves
2644 * @codec: HD-audio codec
2645 * @name: vmaster control name
2646 * @tlv: TLV data (optional)
2647 * @slaves: slave control names (optional)
Takashi Iwai9322ca52012-02-03 14:28:01 +01002648 * @suffix: suffix string to each slave name (optional)
Takashi Iwai18478e82012-03-09 17:51:10 +01002649 * @init_slave_vol: initialize slaves to unmute/0dB
Takashi Iwai29e58532012-03-12 12:25:03 +01002650 * @ctl_ret: store the vmaster kcontrol in return
Takashi Iwaid5191e52009-11-16 14:58:17 +01002651 *
2652 * Create a virtual master control with the given name. The TLV data
2653 * must be either NULL or a valid data.
2654 *
2655 * @slaves is a NULL-terminated array of strings, each of which is a
2656 * slave control name. All controls with these names are assigned to
2657 * the new virtual master control.
2658 *
2659 * This function returns zero if successful or a negative error code.
2660 */
Takashi Iwai18478e82012-03-09 17:51:10 +01002661int __snd_hda_add_vmaster(struct hda_codec *codec, char *name,
Takashi Iwai9322ca52012-02-03 14:28:01 +01002662 unsigned int *tlv, const char * const *slaves,
Takashi Iwai29e58532012-03-12 12:25:03 +01002663 const char *suffix, bool init_slave_vol,
2664 struct snd_kcontrol **ctl_ret)
Takashi Iwai2134ea42008-01-10 16:53:55 +01002665{
2666 struct snd_kcontrol *kctl;
Takashi Iwai2134ea42008-01-10 16:53:55 +01002667 int err;
2668
Takashi Iwai29e58532012-03-12 12:25:03 +01002669 if (ctl_ret)
2670 *ctl_ret = NULL;
2671
Takashi Iwai9322ca52012-02-03 14:28:01 +01002672 err = map_slaves(codec, slaves, suffix, check_slave_present, NULL);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002673 if (err != 1) {
Takashi Iwai2f085542008-02-22 18:43:50 +01002674 snd_printdd("No slave found for %s\n", name);
2675 return 0;
2676 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01002677 kctl = snd_ctl_make_virtual_master(name, tlv);
2678 if (!kctl)
2679 return -ENOMEM;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002680 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai2134ea42008-01-10 16:53:55 +01002681 if (err < 0)
2682 return err;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002683
Takashi Iwai9322ca52012-02-03 14:28:01 +01002684 err = map_slaves(codec, slaves, suffix,
2685 (map_slave_func_t)snd_ctl_add_slave, kctl);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002686 if (err < 0)
2687 return err;
Takashi Iwai18478e82012-03-09 17:51:10 +01002688
2689 /* init with master mute & zero volume */
2690 put_kctl_with_value(kctl, 0);
2691 if (init_slave_vol)
2692 map_slaves(codec, slaves, suffix,
2693 tlv ? init_slave_0dB : init_slave_unmute, kctl);
2694
Takashi Iwai29e58532012-03-12 12:25:03 +01002695 if (ctl_ret)
2696 *ctl_ret = kctl;
Takashi Iwai2134ea42008-01-10 16:53:55 +01002697 return 0;
2698}
Takashi Iwai18478e82012-03-09 17:51:10 +01002699EXPORT_SYMBOL_HDA(__snd_hda_add_vmaster);
Takashi Iwai2134ea42008-01-10 16:53:55 +01002700
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002701/*
2702 * mute-LED control using vmaster
2703 */
2704static int vmaster_mute_mode_info(struct snd_kcontrol *kcontrol,
2705 struct snd_ctl_elem_info *uinfo)
2706{
2707 static const char * const texts[] = {
David Henningssonc86c2d42013-01-03 14:12:29 +01002708 "On", "Off", "Follow Master"
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002709 };
2710 unsigned int index;
2711
2712 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2713 uinfo->count = 1;
2714 uinfo->value.enumerated.items = 3;
2715 index = uinfo->value.enumerated.item;
2716 if (index >= 3)
2717 index = 2;
2718 strcpy(uinfo->value.enumerated.name, texts[index]);
2719 return 0;
2720}
2721
2722static int vmaster_mute_mode_get(struct snd_kcontrol *kcontrol,
2723 struct snd_ctl_elem_value *ucontrol)
2724{
2725 struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol);
2726 ucontrol->value.enumerated.item[0] = hook->mute_mode;
2727 return 0;
2728}
2729
2730static int vmaster_mute_mode_put(struct snd_kcontrol *kcontrol,
2731 struct snd_ctl_elem_value *ucontrol)
2732{
2733 struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol);
2734 unsigned int old_mode = hook->mute_mode;
2735
2736 hook->mute_mode = ucontrol->value.enumerated.item[0];
2737 if (hook->mute_mode > HDA_VMUTE_FOLLOW_MASTER)
2738 hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER;
2739 if (old_mode == hook->mute_mode)
2740 return 0;
2741 snd_hda_sync_vmaster_hook(hook);
2742 return 1;
2743}
2744
2745static struct snd_kcontrol_new vmaster_mute_mode = {
2746 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2747 .name = "Mute-LED Mode",
2748 .info = vmaster_mute_mode_info,
2749 .get = vmaster_mute_mode_get,
2750 .put = vmaster_mute_mode_put,
2751};
2752
2753/*
2754 * Add a mute-LED hook with the given vmaster switch kctl
2755 * "Mute-LED Mode" control is automatically created and associated with
2756 * the given hook.
2757 */
2758int snd_hda_add_vmaster_hook(struct hda_codec *codec,
Takashi Iwaif29735cb2012-03-13 07:55:10 +01002759 struct hda_vmaster_mute_hook *hook,
2760 bool expose_enum_ctl)
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002761{
2762 struct snd_kcontrol *kctl;
2763
2764 if (!hook->hook || !hook->sw_kctl)
2765 return 0;
2766 snd_ctl_add_vmaster_hook(hook->sw_kctl, hook->hook, codec);
2767 hook->codec = codec;
2768 hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER;
Takashi Iwaif29735cb2012-03-13 07:55:10 +01002769 if (!expose_enum_ctl)
2770 return 0;
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002771 kctl = snd_ctl_new1(&vmaster_mute_mode, hook);
2772 if (!kctl)
2773 return -ENOMEM;
2774 return snd_hda_ctl_add(codec, 0, kctl);
2775}
2776EXPORT_SYMBOL_HDA(snd_hda_add_vmaster_hook);
2777
2778/*
2779 * Call the hook with the current value for synchronization
2780 * Should be called in init callback
2781 */
2782void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook *hook)
2783{
2784 if (!hook->hook || !hook->codec)
2785 return;
2786 switch (hook->mute_mode) {
2787 case HDA_VMUTE_FOLLOW_MASTER:
2788 snd_ctl_sync_vmaster_hook(hook->sw_kctl);
2789 break;
2790 default:
2791 hook->hook(hook->codec, hook->mute_mode);
2792 break;
2793 }
2794}
2795EXPORT_SYMBOL_HDA(snd_hda_sync_vmaster_hook);
2796
2797
Takashi Iwaid5191e52009-11-16 14:58:17 +01002798/**
2799 * snd_hda_mixer_amp_switch_info - Info callback for a standard AMP mixer switch
2800 *
2801 * The control element is supposed to have the private_value field
2802 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2803 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002804int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
2805 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806{
2807 int chs = get_amp_channels(kcontrol);
2808
2809 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2810 uinfo->count = chs == 3 ? 2 : 1;
2811 uinfo->value.integer.min = 0;
2812 uinfo->value.integer.max = 1;
2813 return 0;
2814}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002815EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816
Takashi Iwaid5191e52009-11-16 14:58:17 +01002817/**
2818 * snd_hda_mixer_amp_switch_get - Get callback for a standard AMP mixer switch
2819 *
2820 * The control element is supposed to have the private_value field
2821 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2822 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002823int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
2824 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825{
2826 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2827 hda_nid_t nid = get_amp_nid(kcontrol);
2828 int chs = get_amp_channels(kcontrol);
2829 int dir = get_amp_direction(kcontrol);
2830 int idx = get_amp_index(kcontrol);
2831 long *valp = ucontrol->value.integer.value;
2832
2833 if (chs & 1)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002834 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002835 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 if (chs & 2)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002837 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002838 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 return 0;
2840}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002841EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842
Takashi Iwaid5191e52009-11-16 14:58:17 +01002843/**
2844 * snd_hda_mixer_amp_switch_put - Put callback for a standard AMP mixer switch
2845 *
2846 * The control element is supposed to have the private_value field
2847 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2848 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002849int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
2850 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851{
2852 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2853 hda_nid_t nid = get_amp_nid(kcontrol);
2854 int chs = get_amp_channels(kcontrol);
2855 int dir = get_amp_direction(kcontrol);
2856 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 long *valp = ucontrol->value.integer.value;
2858 int change = 0;
2859
Takashi Iwaicb53c622007-08-10 17:21:45 +02002860 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002861 if (chs & 1) {
Takashi Iwai4a19fae2005-06-08 14:43:58 +02002862 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02002863 HDA_AMP_MUTE,
2864 *valp ? 0 : HDA_AMP_MUTE);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002865 valp++;
2866 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02002867 if (chs & 2)
2868 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02002869 HDA_AMP_MUTE,
2870 *valp ? 0 : HDA_AMP_MUTE);
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002871 hda_call_check_power_status(codec, nid);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002872 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 return change;
2874}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002875EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876
2877/*
Takashi Iwai985be542005-11-02 18:26:49 +01002878 * bound volume controls
2879 *
2880 * bind multiple volumes (# indices, from 0)
2881 */
2882
2883#define AMP_VAL_IDX_SHIFT 19
2884#define AMP_VAL_IDX_MASK (0x0f<<19)
2885
Takashi Iwaid5191e52009-11-16 14:58:17 +01002886/**
2887 * snd_hda_mixer_bind_switch_get - Get callback for a bound volume control
2888 *
2889 * The control element is supposed to have the private_value field
2890 * set up via HDA_BIND_MUTE*() macros.
2891 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002892int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol,
2893 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01002894{
2895 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2896 unsigned long pval;
2897 int err;
2898
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002899 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002900 pval = kcontrol->private_value;
2901 kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */
2902 err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
2903 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002904 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002905 return err;
2906}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002907EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_get);
Takashi Iwai985be542005-11-02 18:26:49 +01002908
Takashi Iwaid5191e52009-11-16 14:58:17 +01002909/**
2910 * snd_hda_mixer_bind_switch_put - Put callback for a bound volume control
2911 *
2912 * The control element is supposed to have the private_value field
2913 * set up via HDA_BIND_MUTE*() macros.
2914 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002915int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol,
2916 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01002917{
2918 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2919 unsigned long pval;
2920 int i, indices, err = 0, change = 0;
2921
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002922 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002923 pval = kcontrol->private_value;
2924 indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT;
2925 for (i = 0; i < indices; i++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002926 kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) |
2927 (i << AMP_VAL_IDX_SHIFT);
Takashi Iwai985be542005-11-02 18:26:49 +01002928 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2929 if (err < 0)
2930 break;
2931 change |= err;
2932 }
2933 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002934 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002935 return err < 0 ? err : change;
2936}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002937EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_put);
Takashi Iwai985be542005-11-02 18:26:49 +01002938
Takashi Iwaid5191e52009-11-16 14:58:17 +01002939/**
2940 * snd_hda_mixer_bind_ctls_info - Info callback for a generic bound control
2941 *
2942 * The control element is supposed to have the private_value field
2943 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
Takashi Iwai532d5382007-07-27 19:02:40 +02002944 */
2945int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol,
2946 struct snd_ctl_elem_info *uinfo)
2947{
2948 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2949 struct hda_bind_ctls *c;
2950 int err;
2951
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002952 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01002953 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02002954 kcontrol->private_value = *c->values;
2955 err = c->ops->info(kcontrol, uinfo);
2956 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002957 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02002958 return err;
2959}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002960EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_info);
Takashi Iwai532d5382007-07-27 19:02:40 +02002961
Takashi Iwaid5191e52009-11-16 14:58:17 +01002962/**
2963 * snd_hda_mixer_bind_ctls_get - Get callback for a generic bound control
2964 *
2965 * The control element is supposed to have the private_value field
2966 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
2967 */
Takashi Iwai532d5382007-07-27 19:02:40 +02002968int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol,
2969 struct snd_ctl_elem_value *ucontrol)
2970{
2971 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2972 struct hda_bind_ctls *c;
2973 int err;
2974
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002975 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01002976 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02002977 kcontrol->private_value = *c->values;
2978 err = c->ops->get(kcontrol, ucontrol);
2979 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002980 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02002981 return err;
2982}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002983EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_get);
Takashi Iwai532d5382007-07-27 19:02:40 +02002984
Takashi Iwaid5191e52009-11-16 14:58:17 +01002985/**
2986 * snd_hda_mixer_bind_ctls_put - Put callback for a generic bound control
2987 *
2988 * The control element is supposed to have the private_value field
2989 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
2990 */
Takashi Iwai532d5382007-07-27 19:02:40 +02002991int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol,
2992 struct snd_ctl_elem_value *ucontrol)
2993{
2994 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2995 struct hda_bind_ctls *c;
2996 unsigned long *vals;
2997 int err = 0, change = 0;
2998
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002999 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01003000 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02003001 for (vals = c->values; *vals; vals++) {
3002 kcontrol->private_value = *vals;
3003 err = c->ops->put(kcontrol, ucontrol);
3004 if (err < 0)
3005 break;
3006 change |= err;
3007 }
3008 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003009 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02003010 return err < 0 ? err : change;
3011}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003012EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_put);
Takashi Iwai532d5382007-07-27 19:02:40 +02003013
Takashi Iwaid5191e52009-11-16 14:58:17 +01003014/**
3015 * snd_hda_mixer_bind_tlv - TLV callback for a generic bound control
3016 *
3017 * The control element is supposed to have the private_value field
3018 * set up via HDA_BIND_VOL() macro.
3019 */
Takashi Iwai532d5382007-07-27 19:02:40 +02003020int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag,
3021 unsigned int size, unsigned int __user *tlv)
3022{
3023 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3024 struct hda_bind_ctls *c;
3025 int err;
3026
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003027 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01003028 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02003029 kcontrol->private_value = *c->values;
3030 err = c->ops->tlv(kcontrol, op_flag, size, tlv);
3031 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003032 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02003033 return err;
3034}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003035EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_tlv);
Takashi Iwai532d5382007-07-27 19:02:40 +02003036
3037struct hda_ctl_ops snd_hda_bind_vol = {
3038 .info = snd_hda_mixer_amp_volume_info,
3039 .get = snd_hda_mixer_amp_volume_get,
3040 .put = snd_hda_mixer_amp_volume_put,
3041 .tlv = snd_hda_mixer_amp_tlv
3042};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003043EXPORT_SYMBOL_HDA(snd_hda_bind_vol);
Takashi Iwai532d5382007-07-27 19:02:40 +02003044
3045struct hda_ctl_ops snd_hda_bind_sw = {
3046 .info = snd_hda_mixer_amp_switch_info,
3047 .get = snd_hda_mixer_amp_switch_get,
3048 .put = snd_hda_mixer_amp_switch_put,
3049 .tlv = snd_hda_mixer_amp_tlv
3050};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003051EXPORT_SYMBOL_HDA(snd_hda_bind_sw);
Takashi Iwai532d5382007-07-27 19:02:40 +02003052
3053/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 * SPDIF out controls
3055 */
3056
Takashi Iwai0ba21762007-04-16 11:29:14 +02003057static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
3058 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059{
3060 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
3061 uinfo->count = 1;
3062 return 0;
3063}
3064
Takashi Iwai0ba21762007-04-16 11:29:14 +02003065static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
3066 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067{
3068 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
3069 IEC958_AES0_NONAUDIO |
3070 IEC958_AES0_CON_EMPHASIS_5015 |
3071 IEC958_AES0_CON_NOT_COPYRIGHT;
3072 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
3073 IEC958_AES1_CON_ORIGINAL;
3074 return 0;
3075}
3076
Takashi Iwai0ba21762007-04-16 11:29:14 +02003077static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
3078 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079{
3080 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
3081 IEC958_AES0_NONAUDIO |
3082 IEC958_AES0_PRO_EMPHASIS_5015;
3083 return 0;
3084}
3085
Takashi Iwai0ba21762007-04-16 11:29:14 +02003086static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
3087 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088{
3089 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06003090 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003091 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003093 mutex_lock(&codec->spdif_mutex);
3094 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren7c935972011-06-01 11:14:17 -06003095 ucontrol->value.iec958.status[0] = spdif->status & 0xff;
3096 ucontrol->value.iec958.status[1] = (spdif->status >> 8) & 0xff;
3097 ucontrol->value.iec958.status[2] = (spdif->status >> 16) & 0xff;
3098 ucontrol->value.iec958.status[3] = (spdif->status >> 24) & 0xff;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003099 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
3101 return 0;
3102}
3103
3104/* convert from SPDIF status bits to HDA SPDIF bits
3105 * bit 0 (DigEn) is always set zero (to be filled later)
3106 */
3107static unsigned short convert_from_spdif_status(unsigned int sbits)
3108{
3109 unsigned short val = 0;
3110
3111 if (sbits & IEC958_AES0_PROFESSIONAL)
Takashi Iwai0ba21762007-04-16 11:29:14 +02003112 val |= AC_DIG1_PROFESSIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 if (sbits & IEC958_AES0_NONAUDIO)
Takashi Iwai0ba21762007-04-16 11:29:14 +02003114 val |= AC_DIG1_NONAUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003116 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
3117 IEC958_AES0_PRO_EMPHASIS_5015)
3118 val |= AC_DIG1_EMPHASIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003120 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
3121 IEC958_AES0_CON_EMPHASIS_5015)
3122 val |= AC_DIG1_EMPHASIS;
3123 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
3124 val |= AC_DIG1_COPYRIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
Takashi Iwai0ba21762007-04-16 11:29:14 +02003126 val |= AC_DIG1_LEVEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
3128 }
3129 return val;
3130}
3131
3132/* convert to SPDIF status bits from HDA SPDIF bits
3133 */
3134static unsigned int convert_to_spdif_status(unsigned short val)
3135{
3136 unsigned int sbits = 0;
3137
Takashi Iwai0ba21762007-04-16 11:29:14 +02003138 if (val & AC_DIG1_NONAUDIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 sbits |= IEC958_AES0_NONAUDIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003140 if (val & AC_DIG1_PROFESSIONAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 sbits |= IEC958_AES0_PROFESSIONAL;
3142 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003143 if (sbits & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
3145 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003146 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003148 if (!(val & AC_DIG1_COPYRIGHT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003150 if (val & AC_DIG1_LEVEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
3152 sbits |= val & (0x7f << 8);
3153 }
3154 return sbits;
3155}
3156
Takashi Iwai2f728532008-09-25 16:32:41 +02003157/* set digital convert verbs both for the given NID and its slaves */
3158static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
3159 int verb, int val)
3160{
Takashi Iwaidda14412011-05-02 11:29:30 +02003161 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02003162
Takashi Iwai9e976972008-11-25 08:17:20 +01003163 snd_hda_codec_write_cache(codec, nid, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02003164 d = codec->slave_dig_outs;
3165 if (!d)
3166 return;
3167 for (; *d; d++)
Takashi Iwai9e976972008-11-25 08:17:20 +01003168 snd_hda_codec_write_cache(codec, *d, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02003169}
3170
3171static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,
3172 int dig1, int dig2)
3173{
3174 if (dig1 != -1)
3175 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_1, dig1);
3176 if (dig2 != -1)
3177 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_2, dig2);
3178}
3179
Takashi Iwai0ba21762007-04-16 11:29:14 +02003180static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
3181 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182{
3183 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06003184 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003185 struct hda_spdif_out *spdif;
3186 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 unsigned short val;
3188 int change;
3189
Ingo Molnar62932df2006-01-16 16:34:20 +01003190 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003191 spdif = snd_array_elem(&codec->spdif_out, idx);
3192 nid = spdif->nid;
Stephen Warren7c935972011-06-01 11:14:17 -06003193 spdif->status = ucontrol->value.iec958.status[0] |
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
3195 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
3196 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
Stephen Warren7c935972011-06-01 11:14:17 -06003197 val = convert_from_spdif_status(spdif->status);
3198 val |= spdif->ctls & 1;
3199 change = spdif->ctls != val;
3200 spdif->ctls = val;
Stephen Warren74b654c2011-06-01 11:14:18 -06003201 if (change && nid != (u16)-1)
Takashi Iwai2f728532008-09-25 16:32:41 +02003202 set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff);
Ingo Molnar62932df2006-01-16 16:34:20 +01003203 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 return change;
3205}
3206
Takashi Iwaia5ce8892007-07-23 15:42:26 +02003207#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208
Takashi Iwai0ba21762007-04-16 11:29:14 +02003209static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
3210 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211{
3212 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06003213 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003214 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003216 mutex_lock(&codec->spdif_mutex);
3217 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren7c935972011-06-01 11:14:17 -06003218 ucontrol->value.integer.value[0] = spdif->ctls & AC_DIG1_ENABLE;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003219 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 return 0;
3221}
3222
Stephen Warren74b654c2011-06-01 11:14:18 -06003223static inline void set_spdif_ctls(struct hda_codec *codec, hda_nid_t nid,
3224 int dig1, int dig2)
3225{
3226 set_dig_out_convert(codec, nid, dig1, dig2);
3227 /* unmute amp switch (if any) */
3228 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
3229 (dig1 & AC_DIG1_ENABLE))
3230 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3231 HDA_AMP_MUTE, 0);
3232}
3233
Takashi Iwai0ba21762007-04-16 11:29:14 +02003234static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
3235 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236{
3237 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06003238 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003239 struct hda_spdif_out *spdif;
3240 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 unsigned short val;
3242 int change;
3243
Ingo Molnar62932df2006-01-16 16:34:20 +01003244 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003245 spdif = snd_array_elem(&codec->spdif_out, idx);
3246 nid = spdif->nid;
Stephen Warren7c935972011-06-01 11:14:17 -06003247 val = spdif->ctls & ~AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 if (ucontrol->value.integer.value[0])
Takashi Iwai0ba21762007-04-16 11:29:14 +02003249 val |= AC_DIG1_ENABLE;
Stephen Warren7c935972011-06-01 11:14:17 -06003250 change = spdif->ctls != val;
Stephen Warren74b654c2011-06-01 11:14:18 -06003251 spdif->ctls = val;
3252 if (change && nid != (u16)-1)
3253 set_spdif_ctls(codec, nid, val & 0xff, -1);
Ingo Molnar62932df2006-01-16 16:34:20 +01003254 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 return change;
3256}
3257
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003258static struct snd_kcontrol_new dig_mixes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259 {
3260 .access = SNDRV_CTL_ELEM_ACCESS_READ,
3261 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003262 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 .info = snd_hda_spdif_mask_info,
3264 .get = snd_hda_spdif_cmask_get,
3265 },
3266 {
3267 .access = SNDRV_CTL_ELEM_ACCESS_READ,
3268 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003269 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 .info = snd_hda_spdif_mask_info,
3271 .get = snd_hda_spdif_pmask_get,
3272 },
3273 {
3274 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003275 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 .info = snd_hda_spdif_mask_info,
3277 .get = snd_hda_spdif_default_get,
3278 .put = snd_hda_spdif_default_put,
3279 },
3280 {
3281 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003282 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 .info = snd_hda_spdif_out_switch_info,
3284 .get = snd_hda_spdif_out_switch_get,
3285 .put = snd_hda_spdif_out_switch_put,
3286 },
3287 { } /* end */
3288};
3289
3290/**
Takashi Iwaidcda5802012-10-12 17:24:51 +02003291 * snd_hda_create_dig_out_ctls - create Output SPDIF-related controls
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 * @codec: the HDA codec
Takashi Iwaidcda5802012-10-12 17:24:51 +02003293 * @associated_nid: NID that new ctls associated with
3294 * @cvt_nid: converter NID
3295 * @type: HDA_PCM_TYPE_*
3296 * Creates controls related with the digital output.
3297 * Called from each patch supporting the digital out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 *
3299 * Returns 0 if successful, or a negative error code.
3300 */
Takashi Iwaidcda5802012-10-12 17:24:51 +02003301int snd_hda_create_dig_out_ctls(struct hda_codec *codec,
3302 hda_nid_t associated_nid,
3303 hda_nid_t cvt_nid,
3304 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305{
3306 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003307 struct snd_kcontrol *kctl;
3308 struct snd_kcontrol_new *dig_mix;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003309 int idx = 0;
3310 const int spdif_index = 16;
Stephen Warren7c935972011-06-01 11:14:17 -06003311 struct hda_spdif_out *spdif;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003312 struct hda_bus *bus = codec->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003314 if (bus->primary_dig_out_type == HDA_PCM_TYPE_HDMI &&
Takashi Iwaidcda5802012-10-12 17:24:51 +02003315 type == HDA_PCM_TYPE_SPDIF) {
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003316 idx = spdif_index;
3317 } else if (bus->primary_dig_out_type == HDA_PCM_TYPE_SPDIF &&
Takashi Iwaidcda5802012-10-12 17:24:51 +02003318 type == HDA_PCM_TYPE_HDMI) {
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003319 /* suppose a single SPDIF device */
3320 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
3321 kctl = find_mixer_ctl(codec, dig_mix->name, 0, 0);
3322 if (!kctl)
3323 break;
3324 kctl->id.index = spdif_index;
Takashi Iwaidcda5802012-10-12 17:24:51 +02003325 }
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003326 bus->primary_dig_out_type = HDA_PCM_TYPE_HDMI;
Takashi Iwaidcda5802012-10-12 17:24:51 +02003327 }
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003328 if (!bus->primary_dig_out_type)
3329 bus->primary_dig_out_type = type;
Takashi Iwaidcda5802012-10-12 17:24:51 +02003330
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01003331 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Playback Switch", idx);
Takashi Iwai1afe2062010-12-23 10:17:52 +01003332 if (idx < 0) {
Takashi Iwai09f99702008-02-04 12:31:13 +01003333 printk(KERN_ERR "hda_codec: too many IEC958 outputs\n");
3334 return -EBUSY;
3335 }
Stephen Warren7c935972011-06-01 11:14:17 -06003336 spdif = snd_array_new(&codec->spdif_out);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
3338 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaib91f0802008-11-04 08:43:08 +01003339 if (!kctl)
3340 return -ENOMEM;
Takashi Iwai09f99702008-02-04 12:31:13 +01003341 kctl->id.index = idx;
Stephen Warren7c935972011-06-01 11:14:17 -06003342 kctl->private_value = codec->spdif_out.used - 1;
Stephen Warren74b654c2011-06-01 11:14:18 -06003343 err = snd_hda_ctl_add(codec, associated_nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003344 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 return err;
3346 }
Stephen Warren74b654c2011-06-01 11:14:18 -06003347 spdif->nid = cvt_nid;
3348 spdif->ctls = snd_hda_codec_read(codec, cvt_nid, 0,
Stephen Warren7c935972011-06-01 11:14:17 -06003349 AC_VERB_GET_DIGI_CONVERT_1, 0);
3350 spdif->status = convert_to_spdif_status(spdif->ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 return 0;
3352}
Takashi Iwaidcda5802012-10-12 17:24:51 +02003353EXPORT_SYMBOL_HDA(snd_hda_create_dig_out_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003355/* get the hda_spdif_out entry from the given NID
3356 * call within spdif_mutex lock
3357 */
Stephen Warren7c935972011-06-01 11:14:17 -06003358struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec,
3359 hda_nid_t nid)
3360{
3361 int i;
3362 for (i = 0; i < codec->spdif_out.used; i++) {
3363 struct hda_spdif_out *spdif =
3364 snd_array_elem(&codec->spdif_out, i);
3365 if (spdif->nid == nid)
3366 return spdif;
3367 }
3368 return NULL;
3369}
3370EXPORT_SYMBOL_HDA(snd_hda_spdif_out_of_nid);
3371
Stephen Warren74b654c2011-06-01 11:14:18 -06003372void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx)
3373{
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003374 struct hda_spdif_out *spdif;
Stephen Warren74b654c2011-06-01 11:14:18 -06003375
3376 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003377 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren74b654c2011-06-01 11:14:18 -06003378 spdif->nid = (u16)-1;
3379 mutex_unlock(&codec->spdif_mutex);
3380}
3381EXPORT_SYMBOL_HDA(snd_hda_spdif_ctls_unassign);
3382
3383void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid)
3384{
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003385 struct hda_spdif_out *spdif;
Stephen Warren74b654c2011-06-01 11:14:18 -06003386 unsigned short val;
3387
3388 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003389 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren74b654c2011-06-01 11:14:18 -06003390 if (spdif->nid != nid) {
3391 spdif->nid = nid;
3392 val = spdif->ctls;
3393 set_spdif_ctls(codec, nid, val & 0xff, (val >> 8) & 0xff);
3394 }
3395 mutex_unlock(&codec->spdif_mutex);
3396}
3397EXPORT_SYMBOL_HDA(snd_hda_spdif_ctls_assign);
3398
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399/*
Takashi Iwai9a081602008-02-12 18:37:26 +01003400 * SPDIF sharing with analog output
3401 */
3402static int spdif_share_sw_get(struct snd_kcontrol *kcontrol,
3403 struct snd_ctl_elem_value *ucontrol)
3404{
3405 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
3406 ucontrol->value.integer.value[0] = mout->share_spdif;
3407 return 0;
3408}
3409
3410static int spdif_share_sw_put(struct snd_kcontrol *kcontrol,
3411 struct snd_ctl_elem_value *ucontrol)
3412{
3413 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
3414 mout->share_spdif = !!ucontrol->value.integer.value[0];
3415 return 0;
3416}
3417
3418static struct snd_kcontrol_new spdif_share_sw = {
3419 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3420 .name = "IEC958 Default PCM Playback Switch",
3421 .info = snd_ctl_boolean_mono_info,
3422 .get = spdif_share_sw_get,
3423 .put = spdif_share_sw_put,
3424};
3425
Takashi Iwaid5191e52009-11-16 14:58:17 +01003426/**
3427 * snd_hda_create_spdif_share_sw - create Default PCM switch
3428 * @codec: the HDA codec
3429 * @mout: multi-out instance
3430 */
Takashi Iwai9a081602008-02-12 18:37:26 +01003431int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
3432 struct hda_multi_out *mout)
3433{
3434 if (!mout->dig_out_nid)
3435 return 0;
3436 /* ATTENTION: here mout is passed as private_data, instead of codec */
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01003437 return snd_hda_ctl_add(codec, mout->dig_out_nid,
3438 snd_ctl_new1(&spdif_share_sw, mout));
Takashi Iwai9a081602008-02-12 18:37:26 +01003439}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003440EXPORT_SYMBOL_HDA(snd_hda_create_spdif_share_sw);
Takashi Iwai9a081602008-02-12 18:37:26 +01003441
3442/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 * SPDIF input
3444 */
3445
3446#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
3447
Takashi Iwai0ba21762007-04-16 11:29:14 +02003448static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
3449 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450{
3451 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3452
3453 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
3454 return 0;
3455}
3456
Takashi Iwai0ba21762007-04-16 11:29:14 +02003457static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
3458 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459{
3460 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3461 hda_nid_t nid = kcontrol->private_value;
3462 unsigned int val = !!ucontrol->value.integer.value[0];
3463 int change;
3464
Ingo Molnar62932df2006-01-16 16:34:20 +01003465 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003467 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 codec->spdif_in_enable = val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003469 snd_hda_codec_write_cache(codec, nid, 0,
3470 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003472 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 return change;
3474}
3475
Takashi Iwai0ba21762007-04-16 11:29:14 +02003476static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
3477 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478{
3479 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3480 hda_nid_t nid = kcontrol->private_value;
3481 unsigned short val;
3482 unsigned int sbits;
3483
Andrew Paprocki3982d172007-12-19 12:13:44 +01003484 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485 sbits = convert_to_spdif_status(val);
3486 ucontrol->value.iec958.status[0] = sbits;
3487 ucontrol->value.iec958.status[1] = sbits >> 8;
3488 ucontrol->value.iec958.status[2] = sbits >> 16;
3489 ucontrol->value.iec958.status[3] = sbits >> 24;
3490 return 0;
3491}
3492
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003493static struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 {
3495 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003496 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 .info = snd_hda_spdif_in_switch_info,
3498 .get = snd_hda_spdif_in_switch_get,
3499 .put = snd_hda_spdif_in_switch_put,
3500 },
3501 {
3502 .access = SNDRV_CTL_ELEM_ACCESS_READ,
3503 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003504 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 .info = snd_hda_spdif_mask_info,
3506 .get = snd_hda_spdif_in_status_get,
3507 },
3508 { } /* end */
3509};
3510
3511/**
3512 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
3513 * @codec: the HDA codec
3514 * @nid: audio in widget NID
3515 *
3516 * Creates controls related with the SPDIF input.
3517 * Called from each patch supporting the SPDIF in.
3518 *
3519 * Returns 0 if successful, or a negative error code.
3520 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02003521int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522{
3523 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003524 struct snd_kcontrol *kctl;
3525 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01003526 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527
Takashi Iwaidcda5802012-10-12 17:24:51 +02003528 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Capture Switch", 0);
Takashi Iwai1afe2062010-12-23 10:17:52 +01003529 if (idx < 0) {
Takashi Iwai09f99702008-02-04 12:31:13 +01003530 printk(KERN_ERR "hda_codec: too many IEC958 inputs\n");
3531 return -EBUSY;
3532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
3534 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaic8dcdf82009-02-06 16:21:20 +01003535 if (!kctl)
3536 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 kctl->private_value = nid;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01003538 err = snd_hda_ctl_add(codec, nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003539 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 return err;
3541 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02003542 codec->spdif_in_enable =
Andrew Paprocki3982d172007-12-19 12:13:44 +01003543 snd_hda_codec_read(codec, nid, 0,
3544 AC_VERB_GET_DIGI_CONVERT_1, 0) &
Takashi Iwai0ba21762007-04-16 11:29:14 +02003545 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546 return 0;
3547}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003548EXPORT_SYMBOL_HDA(snd_hda_create_spdif_in_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003550/*
3551 * command cache
3552 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553
Takashi Iwaic370dd62012-12-13 18:30:04 +01003554/* build a 31bit cache key with the widget id and the command parameter */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003555#define build_cmd_cache_key(nid, verb) ((verb << 8) | nid)
3556#define get_cmd_cache_nid(key) ((key) & 0xff)
3557#define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff)
3558
3559/**
3560 * snd_hda_codec_write_cache - send a single command with caching
3561 * @codec: the HDA codec
3562 * @nid: NID to send the command
3563 * @direct: direct flag
3564 * @verb: the verb to send
3565 * @parm: the parameter for the verb
3566 *
3567 * Send a single command without waiting for response.
3568 *
3569 * Returns 0 if successful, or a negative error code.
3570 */
3571int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid,
3572 int direct, unsigned int verb, unsigned int parm)
3573{
Takashi Iwaic370dd62012-12-13 18:30:04 +01003574 int err;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003575 struct hda_cache_head *c;
3576 u32 key;
Takashi Iwaide1e37b2012-12-20 11:00:21 +01003577 unsigned int cache_only;
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003578
Takashi Iwaide1e37b2012-12-20 11:00:21 +01003579 cache_only = codec->cached_write;
3580 if (!cache_only) {
Takashi Iwaic370dd62012-12-13 18:30:04 +01003581 err = snd_hda_codec_write(codec, nid, direct, verb, parm);
3582 if (err < 0)
3583 return err;
3584 }
3585
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003586 /* parm may contain the verb stuff for get/set amp */
3587 verb = verb | (parm >> 8);
3588 parm &= 0xff;
3589 key = build_cmd_cache_key(nid, verb);
3590 mutex_lock(&codec->bus->cmd_mutex);
3591 c = get_alloc_hash(&codec->cmd_cache, key);
Takashi Iwaic370dd62012-12-13 18:30:04 +01003592 if (c) {
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003593 c->val = parm;
Takashi Iwaide1e37b2012-12-20 11:00:21 +01003594 c->dirty = cache_only;
Takashi Iwaic370dd62012-12-13 18:30:04 +01003595 }
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003596 mutex_unlock(&codec->bus->cmd_mutex);
3597 return 0;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003598}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003599EXPORT_SYMBOL_HDA(snd_hda_codec_write_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003600
Takashi Iwaid5191e52009-11-16 14:58:17 +01003601/**
Takashi Iwaia68d5a542010-03-30 18:03:44 +02003602 * snd_hda_codec_update_cache - check cache and write the cmd only when needed
3603 * @codec: the HDA codec
3604 * @nid: NID to send the command
3605 * @direct: direct flag
3606 * @verb: the verb to send
3607 * @parm: the parameter for the verb
3608 *
3609 * This function works like snd_hda_codec_write_cache(), but it doesn't send
3610 * command if the parameter is already identical with the cached value.
3611 * If not, it sends the command and refreshes the cache.
3612 *
3613 * Returns 0 if successful, or a negative error code.
3614 */
3615int snd_hda_codec_update_cache(struct hda_codec *codec, hda_nid_t nid,
3616 int direct, unsigned int verb, unsigned int parm)
3617{
3618 struct hda_cache_head *c;
3619 u32 key;
3620
3621 /* parm may contain the verb stuff for get/set amp */
3622 verb = verb | (parm >> 8);
3623 parm &= 0xff;
3624 key = build_cmd_cache_key(nid, verb);
3625 mutex_lock(&codec->bus->cmd_mutex);
3626 c = get_hash(&codec->cmd_cache, key);
3627 if (c && c->val == parm) {
3628 mutex_unlock(&codec->bus->cmd_mutex);
3629 return 0;
3630 }
3631 mutex_unlock(&codec->bus->cmd_mutex);
3632 return snd_hda_codec_write_cache(codec, nid, direct, verb, parm);
3633}
3634EXPORT_SYMBOL_HDA(snd_hda_codec_update_cache);
3635
3636/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01003637 * snd_hda_codec_resume_cache - Resume the all commands from the cache
3638 * @codec: HD-audio codec
3639 *
3640 * Execute all verbs recorded in the command caches to resume.
3641 */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003642void snd_hda_codec_resume_cache(struct hda_codec *codec)
3643{
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003644 int i;
3645
Takashi Iwaic370dd62012-12-13 18:30:04 +01003646 mutex_lock(&codec->hash_mutex);
Takashi Iwaiaa88a352012-12-20 11:02:00 +01003647 codec->cached_write = 0;
Takashi Iwaic370dd62012-12-13 18:30:04 +01003648 for (i = 0; i < codec->cmd_cache.buf.used; i++) {
3649 struct hda_cache_head *buffer;
3650 u32 key;
3651
3652 buffer = snd_array_elem(&codec->cmd_cache.buf, i);
3653 key = buffer->key;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003654 if (!key)
3655 continue;
Takashi Iwaic370dd62012-12-13 18:30:04 +01003656 if (!buffer->dirty)
3657 continue;
3658 buffer->dirty = 0;
3659 mutex_unlock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003660 snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0,
3661 get_cmd_cache_cmd(key), buffer->val);
Takashi Iwaic370dd62012-12-13 18:30:04 +01003662 mutex_lock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003663 }
Takashi Iwaic370dd62012-12-13 18:30:04 +01003664 mutex_unlock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003665}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003666EXPORT_SYMBOL_HDA(snd_hda_codec_resume_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003667
3668/**
3669 * snd_hda_sequence_write_cache - sequence writes with caching
3670 * @codec: the HDA codec
3671 * @seq: VERB array to send
3672 *
3673 * Send the commands sequentially from the given array.
3674 * Thte commands are recorded on cache for power-save and resume.
3675 * The array must be terminated with NID=0.
3676 */
3677void snd_hda_sequence_write_cache(struct hda_codec *codec,
3678 const struct hda_verb *seq)
3679{
3680 for (; seq->nid; seq++)
3681 snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb,
3682 seq->param);
3683}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003684EXPORT_SYMBOL_HDA(snd_hda_sequence_write_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003685
Takashi Iwaidc870f32013-01-22 15:24:30 +01003686/**
3687 * snd_hda_codec_flush_cache - Execute all pending (cached) amps / verbs
3688 * @codec: HD-audio codec
3689 */
3690void snd_hda_codec_flush_cache(struct hda_codec *codec)
3691{
3692 snd_hda_codec_resume_amp(codec);
3693 snd_hda_codec_resume_cache(codec);
3694}
3695EXPORT_SYMBOL_HDA(snd_hda_codec_flush_cache);
3696
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003697void snd_hda_codec_set_power_to_all(struct hda_codec *codec, hda_nid_t fg,
Takashi Iwai9419ab62013-01-24 17:23:35 +01003698 unsigned int power_state)
Takashi Iwai54d17402005-11-21 16:33:22 +01003699{
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003700 hda_nid_t nid = codec->start_nid;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003701 int i;
Takashi Iwai54d17402005-11-21 16:33:22 +01003702
Takashi Iwaicb53c622007-08-10 17:21:45 +02003703 for (i = 0; i < codec->num_nodes; i++, nid++) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01003704 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwai9419ab62013-01-24 17:23:35 +01003705 unsigned int state = power_state;
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003706 if (!(wcaps & AC_WCAP_POWER))
3707 continue;
Takashi Iwai9419ab62013-01-24 17:23:35 +01003708 if (codec->power_filter) {
3709 state = codec->power_filter(codec, nid, power_state);
3710 if (state != power_state && power_state == AC_PWRST_D3)
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003711 continue;
Takashi Iwai1194b5b2007-10-10 10:04:26 +02003712 }
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003713 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE,
Takashi Iwai9419ab62013-01-24 17:23:35 +01003714 state);
Takashi Iwai54d17402005-11-21 16:33:22 +01003715 }
Takashi Iwai54d17402005-11-21 16:33:22 +01003716}
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003717EXPORT_SYMBOL_HDA(snd_hda_codec_set_power_to_all);
3718
3719/*
Wang Xingchao0c7f46a2012-06-06 22:02:48 +08003720 * supported power states check
3721 */
3722static bool snd_hda_codec_get_supported_ps(struct hda_codec *codec, hda_nid_t fg,
3723 unsigned int power_state)
3724{
3725 int sup = snd_hda_param_read(codec, fg, AC_PAR_POWER_STATE);
3726
Mengdong Line037cb42012-08-10 14:11:58 +02003727 if (sup == -1)
Wang Xingchao0c7f46a2012-06-06 22:02:48 +08003728 return false;
3729 if (sup & power_state)
3730 return true;
3731 else
3732 return false;
3733}
3734
3735/*
Takashi Iwai432c6412012-08-28 09:59:20 -07003736 * wait until the state is reached, returns the current state
3737 */
3738static unsigned int hda_sync_power_state(struct hda_codec *codec,
3739 hda_nid_t fg,
3740 unsigned int power_state)
3741{
3742 unsigned long end_time = jiffies + msecs_to_jiffies(500);
3743 unsigned int state, actual_state;
3744
3745 for (;;) {
3746 state = snd_hda_codec_read(codec, fg, 0,
3747 AC_VERB_GET_POWER_STATE, 0);
3748 if (state & AC_PWRST_ERROR)
3749 break;
3750 actual_state = (state >> 4) & 0x0f;
3751 if (actual_state == power_state)
3752 break;
3753 if (time_after_eq(jiffies, end_time))
3754 break;
3755 /* wait until the codec reachs to the target state */
3756 msleep(1);
3757 }
3758 return state;
3759}
3760
Takashi Iwai9419ab62013-01-24 17:23:35 +01003761/* don't power down the widget if it controls eapd and EAPD_BTLENABLE is set */
3762static unsigned int default_power_filter(struct hda_codec *codec, hda_nid_t nid,
3763 unsigned int power_state)
3764{
3765 if (power_state == AC_PWRST_D3 &&
3766 get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_PIN &&
3767 (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)) {
3768 int eapd = snd_hda_codec_read(codec, nid, 0,
3769 AC_VERB_GET_EAPD_BTLENABLE, 0);
3770 if (eapd & 0x02)
3771 return AC_PWRST_D0;
3772 }
3773 return power_state;
3774}
3775
Takashi Iwai432c6412012-08-28 09:59:20 -07003776/*
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003777 * set power state of the codec, and return the power state
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003778 */
Takashi Iwaid8193872012-08-31 07:54:38 -07003779static unsigned int hda_set_power_state(struct hda_codec *codec,
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003780 unsigned int power_state)
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003781{
Takashi Iwaid8193872012-08-31 07:54:38 -07003782 hda_nid_t fg = codec->afg ? codec->afg : codec->mfg;
Wang Xingchao09617ce2012-06-08 10:26:08 +08003783 int count;
3784 unsigned int state;
3785
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003786 /* this delay seems necessary to avoid click noise at power-down */
Wang Xingchao0f4ccbb2012-06-07 16:51:33 +08003787 if (power_state == AC_PWRST_D3) {
3788 /* transition time less than 10ms for power down */
Takashi Iwai983f6b92012-08-28 09:18:01 -07003789 msleep(codec->epss ? 10 : 100);
Wang Xingchao0f4ccbb2012-06-07 16:51:33 +08003790 }
Wang Xingchao09617ce2012-06-08 10:26:08 +08003791
3792 /* repeat power states setting at most 10 times*/
3793 for (count = 0; count < 10; count++) {
Takashi Iwai432c6412012-08-28 09:59:20 -07003794 if (codec->patch_ops.set_power_state)
3795 codec->patch_ops.set_power_state(codec, fg,
3796 power_state);
3797 else {
3798 snd_hda_codec_read(codec, fg, 0,
3799 AC_VERB_SET_POWER_STATE,
3800 power_state);
Takashi Iwai9419ab62013-01-24 17:23:35 +01003801 snd_hda_codec_set_power_to_all(codec, fg, power_state);
Takashi Iwai432c6412012-08-28 09:59:20 -07003802 }
3803 state = hda_sync_power_state(codec, fg, power_state);
Wang Xingchao09617ce2012-06-08 10:26:08 +08003804 if (!(state & AC_PWRST_ERROR))
3805 break;
3806 }
Mengdong Linb8dfc4622012-08-23 17:32:30 +08003807
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003808 return state;
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003809}
Takashi Iwai54d17402005-11-21 16:33:22 +01003810
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003811/* sync power states of all widgets;
3812 * this is called at the end of codec parsing
3813 */
3814static void sync_power_up_states(struct hda_codec *codec)
3815{
3816 hda_nid_t nid = codec->start_nid;
3817 int i;
3818
3819 /* don't care if no or standard filter is used */
3820 if (!codec->power_filter || codec->power_filter == default_power_filter)
3821 return;
3822
3823 for (i = 0; i < codec->num_nodes; i++, nid++) {
3824 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwai9040d102013-01-24 17:47:17 +01003825 unsigned int target;
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003826 if (!(wcaps & AC_WCAP_POWER))
3827 continue;
3828 target = codec->power_filter(codec, nid, AC_PWRST_D0);
3829 if (target == AC_PWRST_D0)
3830 continue;
Takashi Iwai9040d102013-01-24 17:47:17 +01003831 if (!snd_hda_check_power_state(codec, nid, target))
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003832 snd_hda_codec_write(codec, nid, 0,
3833 AC_VERB_SET_POWER_STATE, target);
3834 }
3835}
3836
Takashi Iwai11aeff02008-07-30 15:01:46 +02003837#ifdef CONFIG_SND_HDA_HWDEP
3838/* execute additional init verbs */
3839static void hda_exec_init_verbs(struct hda_codec *codec)
3840{
3841 if (codec->init_verbs.list)
3842 snd_hda_sequence_write(codec, codec->init_verbs.list);
3843}
3844#else
3845static inline void hda_exec_init_verbs(struct hda_codec *codec) {}
3846#endif
3847
Takashi Iwai2a439522011-07-26 09:52:50 +02003848#ifdef CONFIG_PM
Takashi Iwaicb53c622007-08-10 17:21:45 +02003849/*
3850 * call suspend and power-down; used both from PM and power-save
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003851 * this function returns the power state in the end
Takashi Iwaicb53c622007-08-10 17:21:45 +02003852 */
Dylan Reidd17344b2012-09-28 15:57:01 -07003853static unsigned int hda_call_codec_suspend(struct hda_codec *codec, bool in_wq)
Takashi Iwaicb53c622007-08-10 17:21:45 +02003854{
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003855 unsigned int state;
3856
Takashi Iwai989c3182012-11-19 14:14:58 +01003857 codec->in_pm = 1;
3858
Takashi Iwaicb53c622007-08-10 17:21:45 +02003859 if (codec->patch_ops.suspend)
Takashi Iwai68cb2b52012-07-02 15:20:37 +02003860 codec->patch_ops.suspend(codec);
Takashi Iwaieb541332010-08-06 13:48:11 +02003861 hda_cleanup_all_streams(codec);
Takashi Iwaid8193872012-08-31 07:54:38 -07003862 state = hda_set_power_state(codec, AC_PWRST_D3);
Dylan Reidd17344b2012-09-28 15:57:01 -07003863 /* Cancel delayed work if we aren't currently running from it. */
3864 if (!in_wq)
3865 cancel_delayed_work_sync(&codec->power_work);
Takashi Iwaia2d96e72012-05-09 12:36:22 +02003866 spin_lock(&codec->power_lock);
3867 snd_hda_update_power_acct(codec);
3868 trace_hda_power_down(codec);
Takashi Iwai95e99fd2007-08-13 15:29:04 +02003869 codec->power_on = 0;
Takashi Iwaia221e282007-08-16 16:35:33 +02003870 codec->power_transition = 0;
Takashi Iwaia2f63092009-11-11 09:34:25 +01003871 codec->power_jiffies = jiffies;
Takashi Iwaia2d96e72012-05-09 12:36:22 +02003872 spin_unlock(&codec->power_lock);
Takashi Iwai989c3182012-11-19 14:14:58 +01003873 codec->in_pm = 0;
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003874 return state;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003875}
3876
Takashi Iwaic370dd62012-12-13 18:30:04 +01003877/* mark all entries of cmd and amp caches dirty */
3878static void hda_mark_cmd_cache_dirty(struct hda_codec *codec)
3879{
3880 int i;
3881 for (i = 0; i < codec->cmd_cache.buf.used; i++) {
3882 struct hda_cache_head *cmd;
3883 cmd = snd_array_elem(&codec->cmd_cache.buf, i);
3884 cmd->dirty = 1;
3885 }
3886 for (i = 0; i < codec->amp_cache.buf.used; i++) {
3887 struct hda_amp_info *amp;
David Henningssonf038fca2013-01-15 15:27:19 +01003888 amp = snd_array_elem(&codec->amp_cache.buf, i);
Takashi Iwaic370dd62012-12-13 18:30:04 +01003889 amp->head.dirty = 1;
3890 }
3891}
3892
Takashi Iwaicb53c622007-08-10 17:21:45 +02003893/*
3894 * kick up codec; used both from PM and power-save
3895 */
3896static void hda_call_codec_resume(struct hda_codec *codec)
3897{
Takashi Iwai989c3182012-11-19 14:14:58 +01003898 codec->in_pm = 1;
3899
Takashi Iwaic370dd62012-12-13 18:30:04 +01003900 hda_mark_cmd_cache_dirty(codec);
3901
Takashi Iwai7f308302012-05-08 16:52:23 +02003902 /* set as if powered on for avoiding re-entering the resume
3903 * in the resume / power-save sequence
3904 */
3905 hda_keep_power_on(codec);
Takashi Iwaid8193872012-08-31 07:54:38 -07003906 hda_set_power_state(codec, AC_PWRST_D0);
Takashi Iwaiac0547d2010-07-05 16:50:13 +02003907 restore_shutup_pins(codec);
Takashi Iwai11aeff02008-07-30 15:01:46 +02003908 hda_exec_init_verbs(codec);
Takashi Iwai31614bb2013-01-23 15:58:40 +01003909 snd_hda_jack_set_dirty_all(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003910 if (codec->patch_ops.resume)
3911 codec->patch_ops.resume(codec);
3912 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02003913 if (codec->patch_ops.init)
3914 codec->patch_ops.init(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003915 snd_hda_codec_resume_amp(codec);
3916 snd_hda_codec_resume_cache(codec);
3917 }
David Henningsson26a6cb62012-10-09 15:04:21 +02003918
3919 if (codec->jackpoll_interval)
3920 hda_jackpoll_work(&codec->jackpoll_work.work);
Takashi Iwai31614bb2013-01-23 15:58:40 +01003921 else
David Henningsson26a6cb62012-10-09 15:04:21 +02003922 snd_hda_jack_report_sync(codec);
Takashi Iwai989c3182012-11-19 14:14:58 +01003923
3924 codec->in_pm = 0;
Takashi Iwai7f308302012-05-08 16:52:23 +02003925 snd_hda_power_down(codec); /* flag down before returning */
Takashi Iwaicb53c622007-08-10 17:21:45 +02003926}
Takashi Iwai2a439522011-07-26 09:52:50 +02003927#endif /* CONFIG_PM */
Takashi Iwaicb53c622007-08-10 17:21:45 +02003928
Takashi Iwai54d17402005-11-21 16:33:22 +01003929
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930/**
3931 * snd_hda_build_controls - build mixer controls
3932 * @bus: the BUS
3933 *
3934 * Creates mixer controls for each codec included in the bus.
3935 *
3936 * Returns 0 if successful, otherwise a negative error code.
3937 */
Takashi Iwai6a0f56a2012-12-07 07:41:56 +01003938int snd_hda_build_controls(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939{
Takashi Iwai0ba21762007-04-16 11:29:14 +02003940 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941
Takashi Iwai0ba21762007-04-16 11:29:14 +02003942 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003943 int err = snd_hda_codec_build_controls(codec);
Takashi Iwaif93d4612009-03-02 10:44:15 +01003944 if (err < 0) {
Takashi Iwai28d1a852010-03-15 09:05:46 +01003945 printk(KERN_ERR "hda_codec: cannot build controls "
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003946 "for #%d (error %d)\n", codec->addr, err);
Takashi Iwaif93d4612009-03-02 10:44:15 +01003947 err = snd_hda_codec_reset(codec);
3948 if (err < 0) {
3949 printk(KERN_ERR
3950 "hda_codec: cannot revert codec\n");
3951 return err;
3952 }
3953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003955 return 0;
3956}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003957EXPORT_SYMBOL_HDA(snd_hda_build_controls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003959/*
3960 * add standard channel maps if not specified
3961 */
3962static int add_std_chmaps(struct hda_codec *codec)
3963{
3964 int i, str, err;
3965
3966 for (i = 0; i < codec->num_pcms; i++) {
3967 for (str = 0; str < 2; str++) {
3968 struct snd_pcm *pcm = codec->pcm_info[i].pcm;
3969 struct hda_pcm_stream *hinfo =
3970 &codec->pcm_info[i].stream[str];
3971 struct snd_pcm_chmap *chmap;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003972 const struct snd_pcm_chmap_elem *elem;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003973
3974 if (codec->pcm_info[i].own_chmap)
3975 continue;
3976 if (!pcm || !hinfo->substreams)
3977 continue;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003978 elem = hinfo->chmap ? hinfo->chmap : snd_pcm_std_chmaps;
3979 err = snd_pcm_add_chmap_ctls(pcm, str, elem,
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003980 hinfo->channels_max,
3981 0, &chmap);
3982 if (err < 0)
3983 return err;
3984 chmap->channel_mask = SND_PCM_CHMAP_MASK_2468;
3985 }
3986 }
3987 return 0;
3988}
3989
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003990/* default channel maps for 2.1 speakers;
3991 * since HD-audio supports only stereo, odd number channels are omitted
3992 */
3993const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps[] = {
3994 { .channels = 2,
3995 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
3996 { .channels = 4,
3997 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
3998 SNDRV_CHMAP_LFE, SNDRV_CHMAP_LFE } },
3999 { }
4000};
4001EXPORT_SYMBOL_GPL(snd_pcm_2_1_chmaps);
4002
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004003int snd_hda_codec_build_controls(struct hda_codec *codec)
4004{
4005 int err = 0;
Takashi Iwai11aeff02008-07-30 15:01:46 +02004006 hda_exec_init_verbs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004007 /* continue to initialize... */
4008 if (codec->patch_ops.init)
4009 err = codec->patch_ops.init(codec);
4010 if (!err && codec->patch_ops.build_controls)
4011 err = codec->patch_ops.build_controls(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004012 if (err < 0)
4013 return err;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02004014
4015 /* we create chmaps here instead of build_pcms */
4016 err = add_std_chmaps(codec);
4017 if (err < 0)
4018 return err;
4019
David Henningsson26a6cb62012-10-09 15:04:21 +02004020 if (codec->jackpoll_interval)
4021 hda_jackpoll_work(&codec->jackpoll_work.work);
4022 else
4023 snd_hda_jack_report_sync(codec); /* call at the last init point */
Takashi Iwaib9c590b2013-01-24 17:27:32 +01004024 sync_power_up_states(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 return 0;
4026}
4027
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028/*
4029 * stream formats
4030 */
Takashi Iwaibefdf312005-08-22 13:57:55 +02004031struct hda_rate_tbl {
4032 unsigned int hz;
4033 unsigned int alsa_bits;
4034 unsigned int hda_fmt;
4035};
4036
Takashi Iwai92f10b32010-08-03 14:21:00 +02004037/* rate = base * mult / div */
4038#define HDA_RATE(base, mult, div) \
4039 (AC_FMT_BASE_##base##K | (((mult) - 1) << AC_FMT_MULT_SHIFT) | \
4040 (((div) - 1) << AC_FMT_DIV_SHIFT))
4041
Takashi Iwaibefdf312005-08-22 13:57:55 +02004042static struct hda_rate_tbl rate_bits[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 /* rate in Hz, ALSA rate bitmask, HDA format value */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02004044
4045 /* autodetected value used in snd_hda_query_supported_pcm */
Takashi Iwai92f10b32010-08-03 14:21:00 +02004046 { 8000, SNDRV_PCM_RATE_8000, HDA_RATE(48, 1, 6) },
4047 { 11025, SNDRV_PCM_RATE_11025, HDA_RATE(44, 1, 4) },
4048 { 16000, SNDRV_PCM_RATE_16000, HDA_RATE(48, 1, 3) },
4049 { 22050, SNDRV_PCM_RATE_22050, HDA_RATE(44, 1, 2) },
4050 { 32000, SNDRV_PCM_RATE_32000, HDA_RATE(48, 2, 3) },
4051 { 44100, SNDRV_PCM_RATE_44100, HDA_RATE(44, 1, 1) },
4052 { 48000, SNDRV_PCM_RATE_48000, HDA_RATE(48, 1, 1) },
4053 { 88200, SNDRV_PCM_RATE_88200, HDA_RATE(44, 2, 1) },
4054 { 96000, SNDRV_PCM_RATE_96000, HDA_RATE(48, 2, 1) },
4055 { 176400, SNDRV_PCM_RATE_176400, HDA_RATE(44, 4, 1) },
4056 { 192000, SNDRV_PCM_RATE_192000, HDA_RATE(48, 4, 1) },
Takashi Iwaia961f9f2007-04-12 13:08:09 +02004057#define AC_PAR_PCM_RATE_BITS 11
4058 /* up to bits 10, 384kHZ isn't supported properly */
4059
4060 /* not autodetected value */
Takashi Iwai92f10b32010-08-03 14:21:00 +02004061 { 9600, SNDRV_PCM_RATE_KNOT, HDA_RATE(48, 1, 5) },
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02004062
Takashi Iwaibefdf312005-08-22 13:57:55 +02004063 { 0 } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064};
4065
4066/**
4067 * snd_hda_calc_stream_format - calculate format bitset
4068 * @rate: the sample rate
4069 * @channels: the number of channels
4070 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
4071 * @maxbps: the max. bps
4072 *
4073 * Calculate the format bitset from the given rate, channels and th PCM format.
4074 *
4075 * Return zero if invalid.
4076 */
4077unsigned int snd_hda_calc_stream_format(unsigned int rate,
4078 unsigned int channels,
4079 unsigned int format,
Anssi Hannula32c168c2010-08-03 13:28:57 +03004080 unsigned int maxbps,
4081 unsigned short spdif_ctls)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082{
4083 int i;
4084 unsigned int val = 0;
4085
Takashi Iwaibefdf312005-08-22 13:57:55 +02004086 for (i = 0; rate_bits[i].hz; i++)
4087 if (rate_bits[i].hz == rate) {
4088 val = rate_bits[i].hda_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 break;
4090 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02004091 if (!rate_bits[i].hz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 snd_printdd("invalid rate %d\n", rate);
4093 return 0;
4094 }
4095
4096 if (channels == 0 || channels > 8) {
4097 snd_printdd("invalid channels %d\n", channels);
4098 return 0;
4099 }
4100 val |= channels - 1;
4101
4102 switch (snd_pcm_format_width(format)) {
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004103 case 8:
Takashi Iwai92f10b32010-08-03 14:21:00 +02004104 val |= AC_FMT_BITS_8;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004105 break;
4106 case 16:
Takashi Iwai92f10b32010-08-03 14:21:00 +02004107 val |= AC_FMT_BITS_16;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004108 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 case 20:
4110 case 24:
4111 case 32:
Takashi Iwaib0bb3aa2009-07-03 23:25:37 +02004112 if (maxbps >= 32 || format == SNDRV_PCM_FORMAT_FLOAT_LE)
Takashi Iwai92f10b32010-08-03 14:21:00 +02004113 val |= AC_FMT_BITS_32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114 else if (maxbps >= 24)
Takashi Iwai92f10b32010-08-03 14:21:00 +02004115 val |= AC_FMT_BITS_24;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116 else
Takashi Iwai92f10b32010-08-03 14:21:00 +02004117 val |= AC_FMT_BITS_20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 break;
4119 default:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004120 snd_printdd("invalid format width %d\n",
4121 snd_pcm_format_width(format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 return 0;
4123 }
4124
Anssi Hannula32c168c2010-08-03 13:28:57 +03004125 if (spdif_ctls & AC_DIG1_NONAUDIO)
Takashi Iwai92f10b32010-08-03 14:21:00 +02004126 val |= AC_FMT_TYPE_NON_PCM;
Anssi Hannula32c168c2010-08-03 13:28:57 +03004127
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 return val;
4129}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004130EXPORT_SYMBOL_HDA(snd_hda_calc_stream_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02004132static unsigned int get_pcm_param(struct hda_codec *codec, hda_nid_t nid,
4133 int dir)
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004134{
4135 unsigned int val = 0;
4136 if (nid != codec->afg &&
4137 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD))
4138 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
4139 if (!val || val == -1)
4140 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
4141 if (!val || val == -1)
4142 return 0;
4143 return val;
4144}
4145
4146static unsigned int query_pcm_param(struct hda_codec *codec, hda_nid_t nid)
4147{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02004148 return query_caps_hash(codec, nid, 0, HDA_HASH_PARPCM_KEY(nid),
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004149 get_pcm_param);
4150}
4151
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02004152static unsigned int get_stream_param(struct hda_codec *codec, hda_nid_t nid,
4153 int dir)
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004154{
4155 unsigned int streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
4156 if (!streams || streams == -1)
4157 streams = snd_hda_param_read(codec, codec->afg, AC_PAR_STREAM);
4158 if (!streams || streams == -1)
4159 return 0;
4160 return streams;
4161}
4162
4163static unsigned int query_stream_param(struct hda_codec *codec, hda_nid_t nid)
4164{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02004165 return query_caps_hash(codec, nid, 0, HDA_HASH_PARSTR_KEY(nid),
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004166 get_stream_param);
4167}
4168
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169/**
4170 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
4171 * @codec: the HDA codec
4172 * @nid: NID to query
4173 * @ratesp: the pointer to store the detected rate bitflags
4174 * @formatsp: the pointer to store the detected formats
4175 * @bpsp: the pointer to store the detected format widths
4176 *
4177 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
4178 * or @bsps argument is ignored.
4179 *
4180 * Returns 0 if successful, otherwise a negative error code.
4181 */
Stephen Warren384a48d2011-06-01 11:14:21 -06004182int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183 u32 *ratesp, u64 *formatsp, unsigned int *bpsp)
4184{
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004185 unsigned int i, val, wcaps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004187 wcaps = get_wcaps(codec, nid);
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004188 val = query_pcm_param(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189
4190 if (ratesp) {
4191 u32 rates = 0;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02004192 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193 if (val & (1 << i))
Takashi Iwaibefdf312005-08-22 13:57:55 +02004194 rates |= rate_bits[i].alsa_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195 }
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004196 if (rates == 0) {
4197 snd_printk(KERN_ERR "hda_codec: rates == 0 "
4198 "(nid=0x%x, val=0x%x, ovrd=%i)\n",
4199 nid, val,
4200 (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0);
4201 return -EIO;
4202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203 *ratesp = rates;
4204 }
4205
4206 if (formatsp || bpsp) {
4207 u64 formats = 0;
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004208 unsigned int streams, bps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004210 streams = query_stream_param(codec, nid);
4211 if (!streams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213
4214 bps = 0;
4215 if (streams & AC_SUPFMT_PCM) {
4216 if (val & AC_SUPPCM_BITS_8) {
4217 formats |= SNDRV_PCM_FMTBIT_U8;
4218 bps = 8;
4219 }
4220 if (val & AC_SUPPCM_BITS_16) {
4221 formats |= SNDRV_PCM_FMTBIT_S16_LE;
4222 bps = 16;
4223 }
4224 if (wcaps & AC_WCAP_DIGITAL) {
4225 if (val & AC_SUPPCM_BITS_32)
4226 formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
4227 if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24))
4228 formats |= SNDRV_PCM_FMTBIT_S32_LE;
4229 if (val & AC_SUPPCM_BITS_24)
4230 bps = 24;
4231 else if (val & AC_SUPPCM_BITS_20)
4232 bps = 20;
Takashi Iwai0ba21762007-04-16 11:29:14 +02004233 } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24|
4234 AC_SUPPCM_BITS_32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235 formats |= SNDRV_PCM_FMTBIT_S32_LE;
4236 if (val & AC_SUPPCM_BITS_32)
4237 bps = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238 else if (val & AC_SUPPCM_BITS_24)
4239 bps = 24;
Nicolas Graziano33ef76512006-09-19 14:23:14 +02004240 else if (val & AC_SUPPCM_BITS_20)
4241 bps = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242 }
4243 }
Takashi Iwai8c7dd892012-05-12 09:38:05 +02004244#if 0 /* FIXME: CS4206 doesn't work, which is the only codec supporting float */
Takashi Iwaib5025c52009-07-01 18:05:27 +02004245 if (streams & AC_SUPFMT_FLOAT32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
Takashi Iwaib0bb3aa2009-07-03 23:25:37 +02004247 if (!bps)
4248 bps = 32;
Takashi Iwaib5025c52009-07-01 18:05:27 +02004249 }
Takashi Iwai8c7dd892012-05-12 09:38:05 +02004250#endif
Takashi Iwaib5025c52009-07-01 18:05:27 +02004251 if (streams == AC_SUPFMT_AC3) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02004252 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253 /* temporary hack: we have still no proper support
4254 * for the direct AC3 stream...
4255 */
4256 formats |= SNDRV_PCM_FMTBIT_U8;
4257 bps = 8;
4258 }
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004259 if (formats == 0) {
4260 snd_printk(KERN_ERR "hda_codec: formats == 0 "
4261 "(nid=0x%x, val=0x%x, ovrd=%i, "
4262 "streams=0x%x)\n",
4263 nid, val,
4264 (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0,
4265 streams);
4266 return -EIO;
4267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268 if (formatsp)
4269 *formatsp = formats;
4270 if (bpsp)
4271 *bpsp = bps;
4272 }
4273
4274 return 0;
4275}
Stephen Warren384a48d2011-06-01 11:14:21 -06004276EXPORT_SYMBOL_HDA(snd_hda_query_supported_pcm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277
4278/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01004279 * snd_hda_is_supported_format - Check the validity of the format
4280 * @codec: HD-audio codec
4281 * @nid: NID to check
4282 * @format: the HD-audio format value to check
4283 *
4284 * Check whether the given node supports the format value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 *
4286 * Returns 1 if supported, 0 if not.
4287 */
4288int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
4289 unsigned int format)
4290{
4291 int i;
4292 unsigned int val = 0, rate, stream;
4293
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004294 val = query_pcm_param(codec, nid);
4295 if (!val)
4296 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297
4298 rate = format & 0xff00;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02004299 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++)
Takashi Iwaibefdf312005-08-22 13:57:55 +02004300 if (rate_bits[i].hda_fmt == rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 if (val & (1 << i))
4302 break;
4303 return 0;
4304 }
Takashi Iwaia961f9f2007-04-12 13:08:09 +02004305 if (i >= AC_PAR_PCM_RATE_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 return 0;
4307
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004308 stream = query_stream_param(codec, nid);
4309 if (!stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310 return 0;
4311
4312 if (stream & AC_SUPFMT_PCM) {
4313 switch (format & 0xf0) {
4314 case 0x00:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004315 if (!(val & AC_SUPPCM_BITS_8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 return 0;
4317 break;
4318 case 0x10:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004319 if (!(val & AC_SUPPCM_BITS_16))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004320 return 0;
4321 break;
4322 case 0x20:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004323 if (!(val & AC_SUPPCM_BITS_20))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 return 0;
4325 break;
4326 case 0x30:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004327 if (!(val & AC_SUPPCM_BITS_24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004328 return 0;
4329 break;
4330 case 0x40:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004331 if (!(val & AC_SUPPCM_BITS_32))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332 return 0;
4333 break;
4334 default:
4335 return 0;
4336 }
4337 } else {
4338 /* FIXME: check for float32 and AC3? */
4339 }
4340
4341 return 1;
4342}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004343EXPORT_SYMBOL_HDA(snd_hda_is_supported_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344
4345/*
4346 * PCM stuff
4347 */
4348static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
4349 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004350 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351{
4352 return 0;
4353}
4354
4355static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
4356 struct hda_codec *codec,
4357 unsigned int stream_tag,
4358 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004359 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360{
4361 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
4362 return 0;
4363}
4364
4365static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
4366 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004367 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368{
Takashi Iwai888afa12008-03-18 09:57:50 +01004369 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370 return 0;
4371}
4372
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004373static int set_pcm_default_values(struct hda_codec *codec,
4374 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375{
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004376 int err;
4377
Takashi Iwai0ba21762007-04-16 11:29:14 +02004378 /* query support PCM information from the given NID */
4379 if (info->nid && (!info->rates || !info->formats)) {
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004380 err = snd_hda_query_supported_pcm(codec, info->nid,
Takashi Iwai0ba21762007-04-16 11:29:14 +02004381 info->rates ? NULL : &info->rates,
4382 info->formats ? NULL : &info->formats,
4383 info->maxbps ? NULL : &info->maxbps);
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004384 if (err < 0)
4385 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 }
4387 if (info->ops.open == NULL)
4388 info->ops.open = hda_pcm_default_open_close;
4389 if (info->ops.close == NULL)
4390 info->ops.close = hda_pcm_default_open_close;
4391 if (info->ops.prepare == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02004392 if (snd_BUG_ON(!info->nid))
4393 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394 info->ops.prepare = hda_pcm_default_prepare;
4395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396 if (info->ops.cleanup == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02004397 if (snd_BUG_ON(!info->nid))
4398 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399 info->ops.cleanup = hda_pcm_default_cleanup;
4400 }
4401 return 0;
4402}
4403
Takashi Iwaieb541332010-08-06 13:48:11 +02004404/*
4405 * codec prepare/cleanup entries
4406 */
4407int snd_hda_codec_prepare(struct hda_codec *codec,
4408 struct hda_pcm_stream *hinfo,
4409 unsigned int stream,
4410 unsigned int format,
4411 struct snd_pcm_substream *substream)
4412{
4413 int ret;
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004414 mutex_lock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02004415 ret = hinfo->ops.prepare(hinfo, codec, stream, format, substream);
4416 if (ret >= 0)
4417 purify_inactive_streams(codec);
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004418 mutex_unlock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02004419 return ret;
4420}
4421EXPORT_SYMBOL_HDA(snd_hda_codec_prepare);
4422
4423void snd_hda_codec_cleanup(struct hda_codec *codec,
4424 struct hda_pcm_stream *hinfo,
4425 struct snd_pcm_substream *substream)
4426{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004427 mutex_lock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02004428 hinfo->ops.cleanup(hinfo, codec, substream);
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004429 mutex_unlock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02004430}
4431EXPORT_SYMBOL_HDA(snd_hda_codec_cleanup);
4432
Takashi Iwaid5191e52009-11-16 14:58:17 +01004433/* global */
Jaroslav Kyselae3303232009-11-10 14:53:02 +01004434const char *snd_hda_pcm_type_name[HDA_PCM_NTYPES] = {
4435 "Audio", "SPDIF", "HDMI", "Modem"
4436};
4437
Takashi Iwai176d5332008-07-30 15:01:44 +02004438/*
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004439 * get the empty PCM device number to assign
Takashi Iwaic8936222010-01-28 17:08:53 +01004440 *
4441 * note the max device number is limited by HDA_MAX_PCMS, currently 10
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004442 */
4443static int get_empty_pcm_device(struct hda_bus *bus, int type)
4444{
Wu Fengguangf5d6def52009-10-30 11:38:26 +01004445 /* audio device indices; not linear to keep compatibility */
4446 static int audio_idx[HDA_PCM_NTYPES][5] = {
4447 [HDA_PCM_TYPE_AUDIO] = { 0, 2, 4, 5, -1 },
4448 [HDA_PCM_TYPE_SPDIF] = { 1, -1 },
Wu Fengguang92608ba2009-10-30 11:40:03 +01004449 [HDA_PCM_TYPE_HDMI] = { 3, 7, 8, 9, -1 },
Wu Fengguangf5d6def52009-10-30 11:38:26 +01004450 [HDA_PCM_TYPE_MODEM] = { 6, -1 },
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004451 };
Wu Fengguangf5d6def52009-10-30 11:38:26 +01004452 int i;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004453
Wu Fengguangf5d6def52009-10-30 11:38:26 +01004454 if (type >= HDA_PCM_NTYPES) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004455 snd_printk(KERN_WARNING "Invalid PCM type %d\n", type);
4456 return -EINVAL;
4457 }
Wu Fengguangf5d6def52009-10-30 11:38:26 +01004458
4459 for (i = 0; audio_idx[type][i] >= 0 ; i++)
4460 if (!test_and_set_bit(audio_idx[type][i], bus->pcm_dev_bits))
4461 return audio_idx[type][i];
4462
Takashi Iwai01b65bf2011-11-24 14:31:46 +01004463 /* non-fixed slots starting from 10 */
4464 for (i = 10; i < 32; i++) {
4465 if (!test_and_set_bit(i, bus->pcm_dev_bits))
4466 return i;
4467 }
4468
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004469 snd_printk(KERN_WARNING "Too many %s devices\n",
4470 snd_hda_pcm_type_name[type]);
Wu Fengguangf5d6def52009-10-30 11:38:26 +01004471 return -EAGAIN;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004472}
4473
4474/*
Takashi Iwai176d5332008-07-30 15:01:44 +02004475 * attach a new PCM stream
4476 */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004477static int snd_hda_attach_pcm(struct hda_codec *codec, struct hda_pcm *pcm)
Takashi Iwai176d5332008-07-30 15:01:44 +02004478{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01004479 struct hda_bus *bus = codec->bus;
Takashi Iwai176d5332008-07-30 15:01:44 +02004480 struct hda_pcm_stream *info;
4481 int stream, err;
4482
Takashi Iwaib91f0802008-11-04 08:43:08 +01004483 if (snd_BUG_ON(!pcm->name))
Takashi Iwai176d5332008-07-30 15:01:44 +02004484 return -EINVAL;
4485 for (stream = 0; stream < 2; stream++) {
4486 info = &pcm->stream[stream];
4487 if (info->substreams) {
4488 err = set_pcm_default_values(codec, info);
4489 if (err < 0)
4490 return err;
4491 }
4492 }
Takashi Iwai33fa35e2008-11-06 16:50:40 +01004493 return bus->ops.attach_pcm(bus, codec, pcm);
Takashi Iwai176d5332008-07-30 15:01:44 +02004494}
4495
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004496/* assign all PCMs of the given codec */
4497int snd_hda_codec_build_pcms(struct hda_codec *codec)
4498{
4499 unsigned int pcm;
4500 int err;
4501
4502 if (!codec->num_pcms) {
4503 if (!codec->patch_ops.build_pcms)
4504 return 0;
4505 err = codec->patch_ops.build_pcms(codec);
Takashi Iwai6e655bf2009-03-02 10:46:03 +01004506 if (err < 0) {
4507 printk(KERN_ERR "hda_codec: cannot build PCMs"
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004508 "for #%d (error %d)\n", codec->addr, err);
Takashi Iwai6e655bf2009-03-02 10:46:03 +01004509 err = snd_hda_codec_reset(codec);
4510 if (err < 0) {
4511 printk(KERN_ERR
4512 "hda_codec: cannot revert codec\n");
4513 return err;
4514 }
4515 }
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004516 }
4517 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
4518 struct hda_pcm *cpcm = &codec->pcm_info[pcm];
4519 int dev;
4520
4521 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
Takashi Iwai41b5b012009-01-20 18:21:23 +01004522 continue; /* no substreams assigned */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004523
4524 if (!cpcm->pcm) {
4525 dev = get_empty_pcm_device(codec->bus, cpcm->pcm_type);
4526 if (dev < 0)
Takashi Iwai6e655bf2009-03-02 10:46:03 +01004527 continue; /* no fatal error */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004528 cpcm->device = dev;
4529 err = snd_hda_attach_pcm(codec, cpcm);
Takashi Iwai6e655bf2009-03-02 10:46:03 +01004530 if (err < 0) {
4531 printk(KERN_ERR "hda_codec: cannot attach "
4532 "PCM stream %d for codec #%d\n",
4533 dev, codec->addr);
4534 continue; /* no fatal error */
4535 }
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004536 }
4537 }
4538 return 0;
4539}
4540
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541/**
4542 * snd_hda_build_pcms - build PCM information
4543 * @bus: the BUS
4544 *
4545 * Create PCM information for each codec included in the bus.
4546 *
4547 * The build_pcms codec patch is requested to set up codec->num_pcms and
4548 * codec->pcm_info properly. The array is referred by the top-level driver
4549 * to create its PCM instances.
4550 * The allocated codec->pcm_info should be released in codec->patch_ops.free
4551 * callback.
4552 *
4553 * At least, substreams, channels_min and channels_max must be filled for
4554 * each stream. substreams = 0 indicates that the stream doesn't exist.
4555 * When rates and/or formats are zero, the supported values are queried
4556 * from the given nid. The nid is used also by the default ops.prepare
4557 * and ops.cleanup callbacks.
4558 *
4559 * The driver needs to call ops.open in its open callback. Similarly,
4560 * ops.close is supposed to be called in the close callback.
4561 * ops.prepare should be called in the prepare or hw_params callback
4562 * with the proper parameters for set up.
4563 * ops.cleanup should be called in hw_free for clean up of streams.
4564 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004565 * This function returns 0 if successful, or a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566 */
Takashi Iwai5cb543d2012-08-09 13:49:23 +02004567int snd_hda_build_pcms(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004568{
Takashi Iwai0ba21762007-04-16 11:29:14 +02004569 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570
Takashi Iwai0ba21762007-04-16 11:29:14 +02004571 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004572 int err = snd_hda_codec_build_pcms(codec);
4573 if (err < 0)
4574 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575 }
4576 return 0;
4577}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004578EXPORT_SYMBOL_HDA(snd_hda_build_pcms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580/**
4581 * snd_hda_check_board_config - compare the current codec with the config table
4582 * @codec: the HDA codec
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004583 * @num_configs: number of config enums
4584 * @models: array of model name strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585 * @tbl: configuration table, terminated by null entries
4586 *
4587 * Compares the modelname or PCI subsystem id of the current codec with the
4588 * given configuration table. If a matching entry is found, returns its
4589 * config value (supposed to be 0 or positive).
4590 *
4591 * If no entries are matching, the function returns a negative value.
4592 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02004593int snd_hda_check_board_config(struct hda_codec *codec,
Takashi Iwaiea734962011-01-17 11:29:34 +01004594 int num_configs, const char * const *models,
Takashi Iwai12f288b2007-08-02 15:51:59 +02004595 const struct snd_pci_quirk *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596{
Takashi Iwaif44ac832008-07-30 15:01:45 +02004597 if (codec->modelname && models) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004598 int i;
4599 for (i = 0; i < num_configs; i++) {
4600 if (models[i] &&
Takashi Iwaif44ac832008-07-30 15:01:45 +02004601 !strcmp(codec->modelname, models[i])) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004602 snd_printd(KERN_INFO "hda_codec: model '%s' is "
4603 "selected\n", models[i]);
4604 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605 }
4606 }
4607 }
4608
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004609 if (!codec->bus->pci || !tbl)
4610 return -1;
4611
4612 tbl = snd_pci_quirk_lookup(codec->bus->pci, tbl);
4613 if (!tbl)
4614 return -1;
4615 if (tbl->value >= 0 && tbl->value < num_configs) {
Takashi Iwai62cf8722008-05-20 12:15:15 +02004616#ifdef CONFIG_SND_DEBUG_VERBOSE
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004617 char tmp[10];
4618 const char *model = NULL;
4619 if (models)
4620 model = models[tbl->value];
4621 if (!model) {
4622 sprintf(tmp, "#%d", tbl->value);
4623 model = tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624 }
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004625 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
4626 "for config %x:%x (%s)\n",
4627 model, tbl->subvendor, tbl->subdevice,
4628 (tbl->name ? tbl->name : "Unknown device"));
4629#endif
4630 return tbl->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004631 }
4632 return -1;
4633}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004634EXPORT_SYMBOL_HDA(snd_hda_check_board_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635
4636/**
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02004637 * snd_hda_check_board_codec_sid_config - compare the current codec
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004638 subsystem ID with the
4639 config table
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02004640
4641 This is important for Gateway notebooks with SB450 HDA Audio
4642 where the vendor ID of the PCI device is:
4643 ATI Technologies Inc SB450 HDA Audio [1002:437b]
4644 and the vendor/subvendor are found only at the codec.
4645
4646 * @codec: the HDA codec
4647 * @num_configs: number of config enums
4648 * @models: array of model name strings
4649 * @tbl: configuration table, terminated by null entries
4650 *
4651 * Compares the modelname or PCI subsystem id of the current codec with the
4652 * given configuration table. If a matching entry is found, returns its
4653 * config value (supposed to be 0 or positive).
4654 *
4655 * If no entries are matching, the function returns a negative value.
4656 */
4657int snd_hda_check_board_codec_sid_config(struct hda_codec *codec,
Takashi Iwaiea734962011-01-17 11:29:34 +01004658 int num_configs, const char * const *models,
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02004659 const struct snd_pci_quirk *tbl)
4660{
4661 const struct snd_pci_quirk *q;
4662
4663 /* Search for codec ID */
4664 for (q = tbl; q->subvendor; q++) {
Takashi Iwaie2301a42011-11-22 19:58:56 +01004665 unsigned int mask = 0xffff0000 | q->subdevice_mask;
4666 unsigned int id = (q->subdevice | (q->subvendor << 16)) & mask;
4667 if ((codec->subsystem_id & mask) == id)
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02004668 break;
4669 }
4670
4671 if (!q->subvendor)
4672 return -1;
4673
4674 tbl = q;
4675
4676 if (tbl->value >= 0 && tbl->value < num_configs) {
Takashi Iwaid94ff6b2009-09-02 00:20:21 +02004677#ifdef CONFIG_SND_DEBUG_VERBOSE
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02004678 char tmp[10];
4679 const char *model = NULL;
4680 if (models)
4681 model = models[tbl->value];
4682 if (!model) {
4683 sprintf(tmp, "#%d", tbl->value);
4684 model = tmp;
4685 }
4686 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
4687 "for config %x:%x (%s)\n",
4688 model, tbl->subvendor, tbl->subdevice,
4689 (tbl->name ? tbl->name : "Unknown device"));
4690#endif
4691 return tbl->value;
4692 }
4693 return -1;
4694}
4695EXPORT_SYMBOL_HDA(snd_hda_check_board_codec_sid_config);
4696
4697/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698 * snd_hda_add_new_ctls - create controls from the array
4699 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004700 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07004701 *
4702 * This helper function creates and add new controls in the given array.
4703 * The array must be terminated with an empty entry as terminator.
4704 *
4705 * Returns 0 if successful, or a negative error code.
4706 */
Takashi Iwai031024e2011-05-02 11:29:30 +02004707int snd_hda_add_new_ctls(struct hda_codec *codec,
4708 const struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709{
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01004710 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004711
4712 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01004713 struct snd_kcontrol *kctl;
Takashi Iwai1afe2062010-12-23 10:17:52 +01004714 int addr = 0, idx = 0;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01004715 if (knew->iface == -1) /* skip this codec private value */
4716 continue;
Takashi Iwai1afe2062010-12-23 10:17:52 +01004717 for (;;) {
Takashi Iwai54d17402005-11-21 16:33:22 +01004718 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02004719 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01004720 return -ENOMEM;
Takashi Iwai1afe2062010-12-23 10:17:52 +01004721 if (addr > 0)
4722 kctl->id.device = addr;
4723 if (idx > 0)
4724 kctl->id.index = idx;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01004725 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai1afe2062010-12-23 10:17:52 +01004726 if (!err)
4727 break;
4728 /* try first with another device index corresponding to
4729 * the codec addr; if it still fails (or it's the
4730 * primary codec), then try another control index
4731 */
4732 if (!addr && codec->addr)
4733 addr = codec->addr;
4734 else if (!idx && !knew->index) {
4735 idx = find_empty_mixer_ctl_idx(codec,
Takashi Iwaidcda5802012-10-12 17:24:51 +02004736 knew->name, 0);
Takashi Iwai1afe2062010-12-23 10:17:52 +01004737 if (idx <= 0)
4738 return err;
4739 } else
Takashi Iwai54d17402005-11-21 16:33:22 +01004740 return err;
4741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004742 }
4743 return 0;
4744}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004745EXPORT_SYMBOL_HDA(snd_hda_add_new_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004746
Takashi Iwai83012a72012-08-24 18:38:08 +02004747#ifdef CONFIG_PM
Takashi Iwaicb53c622007-08-10 17:21:45 +02004748static void hda_power_work(struct work_struct *work)
4749{
4750 struct hda_codec *codec =
4751 container_of(work, struct hda_codec, power_work.work);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01004752 struct hda_bus *bus = codec->bus;
Takashi Iwai08fa20a2012-08-31 07:46:56 -07004753 unsigned int state;
Takashi Iwaicb53c622007-08-10 17:21:45 +02004754
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004755 spin_lock(&codec->power_lock);
Takashi Iwaia2d96e72012-05-09 12:36:22 +02004756 if (codec->power_transition > 0) { /* during power-up sequence? */
4757 spin_unlock(&codec->power_lock);
4758 return;
4759 }
Maxim Levitsky2e492462007-09-03 15:26:57 +02004760 if (!codec->power_on || codec->power_count) {
4761 codec->power_transition = 0;
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004762 spin_unlock(&codec->power_lock);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004763 return;
Maxim Levitsky2e492462007-09-03 15:26:57 +02004764 }
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004765 spin_unlock(&codec->power_lock);
4766
Dylan Reidd17344b2012-09-28 15:57:01 -07004767 state = hda_call_codec_suspend(codec, true);
Takashi Iwai08fa20a2012-08-31 07:46:56 -07004768 codec->pm_down_notified = 0;
4769 if (!bus->power_keep_link_on && (state & AC_PWRST_CLK_STOP_OK)) {
4770 codec->pm_down_notified = 1;
Takashi Iwai68467f52012-08-28 09:14:29 -07004771 hda_call_pm_notify(bus, false);
Takashi Iwai08fa20a2012-08-31 07:46:56 -07004772 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02004773}
4774
4775static void hda_keep_power_on(struct hda_codec *codec)
4776{
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004777 spin_lock(&codec->power_lock);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004778 codec->power_count++;
4779 codec->power_on = 1;
Takashi Iwaia2f63092009-11-11 09:34:25 +01004780 codec->power_jiffies = jiffies;
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004781 spin_unlock(&codec->power_lock);
Takashi Iwaia2f63092009-11-11 09:34:25 +01004782}
4783
Takashi Iwaid5191e52009-11-16 14:58:17 +01004784/* update the power on/off account with the current jiffies */
Takashi Iwaia2f63092009-11-11 09:34:25 +01004785void snd_hda_update_power_acct(struct hda_codec *codec)
4786{
4787 unsigned long delta = jiffies - codec->power_jiffies;
4788 if (codec->power_on)
4789 codec->power_on_acct += delta;
4790 else
4791 codec->power_off_acct += delta;
4792 codec->power_jiffies += delta;
Takashi Iwaicb53c622007-08-10 17:21:45 +02004793}
4794
Dylan Reidb4a91cf2012-06-15 19:36:23 -07004795/* Transition to powered up, if wait_power_down then wait for a pending
4796 * transition to D3 to complete. A pending D3 transition is indicated
4797 * with power_transition == -1. */
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004798/* call this with codec->power_lock held! */
Dylan Reidb4a91cf2012-06-15 19:36:23 -07004799static void __snd_hda_power_up(struct hda_codec *codec, bool wait_power_down)
Takashi Iwaicb53c622007-08-10 17:21:45 +02004800{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01004801 struct hda_bus *bus = codec->bus;
4802
Dylan Reidb4a91cf2012-06-15 19:36:23 -07004803 /* Return if power_on or transitioning to power_on, unless currently
4804 * powering down. */
4805 if ((codec->power_on || codec->power_transition > 0) &&
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004806 !(wait_power_down && codec->power_transition < 0))
Takashi Iwaicb53c622007-08-10 17:21:45 +02004807 return;
Takashi Iwaia2d96e72012-05-09 12:36:22 +02004808 spin_unlock(&codec->power_lock);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004809
Takashi Iwaia2d96e72012-05-09 12:36:22 +02004810 cancel_delayed_work_sync(&codec->power_work);
4811
4812 spin_lock(&codec->power_lock);
Dylan Reidb43d2242012-06-21 21:51:22 -07004813 /* If the power down delayed work was cancelled above before starting,
4814 * then there is no need to go through power up here.
4815 */
4816 if (codec->power_on) {
Takashi Iwai535b6c52012-08-20 21:25:22 +02004817 if (codec->power_transition < 0)
4818 codec->power_transition = 0;
Dylan Reidb43d2242012-06-21 21:51:22 -07004819 return;
4820 }
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004821
Takashi Iwaid66fee52011-08-02 15:39:31 +02004822 trace_hda_power_up(codec);
Takashi Iwaia2f63092009-11-11 09:34:25 +01004823 snd_hda_update_power_acct(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004824 codec->power_on = 1;
Takashi Iwaia2f63092009-11-11 09:34:25 +01004825 codec->power_jiffies = jiffies;
Takashi Iwai7f308302012-05-08 16:52:23 +02004826 codec->power_transition = 1; /* avoid reentrance */
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004827 spin_unlock(&codec->power_lock);
4828
Takashi Iwai08fa20a2012-08-31 07:46:56 -07004829 if (codec->pm_down_notified) {
4830 codec->pm_down_notified = 0;
Takashi Iwai68467f52012-08-28 09:14:29 -07004831 hda_call_pm_notify(bus, true);
Takashi Iwai08fa20a2012-08-31 07:46:56 -07004832 }
4833
Takashi Iwaicb53c622007-08-10 17:21:45 +02004834 hda_call_codec_resume(codec);
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004835
4836 spin_lock(&codec->power_lock);
Takashi Iwaia221e282007-08-16 16:35:33 +02004837 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02004838}
Dylan Reidb4a91cf2012-06-15 19:36:23 -07004839
Takashi Iwai1289e9e2008-11-27 15:47:11 +01004840#define power_save(codec) \
4841 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0)
Takashi Iwaicb53c622007-08-10 17:21:45 +02004842
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004843/* Transition to powered down */
4844static void __snd_hda_power_down(struct hda_codec *codec)
Takashi Iwaicb53c622007-08-10 17:21:45 +02004845{
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004846 if (!codec->power_on || codec->power_count || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02004847 return;
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004848
Takashi Iwaifee2fba2008-11-27 12:43:28 +01004849 if (power_save(codec)) {
Takashi Iwaia2d96e72012-05-09 12:36:22 +02004850 codec->power_transition = -1; /* avoid reentrance */
Takashi Iwaic107b412009-01-13 17:46:37 +01004851 queue_delayed_work(codec->bus->workq, &codec->power_work,
Takashi Iwaifee2fba2008-11-27 12:43:28 +01004852 msecs_to_jiffies(power_save(codec) * 1000));
Takashi Iwaia221e282007-08-16 16:35:33 +02004853 }
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004854}
4855
4856/**
4857 * snd_hda_power_save - Power-up/down/sync the codec
4858 * @codec: HD-audio codec
4859 * @delta: the counter delta to change
4860 *
4861 * Change the power-up counter via @delta, and power up or down the hardware
4862 * appropriately. For the power-down, queue to the delayed action.
4863 * Passing zero to @delta means to synchronize the power state.
4864 */
4865void snd_hda_power_save(struct hda_codec *codec, int delta, bool d3wait)
4866{
4867 spin_lock(&codec->power_lock);
4868 codec->power_count += delta;
4869 trace_hda_power_count(codec);
4870 if (delta > 0)
4871 __snd_hda_power_up(codec, d3wait);
4872 else
4873 __snd_hda_power_down(codec);
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004874 spin_unlock(&codec->power_lock);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004875}
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004876EXPORT_SYMBOL_HDA(snd_hda_power_save);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004877
Takashi Iwaid5191e52009-11-16 14:58:17 +01004878/**
4879 * snd_hda_check_amp_list_power - Check the amp list and update the power
4880 * @codec: HD-audio codec
4881 * @check: the object containing an AMP list and the status
4882 * @nid: NID to check / update
4883 *
4884 * Check whether the given NID is in the amp list. If it's in the list,
4885 * check the current AMP status, and update the the power-status according
4886 * to the mute status.
4887 *
4888 * This function is supposed to be set or called from the check_power_status
4889 * patch ops.
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004890 */
Takashi Iwaicb53c622007-08-10 17:21:45 +02004891int snd_hda_check_amp_list_power(struct hda_codec *codec,
4892 struct hda_loopback_check *check,
4893 hda_nid_t nid)
4894{
Takashi Iwai031024e2011-05-02 11:29:30 +02004895 const struct hda_amp_list *p;
Takashi Iwaicb53c622007-08-10 17:21:45 +02004896 int ch, v;
4897
4898 if (!check->amplist)
4899 return 0;
4900 for (p = check->amplist; p->nid; p++) {
4901 if (p->nid == nid)
4902 break;
4903 }
4904 if (!p->nid)
4905 return 0; /* nothing changed */
4906
4907 for (p = check->amplist; p->nid; p++) {
4908 for (ch = 0; ch < 2; ch++) {
4909 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
4910 p->idx);
4911 if (!(v & HDA_AMP_MUTE) && v > 0) {
4912 if (!check->power_on) {
4913 check->power_on = 1;
4914 snd_hda_power_up(codec);
4915 }
4916 return 1;
4917 }
4918 }
4919 }
4920 if (check->power_on) {
4921 check->power_on = 0;
4922 snd_hda_power_down(codec);
4923 }
4924 return 0;
4925}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004926EXPORT_SYMBOL_HDA(snd_hda_check_amp_list_power);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004927#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004929/*
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01004930 * Channel mode helper
4931 */
Takashi Iwaid5191e52009-11-16 14:58:17 +01004932
4933/**
4934 * snd_hda_ch_mode_info - Info callback helper for the channel mode enum
4935 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004936int snd_hda_ch_mode_info(struct hda_codec *codec,
4937 struct snd_ctl_elem_info *uinfo,
4938 const struct hda_channel_mode *chmode,
4939 int num_chmodes)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01004940{
4941 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
4942 uinfo->count = 1;
4943 uinfo->value.enumerated.items = num_chmodes;
4944 if (uinfo->value.enumerated.item >= num_chmodes)
4945 uinfo->value.enumerated.item = num_chmodes - 1;
4946 sprintf(uinfo->value.enumerated.name, "%dch",
4947 chmode[uinfo->value.enumerated.item].channels);
4948 return 0;
4949}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004950EXPORT_SYMBOL_HDA(snd_hda_ch_mode_info);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01004951
Takashi Iwaid5191e52009-11-16 14:58:17 +01004952/**
4953 * snd_hda_ch_mode_get - Get callback helper for the channel mode enum
4954 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004955int snd_hda_ch_mode_get(struct hda_codec *codec,
4956 struct snd_ctl_elem_value *ucontrol,
4957 const struct hda_channel_mode *chmode,
4958 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01004959 int max_channels)
4960{
4961 int i;
4962
4963 for (i = 0; i < num_chmodes; i++) {
4964 if (max_channels == chmode[i].channels) {
4965 ucontrol->value.enumerated.item[0] = i;
4966 break;
4967 }
4968 }
4969 return 0;
4970}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004971EXPORT_SYMBOL_HDA(snd_hda_ch_mode_get);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01004972
Takashi Iwaid5191e52009-11-16 14:58:17 +01004973/**
4974 * snd_hda_ch_mode_put - Put callback helper for the channel mode enum
4975 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004976int snd_hda_ch_mode_put(struct hda_codec *codec,
4977 struct snd_ctl_elem_value *ucontrol,
4978 const struct hda_channel_mode *chmode,
4979 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01004980 int *max_channelsp)
4981{
4982 unsigned int mode;
4983
4984 mode = ucontrol->value.enumerated.item[0];
Takashi Iwai68ea7b22007-11-15 15:54:38 +01004985 if (mode >= num_chmodes)
4986 return -EINVAL;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02004987 if (*max_channelsp == chmode[mode].channels)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01004988 return 0;
4989 /* change the current channel setting */
4990 *max_channelsp = chmode[mode].channels;
4991 if (chmode[mode].sequence)
Takashi Iwai82beb8f2007-08-10 17:09:26 +02004992 snd_hda_sequence_write_cache(codec, chmode[mode].sequence);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01004993 return 1;
4994}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004995EXPORT_SYMBOL_HDA(snd_hda_ch_mode_put);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01004996
Linus Torvalds1da177e2005-04-16 15:20:36 -07004997/*
4998 * input MUX helper
4999 */
Takashi Iwaid5191e52009-11-16 14:58:17 +01005000
5001/**
5002 * snd_hda_input_mux_info_info - Info callback helper for the input-mux enum
5003 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005004int snd_hda_input_mux_info(const struct hda_input_mux *imux,
5005 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006{
5007 unsigned int index;
5008
5009 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
5010 uinfo->count = 1;
5011 uinfo->value.enumerated.items = imux->num_items;
Takashi Iwai5513b0c2007-10-09 11:58:41 +02005012 if (!imux->num_items)
5013 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005014 index = uinfo->value.enumerated.item;
5015 if (index >= imux->num_items)
5016 index = imux->num_items - 1;
5017 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
5018 return 0;
5019}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005020EXPORT_SYMBOL_HDA(snd_hda_input_mux_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021
Takashi Iwaid5191e52009-11-16 14:58:17 +01005022/**
5023 * snd_hda_input_mux_info_put - Put callback helper for the input-mux enum
5024 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005025int snd_hda_input_mux_put(struct hda_codec *codec,
5026 const struct hda_input_mux *imux,
5027 struct snd_ctl_elem_value *ucontrol,
5028 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005029 unsigned int *cur_val)
5030{
5031 unsigned int idx;
5032
Takashi Iwai5513b0c2007-10-09 11:58:41 +02005033 if (!imux->num_items)
5034 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035 idx = ucontrol->value.enumerated.item[0];
5036 if (idx >= imux->num_items)
5037 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02005038 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02005040 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
5041 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042 *cur_val = idx;
5043 return 1;
5044}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005045EXPORT_SYMBOL_HDA(snd_hda_input_mux_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046
5047
5048/*
Takashi Iwaidda415d2012-11-30 18:34:38 +01005049 * process kcontrol info callback of a simple string enum array
5050 * when @num_items is 0 or @texts is NULL, assume a boolean enum array
5051 */
5052int snd_hda_enum_helper_info(struct snd_kcontrol *kcontrol,
5053 struct snd_ctl_elem_info *uinfo,
5054 int num_items, const char * const *texts)
5055{
5056 static const char * const texts_default[] = {
5057 "Disabled", "Enabled"
5058 };
5059
5060 if (!texts || !num_items) {
5061 num_items = 2;
5062 texts = texts_default;
5063 }
5064
5065 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
5066 uinfo->count = 1;
5067 uinfo->value.enumerated.items = num_items;
5068 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
5069 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
5070 strcpy(uinfo->value.enumerated.name,
5071 texts[uinfo->value.enumerated.item]);
5072 return 0;
5073}
5074EXPORT_SYMBOL_HDA(snd_hda_enum_helper_info);
5075
5076/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077 * Multi-channel / digital-out PCM helper functions
5078 */
5079
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005080/* setup SPDIF output stream */
5081static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
5082 unsigned int stream_tag, unsigned int format)
5083{
Laurence Darby3bef1c32012-11-03 17:00:06 +00005084 struct hda_spdif_out *spdif;
5085 unsigned int curr_fmt;
5086 bool reset;
Stephen Warren7c935972011-06-01 11:14:17 -06005087
Laurence Darby3bef1c32012-11-03 17:00:06 +00005088 spdif = snd_hda_spdif_out_of_nid(codec, nid);
5089 curr_fmt = snd_hda_codec_read(codec, nid, 0,
5090 AC_VERB_GET_STREAM_FORMAT, 0);
5091 reset = codec->spdif_status_reset &&
5092 (spdif->ctls & AC_DIG1_ENABLE) &&
5093 curr_fmt != format;
5094
5095 /* turn off SPDIF if needed; otherwise the IEC958 bits won't be
5096 updated */
5097 if (reset)
Norberto Lopes28aedaf2010-02-28 20:16:53 +01005098 set_dig_out_convert(codec, nid,
Stephen Warren7c935972011-06-01 11:14:17 -06005099 spdif->ctls & ~AC_DIG1_ENABLE & 0xff,
Takashi Iwai2f728532008-09-25 16:32:41 +02005100 -1);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005101 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Takashi Iwai2f728532008-09-25 16:32:41 +02005102 if (codec->slave_dig_outs) {
Takashi Iwaidda14412011-05-02 11:29:30 +02005103 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02005104 for (d = codec->slave_dig_outs; *d; d++)
5105 snd_hda_codec_setup_stream(codec, *d, stream_tag, 0,
5106 format);
Matthew Ranostayde51ca12008-09-07 14:31:40 -04005107 }
Takashi Iwai2f728532008-09-25 16:32:41 +02005108 /* turn on again (if needed) */
Laurence Darby3bef1c32012-11-03 17:00:06 +00005109 if (reset)
Takashi Iwai2f728532008-09-25 16:32:41 +02005110 set_dig_out_convert(codec, nid,
Stephen Warren7c935972011-06-01 11:14:17 -06005111 spdif->ctls & 0xff, -1);
Takashi Iwai2f728532008-09-25 16:32:41 +02005112}
Matthew Ranostayde51ca12008-09-07 14:31:40 -04005113
Takashi Iwai2f728532008-09-25 16:32:41 +02005114static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid)
5115{
5116 snd_hda_codec_cleanup_stream(codec, nid);
5117 if (codec->slave_dig_outs) {
Takashi Iwaidda14412011-05-02 11:29:30 +02005118 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02005119 for (d = codec->slave_dig_outs; *d; d++)
5120 snd_hda_codec_cleanup_stream(codec, *d);
5121 }
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005122}
5123
Takashi Iwaid5191e52009-11-16 14:58:17 +01005124/**
5125 * snd_hda_bus_reboot_notify - call the reboot notifier of each codec
5126 * @bus: HD-audio bus
5127 */
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01005128void snd_hda_bus_reboot_notify(struct hda_bus *bus)
5129{
5130 struct hda_codec *codec;
5131
5132 if (!bus)
5133 return;
5134 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwaie581f3d2011-07-26 10:19:20 +02005135 if (hda_codec_is_power_on(codec) &&
5136 codec->patch_ops.reboot_notify)
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01005137 codec->patch_ops.reboot_notify(codec);
5138 }
5139}
Takashi Iwai8f217a22009-11-10 18:26:12 +01005140EXPORT_SYMBOL_HDA(snd_hda_bus_reboot_notify);
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01005141
Takashi Iwaid5191e52009-11-16 14:58:17 +01005142/**
5143 * snd_hda_multi_out_dig_open - open the digital out in the exclusive mode
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005145int snd_hda_multi_out_dig_open(struct hda_codec *codec,
5146 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147{
Ingo Molnar62932df2006-01-16 16:34:20 +01005148 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02005149 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
5150 /* already opened as analog dup; reset it once */
Takashi Iwai2f728532008-09-25 16:32:41 +02005151 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005152 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01005153 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154 return 0;
5155}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005156EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005157
Takashi Iwaid5191e52009-11-16 14:58:17 +01005158/**
5159 * snd_hda_multi_out_dig_prepare - prepare the digital out stream
5160 */
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005161int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
5162 struct hda_multi_out *mout,
5163 unsigned int stream_tag,
5164 unsigned int format,
5165 struct snd_pcm_substream *substream)
5166{
5167 mutex_lock(&codec->spdif_mutex);
5168 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
5169 mutex_unlock(&codec->spdif_mutex);
5170 return 0;
5171}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005172EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_prepare);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005173
Takashi Iwaid5191e52009-11-16 14:58:17 +01005174/**
5175 * snd_hda_multi_out_dig_cleanup - clean-up the digital out stream
5176 */
Takashi Iwai9411e212009-02-13 11:32:28 +01005177int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
5178 struct hda_multi_out *mout)
5179{
5180 mutex_lock(&codec->spdif_mutex);
5181 cleanup_dig_out_stream(codec, mout->dig_out_nid);
5182 mutex_unlock(&codec->spdif_mutex);
5183 return 0;
5184}
5185EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_cleanup);
5186
Takashi Iwaid5191e52009-11-16 14:58:17 +01005187/**
5188 * snd_hda_multi_out_dig_close - release the digital out stream
Linus Torvalds1da177e2005-04-16 15:20:36 -07005189 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005190int snd_hda_multi_out_dig_close(struct hda_codec *codec,
5191 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192{
Ingo Molnar62932df2006-01-16 16:34:20 +01005193 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005194 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01005195 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005196 return 0;
5197}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005198EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199
Takashi Iwaid5191e52009-11-16 14:58:17 +01005200/**
5201 * snd_hda_multi_out_analog_open - open analog outputs
5202 *
5203 * Open analog outputs and set up the hw-constraints.
5204 * If the digital outputs can be opened as slave, open the digital
5205 * outputs, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005207int snd_hda_multi_out_analog_open(struct hda_codec *codec,
5208 struct hda_multi_out *mout,
Takashi Iwai9a081602008-02-12 18:37:26 +01005209 struct snd_pcm_substream *substream,
5210 struct hda_pcm_stream *hinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211{
Takashi Iwai9a081602008-02-12 18:37:26 +01005212 struct snd_pcm_runtime *runtime = substream->runtime;
5213 runtime->hw.channels_max = mout->max_channels;
5214 if (mout->dig_out_nid) {
5215 if (!mout->analog_rates) {
5216 mout->analog_rates = hinfo->rates;
5217 mout->analog_formats = hinfo->formats;
5218 mout->analog_maxbps = hinfo->maxbps;
5219 } else {
5220 runtime->hw.rates = mout->analog_rates;
5221 runtime->hw.formats = mout->analog_formats;
5222 hinfo->maxbps = mout->analog_maxbps;
5223 }
5224 if (!mout->spdif_rates) {
5225 snd_hda_query_supported_pcm(codec, mout->dig_out_nid,
5226 &mout->spdif_rates,
5227 &mout->spdif_formats,
5228 &mout->spdif_maxbps);
5229 }
5230 mutex_lock(&codec->spdif_mutex);
5231 if (mout->share_spdif) {
Takashi Iwai022b4662009-07-03 23:03:30 +02005232 if ((runtime->hw.rates & mout->spdif_rates) &&
5233 (runtime->hw.formats & mout->spdif_formats)) {
5234 runtime->hw.rates &= mout->spdif_rates;
5235 runtime->hw.formats &= mout->spdif_formats;
5236 if (mout->spdif_maxbps < hinfo->maxbps)
5237 hinfo->maxbps = mout->spdif_maxbps;
5238 } else {
5239 mout->share_spdif = 0;
5240 /* FIXME: need notify? */
5241 }
Takashi Iwai9a081602008-02-12 18:37:26 +01005242 }
Frederik Deweerdteaa99852008-04-14 13:11:44 +02005243 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01005244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005245 return snd_pcm_hw_constraint_step(substream->runtime, 0,
5246 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
5247}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005248EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005249
Takashi Iwaid5191e52009-11-16 14:58:17 +01005250/**
5251 * snd_hda_multi_out_analog_prepare - Preapre the analog outputs.
5252 *
5253 * Set up the i/o for analog out.
5254 * When the digital out is available, copy the front out to digital out, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005256int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
5257 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258 unsigned int stream_tag,
5259 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01005260 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005261{
Takashi Iwaidda14412011-05-02 11:29:30 +02005262 const hda_nid_t *nids = mout->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005263 int chs = substream->runtime->channels;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02005264 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265 int i;
5266
Ingo Molnar62932df2006-01-16 16:34:20 +01005267 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02005268 spdif = snd_hda_spdif_out_of_nid(codec, mout->dig_out_nid);
Takashi Iwai9a081602008-02-12 18:37:26 +01005269 if (mout->dig_out_nid && mout->share_spdif &&
5270 mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271 if (chs == 2 &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02005272 snd_hda_is_supported_format(codec, mout->dig_out_nid,
5273 format) &&
Stephen Warren7c935972011-06-01 11:14:17 -06005274 !(spdif->status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005276 setup_dig_out_stream(codec, mout->dig_out_nid,
5277 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278 } else {
5279 mout->dig_out_used = 0;
Takashi Iwai2f728532008-09-25 16:32:41 +02005280 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281 }
5282 }
Ingo Molnar62932df2006-01-16 16:34:20 +01005283 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284
5285 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005286 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
5287 0, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02005288 if (!mout->no_share_stream &&
5289 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005291 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
5292 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01005293 /* extra outputs copied from front */
Takashi Iwaia06dbfc2011-08-23 18:16:13 +02005294 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
5295 if (!mout->no_share_stream && mout->hp_out_nid[i])
5296 snd_hda_codec_setup_stream(codec,
5297 mout->hp_out_nid[i],
5298 stream_tag, 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01005299 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
Takashi Iwaid29240c2007-10-26 12:35:56 +02005300 if (!mout->no_share_stream && mout->extra_out_nid[i])
Takashi Iwai82bc9552006-03-21 11:24:42 +01005301 snd_hda_codec_setup_stream(codec,
5302 mout->extra_out_nid[i],
5303 stream_tag, 0, format);
5304
Linus Torvalds1da177e2005-04-16 15:20:36 -07005305 /* surrounds */
5306 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02005307 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005308 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
5309 i * 2, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02005310 else if (!mout->no_share_stream) /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005311 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
5312 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313 }
5314 return 0;
5315}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005316EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005317
Takashi Iwaid5191e52009-11-16 14:58:17 +01005318/**
5319 * snd_hda_multi_out_analog_cleanup - clean up the setting for analog out
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005321int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
5322 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323{
Takashi Iwaidda14412011-05-02 11:29:30 +02005324 const hda_nid_t *nids = mout->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325 int i;
5326
5327 for (i = 0; i < mout->num_dacs; i++)
Takashi Iwai888afa12008-03-18 09:57:50 +01005328 snd_hda_codec_cleanup_stream(codec, nids[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329 if (mout->hp_nid)
Takashi Iwai888afa12008-03-18 09:57:50 +01005330 snd_hda_codec_cleanup_stream(codec, mout->hp_nid);
Takashi Iwaia06dbfc2011-08-23 18:16:13 +02005331 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
5332 if (mout->hp_out_nid[i])
5333 snd_hda_codec_cleanup_stream(codec,
5334 mout->hp_out_nid[i]);
Takashi Iwai82bc9552006-03-21 11:24:42 +01005335 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
5336 if (mout->extra_out_nid[i])
Takashi Iwai888afa12008-03-18 09:57:50 +01005337 snd_hda_codec_cleanup_stream(codec,
5338 mout->extra_out_nid[i]);
Ingo Molnar62932df2006-01-16 16:34:20 +01005339 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005340 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
Takashi Iwai2f728532008-09-25 16:32:41 +02005341 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005342 mout->dig_out_used = 0;
5343 }
Ingo Molnar62932df2006-01-16 16:34:20 +01005344 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005345 return 0;
5346}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005347EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005348
Takashi Iwai47408602012-04-20 13:06:53 +02005349/**
5350 * snd_hda_get_default_vref - Get the default (mic) VREF pin bits
5351 *
5352 * Guess the suitable VREF pin bits to be set as the pin-control value.
5353 * Note: the function doesn't set the AC_PINCTL_IN_EN bit.
5354 */
5355unsigned int snd_hda_get_default_vref(struct hda_codec *codec, hda_nid_t pin)
5356{
5357 unsigned int pincap;
5358 unsigned int oldval;
5359 oldval = snd_hda_codec_read(codec, pin, 0,
5360 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
5361 pincap = snd_hda_query_pin_caps(codec, pin);
5362 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
5363 /* Exception: if the default pin setup is vref50, we give it priority */
5364 if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50)
5365 return AC_PINCTL_VREF_80;
5366 else if (pincap & AC_PINCAP_VREF_50)
5367 return AC_PINCTL_VREF_50;
5368 else if (pincap & AC_PINCAP_VREF_100)
5369 return AC_PINCTL_VREF_100;
5370 else if (pincap & AC_PINCAP_VREF_GRD)
5371 return AC_PINCTL_VREF_GRD;
5372 return AC_PINCTL_VREF_HIZ;
5373}
5374EXPORT_SYMBOL_HDA(snd_hda_get_default_vref);
5375
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01005376/* correct the pin ctl value for matching with the pin cap */
5377unsigned int snd_hda_correct_pin_ctl(struct hda_codec *codec,
5378 hda_nid_t pin, unsigned int val)
5379{
5380 static unsigned int cap_lists[][2] = {
5381 { AC_PINCTL_VREF_100, AC_PINCAP_VREF_100 },
5382 { AC_PINCTL_VREF_80, AC_PINCAP_VREF_80 },
5383 { AC_PINCTL_VREF_50, AC_PINCAP_VREF_50 },
5384 { AC_PINCTL_VREF_GRD, AC_PINCAP_VREF_GRD },
5385 };
5386 unsigned int cap;
5387
5388 if (!val)
5389 return 0;
5390 cap = snd_hda_query_pin_caps(codec, pin);
5391 if (!cap)
5392 return val; /* don't know what to do... */
5393
5394 if (val & AC_PINCTL_OUT_EN) {
5395 if (!(cap & AC_PINCAP_OUT))
5396 val &= ~(AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
5397 else if ((val & AC_PINCTL_HP_EN) && !(cap & AC_PINCAP_HP_DRV))
5398 val &= ~AC_PINCTL_HP_EN;
5399 }
5400
5401 if (val & AC_PINCTL_IN_EN) {
5402 if (!(cap & AC_PINCAP_IN))
5403 val &= ~(AC_PINCTL_IN_EN | AC_PINCTL_VREFEN);
5404 else {
5405 unsigned int vcap, vref;
5406 int i;
5407 vcap = (cap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
5408 vref = val & AC_PINCTL_VREFEN;
5409 for (i = 0; i < ARRAY_SIZE(cap_lists); i++) {
5410 if (vref == cap_lists[i][0] &&
5411 !(vcap & cap_lists[i][1])) {
5412 if (i == ARRAY_SIZE(cap_lists) - 1)
5413 vref = AC_PINCTL_VREF_HIZ;
5414 else
5415 vref = cap_lists[i + 1][0];
5416 }
5417 }
5418 val &= ~AC_PINCTL_VREFEN;
5419 val |= vref;
5420 }
5421 }
5422
5423 return val;
5424}
5425EXPORT_SYMBOL_HDA(snd_hda_correct_pin_ctl);
5426
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02005427int _snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin,
5428 unsigned int val, bool cached)
5429{
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01005430 val = snd_hda_correct_pin_ctl(codec, pin, val);
Takashi Iwaid7fdc002013-01-10 08:38:04 +01005431 snd_hda_codec_set_pin_target(codec, pin, val);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02005432 if (cached)
5433 return snd_hda_codec_update_cache(codec, pin, 0,
5434 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
5435 else
5436 return snd_hda_codec_write(codec, pin, 0,
5437 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
5438}
5439EXPORT_SYMBOL_HDA(_snd_hda_set_pin_ctl);
5440
Takashi Iwai990061c2010-09-09 22:08:44 +02005441/**
5442 * snd_hda_add_imux_item - Add an item to input_mux
5443 *
5444 * When the same label is used already in the existing items, the number
5445 * suffix is appended to the label. This label index number is stored
5446 * to type_idx when non-NULL pointer is given.
5447 */
Takashi Iwai10a20af2010-09-09 16:28:02 +02005448int snd_hda_add_imux_item(struct hda_input_mux *imux, const char *label,
5449 int index, int *type_idx)
5450{
5451 int i, label_idx = 0;
5452 if (imux->num_items >= HDA_MAX_NUM_INPUTS) {
5453 snd_printd(KERN_ERR "hda_codec: Too many imux items!\n");
5454 return -EINVAL;
5455 }
5456 for (i = 0; i < imux->num_items; i++) {
5457 if (!strncmp(label, imux->items[i].label, strlen(label)))
5458 label_idx++;
5459 }
5460 if (type_idx)
5461 *type_idx = label_idx;
5462 if (label_idx > 0)
5463 snprintf(imux->items[imux->num_items].label,
5464 sizeof(imux->items[imux->num_items].label),
5465 "%s %d", label, label_idx);
5466 else
5467 strlcpy(imux->items[imux->num_items].label, label,
5468 sizeof(imux->items[imux->num_items].label));
5469 imux->items[imux->num_items].index = index;
5470 imux->num_items++;
5471 return 0;
5472}
5473EXPORT_SYMBOL_HDA(snd_hda_add_imux_item);
Takashi Iwaid7b1ae92010-08-30 13:00:16 +02005474
Takashi Iwai4a471b72005-12-07 13:56:29 +01005475
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476#ifdef CONFIG_PM
5477/*
5478 * power management
5479 */
5480
5481/**
5482 * snd_hda_suspend - suspend the codecs
5483 * @bus: the HDA bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07005484 *
5485 * Returns 0 if successful.
5486 */
Takashi Iwai8dd78332009-06-02 01:16:07 +02005487int snd_hda_suspend(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488{
Takashi Iwai0ba21762007-04-16 11:29:14 +02005489 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490
Takashi Iwai0ba21762007-04-16 11:29:14 +02005491 list_for_each_entry(codec, &bus->codec_list, list) {
David Henningsson26a6cb62012-10-09 15:04:21 +02005492 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwaie581f3d2011-07-26 10:19:20 +02005493 if (hda_codec_is_power_on(codec))
Dylan Reidd17344b2012-09-28 15:57:01 -07005494 hda_call_codec_suspend(codec, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005495 }
5496 return 0;
5497}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005498EXPORT_SYMBOL_HDA(snd_hda_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005499
5500/**
5501 * snd_hda_resume - resume the codecs
5502 * @bus: the HDA bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07005503 *
5504 * Returns 0 if successful.
5505 */
5506int snd_hda_resume(struct hda_bus *bus)
5507{
Takashi Iwai0ba21762007-04-16 11:29:14 +02005508 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005509
Takashi Iwai0ba21762007-04-16 11:29:14 +02005510 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai7f308302012-05-08 16:52:23 +02005511 hda_call_codec_resume(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005512 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513 return 0;
5514}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005515EXPORT_SYMBOL_HDA(snd_hda_resume);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005516#endif /* CONFIG_PM */
Takashi Iwaib2e18592008-07-30 15:01:44 +02005517
5518/*
5519 * generic arrays
5520 */
5521
Takashi Iwaid5191e52009-11-16 14:58:17 +01005522/**
5523 * snd_array_new - get a new element from the given array
5524 * @array: the array object
Norberto Lopes28aedaf2010-02-28 20:16:53 +01005525 *
Takashi Iwaid5191e52009-11-16 14:58:17 +01005526 * Get a new element from the given array. If it exceeds the
5527 * pre-allocated array size, re-allocate the array.
5528 *
5529 * Returns NULL if allocation failed.
Takashi Iwaib2e18592008-07-30 15:01:44 +02005530 */
5531void *snd_array_new(struct snd_array *array)
5532{
Takashi Iwai12f17712012-10-10 08:59:14 +02005533 if (snd_BUG_ON(!array->elem_size))
5534 return NULL;
Takashi Iwaib2e18592008-07-30 15:01:44 +02005535 if (array->used >= array->alloced) {
5536 int num = array->alloced + array->alloc_align;
Takashi Iwai3101ba02011-07-12 08:05:16 +02005537 int size = (num + 1) * array->elem_size;
Takashi Iwai00ef9612011-07-14 15:57:27 +02005538 int oldsize = array->alloced * array->elem_size;
Takashi Iwaib910d9a2008-11-07 00:26:52 +01005539 void *nlist;
5540 if (snd_BUG_ON(num >= 4096))
5541 return NULL;
Takashi Iwai3101ba02011-07-12 08:05:16 +02005542 nlist = krealloc(array->list, size, GFP_KERNEL);
Takashi Iwaib2e18592008-07-30 15:01:44 +02005543 if (!nlist)
5544 return NULL;
Takashi Iwai00ef9612011-07-14 15:57:27 +02005545 memset(nlist + oldsize, 0, size - oldsize);
Takashi Iwaib2e18592008-07-30 15:01:44 +02005546 array->list = nlist;
5547 array->alloced = num;
5548 }
Takashi Iwaif43aa022008-11-10 16:24:26 +01005549 return snd_array_elem(array, array->used++);
Takashi Iwaib2e18592008-07-30 15:01:44 +02005550}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005551EXPORT_SYMBOL_HDA(snd_array_new);
Takashi Iwaib2e18592008-07-30 15:01:44 +02005552
Takashi Iwaid5191e52009-11-16 14:58:17 +01005553/**
5554 * snd_array_free - free the given array elements
5555 * @array: the array object
5556 */
Takashi Iwaib2e18592008-07-30 15:01:44 +02005557void snd_array_free(struct snd_array *array)
5558{
5559 kfree(array->list);
5560 array->used = 0;
5561 array->alloced = 0;
5562 array->list = NULL;
5563}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005564EXPORT_SYMBOL_HDA(snd_array_free);
Takashi Iwaib2022262008-11-21 21:24:03 +01005565
Takashi Iwaid5191e52009-11-16 14:58:17 +01005566/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01005567 * snd_print_pcm_bits - Print the supported PCM fmt bits to the string buffer
5568 * @pcm: PCM caps bits
5569 * @buf: the string buffer to write
5570 * @buflen: the max buffer length
5571 *
5572 * used by hda_proc.c and hda_eld.c
5573 */
Takashi Iwaib2022262008-11-21 21:24:03 +01005574void snd_print_pcm_bits(int pcm, char *buf, int buflen)
5575{
5576 static unsigned int bits[] = { 8, 16, 20, 24, 32 };
5577 int i, j;
5578
5579 for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++)
5580 if (pcm & (AC_SUPPCM_BITS_8 << i))
5581 j += snprintf(buf + j, buflen - j, " %d", bits[i]);
5582
5583 buf[j] = '\0'; /* necessary when j == 0 */
5584}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005585EXPORT_SYMBOL_HDA(snd_print_pcm_bits);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005586
5587MODULE_DESCRIPTION("HDA codec core");
5588MODULE_LICENSE("GPL");