blob: e80f835682918c1f809d0d3a732fc16ee4dc6b2a [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 Iwaia68d5a52010-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 Iwaia68d5a52010-03-30 18:03:44 +02001718 return NULL;
1719}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Takashi Iwaia68d5a52010-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 Iwaia68d5a52010-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,
2335 int dev)
Takashi Iwai1afe2062010-12-23 10:17:52 +01002336{
2337 int idx;
2338 for (idx = 0; idx < 16; idx++) { /* 16 ctlrs should be large enough */
Takashi Iwaidcda5802012-10-12 17:24:51 +02002339 if (!find_mixer_ctl(codec, name, dev, idx))
Takashi Iwai1afe2062010-12-23 10:17:52 +01002340 return idx;
2341 }
2342 return -EBUSY;
2343}
2344
Takashi Iwaid5191e52009-11-16 14:58:17 +01002345/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002346 * snd_hda_ctl_add - Add a control element and assign to the codec
Takashi Iwaid5191e52009-11-16 14:58:17 +01002347 * @codec: HD-audio codec
2348 * @nid: corresponding NID (optional)
2349 * @kctl: the control element to assign
2350 *
2351 * Add the given control element to an array inside the codec instance.
2352 * All control elements belonging to a codec are supposed to be added
2353 * by this function so that a proper clean-up works at the free or
2354 * reconfiguration time.
2355 *
2356 * If non-zero @nid is passed, the NID is assigned to the control element.
2357 * The assignment is shown in the codec proc file.
2358 *
2359 * snd_hda_ctl_add() checks the control subdev id field whether
2360 * #HDA_SUBDEV_NID_FLAG bit is set. If set (and @nid is zero), the lower
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002361 * bits value is taken as the NID to assign. The #HDA_NID_ITEM_AMP bit
2362 * specifies if kctl->private_value is a HDA amplifier value.
Takashi Iwaid5191e52009-11-16 14:58:17 +01002363 */
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002364int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid,
2365 struct snd_kcontrol *kctl)
Takashi Iwaid13bd412008-07-30 15:01:45 +02002366{
2367 int err;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002368 unsigned short flags = 0;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002369 struct hda_nid_item *item;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002370
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002371 if (kctl->id.subdevice & HDA_SUBDEV_AMP_FLAG) {
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002372 flags |= HDA_NID_ITEM_AMP;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002373 if (nid == 0)
2374 nid = get_amp_nid_(kctl->private_value);
2375 }
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002376 if ((kctl->id.subdevice & HDA_SUBDEV_NID_FLAG) != 0 && nid == 0)
2377 nid = kctl->id.subdevice & 0xffff;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002378 if (kctl->id.subdevice & (HDA_SUBDEV_NID_FLAG|HDA_SUBDEV_AMP_FLAG))
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01002379 kctl->id.subdevice = 0;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002380 err = snd_ctl_add(codec->bus->card, kctl);
2381 if (err < 0)
2382 return err;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002383 item = snd_array_new(&codec->mixers);
2384 if (!item)
Takashi Iwaid13bd412008-07-30 15:01:45 +02002385 return -ENOMEM;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002386 item->kctl = kctl;
2387 item->nid = nid;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01002388 item->flags = flags;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002389 return 0;
2390}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002391EXPORT_SYMBOL_HDA(snd_hda_ctl_add);
Takashi Iwaid13bd412008-07-30 15:01:45 +02002392
Takashi Iwaid5191e52009-11-16 14:58:17 +01002393/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002394 * snd_hda_add_nid - Assign a NID to a control element
2395 * @codec: HD-audio codec
2396 * @nid: corresponding NID (optional)
2397 * @kctl: the control element to assign
2398 * @index: index to kctl
2399 *
2400 * Add the given control element to an array inside the codec instance.
2401 * This function is used when #snd_hda_ctl_add cannot be used for 1:1
2402 * NID:KCTL mapping - for example "Capture Source" selector.
2403 */
2404int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl,
2405 unsigned int index, hda_nid_t nid)
2406{
2407 struct hda_nid_item *item;
2408
2409 if (nid > 0) {
2410 item = snd_array_new(&codec->nids);
2411 if (!item)
2412 return -ENOMEM;
2413 item->kctl = kctl;
2414 item->index = index;
2415 item->nid = nid;
2416 return 0;
2417 }
Takashi Iwai28d1a852010-03-15 09:05:46 +01002418 printk(KERN_ERR "hda-codec: no NID for mapping control %s:%d:%d\n",
2419 kctl->id.name, kctl->id.index, index);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002420 return -EINVAL;
2421}
2422EXPORT_SYMBOL_HDA(snd_hda_add_nid);
2423
2424/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01002425 * snd_hda_ctls_clear - Clear all controls assigned to the given codec
2426 * @codec: HD-audio codec
2427 */
Takashi Iwaid13bd412008-07-30 15:01:45 +02002428void snd_hda_ctls_clear(struct hda_codec *codec)
2429{
2430 int i;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002431 struct hda_nid_item *items = codec->mixers.list;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002432 for (i = 0; i < codec->mixers.used; i++)
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002433 snd_ctl_remove(codec->bus->card, items[i].kctl);
Takashi Iwaid13bd412008-07-30 15:01:45 +02002434 snd_array_free(&codec->mixers);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01002435 snd_array_free(&codec->nids);
Takashi Iwaid13bd412008-07-30 15:01:45 +02002436}
2437
Takashi Iwaia65d6292009-02-23 16:57:04 +01002438/* pseudo device locking
2439 * toggle card->shutdown to allow/disallow the device access (as a hack)
2440 */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002441int snd_hda_lock_devices(struct hda_bus *bus)
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002442{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002443 struct snd_card *card = bus->card;
2444 struct hda_codec *codec;
2445
Takashi Iwaia65d6292009-02-23 16:57:04 +01002446 spin_lock(&card->files_lock);
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002447 if (card->shutdown)
2448 goto err_unlock;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002449 card->shutdown = 1;
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002450 if (!list_empty(&card->ctl_files))
2451 goto err_clear;
2452
2453 list_for_each_entry(codec, &bus->codec_list, list) {
2454 int pcm;
2455 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
2456 struct hda_pcm *cpcm = &codec->pcm_info[pcm];
2457 if (!cpcm->pcm)
2458 continue;
2459 if (cpcm->pcm->streams[0].substream_opened ||
2460 cpcm->pcm->streams[1].substream_opened)
2461 goto err_clear;
2462 }
2463 }
Takashi Iwaia65d6292009-02-23 16:57:04 +01002464 spin_unlock(&card->files_lock);
2465 return 0;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002466
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002467 err_clear:
2468 card->shutdown = 0;
2469 err_unlock:
2470 spin_unlock(&card->files_lock);
2471 return -EINVAL;
2472}
2473EXPORT_SYMBOL_HDA(snd_hda_lock_devices);
2474
2475void snd_hda_unlock_devices(struct hda_bus *bus)
Takashi Iwaia65d6292009-02-23 16:57:04 +01002476{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002477 struct snd_card *card = bus->card;
2478
2479 card = bus->card;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002480 spin_lock(&card->files_lock);
2481 card->shutdown = 0;
2482 spin_unlock(&card->files_lock);
2483}
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002484EXPORT_SYMBOL_HDA(snd_hda_unlock_devices);
Takashi Iwaia65d6292009-02-23 16:57:04 +01002485
Takashi Iwaid5191e52009-11-16 14:58:17 +01002486/**
2487 * snd_hda_codec_reset - Clear all objects assigned to the codec
2488 * @codec: HD-audio codec
2489 *
2490 * This frees the all PCM and control elements assigned to the codec, and
2491 * clears the caches and restores the pin default configurations.
2492 *
2493 * When a device is being used, it returns -EBSY. If successfully freed,
2494 * returns zero.
2495 */
Takashi Iwaia65d6292009-02-23 16:57:04 +01002496int snd_hda_codec_reset(struct hda_codec *codec)
2497{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002498 struct hda_bus *bus = codec->bus;
2499 struct snd_card *card = bus->card;
2500 int i;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002501
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002502 if (snd_hda_lock_devices(bus) < 0)
Takashi Iwaia65d6292009-02-23 16:57:04 +01002503 return -EBUSY;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002504
2505 /* OK, let it free */
David Henningsson26a6cb62012-10-09 15:04:21 +02002506 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwai83012a72012-08-24 18:38:08 +02002507#ifdef CONFIG_PM
Takashi Iwaia2d96e72012-05-09 12:36:22 +02002508 cancel_delayed_work_sync(&codec->power_work);
Takashi Iwai339876d2012-05-08 16:57:12 +02002509 codec->power_on = 0;
2510 codec->power_transition = 0;
2511 codec->power_jiffies = jiffies;
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002512 flush_workqueue(bus->workq);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002513#endif
2514 snd_hda_ctls_clear(codec);
2515 /* relase PCMs */
2516 for (i = 0; i < codec->num_pcms; i++) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002517 if (codec->pcm_info[i].pcm) {
Takashi Iwaia65d6292009-02-23 16:57:04 +01002518 snd_device_free(card, codec->pcm_info[i].pcm);
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002519 clear_bit(codec->pcm_info[i].device,
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002520 bus->pcm_dev_bits);
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002521 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002522 }
2523 if (codec->patch_ops.free)
2524 codec->patch_ops.free(codec);
Takashi Iwai07dc59f2012-09-10 09:39:31 +02002525 memset(&codec->patch_ops, 0, sizeof(codec->patch_ops));
Takashi Iwai1835a0f2011-10-27 22:12:46 +02002526 snd_hda_jack_tbl_clear(codec);
Takashi Iwai56d17712008-11-28 14:36:23 +01002527 codec->proc_widget_hook = NULL;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002528 codec->spec = NULL;
2529 free_hda_cache(&codec->amp_cache);
2530 free_hda_cache(&codec->cmd_cache);
Takashi Iwai827057f2008-12-19 10:12:02 +01002531 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
2532 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Takashi Iwai346ff702009-02-23 09:42:57 +01002533 /* free only driver_pins so that init_pins + user_pins are restored */
2534 snd_array_free(&codec->driver_pins);
Takashi Iwai09a60712012-06-26 15:01:33 +02002535 snd_array_free(&codec->cvt_setups);
2536 snd_array_free(&codec->spdif_out);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +01002537 snd_array_free(&codec->verbs);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002538 codec->num_pcms = 0;
2539 codec->pcm_info = NULL;
2540 codec->preset = NULL;
Takashi Iwaid1f1af22009-03-02 10:35:29 +01002541 codec->slave_dig_outs = NULL;
2542 codec->spdif_status_reset = 0;
Takashi Iwai1289e9e2008-11-27 15:47:11 +01002543 module_put(codec->owner);
2544 codec->owner = NULL;
Takashi Iwaia65d6292009-02-23 16:57:04 +01002545
2546 /* allow device access again */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02002547 snd_hda_unlock_devices(bus);
Takashi Iwaia65d6292009-02-23 16:57:04 +01002548 return 0;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002549}
2550
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002551typedef int (*map_slave_func_t)(void *, struct snd_kcontrol *);
2552
2553/* apply the function to all matching slave ctls in the mixer list */
2554static int map_slaves(struct hda_codec *codec, const char * const *slaves,
Takashi Iwai9322ca52012-02-03 14:28:01 +01002555 const char *suffix, map_slave_func_t func, void *data)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002556{
2557 struct hda_nid_item *items;
2558 const char * const *s;
2559 int i, err;
2560
2561 items = codec->mixers.list;
2562 for (i = 0; i < codec->mixers.used; i++) {
2563 struct snd_kcontrol *sctl = items[i].kctl;
2564 if (!sctl || !sctl->id.name ||
2565 sctl->id.iface != SNDRV_CTL_ELEM_IFACE_MIXER)
2566 continue;
2567 for (s = slaves; *s; s++) {
Takashi Iwai9322ca52012-02-03 14:28:01 +01002568 char tmpname[sizeof(sctl->id.name)];
2569 const char *name = *s;
2570 if (suffix) {
2571 snprintf(tmpname, sizeof(tmpname), "%s %s",
2572 name, suffix);
2573 name = tmpname;
2574 }
Takashi Iwai9322ca52012-02-03 14:28:01 +01002575 if (!strcmp(sctl->id.name, name)) {
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002576 err = func(data, sctl);
2577 if (err)
2578 return err;
2579 break;
2580 }
2581 }
2582 }
2583 return 0;
2584}
2585
2586static int check_slave_present(void *data, struct snd_kcontrol *sctl)
2587{
2588 return 1;
2589}
2590
Takashi Iwai18478e82012-03-09 17:51:10 +01002591/* guess the value corresponding to 0dB */
2592static int get_kctl_0dB_offset(struct snd_kcontrol *kctl)
2593{
2594 int _tlv[4];
2595 const int *tlv = NULL;
2596 int val = -1;
2597
2598 if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
2599 /* FIXME: set_fs() hack for obtaining user-space TLV data */
2600 mm_segment_t fs = get_fs();
2601 set_fs(get_ds());
2602 if (!kctl->tlv.c(kctl, 0, sizeof(_tlv), _tlv))
2603 tlv = _tlv;
2604 set_fs(fs);
2605 } else if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_READ)
2606 tlv = kctl->tlv.p;
2607 if (tlv && tlv[0] == SNDRV_CTL_TLVT_DB_SCALE)
2608 val = -tlv[2] / tlv[3];
2609 return val;
2610}
2611
2612/* call kctl->put with the given value(s) */
2613static int put_kctl_with_value(struct snd_kcontrol *kctl, int val)
2614{
2615 struct snd_ctl_elem_value *ucontrol;
2616 ucontrol = kzalloc(sizeof(*ucontrol), GFP_KERNEL);
2617 if (!ucontrol)
2618 return -ENOMEM;
2619 ucontrol->value.integer.value[0] = val;
2620 ucontrol->value.integer.value[1] = val;
2621 kctl->put(kctl, ucontrol);
2622 kfree(ucontrol);
2623 return 0;
2624}
2625
2626/* initialize the slave volume with 0dB */
2627static int init_slave_0dB(void *data, struct snd_kcontrol *slave)
2628{
2629 int offset = get_kctl_0dB_offset(slave);
2630 if (offset > 0)
2631 put_kctl_with_value(slave, offset);
2632 return 0;
2633}
2634
2635/* unmute the slave */
2636static int init_slave_unmute(void *data, struct snd_kcontrol *slave)
2637{
2638 return put_kctl_with_value(slave, 1);
2639}
2640
Takashi Iwaid5191e52009-11-16 14:58:17 +01002641/**
2642 * snd_hda_add_vmaster - create a virtual master control and add slaves
2643 * @codec: HD-audio codec
2644 * @name: vmaster control name
2645 * @tlv: TLV data (optional)
2646 * @slaves: slave control names (optional)
Takashi Iwai9322ca52012-02-03 14:28:01 +01002647 * @suffix: suffix string to each slave name (optional)
Takashi Iwai18478e82012-03-09 17:51:10 +01002648 * @init_slave_vol: initialize slaves to unmute/0dB
Takashi Iwai29e58532012-03-12 12:25:03 +01002649 * @ctl_ret: store the vmaster kcontrol in return
Takashi Iwaid5191e52009-11-16 14:58:17 +01002650 *
2651 * Create a virtual master control with the given name. The TLV data
2652 * must be either NULL or a valid data.
2653 *
2654 * @slaves is a NULL-terminated array of strings, each of which is a
2655 * slave control name. All controls with these names are assigned to
2656 * the new virtual master control.
2657 *
2658 * This function returns zero if successful or a negative error code.
2659 */
Takashi Iwai18478e82012-03-09 17:51:10 +01002660int __snd_hda_add_vmaster(struct hda_codec *codec, char *name,
Takashi Iwai9322ca52012-02-03 14:28:01 +01002661 unsigned int *tlv, const char * const *slaves,
Takashi Iwai29e58532012-03-12 12:25:03 +01002662 const char *suffix, bool init_slave_vol,
2663 struct snd_kcontrol **ctl_ret)
Takashi Iwai2134ea42008-01-10 16:53:55 +01002664{
2665 struct snd_kcontrol *kctl;
Takashi Iwai2134ea42008-01-10 16:53:55 +01002666 int err;
2667
Takashi Iwai29e58532012-03-12 12:25:03 +01002668 if (ctl_ret)
2669 *ctl_ret = NULL;
2670
Takashi Iwai9322ca52012-02-03 14:28:01 +01002671 err = map_slaves(codec, slaves, suffix, check_slave_present, NULL);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002672 if (err != 1) {
Takashi Iwai2f085542008-02-22 18:43:50 +01002673 snd_printdd("No slave found for %s\n", name);
2674 return 0;
2675 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01002676 kctl = snd_ctl_make_virtual_master(name, tlv);
2677 if (!kctl)
2678 return -ENOMEM;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002679 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai2134ea42008-01-10 16:53:55 +01002680 if (err < 0)
2681 return err;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002682
Takashi Iwai9322ca52012-02-03 14:28:01 +01002683 err = map_slaves(codec, slaves, suffix,
2684 (map_slave_func_t)snd_ctl_add_slave, kctl);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002685 if (err < 0)
2686 return err;
Takashi Iwai18478e82012-03-09 17:51:10 +01002687
2688 /* init with master mute & zero volume */
2689 put_kctl_with_value(kctl, 0);
2690 if (init_slave_vol)
2691 map_slaves(codec, slaves, suffix,
2692 tlv ? init_slave_0dB : init_slave_unmute, kctl);
2693
Takashi Iwai29e58532012-03-12 12:25:03 +01002694 if (ctl_ret)
2695 *ctl_ret = kctl;
Takashi Iwai2134ea42008-01-10 16:53:55 +01002696 return 0;
2697}
Takashi Iwai18478e82012-03-09 17:51:10 +01002698EXPORT_SYMBOL_HDA(__snd_hda_add_vmaster);
Takashi Iwai2134ea42008-01-10 16:53:55 +01002699
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002700/*
2701 * mute-LED control using vmaster
2702 */
2703static int vmaster_mute_mode_info(struct snd_kcontrol *kcontrol,
2704 struct snd_ctl_elem_info *uinfo)
2705{
2706 static const char * const texts[] = {
David Henningssonc86c2d42013-01-03 14:12:29 +01002707 "On", "Off", "Follow Master"
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002708 };
2709 unsigned int index;
2710
2711 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2712 uinfo->count = 1;
2713 uinfo->value.enumerated.items = 3;
2714 index = uinfo->value.enumerated.item;
2715 if (index >= 3)
2716 index = 2;
2717 strcpy(uinfo->value.enumerated.name, texts[index]);
2718 return 0;
2719}
2720
2721static int vmaster_mute_mode_get(struct snd_kcontrol *kcontrol,
2722 struct snd_ctl_elem_value *ucontrol)
2723{
2724 struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol);
2725 ucontrol->value.enumerated.item[0] = hook->mute_mode;
2726 return 0;
2727}
2728
2729static int vmaster_mute_mode_put(struct snd_kcontrol *kcontrol,
2730 struct snd_ctl_elem_value *ucontrol)
2731{
2732 struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol);
2733 unsigned int old_mode = hook->mute_mode;
2734
2735 hook->mute_mode = ucontrol->value.enumerated.item[0];
2736 if (hook->mute_mode > HDA_VMUTE_FOLLOW_MASTER)
2737 hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER;
2738 if (old_mode == hook->mute_mode)
2739 return 0;
2740 snd_hda_sync_vmaster_hook(hook);
2741 return 1;
2742}
2743
2744static struct snd_kcontrol_new vmaster_mute_mode = {
2745 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2746 .name = "Mute-LED Mode",
2747 .info = vmaster_mute_mode_info,
2748 .get = vmaster_mute_mode_get,
2749 .put = vmaster_mute_mode_put,
2750};
2751
2752/*
2753 * Add a mute-LED hook with the given vmaster switch kctl
2754 * "Mute-LED Mode" control is automatically created and associated with
2755 * the given hook.
2756 */
2757int snd_hda_add_vmaster_hook(struct hda_codec *codec,
Takashi Iwaif29735c2012-03-13 07:55:10 +01002758 struct hda_vmaster_mute_hook *hook,
2759 bool expose_enum_ctl)
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002760{
2761 struct snd_kcontrol *kctl;
2762
2763 if (!hook->hook || !hook->sw_kctl)
2764 return 0;
2765 snd_ctl_add_vmaster_hook(hook->sw_kctl, hook->hook, codec);
2766 hook->codec = codec;
2767 hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER;
Takashi Iwaif29735c2012-03-13 07:55:10 +01002768 if (!expose_enum_ctl)
2769 return 0;
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002770 kctl = snd_ctl_new1(&vmaster_mute_mode, hook);
2771 if (!kctl)
2772 return -ENOMEM;
2773 return snd_hda_ctl_add(codec, 0, kctl);
2774}
2775EXPORT_SYMBOL_HDA(snd_hda_add_vmaster_hook);
2776
2777/*
2778 * Call the hook with the current value for synchronization
2779 * Should be called in init callback
2780 */
2781void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook *hook)
2782{
2783 if (!hook->hook || !hook->codec)
2784 return;
2785 switch (hook->mute_mode) {
2786 case HDA_VMUTE_FOLLOW_MASTER:
2787 snd_ctl_sync_vmaster_hook(hook->sw_kctl);
2788 break;
2789 default:
2790 hook->hook(hook->codec, hook->mute_mode);
2791 break;
2792 }
2793}
2794EXPORT_SYMBOL_HDA(snd_hda_sync_vmaster_hook);
2795
2796
Takashi Iwaid5191e52009-11-16 14:58:17 +01002797/**
2798 * snd_hda_mixer_amp_switch_info - Info callback for a standard AMP mixer switch
2799 *
2800 * The control element is supposed to have the private_value field
2801 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2802 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002803int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
2804 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805{
2806 int chs = get_amp_channels(kcontrol);
2807
2808 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2809 uinfo->count = chs == 3 ? 2 : 1;
2810 uinfo->value.integer.min = 0;
2811 uinfo->value.integer.max = 1;
2812 return 0;
2813}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002814EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815
Takashi Iwaid5191e52009-11-16 14:58:17 +01002816/**
2817 * snd_hda_mixer_amp_switch_get - Get callback for a standard AMP mixer switch
2818 *
2819 * The control element is supposed to have the private_value field
2820 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2821 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002822int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
2823 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824{
2825 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2826 hda_nid_t nid = get_amp_nid(kcontrol);
2827 int chs = get_amp_channels(kcontrol);
2828 int dir = get_amp_direction(kcontrol);
2829 int idx = get_amp_index(kcontrol);
2830 long *valp = ucontrol->value.integer.value;
2831
2832 if (chs & 1)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002833 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002834 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 if (chs & 2)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002836 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002837 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 return 0;
2839}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002840EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841
Takashi Iwaid5191e52009-11-16 14:58:17 +01002842/**
2843 * snd_hda_mixer_amp_switch_put - Put callback for a standard AMP mixer switch
2844 *
2845 * The control element is supposed to have the private_value field
2846 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2847 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002848int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
2849 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850{
2851 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2852 hda_nid_t nid = get_amp_nid(kcontrol);
2853 int chs = get_amp_channels(kcontrol);
2854 int dir = get_amp_direction(kcontrol);
2855 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 long *valp = ucontrol->value.integer.value;
2857 int change = 0;
2858
Takashi Iwaicb53c622007-08-10 17:21:45 +02002859 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002860 if (chs & 1) {
Takashi Iwai4a19fae2005-06-08 14:43:58 +02002861 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02002862 HDA_AMP_MUTE,
2863 *valp ? 0 : HDA_AMP_MUTE);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002864 valp++;
2865 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02002866 if (chs & 2)
2867 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02002868 HDA_AMP_MUTE,
2869 *valp ? 0 : HDA_AMP_MUTE);
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002870 hda_call_check_power_status(codec, nid);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002871 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 return change;
2873}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002874EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
2876/*
Takashi Iwai985be542005-11-02 18:26:49 +01002877 * bound volume controls
2878 *
2879 * bind multiple volumes (# indices, from 0)
2880 */
2881
2882#define AMP_VAL_IDX_SHIFT 19
2883#define AMP_VAL_IDX_MASK (0x0f<<19)
2884
Takashi Iwaid5191e52009-11-16 14:58:17 +01002885/**
2886 * snd_hda_mixer_bind_switch_get - Get callback for a bound volume control
2887 *
2888 * The control element is supposed to have the private_value field
2889 * set up via HDA_BIND_MUTE*() macros.
2890 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002891int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol,
2892 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01002893{
2894 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2895 unsigned long pval;
2896 int err;
2897
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002898 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002899 pval = kcontrol->private_value;
2900 kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */
2901 err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
2902 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002903 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002904 return err;
2905}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002906EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_get);
Takashi Iwai985be542005-11-02 18:26:49 +01002907
Takashi Iwaid5191e52009-11-16 14:58:17 +01002908/**
2909 * snd_hda_mixer_bind_switch_put - Put callback for a bound volume control
2910 *
2911 * The control element is supposed to have the private_value field
2912 * set up via HDA_BIND_MUTE*() macros.
2913 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002914int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol,
2915 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01002916{
2917 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2918 unsigned long pval;
2919 int i, indices, err = 0, change = 0;
2920
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002921 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002922 pval = kcontrol->private_value;
2923 indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT;
2924 for (i = 0; i < indices; i++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002925 kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) |
2926 (i << AMP_VAL_IDX_SHIFT);
Takashi Iwai985be542005-11-02 18:26:49 +01002927 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2928 if (err < 0)
2929 break;
2930 change |= err;
2931 }
2932 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002933 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002934 return err < 0 ? err : change;
2935}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002936EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_put);
Takashi Iwai985be542005-11-02 18:26:49 +01002937
Takashi Iwaid5191e52009-11-16 14:58:17 +01002938/**
2939 * snd_hda_mixer_bind_ctls_info - Info callback for a generic bound control
2940 *
2941 * The control element is supposed to have the private_value field
2942 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
Takashi Iwai532d5382007-07-27 19:02:40 +02002943 */
2944int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol,
2945 struct snd_ctl_elem_info *uinfo)
2946{
2947 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2948 struct hda_bind_ctls *c;
2949 int err;
2950
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002951 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01002952 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02002953 kcontrol->private_value = *c->values;
2954 err = c->ops->info(kcontrol, uinfo);
2955 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002956 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02002957 return err;
2958}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002959EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_info);
Takashi Iwai532d5382007-07-27 19:02:40 +02002960
Takashi Iwaid5191e52009-11-16 14:58:17 +01002961/**
2962 * snd_hda_mixer_bind_ctls_get - Get callback for a generic bound control
2963 *
2964 * The control element is supposed to have the private_value field
2965 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
2966 */
Takashi Iwai532d5382007-07-27 19:02:40 +02002967int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol,
2968 struct snd_ctl_elem_value *ucontrol)
2969{
2970 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2971 struct hda_bind_ctls *c;
2972 int err;
2973
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002974 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01002975 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02002976 kcontrol->private_value = *c->values;
2977 err = c->ops->get(kcontrol, ucontrol);
2978 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002979 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02002980 return err;
2981}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002982EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_get);
Takashi Iwai532d5382007-07-27 19:02:40 +02002983
Takashi Iwaid5191e52009-11-16 14:58:17 +01002984/**
2985 * snd_hda_mixer_bind_ctls_put - Put callback for a generic bound control
2986 *
2987 * The control element is supposed to have the private_value field
2988 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
2989 */
Takashi Iwai532d5382007-07-27 19:02:40 +02002990int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol,
2991 struct snd_ctl_elem_value *ucontrol)
2992{
2993 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2994 struct hda_bind_ctls *c;
2995 unsigned long *vals;
2996 int err = 0, change = 0;
2997
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002998 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01002999 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02003000 for (vals = c->values; *vals; vals++) {
3001 kcontrol->private_value = *vals;
3002 err = c->ops->put(kcontrol, ucontrol);
3003 if (err < 0)
3004 break;
3005 change |= err;
3006 }
3007 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003008 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02003009 return err < 0 ? err : change;
3010}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003011EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_put);
Takashi Iwai532d5382007-07-27 19:02:40 +02003012
Takashi Iwaid5191e52009-11-16 14:58:17 +01003013/**
3014 * snd_hda_mixer_bind_tlv - TLV callback for a generic bound control
3015 *
3016 * The control element is supposed to have the private_value field
3017 * set up via HDA_BIND_VOL() macro.
3018 */
Takashi Iwai532d5382007-07-27 19:02:40 +02003019int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag,
3020 unsigned int size, unsigned int __user *tlv)
3021{
3022 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3023 struct hda_bind_ctls *c;
3024 int err;
3025
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003026 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01003027 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02003028 kcontrol->private_value = *c->values;
3029 err = c->ops->tlv(kcontrol, op_flag, size, tlv);
3030 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08003031 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02003032 return err;
3033}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003034EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_tlv);
Takashi Iwai532d5382007-07-27 19:02:40 +02003035
3036struct hda_ctl_ops snd_hda_bind_vol = {
3037 .info = snd_hda_mixer_amp_volume_info,
3038 .get = snd_hda_mixer_amp_volume_get,
3039 .put = snd_hda_mixer_amp_volume_put,
3040 .tlv = snd_hda_mixer_amp_tlv
3041};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003042EXPORT_SYMBOL_HDA(snd_hda_bind_vol);
Takashi Iwai532d5382007-07-27 19:02:40 +02003043
3044struct hda_ctl_ops snd_hda_bind_sw = {
3045 .info = snd_hda_mixer_amp_switch_info,
3046 .get = snd_hda_mixer_amp_switch_get,
3047 .put = snd_hda_mixer_amp_switch_put,
3048 .tlv = snd_hda_mixer_amp_tlv
3049};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003050EXPORT_SYMBOL_HDA(snd_hda_bind_sw);
Takashi Iwai532d5382007-07-27 19:02:40 +02003051
3052/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 * SPDIF out controls
3054 */
3055
Takashi Iwai0ba21762007-04-16 11:29:14 +02003056static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
3057 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058{
3059 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
3060 uinfo->count = 1;
3061 return 0;
3062}
3063
Takashi Iwai0ba21762007-04-16 11:29:14 +02003064static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
3065 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066{
3067 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
3068 IEC958_AES0_NONAUDIO |
3069 IEC958_AES0_CON_EMPHASIS_5015 |
3070 IEC958_AES0_CON_NOT_COPYRIGHT;
3071 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
3072 IEC958_AES1_CON_ORIGINAL;
3073 return 0;
3074}
3075
Takashi Iwai0ba21762007-04-16 11:29:14 +02003076static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
3077 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078{
3079 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
3080 IEC958_AES0_NONAUDIO |
3081 IEC958_AES0_PRO_EMPHASIS_5015;
3082 return 0;
3083}
3084
Takashi Iwai0ba21762007-04-16 11:29:14 +02003085static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
3086 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087{
3088 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06003089 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003090 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003092 mutex_lock(&codec->spdif_mutex);
3093 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren7c935972011-06-01 11:14:17 -06003094 ucontrol->value.iec958.status[0] = spdif->status & 0xff;
3095 ucontrol->value.iec958.status[1] = (spdif->status >> 8) & 0xff;
3096 ucontrol->value.iec958.status[2] = (spdif->status >> 16) & 0xff;
3097 ucontrol->value.iec958.status[3] = (spdif->status >> 24) & 0xff;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003098 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099
3100 return 0;
3101}
3102
3103/* convert from SPDIF status bits to HDA SPDIF bits
3104 * bit 0 (DigEn) is always set zero (to be filled later)
3105 */
3106static unsigned short convert_from_spdif_status(unsigned int sbits)
3107{
3108 unsigned short val = 0;
3109
3110 if (sbits & IEC958_AES0_PROFESSIONAL)
Takashi Iwai0ba21762007-04-16 11:29:14 +02003111 val |= AC_DIG1_PROFESSIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 if (sbits & IEC958_AES0_NONAUDIO)
Takashi Iwai0ba21762007-04-16 11:29:14 +02003113 val |= AC_DIG1_NONAUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003115 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
3116 IEC958_AES0_PRO_EMPHASIS_5015)
3117 val |= AC_DIG1_EMPHASIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003119 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
3120 IEC958_AES0_CON_EMPHASIS_5015)
3121 val |= AC_DIG1_EMPHASIS;
3122 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
3123 val |= AC_DIG1_COPYRIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
Takashi Iwai0ba21762007-04-16 11:29:14 +02003125 val |= AC_DIG1_LEVEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
3127 }
3128 return val;
3129}
3130
3131/* convert to SPDIF status bits from HDA SPDIF bits
3132 */
3133static unsigned int convert_to_spdif_status(unsigned short val)
3134{
3135 unsigned int sbits = 0;
3136
Takashi Iwai0ba21762007-04-16 11:29:14 +02003137 if (val & AC_DIG1_NONAUDIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 sbits |= IEC958_AES0_NONAUDIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003139 if (val & AC_DIG1_PROFESSIONAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 sbits |= IEC958_AES0_PROFESSIONAL;
3141 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003142 if (sbits & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
3144 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003145 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003147 if (!(val & AC_DIG1_COPYRIGHT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003149 if (val & AC_DIG1_LEVEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
3151 sbits |= val & (0x7f << 8);
3152 }
3153 return sbits;
3154}
3155
Takashi Iwai2f728532008-09-25 16:32:41 +02003156/* set digital convert verbs both for the given NID and its slaves */
3157static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
3158 int verb, int val)
3159{
Takashi Iwaidda14412011-05-02 11:29:30 +02003160 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02003161
Takashi Iwai9e976972008-11-25 08:17:20 +01003162 snd_hda_codec_write_cache(codec, nid, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02003163 d = codec->slave_dig_outs;
3164 if (!d)
3165 return;
3166 for (; *d; d++)
Takashi Iwai9e976972008-11-25 08:17:20 +01003167 snd_hda_codec_write_cache(codec, *d, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02003168}
3169
3170static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,
3171 int dig1, int dig2)
3172{
3173 if (dig1 != -1)
3174 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_1, dig1);
3175 if (dig2 != -1)
3176 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_2, dig2);
3177}
3178
Takashi Iwai0ba21762007-04-16 11:29:14 +02003179static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
3180 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181{
3182 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06003183 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003184 struct hda_spdif_out *spdif;
3185 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 unsigned short val;
3187 int change;
3188
Ingo Molnar62932df2006-01-16 16:34:20 +01003189 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003190 spdif = snd_array_elem(&codec->spdif_out, idx);
3191 nid = spdif->nid;
Stephen Warren7c935972011-06-01 11:14:17 -06003192 spdif->status = ucontrol->value.iec958.status[0] |
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
3194 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
3195 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
Stephen Warren7c935972011-06-01 11:14:17 -06003196 val = convert_from_spdif_status(spdif->status);
3197 val |= spdif->ctls & 1;
3198 change = spdif->ctls != val;
3199 spdif->ctls = val;
Stephen Warren74b654c2011-06-01 11:14:18 -06003200 if (change && nid != (u16)-1)
Takashi Iwai2f728532008-09-25 16:32:41 +02003201 set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff);
Ingo Molnar62932df2006-01-16 16:34:20 +01003202 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 return change;
3204}
3205
Takashi Iwaia5ce8892007-07-23 15:42:26 +02003206#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
Takashi Iwai0ba21762007-04-16 11:29:14 +02003208static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
3209 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210{
3211 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06003212 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003213 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003215 mutex_lock(&codec->spdif_mutex);
3216 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren7c935972011-06-01 11:14:17 -06003217 ucontrol->value.integer.value[0] = spdif->ctls & AC_DIG1_ENABLE;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003218 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 return 0;
3220}
3221
Stephen Warren74b654c2011-06-01 11:14:18 -06003222static inline void set_spdif_ctls(struct hda_codec *codec, hda_nid_t nid,
3223 int dig1, int dig2)
3224{
3225 set_dig_out_convert(codec, nid, dig1, dig2);
3226 /* unmute amp switch (if any) */
3227 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
3228 (dig1 & AC_DIG1_ENABLE))
3229 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3230 HDA_AMP_MUTE, 0);
3231}
3232
Takashi Iwai0ba21762007-04-16 11:29:14 +02003233static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
3234 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003235{
3236 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c935972011-06-01 11:14:17 -06003237 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003238 struct hda_spdif_out *spdif;
3239 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 unsigned short val;
3241 int change;
3242
Ingo Molnar62932df2006-01-16 16:34:20 +01003243 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003244 spdif = snd_array_elem(&codec->spdif_out, idx);
3245 nid = spdif->nid;
Stephen Warren7c935972011-06-01 11:14:17 -06003246 val = spdif->ctls & ~AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 if (ucontrol->value.integer.value[0])
Takashi Iwai0ba21762007-04-16 11:29:14 +02003248 val |= AC_DIG1_ENABLE;
Stephen Warren7c935972011-06-01 11:14:17 -06003249 change = spdif->ctls != val;
Stephen Warren74b654c2011-06-01 11:14:18 -06003250 spdif->ctls = val;
3251 if (change && nid != (u16)-1)
3252 set_spdif_ctls(codec, nid, val & 0xff, -1);
Ingo Molnar62932df2006-01-16 16:34:20 +01003253 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 return change;
3255}
3256
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003257static struct snd_kcontrol_new dig_mixes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 {
3259 .access = SNDRV_CTL_ELEM_ACCESS_READ,
3260 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003261 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 .info = snd_hda_spdif_mask_info,
3263 .get = snd_hda_spdif_cmask_get,
3264 },
3265 {
3266 .access = SNDRV_CTL_ELEM_ACCESS_READ,
3267 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003268 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 .info = snd_hda_spdif_mask_info,
3270 .get = snd_hda_spdif_pmask_get,
3271 },
3272 {
3273 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003274 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 .info = snd_hda_spdif_mask_info,
3276 .get = snd_hda_spdif_default_get,
3277 .put = snd_hda_spdif_default_put,
3278 },
3279 {
3280 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003281 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 .info = snd_hda_spdif_out_switch_info,
3283 .get = snd_hda_spdif_out_switch_get,
3284 .put = snd_hda_spdif_out_switch_put,
3285 },
3286 { } /* end */
3287};
3288
3289/**
Takashi Iwaidcda5802012-10-12 17:24:51 +02003290 * snd_hda_create_dig_out_ctls - create Output SPDIF-related controls
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 * @codec: the HDA codec
Takashi Iwaidcda5802012-10-12 17:24:51 +02003292 * @associated_nid: NID that new ctls associated with
3293 * @cvt_nid: converter NID
3294 * @type: HDA_PCM_TYPE_*
3295 * Creates controls related with the digital output.
3296 * Called from each patch supporting the digital out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 *
3298 * Returns 0 if successful, or a negative error code.
3299 */
Takashi Iwaidcda5802012-10-12 17:24:51 +02003300int snd_hda_create_dig_out_ctls(struct hda_codec *codec,
3301 hda_nid_t associated_nid,
3302 hda_nid_t cvt_nid,
3303 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304{
3305 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003306 struct snd_kcontrol *kctl;
3307 struct snd_kcontrol_new *dig_mix;
Takashi Iwaidcda5802012-10-12 17:24:51 +02003308 int idx, dev = 0;
3309 const int spdif_pcm_dev = 1;
Stephen Warren7c935972011-06-01 11:14:17 -06003310 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311
Takashi Iwaidcda5802012-10-12 17:24:51 +02003312 if (codec->primary_dig_out_type == HDA_PCM_TYPE_HDMI &&
3313 type == HDA_PCM_TYPE_SPDIF) {
3314 dev = spdif_pcm_dev;
3315 } else if (codec->primary_dig_out_type == HDA_PCM_TYPE_SPDIF &&
3316 type == HDA_PCM_TYPE_HDMI) {
3317 for (idx = 0; idx < codec->spdif_out.used; idx++) {
3318 spdif = snd_array_elem(&codec->spdif_out, idx);
3319 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
3320 kctl = find_mixer_ctl(codec, dig_mix->name, 0, idx);
3321 if (!kctl)
3322 break;
3323 kctl->id.device = spdif_pcm_dev;
3324 }
3325 }
3326 codec->primary_dig_out_type = HDA_PCM_TYPE_HDMI;
3327 }
3328 if (!codec->primary_dig_out_type)
3329 codec->primary_dig_out_type = type;
3330
3331 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Playback Switch", dev);
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 Iwaidcda5802012-10-12 17:24:51 +02003341 kctl->id.device = dev;
Takashi Iwai09f99702008-02-04 12:31:13 +01003342 kctl->id.index = idx;
Stephen Warren7c935972011-06-01 11:14:17 -06003343 kctl->private_value = codec->spdif_out.used - 1;
Stephen Warren74b654c2011-06-01 11:14:18 -06003344 err = snd_hda_ctl_add(codec, associated_nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003345 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 return err;
3347 }
Stephen Warren74b654c2011-06-01 11:14:18 -06003348 spdif->nid = cvt_nid;
3349 spdif->ctls = snd_hda_codec_read(codec, cvt_nid, 0,
Stephen Warren7c935972011-06-01 11:14:17 -06003350 AC_VERB_GET_DIGI_CONVERT_1, 0);
3351 spdif->status = convert_to_spdif_status(spdif->ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 return 0;
3353}
Takashi Iwaidcda5802012-10-12 17:24:51 +02003354EXPORT_SYMBOL_HDA(snd_hda_create_dig_out_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003356/* get the hda_spdif_out entry from the given NID
3357 * call within spdif_mutex lock
3358 */
Stephen Warren7c935972011-06-01 11:14:17 -06003359struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec,
3360 hda_nid_t nid)
3361{
3362 int i;
3363 for (i = 0; i < codec->spdif_out.used; i++) {
3364 struct hda_spdif_out *spdif =
3365 snd_array_elem(&codec->spdif_out, i);
3366 if (spdif->nid == nid)
3367 return spdif;
3368 }
3369 return NULL;
3370}
3371EXPORT_SYMBOL_HDA(snd_hda_spdif_out_of_nid);
3372
Stephen Warren74b654c2011-06-01 11:14:18 -06003373void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx)
3374{
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003375 struct hda_spdif_out *spdif;
Stephen Warren74b654c2011-06-01 11:14:18 -06003376
3377 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003378 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren74b654c2011-06-01 11:14:18 -06003379 spdif->nid = (u16)-1;
3380 mutex_unlock(&codec->spdif_mutex);
3381}
3382EXPORT_SYMBOL_HDA(snd_hda_spdif_ctls_unassign);
3383
3384void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid)
3385{
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003386 struct hda_spdif_out *spdif;
Stephen Warren74b654c2011-06-01 11:14:18 -06003387 unsigned short val;
3388
3389 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02003390 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren74b654c2011-06-01 11:14:18 -06003391 if (spdif->nid != nid) {
3392 spdif->nid = nid;
3393 val = spdif->ctls;
3394 set_spdif_ctls(codec, nid, val & 0xff, (val >> 8) & 0xff);
3395 }
3396 mutex_unlock(&codec->spdif_mutex);
3397}
3398EXPORT_SYMBOL_HDA(snd_hda_spdif_ctls_assign);
3399
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400/*
Takashi Iwai9a081602008-02-12 18:37:26 +01003401 * SPDIF sharing with analog output
3402 */
3403static int spdif_share_sw_get(struct snd_kcontrol *kcontrol,
3404 struct snd_ctl_elem_value *ucontrol)
3405{
3406 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
3407 ucontrol->value.integer.value[0] = mout->share_spdif;
3408 return 0;
3409}
3410
3411static int spdif_share_sw_put(struct snd_kcontrol *kcontrol,
3412 struct snd_ctl_elem_value *ucontrol)
3413{
3414 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
3415 mout->share_spdif = !!ucontrol->value.integer.value[0];
3416 return 0;
3417}
3418
3419static struct snd_kcontrol_new spdif_share_sw = {
3420 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3421 .name = "IEC958 Default PCM Playback Switch",
3422 .info = snd_ctl_boolean_mono_info,
3423 .get = spdif_share_sw_get,
3424 .put = spdif_share_sw_put,
3425};
3426
Takashi Iwaid5191e52009-11-16 14:58:17 +01003427/**
3428 * snd_hda_create_spdif_share_sw - create Default PCM switch
3429 * @codec: the HDA codec
3430 * @mout: multi-out instance
3431 */
Takashi Iwai9a081602008-02-12 18:37:26 +01003432int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
3433 struct hda_multi_out *mout)
3434{
3435 if (!mout->dig_out_nid)
3436 return 0;
3437 /* ATTENTION: here mout is passed as private_data, instead of codec */
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01003438 return snd_hda_ctl_add(codec, mout->dig_out_nid,
3439 snd_ctl_new1(&spdif_share_sw, mout));
Takashi Iwai9a081602008-02-12 18:37:26 +01003440}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003441EXPORT_SYMBOL_HDA(snd_hda_create_spdif_share_sw);
Takashi Iwai9a081602008-02-12 18:37:26 +01003442
3443/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 * SPDIF input
3445 */
3446
3447#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
3448
Takashi Iwai0ba21762007-04-16 11:29:14 +02003449static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
3450 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451{
3452 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3453
3454 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
3455 return 0;
3456}
3457
Takashi Iwai0ba21762007-04-16 11:29:14 +02003458static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
3459 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460{
3461 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3462 hda_nid_t nid = kcontrol->private_value;
3463 unsigned int val = !!ucontrol->value.integer.value[0];
3464 int change;
3465
Ingo Molnar62932df2006-01-16 16:34:20 +01003466 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003468 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 codec->spdif_in_enable = val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003470 snd_hda_codec_write_cache(codec, nid, 0,
3471 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003473 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474 return change;
3475}
3476
Takashi Iwai0ba21762007-04-16 11:29:14 +02003477static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
3478 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479{
3480 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3481 hda_nid_t nid = kcontrol->private_value;
3482 unsigned short val;
3483 unsigned int sbits;
3484
Andrew Paprocki3982d172007-12-19 12:13:44 +01003485 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 sbits = convert_to_spdif_status(val);
3487 ucontrol->value.iec958.status[0] = sbits;
3488 ucontrol->value.iec958.status[1] = sbits >> 8;
3489 ucontrol->value.iec958.status[2] = sbits >> 16;
3490 ucontrol->value.iec958.status[3] = sbits >> 24;
3491 return 0;
3492}
3493
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003494static struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 {
3496 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003497 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 .info = snd_hda_spdif_in_switch_info,
3499 .get = snd_hda_spdif_in_switch_get,
3500 .put = snd_hda_spdif_in_switch_put,
3501 },
3502 {
3503 .access = SNDRV_CTL_ELEM_ACCESS_READ,
3504 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003505 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 .info = snd_hda_spdif_mask_info,
3507 .get = snd_hda_spdif_in_status_get,
3508 },
3509 { } /* end */
3510};
3511
3512/**
3513 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
3514 * @codec: the HDA codec
3515 * @nid: audio in widget NID
3516 *
3517 * Creates controls related with the SPDIF input.
3518 * Called from each patch supporting the SPDIF in.
3519 *
3520 * Returns 0 if successful, or a negative error code.
3521 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02003522int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523{
3524 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003525 struct snd_kcontrol *kctl;
3526 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01003527 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528
Takashi Iwaidcda5802012-10-12 17:24:51 +02003529 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Capture Switch", 0);
Takashi Iwai1afe2062010-12-23 10:17:52 +01003530 if (idx < 0) {
Takashi Iwai09f99702008-02-04 12:31:13 +01003531 printk(KERN_ERR "hda_codec: too many IEC958 inputs\n");
3532 return -EBUSY;
3533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
3535 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaic8dcdf82009-02-06 16:21:20 +01003536 if (!kctl)
3537 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 kctl->private_value = nid;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01003539 err = snd_hda_ctl_add(codec, nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003540 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 return err;
3542 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02003543 codec->spdif_in_enable =
Andrew Paprocki3982d172007-12-19 12:13:44 +01003544 snd_hda_codec_read(codec, nid, 0,
3545 AC_VERB_GET_DIGI_CONVERT_1, 0) &
Takashi Iwai0ba21762007-04-16 11:29:14 +02003546 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 return 0;
3548}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003549EXPORT_SYMBOL_HDA(snd_hda_create_spdif_in_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003551/*
3552 * command cache
3553 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554
Takashi Iwaic370dd62012-12-13 18:30:04 +01003555/* build a 31bit cache key with the widget id and the command parameter */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003556#define build_cmd_cache_key(nid, verb) ((verb << 8) | nid)
3557#define get_cmd_cache_nid(key) ((key) & 0xff)
3558#define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff)
3559
3560/**
3561 * snd_hda_codec_write_cache - send a single command with caching
3562 * @codec: the HDA codec
3563 * @nid: NID to send the command
3564 * @direct: direct flag
3565 * @verb: the verb to send
3566 * @parm: the parameter for the verb
3567 *
3568 * Send a single command without waiting for response.
3569 *
3570 * Returns 0 if successful, or a negative error code.
3571 */
3572int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid,
3573 int direct, unsigned int verb, unsigned int parm)
3574{
Takashi Iwaic370dd62012-12-13 18:30:04 +01003575 int err;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003576 struct hda_cache_head *c;
3577 u32 key;
Takashi Iwaide1e37b2012-12-20 11:00:21 +01003578 unsigned int cache_only;
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003579
Takashi Iwaide1e37b2012-12-20 11:00:21 +01003580 cache_only = codec->cached_write;
3581 if (!cache_only) {
Takashi Iwaic370dd62012-12-13 18:30:04 +01003582 err = snd_hda_codec_write(codec, nid, direct, verb, parm);
3583 if (err < 0)
3584 return err;
3585 }
3586
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003587 /* parm may contain the verb stuff for get/set amp */
3588 verb = verb | (parm >> 8);
3589 parm &= 0xff;
3590 key = build_cmd_cache_key(nid, verb);
3591 mutex_lock(&codec->bus->cmd_mutex);
3592 c = get_alloc_hash(&codec->cmd_cache, key);
Takashi Iwaic370dd62012-12-13 18:30:04 +01003593 if (c) {
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003594 c->val = parm;
Takashi Iwaide1e37b2012-12-20 11:00:21 +01003595 c->dirty = cache_only;
Takashi Iwaic370dd62012-12-13 18:30:04 +01003596 }
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02003597 mutex_unlock(&codec->bus->cmd_mutex);
3598 return 0;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003599}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003600EXPORT_SYMBOL_HDA(snd_hda_codec_write_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003601
Takashi Iwaid5191e52009-11-16 14:58:17 +01003602/**
Takashi Iwaia68d5a52010-03-30 18:03:44 +02003603 * snd_hda_codec_update_cache - check cache and write the cmd only when needed
3604 * @codec: the HDA codec
3605 * @nid: NID to send the command
3606 * @direct: direct flag
3607 * @verb: the verb to send
3608 * @parm: the parameter for the verb
3609 *
3610 * This function works like snd_hda_codec_write_cache(), but it doesn't send
3611 * command if the parameter is already identical with the cached value.
3612 * If not, it sends the command and refreshes the cache.
3613 *
3614 * Returns 0 if successful, or a negative error code.
3615 */
3616int snd_hda_codec_update_cache(struct hda_codec *codec, hda_nid_t nid,
3617 int direct, unsigned int verb, unsigned int parm)
3618{
3619 struct hda_cache_head *c;
3620 u32 key;
3621
3622 /* parm may contain the verb stuff for get/set amp */
3623 verb = verb | (parm >> 8);
3624 parm &= 0xff;
3625 key = build_cmd_cache_key(nid, verb);
3626 mutex_lock(&codec->bus->cmd_mutex);
3627 c = get_hash(&codec->cmd_cache, key);
3628 if (c && c->val == parm) {
3629 mutex_unlock(&codec->bus->cmd_mutex);
3630 return 0;
3631 }
3632 mutex_unlock(&codec->bus->cmd_mutex);
3633 return snd_hda_codec_write_cache(codec, nid, direct, verb, parm);
3634}
3635EXPORT_SYMBOL_HDA(snd_hda_codec_update_cache);
3636
3637/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01003638 * snd_hda_codec_resume_cache - Resume the all commands from the cache
3639 * @codec: HD-audio codec
3640 *
3641 * Execute all verbs recorded in the command caches to resume.
3642 */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003643void snd_hda_codec_resume_cache(struct hda_codec *codec)
3644{
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003645 int i;
3646
Takashi Iwaic370dd62012-12-13 18:30:04 +01003647 mutex_lock(&codec->hash_mutex);
Takashi Iwaiaa88a352012-12-20 11:02:00 +01003648 codec->cached_write = 0;
Takashi Iwaic370dd62012-12-13 18:30:04 +01003649 for (i = 0; i < codec->cmd_cache.buf.used; i++) {
3650 struct hda_cache_head *buffer;
3651 u32 key;
3652
3653 buffer = snd_array_elem(&codec->cmd_cache.buf, i);
3654 key = buffer->key;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003655 if (!key)
3656 continue;
Takashi Iwaic370dd62012-12-13 18:30:04 +01003657 if (!buffer->dirty)
3658 continue;
3659 buffer->dirty = 0;
3660 mutex_unlock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003661 snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0,
3662 get_cmd_cache_cmd(key), buffer->val);
Takashi Iwaic370dd62012-12-13 18:30:04 +01003663 mutex_lock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003664 }
Takashi Iwaic370dd62012-12-13 18:30:04 +01003665 mutex_unlock(&codec->hash_mutex);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003666}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003667EXPORT_SYMBOL_HDA(snd_hda_codec_resume_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003668
3669/**
3670 * snd_hda_sequence_write_cache - sequence writes with caching
3671 * @codec: the HDA codec
3672 * @seq: VERB array to send
3673 *
3674 * Send the commands sequentially from the given array.
3675 * Thte commands are recorded on cache for power-save and resume.
3676 * The array must be terminated with NID=0.
3677 */
3678void snd_hda_sequence_write_cache(struct hda_codec *codec,
3679 const struct hda_verb *seq)
3680{
3681 for (; seq->nid; seq++)
3682 snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb,
3683 seq->param);
3684}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003685EXPORT_SYMBOL_HDA(snd_hda_sequence_write_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02003686
Takashi Iwaidc870f32013-01-22 15:24:30 +01003687/**
3688 * snd_hda_codec_flush_cache - Execute all pending (cached) amps / verbs
3689 * @codec: HD-audio codec
3690 */
3691void snd_hda_codec_flush_cache(struct hda_codec *codec)
3692{
3693 snd_hda_codec_resume_amp(codec);
3694 snd_hda_codec_resume_cache(codec);
3695}
3696EXPORT_SYMBOL_HDA(snd_hda_codec_flush_cache);
3697
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003698void snd_hda_codec_set_power_to_all(struct hda_codec *codec, hda_nid_t fg,
Takashi Iwai9419ab62013-01-24 17:23:35 +01003699 unsigned int power_state)
Takashi Iwai54d17402005-11-21 16:33:22 +01003700{
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003701 hda_nid_t nid = codec->start_nid;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003702 int i;
Takashi Iwai54d17402005-11-21 16:33:22 +01003703
Takashi Iwaicb53c622007-08-10 17:21:45 +02003704 for (i = 0; i < codec->num_nodes; i++, nid++) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01003705 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwai9419ab62013-01-24 17:23:35 +01003706 unsigned int state = power_state;
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003707 if (!(wcaps & AC_WCAP_POWER))
3708 continue;
Takashi Iwai9419ab62013-01-24 17:23:35 +01003709 if (codec->power_filter) {
3710 state = codec->power_filter(codec, nid, power_state);
3711 if (state != power_state && power_state == AC_PWRST_D3)
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003712 continue;
Takashi Iwai1194b5b2007-10-10 10:04:26 +02003713 }
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003714 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE,
Takashi Iwai9419ab62013-01-24 17:23:35 +01003715 state);
Takashi Iwai54d17402005-11-21 16:33:22 +01003716 }
Takashi Iwai54d17402005-11-21 16:33:22 +01003717}
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003718EXPORT_SYMBOL_HDA(snd_hda_codec_set_power_to_all);
3719
3720/*
Wang Xingchao0c7f46a2012-06-06 22:02:48 +08003721 * supported power states check
3722 */
3723static bool snd_hda_codec_get_supported_ps(struct hda_codec *codec, hda_nid_t fg,
3724 unsigned int power_state)
3725{
3726 int sup = snd_hda_param_read(codec, fg, AC_PAR_POWER_STATE);
3727
Mengdong Line037cb42012-08-10 14:11:58 +02003728 if (sup == -1)
Wang Xingchao0c7f46a2012-06-06 22:02:48 +08003729 return false;
3730 if (sup & power_state)
3731 return true;
3732 else
3733 return false;
3734}
3735
3736/*
Takashi Iwai432c6412012-08-28 09:59:20 -07003737 * wait until the state is reached, returns the current state
3738 */
3739static unsigned int hda_sync_power_state(struct hda_codec *codec,
3740 hda_nid_t fg,
3741 unsigned int power_state)
3742{
3743 unsigned long end_time = jiffies + msecs_to_jiffies(500);
3744 unsigned int state, actual_state;
3745
3746 for (;;) {
3747 state = snd_hda_codec_read(codec, fg, 0,
3748 AC_VERB_GET_POWER_STATE, 0);
3749 if (state & AC_PWRST_ERROR)
3750 break;
3751 actual_state = (state >> 4) & 0x0f;
3752 if (actual_state == power_state)
3753 break;
3754 if (time_after_eq(jiffies, end_time))
3755 break;
3756 /* wait until the codec reachs to the target state */
3757 msleep(1);
3758 }
3759 return state;
3760}
3761
Takashi Iwai9419ab62013-01-24 17:23:35 +01003762/* don't power down the widget if it controls eapd and EAPD_BTLENABLE is set */
3763static unsigned int default_power_filter(struct hda_codec *codec, hda_nid_t nid,
3764 unsigned int power_state)
3765{
3766 if (power_state == AC_PWRST_D3 &&
3767 get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_PIN &&
3768 (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)) {
3769 int eapd = snd_hda_codec_read(codec, nid, 0,
3770 AC_VERB_GET_EAPD_BTLENABLE, 0);
3771 if (eapd & 0x02)
3772 return AC_PWRST_D0;
3773 }
3774 return power_state;
3775}
3776
Takashi Iwai432c6412012-08-28 09:59:20 -07003777/*
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003778 * set power state of the codec, and return the power state
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003779 */
Takashi Iwaid8193872012-08-31 07:54:38 -07003780static unsigned int hda_set_power_state(struct hda_codec *codec,
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003781 unsigned int power_state)
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003782{
Takashi Iwaid8193872012-08-31 07:54:38 -07003783 hda_nid_t fg = codec->afg ? codec->afg : codec->mfg;
Wang Xingchao09617ce2012-06-08 10:26:08 +08003784 int count;
3785 unsigned int state;
3786
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003787 /* this delay seems necessary to avoid click noise at power-down */
Wang Xingchao0f4ccbb2012-06-07 16:51:33 +08003788 if (power_state == AC_PWRST_D3) {
3789 /* transition time less than 10ms for power down */
Takashi Iwai983f6b92012-08-28 09:18:01 -07003790 msleep(codec->epss ? 10 : 100);
Wang Xingchao0f4ccbb2012-06-07 16:51:33 +08003791 }
Wang Xingchao09617ce2012-06-08 10:26:08 +08003792
3793 /* repeat power states setting at most 10 times*/
3794 for (count = 0; count < 10; count++) {
Takashi Iwai432c6412012-08-28 09:59:20 -07003795 if (codec->patch_ops.set_power_state)
3796 codec->patch_ops.set_power_state(codec, fg,
3797 power_state);
3798 else {
3799 snd_hda_codec_read(codec, fg, 0,
3800 AC_VERB_SET_POWER_STATE,
3801 power_state);
Takashi Iwai9419ab62013-01-24 17:23:35 +01003802 snd_hda_codec_set_power_to_all(codec, fg, power_state);
Takashi Iwai432c6412012-08-28 09:59:20 -07003803 }
3804 state = hda_sync_power_state(codec, fg, power_state);
Wang Xingchao09617ce2012-06-08 10:26:08 +08003805 if (!(state & AC_PWRST_ERROR))
3806 break;
3807 }
Mengdong Linb8dfc4622012-08-23 17:32:30 +08003808
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003809 return state;
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003810}
Takashi Iwai54d17402005-11-21 16:33:22 +01003811
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003812/* sync power states of all widgets;
3813 * this is called at the end of codec parsing
3814 */
3815static void sync_power_up_states(struct hda_codec *codec)
3816{
3817 hda_nid_t nid = codec->start_nid;
3818 int i;
3819
3820 /* don't care if no or standard filter is used */
3821 if (!codec->power_filter || codec->power_filter == default_power_filter)
3822 return;
3823
3824 for (i = 0; i < codec->num_nodes; i++, nid++) {
3825 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwai9040d102013-01-24 17:47:17 +01003826 unsigned int target;
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003827 if (!(wcaps & AC_WCAP_POWER))
3828 continue;
3829 target = codec->power_filter(codec, nid, AC_PWRST_D0);
3830 if (target == AC_PWRST_D0)
3831 continue;
Takashi Iwai9040d102013-01-24 17:47:17 +01003832 if (!snd_hda_check_power_state(codec, nid, target))
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003833 snd_hda_codec_write(codec, nid, 0,
3834 AC_VERB_SET_POWER_STATE, target);
3835 }
3836}
3837
Takashi Iwai11aeff02008-07-30 15:01:46 +02003838#ifdef CONFIG_SND_HDA_HWDEP
3839/* execute additional init verbs */
3840static void hda_exec_init_verbs(struct hda_codec *codec)
3841{
3842 if (codec->init_verbs.list)
3843 snd_hda_sequence_write(codec, codec->init_verbs.list);
3844}
3845#else
3846static inline void hda_exec_init_verbs(struct hda_codec *codec) {}
3847#endif
3848
Takashi Iwai2a439522011-07-26 09:52:50 +02003849#ifdef CONFIG_PM
Takashi Iwaicb53c622007-08-10 17:21:45 +02003850/*
3851 * call suspend and power-down; used both from PM and power-save
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003852 * this function returns the power state in the end
Takashi Iwaicb53c622007-08-10 17:21:45 +02003853 */
Dylan Reidd17344b2012-09-28 15:57:01 -07003854static unsigned int hda_call_codec_suspend(struct hda_codec *codec, bool in_wq)
Takashi Iwaicb53c622007-08-10 17:21:45 +02003855{
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003856 unsigned int state;
3857
Takashi Iwai989c3182012-11-19 14:14:58 +01003858 codec->in_pm = 1;
3859
Takashi Iwaicb53c622007-08-10 17:21:45 +02003860 if (codec->patch_ops.suspend)
Takashi Iwai68cb2b52012-07-02 15:20:37 +02003861 codec->patch_ops.suspend(codec);
Takashi Iwaieb541332010-08-06 13:48:11 +02003862 hda_cleanup_all_streams(codec);
Takashi Iwaid8193872012-08-31 07:54:38 -07003863 state = hda_set_power_state(codec, AC_PWRST_D3);
Dylan Reidd17344b2012-09-28 15:57:01 -07003864 /* Cancel delayed work if we aren't currently running from it. */
3865 if (!in_wq)
3866 cancel_delayed_work_sync(&codec->power_work);
Takashi Iwaia2d96e72012-05-09 12:36:22 +02003867 spin_lock(&codec->power_lock);
3868 snd_hda_update_power_acct(codec);
3869 trace_hda_power_down(codec);
Takashi Iwai95e99fd2007-08-13 15:29:04 +02003870 codec->power_on = 0;
Takashi Iwaia221e282007-08-16 16:35:33 +02003871 codec->power_transition = 0;
Takashi Iwaia2f63092009-11-11 09:34:25 +01003872 codec->power_jiffies = jiffies;
Takashi Iwaia2d96e72012-05-09 12:36:22 +02003873 spin_unlock(&codec->power_lock);
Takashi Iwai989c3182012-11-19 14:14:58 +01003874 codec->in_pm = 0;
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003875 return state;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003876}
3877
Takashi Iwaic370dd62012-12-13 18:30:04 +01003878/* mark all entries of cmd and amp caches dirty */
3879static void hda_mark_cmd_cache_dirty(struct hda_codec *codec)
3880{
3881 int i;
3882 for (i = 0; i < codec->cmd_cache.buf.used; i++) {
3883 struct hda_cache_head *cmd;
3884 cmd = snd_array_elem(&codec->cmd_cache.buf, i);
3885 cmd->dirty = 1;
3886 }
3887 for (i = 0; i < codec->amp_cache.buf.used; i++) {
3888 struct hda_amp_info *amp;
David Henningssonf038fca2013-01-15 15:27:19 +01003889 amp = snd_array_elem(&codec->amp_cache.buf, i);
Takashi Iwaic370dd62012-12-13 18:30:04 +01003890 amp->head.dirty = 1;
3891 }
3892}
3893
Takashi Iwaicb53c622007-08-10 17:21:45 +02003894/*
3895 * kick up codec; used both from PM and power-save
3896 */
3897static void hda_call_codec_resume(struct hda_codec *codec)
3898{
Takashi Iwai989c3182012-11-19 14:14:58 +01003899 codec->in_pm = 1;
3900
Takashi Iwaic370dd62012-12-13 18:30:04 +01003901 hda_mark_cmd_cache_dirty(codec);
3902
Takashi Iwai7f308302012-05-08 16:52:23 +02003903 /* set as if powered on for avoiding re-entering the resume
3904 * in the resume / power-save sequence
3905 */
3906 hda_keep_power_on(codec);
Takashi Iwaid8193872012-08-31 07:54:38 -07003907 hda_set_power_state(codec, AC_PWRST_D0);
Takashi Iwaiac0547d2010-07-05 16:50:13 +02003908 restore_shutup_pins(codec);
Takashi Iwai11aeff02008-07-30 15:01:46 +02003909 hda_exec_init_verbs(codec);
Takashi Iwai31614bb2013-01-23 15:58:40 +01003910 snd_hda_jack_set_dirty_all(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003911 if (codec->patch_ops.resume)
3912 codec->patch_ops.resume(codec);
3913 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02003914 if (codec->patch_ops.init)
3915 codec->patch_ops.init(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003916 snd_hda_codec_resume_amp(codec);
3917 snd_hda_codec_resume_cache(codec);
3918 }
David Henningsson26a6cb62012-10-09 15:04:21 +02003919
3920 if (codec->jackpoll_interval)
3921 hda_jackpoll_work(&codec->jackpoll_work.work);
Takashi Iwai31614bb2013-01-23 15:58:40 +01003922 else
David Henningsson26a6cb62012-10-09 15:04:21 +02003923 snd_hda_jack_report_sync(codec);
Takashi Iwai989c3182012-11-19 14:14:58 +01003924
3925 codec->in_pm = 0;
Takashi Iwai7f308302012-05-08 16:52:23 +02003926 snd_hda_power_down(codec); /* flag down before returning */
Takashi Iwaicb53c622007-08-10 17:21:45 +02003927}
Takashi Iwai2a439522011-07-26 09:52:50 +02003928#endif /* CONFIG_PM */
Takashi Iwaicb53c622007-08-10 17:21:45 +02003929
Takashi Iwai54d17402005-11-21 16:33:22 +01003930
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931/**
3932 * snd_hda_build_controls - build mixer controls
3933 * @bus: the BUS
3934 *
3935 * Creates mixer controls for each codec included in the bus.
3936 *
3937 * Returns 0 if successful, otherwise a negative error code.
3938 */
Takashi Iwai6a0f56a2012-12-07 07:41:56 +01003939int snd_hda_build_controls(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940{
Takashi Iwai0ba21762007-04-16 11:29:14 +02003941 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942
Takashi Iwai0ba21762007-04-16 11:29:14 +02003943 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003944 int err = snd_hda_codec_build_controls(codec);
Takashi Iwaif93d4612009-03-02 10:44:15 +01003945 if (err < 0) {
Takashi Iwai28d1a852010-03-15 09:05:46 +01003946 printk(KERN_ERR "hda_codec: cannot build controls "
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003947 "for #%d (error %d)\n", codec->addr, err);
Takashi Iwaif93d4612009-03-02 10:44:15 +01003948 err = snd_hda_codec_reset(codec);
3949 if (err < 0) {
3950 printk(KERN_ERR
3951 "hda_codec: cannot revert codec\n");
3952 return err;
3953 }
3954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003956 return 0;
3957}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003958EXPORT_SYMBOL_HDA(snd_hda_build_controls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003960/*
3961 * add standard channel maps if not specified
3962 */
3963static int add_std_chmaps(struct hda_codec *codec)
3964{
3965 int i, str, err;
3966
3967 for (i = 0; i < codec->num_pcms; i++) {
3968 for (str = 0; str < 2; str++) {
3969 struct snd_pcm *pcm = codec->pcm_info[i].pcm;
3970 struct hda_pcm_stream *hinfo =
3971 &codec->pcm_info[i].stream[str];
3972 struct snd_pcm_chmap *chmap;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003973 const struct snd_pcm_chmap_elem *elem;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003974
3975 if (codec->pcm_info[i].own_chmap)
3976 continue;
3977 if (!pcm || !hinfo->substreams)
3978 continue;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003979 elem = hinfo->chmap ? hinfo->chmap : snd_pcm_std_chmaps;
3980 err = snd_pcm_add_chmap_ctls(pcm, str, elem,
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003981 hinfo->channels_max,
3982 0, &chmap);
3983 if (err < 0)
3984 return err;
3985 chmap->channel_mask = SND_PCM_CHMAP_MASK_2468;
3986 }
3987 }
3988 return 0;
3989}
3990
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003991/* default channel maps for 2.1 speakers;
3992 * since HD-audio supports only stereo, odd number channels are omitted
3993 */
3994const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps[] = {
3995 { .channels = 2,
3996 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
3997 { .channels = 4,
3998 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
3999 SNDRV_CHMAP_LFE, SNDRV_CHMAP_LFE } },
4000 { }
4001};
4002EXPORT_SYMBOL_GPL(snd_pcm_2_1_chmaps);
4003
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004004int snd_hda_codec_build_controls(struct hda_codec *codec)
4005{
4006 int err = 0;
Takashi Iwai11aeff02008-07-30 15:01:46 +02004007 hda_exec_init_verbs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004008 /* continue to initialize... */
4009 if (codec->patch_ops.init)
4010 err = codec->patch_ops.init(codec);
4011 if (!err && codec->patch_ops.build_controls)
4012 err = codec->patch_ops.build_controls(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004013 if (err < 0)
4014 return err;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02004015
4016 /* we create chmaps here instead of build_pcms */
4017 err = add_std_chmaps(codec);
4018 if (err < 0)
4019 return err;
4020
David Henningsson26a6cb62012-10-09 15:04:21 +02004021 if (codec->jackpoll_interval)
4022 hda_jackpoll_work(&codec->jackpoll_work.work);
4023 else
4024 snd_hda_jack_report_sync(codec); /* call at the last init point */
Takashi Iwaib9c590b2013-01-24 17:27:32 +01004025 sync_power_up_states(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026 return 0;
4027}
4028
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029/*
4030 * stream formats
4031 */
Takashi Iwaibefdf312005-08-22 13:57:55 +02004032struct hda_rate_tbl {
4033 unsigned int hz;
4034 unsigned int alsa_bits;
4035 unsigned int hda_fmt;
4036};
4037
Takashi Iwai92f10b32010-08-03 14:21:00 +02004038/* rate = base * mult / div */
4039#define HDA_RATE(base, mult, div) \
4040 (AC_FMT_BASE_##base##K | (((mult) - 1) << AC_FMT_MULT_SHIFT) | \
4041 (((div) - 1) << AC_FMT_DIV_SHIFT))
4042
Takashi Iwaibefdf312005-08-22 13:57:55 +02004043static struct hda_rate_tbl rate_bits[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 /* rate in Hz, ALSA rate bitmask, HDA format value */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02004045
4046 /* autodetected value used in snd_hda_query_supported_pcm */
Takashi Iwai92f10b32010-08-03 14:21:00 +02004047 { 8000, SNDRV_PCM_RATE_8000, HDA_RATE(48, 1, 6) },
4048 { 11025, SNDRV_PCM_RATE_11025, HDA_RATE(44, 1, 4) },
4049 { 16000, SNDRV_PCM_RATE_16000, HDA_RATE(48, 1, 3) },
4050 { 22050, SNDRV_PCM_RATE_22050, HDA_RATE(44, 1, 2) },
4051 { 32000, SNDRV_PCM_RATE_32000, HDA_RATE(48, 2, 3) },
4052 { 44100, SNDRV_PCM_RATE_44100, HDA_RATE(44, 1, 1) },
4053 { 48000, SNDRV_PCM_RATE_48000, HDA_RATE(48, 1, 1) },
4054 { 88200, SNDRV_PCM_RATE_88200, HDA_RATE(44, 2, 1) },
4055 { 96000, SNDRV_PCM_RATE_96000, HDA_RATE(48, 2, 1) },
4056 { 176400, SNDRV_PCM_RATE_176400, HDA_RATE(44, 4, 1) },
4057 { 192000, SNDRV_PCM_RATE_192000, HDA_RATE(48, 4, 1) },
Takashi Iwaia961f9f2007-04-12 13:08:09 +02004058#define AC_PAR_PCM_RATE_BITS 11
4059 /* up to bits 10, 384kHZ isn't supported properly */
4060
4061 /* not autodetected value */
Takashi Iwai92f10b32010-08-03 14:21:00 +02004062 { 9600, SNDRV_PCM_RATE_KNOT, HDA_RATE(48, 1, 5) },
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02004063
Takashi Iwaibefdf312005-08-22 13:57:55 +02004064 { 0 } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065};
4066
4067/**
4068 * snd_hda_calc_stream_format - calculate format bitset
4069 * @rate: the sample rate
4070 * @channels: the number of channels
4071 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
4072 * @maxbps: the max. bps
4073 *
4074 * Calculate the format bitset from the given rate, channels and th PCM format.
4075 *
4076 * Return zero if invalid.
4077 */
4078unsigned int snd_hda_calc_stream_format(unsigned int rate,
4079 unsigned int channels,
4080 unsigned int format,
Anssi Hannula32c168c2010-08-03 13:28:57 +03004081 unsigned int maxbps,
4082 unsigned short spdif_ctls)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083{
4084 int i;
4085 unsigned int val = 0;
4086
Takashi Iwaibefdf312005-08-22 13:57:55 +02004087 for (i = 0; rate_bits[i].hz; i++)
4088 if (rate_bits[i].hz == rate) {
4089 val = rate_bits[i].hda_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090 break;
4091 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02004092 if (!rate_bits[i].hz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 snd_printdd("invalid rate %d\n", rate);
4094 return 0;
4095 }
4096
4097 if (channels == 0 || channels > 8) {
4098 snd_printdd("invalid channels %d\n", channels);
4099 return 0;
4100 }
4101 val |= channels - 1;
4102
4103 switch (snd_pcm_format_width(format)) {
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004104 case 8:
Takashi Iwai92f10b32010-08-03 14:21:00 +02004105 val |= AC_FMT_BITS_8;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004106 break;
4107 case 16:
Takashi Iwai92f10b32010-08-03 14:21:00 +02004108 val |= AC_FMT_BITS_16;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004109 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110 case 20:
4111 case 24:
4112 case 32:
Takashi Iwaib0bb3aa2009-07-03 23:25:37 +02004113 if (maxbps >= 32 || format == SNDRV_PCM_FORMAT_FLOAT_LE)
Takashi Iwai92f10b32010-08-03 14:21:00 +02004114 val |= AC_FMT_BITS_32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 else if (maxbps >= 24)
Takashi Iwai92f10b32010-08-03 14:21:00 +02004116 val |= AC_FMT_BITS_24;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 else
Takashi Iwai92f10b32010-08-03 14:21:00 +02004118 val |= AC_FMT_BITS_20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119 break;
4120 default:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004121 snd_printdd("invalid format width %d\n",
4122 snd_pcm_format_width(format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123 return 0;
4124 }
4125
Anssi Hannula32c168c2010-08-03 13:28:57 +03004126 if (spdif_ctls & AC_DIG1_NONAUDIO)
Takashi Iwai92f10b32010-08-03 14:21:00 +02004127 val |= AC_FMT_TYPE_NON_PCM;
Anssi Hannula32c168c2010-08-03 13:28:57 +03004128
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129 return val;
4130}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004131EXPORT_SYMBOL_HDA(snd_hda_calc_stream_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02004133static unsigned int get_pcm_param(struct hda_codec *codec, hda_nid_t nid,
4134 int dir)
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004135{
4136 unsigned int val = 0;
4137 if (nid != codec->afg &&
4138 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD))
4139 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
4140 if (!val || val == -1)
4141 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
4142 if (!val || val == -1)
4143 return 0;
4144 return val;
4145}
4146
4147static unsigned int query_pcm_param(struct hda_codec *codec, hda_nid_t nid)
4148{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02004149 return query_caps_hash(codec, nid, 0, HDA_HASH_PARPCM_KEY(nid),
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004150 get_pcm_param);
4151}
4152
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02004153static unsigned int get_stream_param(struct hda_codec *codec, hda_nid_t nid,
4154 int dir)
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004155{
4156 unsigned int streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
4157 if (!streams || streams == -1)
4158 streams = snd_hda_param_read(codec, codec->afg, AC_PAR_STREAM);
4159 if (!streams || streams == -1)
4160 return 0;
4161 return streams;
4162}
4163
4164static unsigned int query_stream_param(struct hda_codec *codec, hda_nid_t nid)
4165{
Takashi Iwaic3b6bcc2012-05-10 16:11:15 +02004166 return query_caps_hash(codec, nid, 0, HDA_HASH_PARSTR_KEY(nid),
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004167 get_stream_param);
4168}
4169
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170/**
4171 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
4172 * @codec: the HDA codec
4173 * @nid: NID to query
4174 * @ratesp: the pointer to store the detected rate bitflags
4175 * @formatsp: the pointer to store the detected formats
4176 * @bpsp: the pointer to store the detected format widths
4177 *
4178 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
4179 * or @bsps argument is ignored.
4180 *
4181 * Returns 0 if successful, otherwise a negative error code.
4182 */
Stephen Warren384a48d2011-06-01 11:14:21 -06004183int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 u32 *ratesp, u64 *formatsp, unsigned int *bpsp)
4185{
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004186 unsigned int i, val, wcaps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004188 wcaps = get_wcaps(codec, nid);
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004189 val = query_pcm_param(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190
4191 if (ratesp) {
4192 u32 rates = 0;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02004193 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194 if (val & (1 << i))
Takashi Iwaibefdf312005-08-22 13:57:55 +02004195 rates |= rate_bits[i].alsa_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196 }
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004197 if (rates == 0) {
4198 snd_printk(KERN_ERR "hda_codec: rates == 0 "
4199 "(nid=0x%x, val=0x%x, ovrd=%i)\n",
4200 nid, val,
4201 (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0);
4202 return -EIO;
4203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 *ratesp = rates;
4205 }
4206
4207 if (formatsp || bpsp) {
4208 u64 formats = 0;
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004209 unsigned int streams, bps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004211 streams = query_stream_param(codec, nid);
4212 if (!streams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004214
4215 bps = 0;
4216 if (streams & AC_SUPFMT_PCM) {
4217 if (val & AC_SUPPCM_BITS_8) {
4218 formats |= SNDRV_PCM_FMTBIT_U8;
4219 bps = 8;
4220 }
4221 if (val & AC_SUPPCM_BITS_16) {
4222 formats |= SNDRV_PCM_FMTBIT_S16_LE;
4223 bps = 16;
4224 }
4225 if (wcaps & AC_WCAP_DIGITAL) {
4226 if (val & AC_SUPPCM_BITS_32)
4227 formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
4228 if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24))
4229 formats |= SNDRV_PCM_FMTBIT_S32_LE;
4230 if (val & AC_SUPPCM_BITS_24)
4231 bps = 24;
4232 else if (val & AC_SUPPCM_BITS_20)
4233 bps = 20;
Takashi Iwai0ba21762007-04-16 11:29:14 +02004234 } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24|
4235 AC_SUPPCM_BITS_32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236 formats |= SNDRV_PCM_FMTBIT_S32_LE;
4237 if (val & AC_SUPPCM_BITS_32)
4238 bps = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239 else if (val & AC_SUPPCM_BITS_24)
4240 bps = 24;
Nicolas Graziano33ef76512006-09-19 14:23:14 +02004241 else if (val & AC_SUPPCM_BITS_20)
4242 bps = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243 }
4244 }
Takashi Iwai8c7dd892012-05-12 09:38:05 +02004245#if 0 /* FIXME: CS4206 doesn't work, which is the only codec supporting float */
Takashi Iwaib5025c52009-07-01 18:05:27 +02004246 if (streams & AC_SUPFMT_FLOAT32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004247 formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
Takashi Iwaib0bb3aa2009-07-03 23:25:37 +02004248 if (!bps)
4249 bps = 32;
Takashi Iwaib5025c52009-07-01 18:05:27 +02004250 }
Takashi Iwai8c7dd892012-05-12 09:38:05 +02004251#endif
Takashi Iwaib5025c52009-07-01 18:05:27 +02004252 if (streams == AC_SUPFMT_AC3) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02004253 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254 /* temporary hack: we have still no proper support
4255 * for the direct AC3 stream...
4256 */
4257 formats |= SNDRV_PCM_FMTBIT_U8;
4258 bps = 8;
4259 }
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004260 if (formats == 0) {
4261 snd_printk(KERN_ERR "hda_codec: formats == 0 "
4262 "(nid=0x%x, val=0x%x, ovrd=%i, "
4263 "streams=0x%x)\n",
4264 nid, val,
4265 (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0,
4266 streams);
4267 return -EIO;
4268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 if (formatsp)
4270 *formatsp = formats;
4271 if (bpsp)
4272 *bpsp = bps;
4273 }
4274
4275 return 0;
4276}
Stephen Warren384a48d2011-06-01 11:14:21 -06004277EXPORT_SYMBOL_HDA(snd_hda_query_supported_pcm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278
4279/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01004280 * snd_hda_is_supported_format - Check the validity of the format
4281 * @codec: HD-audio codec
4282 * @nid: NID to check
4283 * @format: the HD-audio format value to check
4284 *
4285 * Check whether the given node supports the format value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286 *
4287 * Returns 1 if supported, 0 if not.
4288 */
4289int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
4290 unsigned int format)
4291{
4292 int i;
4293 unsigned int val = 0, rate, stream;
4294
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004295 val = query_pcm_param(codec, nid);
4296 if (!val)
4297 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298
4299 rate = format & 0xff00;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02004300 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++)
Takashi Iwaibefdf312005-08-22 13:57:55 +02004301 if (rate_bits[i].hda_fmt == rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 if (val & (1 << i))
4303 break;
4304 return 0;
4305 }
Takashi Iwaia961f9f2007-04-12 13:08:09 +02004306 if (i >= AC_PAR_PCM_RATE_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307 return 0;
4308
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01004309 stream = query_stream_param(codec, nid);
4310 if (!stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 return 0;
4312
4313 if (stream & AC_SUPFMT_PCM) {
4314 switch (format & 0xf0) {
4315 case 0x00:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004316 if (!(val & AC_SUPPCM_BITS_8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 return 0;
4318 break;
4319 case 0x10:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004320 if (!(val & AC_SUPPCM_BITS_16))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 return 0;
4322 break;
4323 case 0x20:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004324 if (!(val & AC_SUPPCM_BITS_20))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 return 0;
4326 break;
4327 case 0x30:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004328 if (!(val & AC_SUPPCM_BITS_24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 return 0;
4330 break;
4331 case 0x40:
Takashi Iwai0ba21762007-04-16 11:29:14 +02004332 if (!(val & AC_SUPPCM_BITS_32))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 return 0;
4334 break;
4335 default:
4336 return 0;
4337 }
4338 } else {
4339 /* FIXME: check for float32 and AC3? */
4340 }
4341
4342 return 1;
4343}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004344EXPORT_SYMBOL_HDA(snd_hda_is_supported_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345
4346/*
4347 * PCM stuff
4348 */
4349static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
4350 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004351 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352{
4353 return 0;
4354}
4355
4356static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
4357 struct hda_codec *codec,
4358 unsigned int stream_tag,
4359 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004360 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361{
4362 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
4363 return 0;
4364}
4365
4366static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
4367 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004368 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369{
Takashi Iwai888afa12008-03-18 09:57:50 +01004370 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 return 0;
4372}
4373
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02004374static int set_pcm_default_values(struct hda_codec *codec,
4375 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376{
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004377 int err;
4378
Takashi Iwai0ba21762007-04-16 11:29:14 +02004379 /* query support PCM information from the given NID */
4380 if (info->nid && (!info->rates || !info->formats)) {
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004381 err = snd_hda_query_supported_pcm(codec, info->nid,
Takashi Iwai0ba21762007-04-16 11:29:14 +02004382 info->rates ? NULL : &info->rates,
4383 info->formats ? NULL : &info->formats,
4384 info->maxbps ? NULL : &info->maxbps);
Jaroslav Kyselaee504712009-03-17 14:30:31 +01004385 if (err < 0)
4386 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387 }
4388 if (info->ops.open == NULL)
4389 info->ops.open = hda_pcm_default_open_close;
4390 if (info->ops.close == NULL)
4391 info->ops.close = hda_pcm_default_open_close;
4392 if (info->ops.prepare == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02004393 if (snd_BUG_ON(!info->nid))
4394 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 info->ops.prepare = hda_pcm_default_prepare;
4396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397 if (info->ops.cleanup == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02004398 if (snd_BUG_ON(!info->nid))
4399 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400 info->ops.cleanup = hda_pcm_default_cleanup;
4401 }
4402 return 0;
4403}
4404
Takashi Iwaieb541332010-08-06 13:48:11 +02004405/*
4406 * codec prepare/cleanup entries
4407 */
4408int snd_hda_codec_prepare(struct hda_codec *codec,
4409 struct hda_pcm_stream *hinfo,
4410 unsigned int stream,
4411 unsigned int format,
4412 struct snd_pcm_substream *substream)
4413{
4414 int ret;
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004415 mutex_lock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02004416 ret = hinfo->ops.prepare(hinfo, codec, stream, format, substream);
4417 if (ret >= 0)
4418 purify_inactive_streams(codec);
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004419 mutex_unlock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02004420 return ret;
4421}
4422EXPORT_SYMBOL_HDA(snd_hda_codec_prepare);
4423
4424void snd_hda_codec_cleanup(struct hda_codec *codec,
4425 struct hda_pcm_stream *hinfo,
4426 struct snd_pcm_substream *substream)
4427{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004428 mutex_lock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02004429 hinfo->ops.cleanup(hinfo, codec, substream);
Takashi Iwai3f50ac62010-08-20 09:44:36 +02004430 mutex_unlock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02004431}
4432EXPORT_SYMBOL_HDA(snd_hda_codec_cleanup);
4433
Takashi Iwaid5191e52009-11-16 14:58:17 +01004434/* global */
Jaroslav Kyselae3303232009-11-10 14:53:02 +01004435const char *snd_hda_pcm_type_name[HDA_PCM_NTYPES] = {
4436 "Audio", "SPDIF", "HDMI", "Modem"
4437};
4438
Takashi Iwai176d5332008-07-30 15:01:44 +02004439/*
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004440 * get the empty PCM device number to assign
Takashi Iwaic8936222010-01-28 17:08:53 +01004441 *
4442 * note the max device number is limited by HDA_MAX_PCMS, currently 10
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004443 */
4444static int get_empty_pcm_device(struct hda_bus *bus, int type)
4445{
Wu Fengguangf5d6def52009-10-30 11:38:26 +01004446 /* audio device indices; not linear to keep compatibility */
4447 static int audio_idx[HDA_PCM_NTYPES][5] = {
4448 [HDA_PCM_TYPE_AUDIO] = { 0, 2, 4, 5, -1 },
4449 [HDA_PCM_TYPE_SPDIF] = { 1, -1 },
Wu Fengguang92608ba2009-10-30 11:40:03 +01004450 [HDA_PCM_TYPE_HDMI] = { 3, 7, 8, 9, -1 },
Wu Fengguangf5d6def52009-10-30 11:38:26 +01004451 [HDA_PCM_TYPE_MODEM] = { 6, -1 },
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004452 };
Wu Fengguangf5d6def52009-10-30 11:38:26 +01004453 int i;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004454
Wu Fengguangf5d6def52009-10-30 11:38:26 +01004455 if (type >= HDA_PCM_NTYPES) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004456 snd_printk(KERN_WARNING "Invalid PCM type %d\n", type);
4457 return -EINVAL;
4458 }
Wu Fengguangf5d6def52009-10-30 11:38:26 +01004459
4460 for (i = 0; audio_idx[type][i] >= 0 ; i++)
4461 if (!test_and_set_bit(audio_idx[type][i], bus->pcm_dev_bits))
4462 return audio_idx[type][i];
4463
Takashi Iwai01b65bf2011-11-24 14:31:46 +01004464 /* non-fixed slots starting from 10 */
4465 for (i = 10; i < 32; i++) {
4466 if (!test_and_set_bit(i, bus->pcm_dev_bits))
4467 return i;
4468 }
4469
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004470 snd_printk(KERN_WARNING "Too many %s devices\n",
4471 snd_hda_pcm_type_name[type]);
Wu Fengguangf5d6def52009-10-30 11:38:26 +01004472 return -EAGAIN;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004473}
4474
4475/*
Takashi Iwai176d5332008-07-30 15:01:44 +02004476 * attach a new PCM stream
4477 */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004478static int snd_hda_attach_pcm(struct hda_codec *codec, struct hda_pcm *pcm)
Takashi Iwai176d5332008-07-30 15:01:44 +02004479{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01004480 struct hda_bus *bus = codec->bus;
Takashi Iwai176d5332008-07-30 15:01:44 +02004481 struct hda_pcm_stream *info;
4482 int stream, err;
4483
Takashi Iwaib91f0802008-11-04 08:43:08 +01004484 if (snd_BUG_ON(!pcm->name))
Takashi Iwai176d5332008-07-30 15:01:44 +02004485 return -EINVAL;
4486 for (stream = 0; stream < 2; stream++) {
4487 info = &pcm->stream[stream];
4488 if (info->substreams) {
4489 err = set_pcm_default_values(codec, info);
4490 if (err < 0)
4491 return err;
4492 }
4493 }
Takashi Iwai33fa35e2008-11-06 16:50:40 +01004494 return bus->ops.attach_pcm(bus, codec, pcm);
Takashi Iwai176d5332008-07-30 15:01:44 +02004495}
4496
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004497/* assign all PCMs of the given codec */
4498int snd_hda_codec_build_pcms(struct hda_codec *codec)
4499{
4500 unsigned int pcm;
4501 int err;
4502
4503 if (!codec->num_pcms) {
4504 if (!codec->patch_ops.build_pcms)
4505 return 0;
4506 err = codec->patch_ops.build_pcms(codec);
Takashi Iwai6e655bf2009-03-02 10:46:03 +01004507 if (err < 0) {
4508 printk(KERN_ERR "hda_codec: cannot build PCMs"
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004509 "for #%d (error %d)\n", codec->addr, err);
Takashi Iwai6e655bf2009-03-02 10:46:03 +01004510 err = snd_hda_codec_reset(codec);
4511 if (err < 0) {
4512 printk(KERN_ERR
4513 "hda_codec: cannot revert codec\n");
4514 return err;
4515 }
4516 }
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004517 }
4518 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
4519 struct hda_pcm *cpcm = &codec->pcm_info[pcm];
4520 int dev;
4521
4522 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
Takashi Iwai41b5b012009-01-20 18:21:23 +01004523 continue; /* no substreams assigned */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004524
4525 if (!cpcm->pcm) {
4526 dev = get_empty_pcm_device(codec->bus, cpcm->pcm_type);
4527 if (dev < 0)
Takashi Iwai6e655bf2009-03-02 10:46:03 +01004528 continue; /* no fatal error */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004529 cpcm->device = dev;
4530 err = snd_hda_attach_pcm(codec, cpcm);
Takashi Iwai6e655bf2009-03-02 10:46:03 +01004531 if (err < 0) {
4532 printk(KERN_ERR "hda_codec: cannot attach "
4533 "PCM stream %d for codec #%d\n",
4534 dev, codec->addr);
4535 continue; /* no fatal error */
4536 }
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004537 }
4538 }
4539 return 0;
4540}
4541
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542/**
4543 * snd_hda_build_pcms - build PCM information
4544 * @bus: the BUS
4545 *
4546 * Create PCM information for each codec included in the bus.
4547 *
4548 * The build_pcms codec patch is requested to set up codec->num_pcms and
4549 * codec->pcm_info properly. The array is referred by the top-level driver
4550 * to create its PCM instances.
4551 * The allocated codec->pcm_info should be released in codec->patch_ops.free
4552 * callback.
4553 *
4554 * At least, substreams, channels_min and channels_max must be filled for
4555 * each stream. substreams = 0 indicates that the stream doesn't exist.
4556 * When rates and/or formats are zero, the supported values are queried
4557 * from the given nid. The nid is used also by the default ops.prepare
4558 * and ops.cleanup callbacks.
4559 *
4560 * The driver needs to call ops.open in its open callback. Similarly,
4561 * ops.close is supposed to be called in the close callback.
4562 * ops.prepare should be called in the prepare or hw_params callback
4563 * with the proper parameters for set up.
4564 * ops.cleanup should be called in hw_free for clean up of streams.
4565 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004566 * This function returns 0 if successful, or a negative error code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567 */
Takashi Iwai5cb543d2012-08-09 13:49:23 +02004568int snd_hda_build_pcms(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569{
Takashi Iwai0ba21762007-04-16 11:29:14 +02004570 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571
Takashi Iwai0ba21762007-04-16 11:29:14 +02004572 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01004573 int err = snd_hda_codec_build_pcms(codec);
4574 if (err < 0)
4575 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576 }
4577 return 0;
4578}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004579EXPORT_SYMBOL_HDA(snd_hda_build_pcms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581/**
4582 * snd_hda_check_board_config - compare the current codec with the config table
4583 * @codec: the HDA codec
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004584 * @num_configs: number of config enums
4585 * @models: array of model name strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586 * @tbl: configuration table, terminated by null entries
4587 *
4588 * Compares the modelname or PCI subsystem id of the current codec with the
4589 * given configuration table. If a matching entry is found, returns its
4590 * config value (supposed to be 0 or positive).
4591 *
4592 * If no entries are matching, the function returns a negative value.
4593 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02004594int snd_hda_check_board_config(struct hda_codec *codec,
Takashi Iwaiea734962011-01-17 11:29:34 +01004595 int num_configs, const char * const *models,
Takashi Iwai12f288b2007-08-02 15:51:59 +02004596 const struct snd_pci_quirk *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597{
Takashi Iwaif44ac832008-07-30 15:01:45 +02004598 if (codec->modelname && models) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004599 int i;
4600 for (i = 0; i < num_configs; i++) {
4601 if (models[i] &&
Takashi Iwaif44ac832008-07-30 15:01:45 +02004602 !strcmp(codec->modelname, models[i])) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004603 snd_printd(KERN_INFO "hda_codec: model '%s' is "
4604 "selected\n", models[i]);
4605 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606 }
4607 }
4608 }
4609
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004610 if (!codec->bus->pci || !tbl)
4611 return -1;
4612
4613 tbl = snd_pci_quirk_lookup(codec->bus->pci, tbl);
4614 if (!tbl)
4615 return -1;
4616 if (tbl->value >= 0 && tbl->value < num_configs) {
Takashi Iwai62cf8722008-05-20 12:15:15 +02004617#ifdef CONFIG_SND_DEBUG_VERBOSE
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004618 char tmp[10];
4619 const char *model = NULL;
4620 if (models)
4621 model = models[tbl->value];
4622 if (!model) {
4623 sprintf(tmp, "#%d", tbl->value);
4624 model = tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625 }
Takashi Iwaif5fcc132006-11-24 17:07:44 +01004626 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
4627 "for config %x:%x (%s)\n",
4628 model, tbl->subvendor, tbl->subdevice,
4629 (tbl->name ? tbl->name : "Unknown device"));
4630#endif
4631 return tbl->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632 }
4633 return -1;
4634}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004635EXPORT_SYMBOL_HDA(snd_hda_check_board_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636
4637/**
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02004638 * snd_hda_check_board_codec_sid_config - compare the current codec
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004639 subsystem ID with the
4640 config table
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02004641
4642 This is important for Gateway notebooks with SB450 HDA Audio
4643 where the vendor ID of the PCI device is:
4644 ATI Technologies Inc SB450 HDA Audio [1002:437b]
4645 and the vendor/subvendor are found only at the codec.
4646
4647 * @codec: the HDA codec
4648 * @num_configs: number of config enums
4649 * @models: array of model name strings
4650 * @tbl: configuration table, terminated by null entries
4651 *
4652 * Compares the modelname or PCI subsystem id of the current codec with the
4653 * given configuration table. If a matching entry is found, returns its
4654 * config value (supposed to be 0 or positive).
4655 *
4656 * If no entries are matching, the function returns a negative value.
4657 */
4658int snd_hda_check_board_codec_sid_config(struct hda_codec *codec,
Takashi Iwaiea734962011-01-17 11:29:34 +01004659 int num_configs, const char * const *models,
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02004660 const struct snd_pci_quirk *tbl)
4661{
4662 const struct snd_pci_quirk *q;
4663
4664 /* Search for codec ID */
4665 for (q = tbl; q->subvendor; q++) {
Takashi Iwaie2301a42011-11-22 19:58:56 +01004666 unsigned int mask = 0xffff0000 | q->subdevice_mask;
4667 unsigned int id = (q->subdevice | (q->subvendor << 16)) & mask;
4668 if ((codec->subsystem_id & mask) == id)
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02004669 break;
4670 }
4671
4672 if (!q->subvendor)
4673 return -1;
4674
4675 tbl = q;
4676
4677 if (tbl->value >= 0 && tbl->value < num_configs) {
Takashi Iwaid94ff6b2009-09-02 00:20:21 +02004678#ifdef CONFIG_SND_DEBUG_VERBOSE
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02004679 char tmp[10];
4680 const char *model = NULL;
4681 if (models)
4682 model = models[tbl->value];
4683 if (!model) {
4684 sprintf(tmp, "#%d", tbl->value);
4685 model = tmp;
4686 }
4687 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
4688 "for config %x:%x (%s)\n",
4689 model, tbl->subvendor, tbl->subdevice,
4690 (tbl->name ? tbl->name : "Unknown device"));
4691#endif
4692 return tbl->value;
4693 }
4694 return -1;
4695}
4696EXPORT_SYMBOL_HDA(snd_hda_check_board_codec_sid_config);
4697
4698/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07004699 * snd_hda_add_new_ctls - create controls from the array
4700 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004701 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702 *
4703 * This helper function creates and add new controls in the given array.
4704 * The array must be terminated with an empty entry as terminator.
4705 *
4706 * Returns 0 if successful, or a negative error code.
4707 */
Takashi Iwai031024e2011-05-02 11:29:30 +02004708int snd_hda_add_new_ctls(struct hda_codec *codec,
4709 const struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004710{
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01004711 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712
4713 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01004714 struct snd_kcontrol *kctl;
Takashi Iwai1afe2062010-12-23 10:17:52 +01004715 int addr = 0, idx = 0;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01004716 if (knew->iface == -1) /* skip this codec private value */
4717 continue;
Takashi Iwai1afe2062010-12-23 10:17:52 +01004718 for (;;) {
Takashi Iwai54d17402005-11-21 16:33:22 +01004719 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02004720 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01004721 return -ENOMEM;
Takashi Iwai1afe2062010-12-23 10:17:52 +01004722 if (addr > 0)
4723 kctl->id.device = addr;
4724 if (idx > 0)
4725 kctl->id.index = idx;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01004726 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai1afe2062010-12-23 10:17:52 +01004727 if (!err)
4728 break;
4729 /* try first with another device index corresponding to
4730 * the codec addr; if it still fails (or it's the
4731 * primary codec), then try another control index
4732 */
4733 if (!addr && codec->addr)
4734 addr = codec->addr;
4735 else if (!idx && !knew->index) {
4736 idx = find_empty_mixer_ctl_idx(codec,
Takashi Iwaidcda5802012-10-12 17:24:51 +02004737 knew->name, 0);
Takashi Iwai1afe2062010-12-23 10:17:52 +01004738 if (idx <= 0)
4739 return err;
4740 } else
Takashi Iwai54d17402005-11-21 16:33:22 +01004741 return err;
4742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743 }
4744 return 0;
4745}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004746EXPORT_SYMBOL_HDA(snd_hda_add_new_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747
Takashi Iwai83012a72012-08-24 18:38:08 +02004748#ifdef CONFIG_PM
Takashi Iwaicb53c622007-08-10 17:21:45 +02004749static void hda_power_work(struct work_struct *work)
4750{
4751 struct hda_codec *codec =
4752 container_of(work, struct hda_codec, power_work.work);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01004753 struct hda_bus *bus = codec->bus;
Takashi Iwai08fa20a2012-08-31 07:46:56 -07004754 unsigned int state;
Takashi Iwaicb53c622007-08-10 17:21:45 +02004755
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004756 spin_lock(&codec->power_lock);
Takashi Iwaia2d96e72012-05-09 12:36:22 +02004757 if (codec->power_transition > 0) { /* during power-up sequence? */
4758 spin_unlock(&codec->power_lock);
4759 return;
4760 }
Maxim Levitsky2e492462007-09-03 15:26:57 +02004761 if (!codec->power_on || codec->power_count) {
4762 codec->power_transition = 0;
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004763 spin_unlock(&codec->power_lock);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004764 return;
Maxim Levitsky2e492462007-09-03 15:26:57 +02004765 }
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004766 spin_unlock(&codec->power_lock);
4767
Dylan Reidd17344b2012-09-28 15:57:01 -07004768 state = hda_call_codec_suspend(codec, true);
Takashi Iwai08fa20a2012-08-31 07:46:56 -07004769 codec->pm_down_notified = 0;
4770 if (!bus->power_keep_link_on && (state & AC_PWRST_CLK_STOP_OK)) {
4771 codec->pm_down_notified = 1;
Takashi Iwai68467f52012-08-28 09:14:29 -07004772 hda_call_pm_notify(bus, false);
Takashi Iwai08fa20a2012-08-31 07:46:56 -07004773 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02004774}
4775
4776static void hda_keep_power_on(struct hda_codec *codec)
4777{
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004778 spin_lock(&codec->power_lock);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004779 codec->power_count++;
4780 codec->power_on = 1;
Takashi Iwaia2f63092009-11-11 09:34:25 +01004781 codec->power_jiffies = jiffies;
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004782 spin_unlock(&codec->power_lock);
Takashi Iwaia2f63092009-11-11 09:34:25 +01004783}
4784
Takashi Iwaid5191e52009-11-16 14:58:17 +01004785/* update the power on/off account with the current jiffies */
Takashi Iwaia2f63092009-11-11 09:34:25 +01004786void snd_hda_update_power_acct(struct hda_codec *codec)
4787{
4788 unsigned long delta = jiffies - codec->power_jiffies;
4789 if (codec->power_on)
4790 codec->power_on_acct += delta;
4791 else
4792 codec->power_off_acct += delta;
4793 codec->power_jiffies += delta;
Takashi Iwaicb53c622007-08-10 17:21:45 +02004794}
4795
Dylan Reidb4a91cf2012-06-15 19:36:23 -07004796/* Transition to powered up, if wait_power_down then wait for a pending
4797 * transition to D3 to complete. A pending D3 transition is indicated
4798 * with power_transition == -1. */
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004799/* call this with codec->power_lock held! */
Dylan Reidb4a91cf2012-06-15 19:36:23 -07004800static void __snd_hda_power_up(struct hda_codec *codec, bool wait_power_down)
Takashi Iwaicb53c622007-08-10 17:21:45 +02004801{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01004802 struct hda_bus *bus = codec->bus;
4803
Dylan Reidb4a91cf2012-06-15 19:36:23 -07004804 /* Return if power_on or transitioning to power_on, unless currently
4805 * powering down. */
4806 if ((codec->power_on || codec->power_transition > 0) &&
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004807 !(wait_power_down && codec->power_transition < 0))
Takashi Iwaicb53c622007-08-10 17:21:45 +02004808 return;
Takashi Iwaia2d96e72012-05-09 12:36:22 +02004809 spin_unlock(&codec->power_lock);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004810
Takashi Iwaia2d96e72012-05-09 12:36:22 +02004811 cancel_delayed_work_sync(&codec->power_work);
4812
4813 spin_lock(&codec->power_lock);
Dylan Reidb43d2242012-06-21 21:51:22 -07004814 /* If the power down delayed work was cancelled above before starting,
4815 * then there is no need to go through power up here.
4816 */
4817 if (codec->power_on) {
Takashi Iwai535b6c52012-08-20 21:25:22 +02004818 if (codec->power_transition < 0)
4819 codec->power_transition = 0;
Dylan Reidb43d2242012-06-21 21:51:22 -07004820 return;
4821 }
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004822
Takashi Iwaid66fee52011-08-02 15:39:31 +02004823 trace_hda_power_up(codec);
Takashi Iwaia2f63092009-11-11 09:34:25 +01004824 snd_hda_update_power_acct(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004825 codec->power_on = 1;
Takashi Iwaia2f63092009-11-11 09:34:25 +01004826 codec->power_jiffies = jiffies;
Takashi Iwai7f308302012-05-08 16:52:23 +02004827 codec->power_transition = 1; /* avoid reentrance */
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004828 spin_unlock(&codec->power_lock);
4829
Takashi Iwai08fa20a2012-08-31 07:46:56 -07004830 if (codec->pm_down_notified) {
4831 codec->pm_down_notified = 0;
Takashi Iwai68467f52012-08-28 09:14:29 -07004832 hda_call_pm_notify(bus, true);
Takashi Iwai08fa20a2012-08-31 07:46:56 -07004833 }
4834
Takashi Iwaicb53c622007-08-10 17:21:45 +02004835 hda_call_codec_resume(codec);
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004836
4837 spin_lock(&codec->power_lock);
Takashi Iwaia221e282007-08-16 16:35:33 +02004838 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02004839}
Dylan Reidb4a91cf2012-06-15 19:36:23 -07004840
Takashi Iwai1289e9e2008-11-27 15:47:11 +01004841#define power_save(codec) \
4842 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0)
Takashi Iwaicb53c622007-08-10 17:21:45 +02004843
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004844/* Transition to powered down */
4845static void __snd_hda_power_down(struct hda_codec *codec)
Takashi Iwaicb53c622007-08-10 17:21:45 +02004846{
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004847 if (!codec->power_on || codec->power_count || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02004848 return;
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004849
Takashi Iwaifee2fba2008-11-27 12:43:28 +01004850 if (power_save(codec)) {
Takashi Iwaia2d96e72012-05-09 12:36:22 +02004851 codec->power_transition = -1; /* avoid reentrance */
Takashi Iwaic107b412009-01-13 17:46:37 +01004852 queue_delayed_work(codec->bus->workq, &codec->power_work,
Takashi Iwaifee2fba2008-11-27 12:43:28 +01004853 msecs_to_jiffies(power_save(codec) * 1000));
Takashi Iwaia221e282007-08-16 16:35:33 +02004854 }
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004855}
4856
4857/**
4858 * snd_hda_power_save - Power-up/down/sync the codec
4859 * @codec: HD-audio codec
4860 * @delta: the counter delta to change
4861 *
4862 * Change the power-up counter via @delta, and power up or down the hardware
4863 * appropriately. For the power-down, queue to the delayed action.
4864 * Passing zero to @delta means to synchronize the power state.
4865 */
4866void snd_hda_power_save(struct hda_codec *codec, int delta, bool d3wait)
4867{
4868 spin_lock(&codec->power_lock);
4869 codec->power_count += delta;
4870 trace_hda_power_count(codec);
4871 if (delta > 0)
4872 __snd_hda_power_up(codec, d3wait);
4873 else
4874 __snd_hda_power_down(codec);
Takashi Iwai5536c6d2012-05-08 17:08:10 +02004875 spin_unlock(&codec->power_lock);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004876}
Takashi Iwaic376e2c2012-08-14 17:12:47 +02004877EXPORT_SYMBOL_HDA(snd_hda_power_save);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004878
Takashi Iwaid5191e52009-11-16 14:58:17 +01004879/**
4880 * snd_hda_check_amp_list_power - Check the amp list and update the power
4881 * @codec: HD-audio codec
4882 * @check: the object containing an AMP list and the status
4883 * @nid: NID to check / update
4884 *
4885 * Check whether the given NID is in the amp list. If it's in the list,
4886 * check the current AMP status, and update the the power-status according
4887 * to the mute status.
4888 *
4889 * This function is supposed to be set or called from the check_power_status
4890 * patch ops.
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004891 */
Takashi Iwaicb53c622007-08-10 17:21:45 +02004892int snd_hda_check_amp_list_power(struct hda_codec *codec,
4893 struct hda_loopback_check *check,
4894 hda_nid_t nid)
4895{
Takashi Iwai031024e2011-05-02 11:29:30 +02004896 const struct hda_amp_list *p;
Takashi Iwaicb53c622007-08-10 17:21:45 +02004897 int ch, v;
4898
4899 if (!check->amplist)
4900 return 0;
4901 for (p = check->amplist; p->nid; p++) {
4902 if (p->nid == nid)
4903 break;
4904 }
4905 if (!p->nid)
4906 return 0; /* nothing changed */
4907
4908 for (p = check->amplist; p->nid; p++) {
4909 for (ch = 0; ch < 2; ch++) {
4910 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
4911 p->idx);
4912 if (!(v & HDA_AMP_MUTE) && v > 0) {
4913 if (!check->power_on) {
4914 check->power_on = 1;
4915 snd_hda_power_up(codec);
4916 }
4917 return 1;
4918 }
4919 }
4920 }
4921 if (check->power_on) {
4922 check->power_on = 0;
4923 snd_hda_power_down(codec);
4924 }
4925 return 0;
4926}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004927EXPORT_SYMBOL_HDA(snd_hda_check_amp_list_power);
Takashi Iwaicb53c622007-08-10 17:21:45 +02004928#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004930/*
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01004931 * Channel mode helper
4932 */
Takashi Iwaid5191e52009-11-16 14:58:17 +01004933
4934/**
4935 * snd_hda_ch_mode_info - Info callback helper for the channel mode enum
4936 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004937int snd_hda_ch_mode_info(struct hda_codec *codec,
4938 struct snd_ctl_elem_info *uinfo,
4939 const struct hda_channel_mode *chmode,
4940 int num_chmodes)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01004941{
4942 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
4943 uinfo->count = 1;
4944 uinfo->value.enumerated.items = num_chmodes;
4945 if (uinfo->value.enumerated.item >= num_chmodes)
4946 uinfo->value.enumerated.item = num_chmodes - 1;
4947 sprintf(uinfo->value.enumerated.name, "%dch",
4948 chmode[uinfo->value.enumerated.item].channels);
4949 return 0;
4950}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004951EXPORT_SYMBOL_HDA(snd_hda_ch_mode_info);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01004952
Takashi Iwaid5191e52009-11-16 14:58:17 +01004953/**
4954 * snd_hda_ch_mode_get - Get callback helper for the channel mode enum
4955 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004956int snd_hda_ch_mode_get(struct hda_codec *codec,
4957 struct snd_ctl_elem_value *ucontrol,
4958 const struct hda_channel_mode *chmode,
4959 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01004960 int max_channels)
4961{
4962 int i;
4963
4964 for (i = 0; i < num_chmodes; i++) {
4965 if (max_channels == chmode[i].channels) {
4966 ucontrol->value.enumerated.item[0] = i;
4967 break;
4968 }
4969 }
4970 return 0;
4971}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004972EXPORT_SYMBOL_HDA(snd_hda_ch_mode_get);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01004973
Takashi Iwaid5191e52009-11-16 14:58:17 +01004974/**
4975 * snd_hda_ch_mode_put - Put callback helper for the channel mode enum
4976 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004977int snd_hda_ch_mode_put(struct hda_codec *codec,
4978 struct snd_ctl_elem_value *ucontrol,
4979 const struct hda_channel_mode *chmode,
4980 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01004981 int *max_channelsp)
4982{
4983 unsigned int mode;
4984
4985 mode = ucontrol->value.enumerated.item[0];
Takashi Iwai68ea7b22007-11-15 15:54:38 +01004986 if (mode >= num_chmodes)
4987 return -EINVAL;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02004988 if (*max_channelsp == chmode[mode].channels)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01004989 return 0;
4990 /* change the current channel setting */
4991 *max_channelsp = chmode[mode].channels;
4992 if (chmode[mode].sequence)
Takashi Iwai82beb8f2007-08-10 17:09:26 +02004993 snd_hda_sequence_write_cache(codec, chmode[mode].sequence);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01004994 return 1;
4995}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004996EXPORT_SYMBOL_HDA(snd_hda_ch_mode_put);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01004997
Linus Torvalds1da177e2005-04-16 15:20:36 -07004998/*
4999 * input MUX helper
5000 */
Takashi Iwaid5191e52009-11-16 14:58:17 +01005001
5002/**
5003 * snd_hda_input_mux_info_info - Info callback helper for the input-mux enum
5004 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005005int snd_hda_input_mux_info(const struct hda_input_mux *imux,
5006 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005007{
5008 unsigned int index;
5009
5010 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
5011 uinfo->count = 1;
5012 uinfo->value.enumerated.items = imux->num_items;
Takashi Iwai5513b0c2007-10-09 11:58:41 +02005013 if (!imux->num_items)
5014 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005015 index = uinfo->value.enumerated.item;
5016 if (index >= imux->num_items)
5017 index = imux->num_items - 1;
5018 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
5019 return 0;
5020}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005021EXPORT_SYMBOL_HDA(snd_hda_input_mux_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022
Takashi Iwaid5191e52009-11-16 14:58:17 +01005023/**
5024 * snd_hda_input_mux_info_put - Put callback helper for the input-mux enum
5025 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005026int snd_hda_input_mux_put(struct hda_codec *codec,
5027 const struct hda_input_mux *imux,
5028 struct snd_ctl_elem_value *ucontrol,
5029 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005030 unsigned int *cur_val)
5031{
5032 unsigned int idx;
5033
Takashi Iwai5513b0c2007-10-09 11:58:41 +02005034 if (!imux->num_items)
5035 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036 idx = ucontrol->value.enumerated.item[0];
5037 if (idx >= imux->num_items)
5038 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02005039 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02005041 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
5042 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043 *cur_val = idx;
5044 return 1;
5045}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005046EXPORT_SYMBOL_HDA(snd_hda_input_mux_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047
5048
5049/*
Takashi Iwaidda415d2012-11-30 18:34:38 +01005050 * process kcontrol info callback of a simple string enum array
5051 * when @num_items is 0 or @texts is NULL, assume a boolean enum array
5052 */
5053int snd_hda_enum_helper_info(struct snd_kcontrol *kcontrol,
5054 struct snd_ctl_elem_info *uinfo,
5055 int num_items, const char * const *texts)
5056{
5057 static const char * const texts_default[] = {
5058 "Disabled", "Enabled"
5059 };
5060
5061 if (!texts || !num_items) {
5062 num_items = 2;
5063 texts = texts_default;
5064 }
5065
5066 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
5067 uinfo->count = 1;
5068 uinfo->value.enumerated.items = num_items;
5069 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
5070 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
5071 strcpy(uinfo->value.enumerated.name,
5072 texts[uinfo->value.enumerated.item]);
5073 return 0;
5074}
5075EXPORT_SYMBOL_HDA(snd_hda_enum_helper_info);
5076
5077/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07005078 * Multi-channel / digital-out PCM helper functions
5079 */
5080
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005081/* setup SPDIF output stream */
5082static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
5083 unsigned int stream_tag, unsigned int format)
5084{
Laurence Darby3bef1c32012-11-03 17:00:06 +00005085 struct hda_spdif_out *spdif;
5086 unsigned int curr_fmt;
5087 bool reset;
Stephen Warren7c935972011-06-01 11:14:17 -06005088
Laurence Darby3bef1c32012-11-03 17:00:06 +00005089 spdif = snd_hda_spdif_out_of_nid(codec, nid);
5090 curr_fmt = snd_hda_codec_read(codec, nid, 0,
5091 AC_VERB_GET_STREAM_FORMAT, 0);
5092 reset = codec->spdif_status_reset &&
5093 (spdif->ctls & AC_DIG1_ENABLE) &&
5094 curr_fmt != format;
5095
5096 /* turn off SPDIF if needed; otherwise the IEC958 bits won't be
5097 updated */
5098 if (reset)
Norberto Lopes28aedaf2010-02-28 20:16:53 +01005099 set_dig_out_convert(codec, nid,
Stephen Warren7c935972011-06-01 11:14:17 -06005100 spdif->ctls & ~AC_DIG1_ENABLE & 0xff,
Takashi Iwai2f728532008-09-25 16:32:41 +02005101 -1);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005102 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Takashi Iwai2f728532008-09-25 16:32:41 +02005103 if (codec->slave_dig_outs) {
Takashi Iwaidda14412011-05-02 11:29:30 +02005104 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02005105 for (d = codec->slave_dig_outs; *d; d++)
5106 snd_hda_codec_setup_stream(codec, *d, stream_tag, 0,
5107 format);
Matthew Ranostayde51ca12008-09-07 14:31:40 -04005108 }
Takashi Iwai2f728532008-09-25 16:32:41 +02005109 /* turn on again (if needed) */
Laurence Darby3bef1c32012-11-03 17:00:06 +00005110 if (reset)
Takashi Iwai2f728532008-09-25 16:32:41 +02005111 set_dig_out_convert(codec, nid,
Stephen Warren7c935972011-06-01 11:14:17 -06005112 spdif->ctls & 0xff, -1);
Takashi Iwai2f728532008-09-25 16:32:41 +02005113}
Matthew Ranostayde51ca12008-09-07 14:31:40 -04005114
Takashi Iwai2f728532008-09-25 16:32:41 +02005115static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid)
5116{
5117 snd_hda_codec_cleanup_stream(codec, nid);
5118 if (codec->slave_dig_outs) {
Takashi Iwaidda14412011-05-02 11:29:30 +02005119 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02005120 for (d = codec->slave_dig_outs; *d; d++)
5121 snd_hda_codec_cleanup_stream(codec, *d);
5122 }
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005123}
5124
Takashi Iwaid5191e52009-11-16 14:58:17 +01005125/**
5126 * snd_hda_bus_reboot_notify - call the reboot notifier of each codec
5127 * @bus: HD-audio bus
5128 */
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01005129void snd_hda_bus_reboot_notify(struct hda_bus *bus)
5130{
5131 struct hda_codec *codec;
5132
5133 if (!bus)
5134 return;
5135 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwaie581f3d2011-07-26 10:19:20 +02005136 if (hda_codec_is_power_on(codec) &&
5137 codec->patch_ops.reboot_notify)
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01005138 codec->patch_ops.reboot_notify(codec);
5139 }
5140}
Takashi Iwai8f217a22009-11-10 18:26:12 +01005141EXPORT_SYMBOL_HDA(snd_hda_bus_reboot_notify);
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01005142
Takashi Iwaid5191e52009-11-16 14:58:17 +01005143/**
5144 * snd_hda_multi_out_dig_open - open the digital out in the exclusive mode
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005146int snd_hda_multi_out_dig_open(struct hda_codec *codec,
5147 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005148{
Ingo Molnar62932df2006-01-16 16:34:20 +01005149 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02005150 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
5151 /* already opened as analog dup; reset it once */
Takashi Iwai2f728532008-09-25 16:32:41 +02005152 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01005154 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155 return 0;
5156}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005157EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158
Takashi Iwaid5191e52009-11-16 14:58:17 +01005159/**
5160 * snd_hda_multi_out_dig_prepare - prepare the digital out stream
5161 */
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005162int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
5163 struct hda_multi_out *mout,
5164 unsigned int stream_tag,
5165 unsigned int format,
5166 struct snd_pcm_substream *substream)
5167{
5168 mutex_lock(&codec->spdif_mutex);
5169 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
5170 mutex_unlock(&codec->spdif_mutex);
5171 return 0;
5172}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005173EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_prepare);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005174
Takashi Iwaid5191e52009-11-16 14:58:17 +01005175/**
5176 * snd_hda_multi_out_dig_cleanup - clean-up the digital out stream
5177 */
Takashi Iwai9411e212009-02-13 11:32:28 +01005178int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
5179 struct hda_multi_out *mout)
5180{
5181 mutex_lock(&codec->spdif_mutex);
5182 cleanup_dig_out_stream(codec, mout->dig_out_nid);
5183 mutex_unlock(&codec->spdif_mutex);
5184 return 0;
5185}
5186EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_cleanup);
5187
Takashi Iwaid5191e52009-11-16 14:58:17 +01005188/**
5189 * snd_hda_multi_out_dig_close - release the digital out stream
Linus Torvalds1da177e2005-04-16 15:20:36 -07005190 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005191int snd_hda_multi_out_dig_close(struct hda_codec *codec,
5192 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193{
Ingo Molnar62932df2006-01-16 16:34:20 +01005194 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005195 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01005196 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197 return 0;
5198}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005199EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200
Takashi Iwaid5191e52009-11-16 14:58:17 +01005201/**
5202 * snd_hda_multi_out_analog_open - open analog outputs
5203 *
5204 * Open analog outputs and set up the hw-constraints.
5205 * If the digital outputs can be opened as slave, open the digital
5206 * outputs, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005208int snd_hda_multi_out_analog_open(struct hda_codec *codec,
5209 struct hda_multi_out *mout,
Takashi Iwai9a081602008-02-12 18:37:26 +01005210 struct snd_pcm_substream *substream,
5211 struct hda_pcm_stream *hinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212{
Takashi Iwai9a081602008-02-12 18:37:26 +01005213 struct snd_pcm_runtime *runtime = substream->runtime;
5214 runtime->hw.channels_max = mout->max_channels;
5215 if (mout->dig_out_nid) {
5216 if (!mout->analog_rates) {
5217 mout->analog_rates = hinfo->rates;
5218 mout->analog_formats = hinfo->formats;
5219 mout->analog_maxbps = hinfo->maxbps;
5220 } else {
5221 runtime->hw.rates = mout->analog_rates;
5222 runtime->hw.formats = mout->analog_formats;
5223 hinfo->maxbps = mout->analog_maxbps;
5224 }
5225 if (!mout->spdif_rates) {
5226 snd_hda_query_supported_pcm(codec, mout->dig_out_nid,
5227 &mout->spdif_rates,
5228 &mout->spdif_formats,
5229 &mout->spdif_maxbps);
5230 }
5231 mutex_lock(&codec->spdif_mutex);
5232 if (mout->share_spdif) {
Takashi Iwai022b4662009-07-03 23:03:30 +02005233 if ((runtime->hw.rates & mout->spdif_rates) &&
5234 (runtime->hw.formats & mout->spdif_formats)) {
5235 runtime->hw.rates &= mout->spdif_rates;
5236 runtime->hw.formats &= mout->spdif_formats;
5237 if (mout->spdif_maxbps < hinfo->maxbps)
5238 hinfo->maxbps = mout->spdif_maxbps;
5239 } else {
5240 mout->share_spdif = 0;
5241 /* FIXME: need notify? */
5242 }
Takashi Iwai9a081602008-02-12 18:37:26 +01005243 }
Frederik Deweerdteaa99852008-04-14 13:11:44 +02005244 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01005245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005246 return snd_pcm_hw_constraint_step(substream->runtime, 0,
5247 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
5248}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005249EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005250
Takashi Iwaid5191e52009-11-16 14:58:17 +01005251/**
5252 * snd_hda_multi_out_analog_prepare - Preapre the analog outputs.
5253 *
5254 * Set up the i/o for analog out.
5255 * When the digital out is available, copy the front out to digital out, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005257int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
5258 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005259 unsigned int stream_tag,
5260 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01005261 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005262{
Takashi Iwaidda14412011-05-02 11:29:30 +02005263 const hda_nid_t *nids = mout->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264 int chs = substream->runtime->channels;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02005265 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266 int i;
5267
Ingo Molnar62932df2006-01-16 16:34:20 +01005268 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02005269 spdif = snd_hda_spdif_out_of_nid(codec, mout->dig_out_nid);
Takashi Iwai9a081602008-02-12 18:37:26 +01005270 if (mout->dig_out_nid && mout->share_spdif &&
5271 mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272 if (chs == 2 &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02005273 snd_hda_is_supported_format(codec, mout->dig_out_nid,
5274 format) &&
Stephen Warren7c935972011-06-01 11:14:17 -06005275 !(spdif->status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02005277 setup_dig_out_stream(codec, mout->dig_out_nid,
5278 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279 } else {
5280 mout->dig_out_used = 0;
Takashi Iwai2f728532008-09-25 16:32:41 +02005281 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282 }
5283 }
Ingo Molnar62932df2006-01-16 16:34:20 +01005284 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285
5286 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005287 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
5288 0, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02005289 if (!mout->no_share_stream &&
5290 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005292 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
5293 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01005294 /* extra outputs copied from front */
Takashi Iwaia06dbfc2011-08-23 18:16:13 +02005295 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
5296 if (!mout->no_share_stream && mout->hp_out_nid[i])
5297 snd_hda_codec_setup_stream(codec,
5298 mout->hp_out_nid[i],
5299 stream_tag, 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01005300 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
Takashi Iwaid29240c2007-10-26 12:35:56 +02005301 if (!mout->no_share_stream && mout->extra_out_nid[i])
Takashi Iwai82bc9552006-03-21 11:24:42 +01005302 snd_hda_codec_setup_stream(codec,
5303 mout->extra_out_nid[i],
5304 stream_tag, 0, format);
5305
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306 /* surrounds */
5307 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02005308 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005309 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
5310 i * 2, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02005311 else if (!mout->no_share_stream) /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005312 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
5313 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314 }
5315 return 0;
5316}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005317EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005318
Takashi Iwaid5191e52009-11-16 14:58:17 +01005319/**
5320 * snd_hda_multi_out_analog_cleanup - clean up the setting for analog out
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02005322int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
5323 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005324{
Takashi Iwaidda14412011-05-02 11:29:30 +02005325 const hda_nid_t *nids = mout->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005326 int i;
5327
5328 for (i = 0; i < mout->num_dacs; i++)
Takashi Iwai888afa12008-03-18 09:57:50 +01005329 snd_hda_codec_cleanup_stream(codec, nids[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005330 if (mout->hp_nid)
Takashi Iwai888afa12008-03-18 09:57:50 +01005331 snd_hda_codec_cleanup_stream(codec, mout->hp_nid);
Takashi Iwaia06dbfc2011-08-23 18:16:13 +02005332 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
5333 if (mout->hp_out_nid[i])
5334 snd_hda_codec_cleanup_stream(codec,
5335 mout->hp_out_nid[i]);
Takashi Iwai82bc9552006-03-21 11:24:42 +01005336 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
5337 if (mout->extra_out_nid[i])
Takashi Iwai888afa12008-03-18 09:57:50 +01005338 snd_hda_codec_cleanup_stream(codec,
5339 mout->extra_out_nid[i]);
Ingo Molnar62932df2006-01-16 16:34:20 +01005340 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
Takashi Iwai2f728532008-09-25 16:32:41 +02005342 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343 mout->dig_out_used = 0;
5344 }
Ingo Molnar62932df2006-01-16 16:34:20 +01005345 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005346 return 0;
5347}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005348EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005349
Takashi Iwai47408602012-04-20 13:06:53 +02005350/**
5351 * snd_hda_get_default_vref - Get the default (mic) VREF pin bits
5352 *
5353 * Guess the suitable VREF pin bits to be set as the pin-control value.
5354 * Note: the function doesn't set the AC_PINCTL_IN_EN bit.
5355 */
5356unsigned int snd_hda_get_default_vref(struct hda_codec *codec, hda_nid_t pin)
5357{
5358 unsigned int pincap;
5359 unsigned int oldval;
5360 oldval = snd_hda_codec_read(codec, pin, 0,
5361 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
5362 pincap = snd_hda_query_pin_caps(codec, pin);
5363 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
5364 /* Exception: if the default pin setup is vref50, we give it priority */
5365 if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50)
5366 return AC_PINCTL_VREF_80;
5367 else if (pincap & AC_PINCAP_VREF_50)
5368 return AC_PINCTL_VREF_50;
5369 else if (pincap & AC_PINCAP_VREF_100)
5370 return AC_PINCTL_VREF_100;
5371 else if (pincap & AC_PINCAP_VREF_GRD)
5372 return AC_PINCTL_VREF_GRD;
5373 return AC_PINCTL_VREF_HIZ;
5374}
5375EXPORT_SYMBOL_HDA(snd_hda_get_default_vref);
5376
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01005377/* correct the pin ctl value for matching with the pin cap */
5378unsigned int snd_hda_correct_pin_ctl(struct hda_codec *codec,
5379 hda_nid_t pin, unsigned int val)
5380{
5381 static unsigned int cap_lists[][2] = {
5382 { AC_PINCTL_VREF_100, AC_PINCAP_VREF_100 },
5383 { AC_PINCTL_VREF_80, AC_PINCAP_VREF_80 },
5384 { AC_PINCTL_VREF_50, AC_PINCAP_VREF_50 },
5385 { AC_PINCTL_VREF_GRD, AC_PINCAP_VREF_GRD },
5386 };
5387 unsigned int cap;
5388
5389 if (!val)
5390 return 0;
5391 cap = snd_hda_query_pin_caps(codec, pin);
5392 if (!cap)
5393 return val; /* don't know what to do... */
5394
5395 if (val & AC_PINCTL_OUT_EN) {
5396 if (!(cap & AC_PINCAP_OUT))
5397 val &= ~(AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
5398 else if ((val & AC_PINCTL_HP_EN) && !(cap & AC_PINCAP_HP_DRV))
5399 val &= ~AC_PINCTL_HP_EN;
5400 }
5401
5402 if (val & AC_PINCTL_IN_EN) {
5403 if (!(cap & AC_PINCAP_IN))
5404 val &= ~(AC_PINCTL_IN_EN | AC_PINCTL_VREFEN);
5405 else {
5406 unsigned int vcap, vref;
5407 int i;
5408 vcap = (cap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
5409 vref = val & AC_PINCTL_VREFEN;
5410 for (i = 0; i < ARRAY_SIZE(cap_lists); i++) {
5411 if (vref == cap_lists[i][0] &&
5412 !(vcap & cap_lists[i][1])) {
5413 if (i == ARRAY_SIZE(cap_lists) - 1)
5414 vref = AC_PINCTL_VREF_HIZ;
5415 else
5416 vref = cap_lists[i + 1][0];
5417 }
5418 }
5419 val &= ~AC_PINCTL_VREFEN;
5420 val |= vref;
5421 }
5422 }
5423
5424 return val;
5425}
5426EXPORT_SYMBOL_HDA(snd_hda_correct_pin_ctl);
5427
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02005428int _snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin,
5429 unsigned int val, bool cached)
5430{
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01005431 val = snd_hda_correct_pin_ctl(codec, pin, val);
Takashi Iwaid7fdc002013-01-10 08:38:04 +01005432 snd_hda_codec_set_pin_target(codec, pin, val);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02005433 if (cached)
5434 return snd_hda_codec_update_cache(codec, pin, 0,
5435 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
5436 else
5437 return snd_hda_codec_write(codec, pin, 0,
5438 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
5439}
5440EXPORT_SYMBOL_HDA(_snd_hda_set_pin_ctl);
5441
Takashi Iwai990061c2010-09-09 22:08:44 +02005442/**
5443 * snd_hda_add_imux_item - Add an item to input_mux
5444 *
5445 * When the same label is used already in the existing items, the number
5446 * suffix is appended to the label. This label index number is stored
5447 * to type_idx when non-NULL pointer is given.
5448 */
Takashi Iwai10a20af2010-09-09 16:28:02 +02005449int snd_hda_add_imux_item(struct hda_input_mux *imux, const char *label,
5450 int index, int *type_idx)
5451{
5452 int i, label_idx = 0;
5453 if (imux->num_items >= HDA_MAX_NUM_INPUTS) {
5454 snd_printd(KERN_ERR "hda_codec: Too many imux items!\n");
5455 return -EINVAL;
5456 }
5457 for (i = 0; i < imux->num_items; i++) {
5458 if (!strncmp(label, imux->items[i].label, strlen(label)))
5459 label_idx++;
5460 }
5461 if (type_idx)
5462 *type_idx = label_idx;
5463 if (label_idx > 0)
5464 snprintf(imux->items[imux->num_items].label,
5465 sizeof(imux->items[imux->num_items].label),
5466 "%s %d", label, label_idx);
5467 else
5468 strlcpy(imux->items[imux->num_items].label, label,
5469 sizeof(imux->items[imux->num_items].label));
5470 imux->items[imux->num_items].index = index;
5471 imux->num_items++;
5472 return 0;
5473}
5474EXPORT_SYMBOL_HDA(snd_hda_add_imux_item);
Takashi Iwaid7b1ae92010-08-30 13:00:16 +02005475
Takashi Iwai4a471b72005-12-07 13:56:29 +01005476
Linus Torvalds1da177e2005-04-16 15:20:36 -07005477#ifdef CONFIG_PM
5478/*
5479 * power management
5480 */
5481
5482/**
5483 * snd_hda_suspend - suspend the codecs
5484 * @bus: the HDA bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07005485 *
5486 * Returns 0 if successful.
5487 */
Takashi Iwai8dd78332009-06-02 01:16:07 +02005488int snd_hda_suspend(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489{
Takashi Iwai0ba21762007-04-16 11:29:14 +02005490 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005491
Takashi Iwai0ba21762007-04-16 11:29:14 +02005492 list_for_each_entry(codec, &bus->codec_list, list) {
David Henningsson26a6cb62012-10-09 15:04:21 +02005493 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwaie581f3d2011-07-26 10:19:20 +02005494 if (hda_codec_is_power_on(codec))
Dylan Reidd17344b2012-09-28 15:57:01 -07005495 hda_call_codec_suspend(codec, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005496 }
5497 return 0;
5498}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005499EXPORT_SYMBOL_HDA(snd_hda_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005500
5501/**
5502 * snd_hda_resume - resume the codecs
5503 * @bus: the HDA bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07005504 *
5505 * Returns 0 if successful.
5506 */
5507int snd_hda_resume(struct hda_bus *bus)
5508{
Takashi Iwai0ba21762007-04-16 11:29:14 +02005509 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005510
Takashi Iwai0ba21762007-04-16 11:29:14 +02005511 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai7f308302012-05-08 16:52:23 +02005512 hda_call_codec_resume(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514 return 0;
5515}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005516EXPORT_SYMBOL_HDA(snd_hda_resume);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005517#endif /* CONFIG_PM */
Takashi Iwaib2e18592008-07-30 15:01:44 +02005518
5519/*
5520 * generic arrays
5521 */
5522
Takashi Iwaid5191e52009-11-16 14:58:17 +01005523/**
5524 * snd_array_new - get a new element from the given array
5525 * @array: the array object
Norberto Lopes28aedaf2010-02-28 20:16:53 +01005526 *
Takashi Iwaid5191e52009-11-16 14:58:17 +01005527 * Get a new element from the given array. If it exceeds the
5528 * pre-allocated array size, re-allocate the array.
5529 *
5530 * Returns NULL if allocation failed.
Takashi Iwaib2e18592008-07-30 15:01:44 +02005531 */
5532void *snd_array_new(struct snd_array *array)
5533{
Takashi Iwai12f17712012-10-10 08:59:14 +02005534 if (snd_BUG_ON(!array->elem_size))
5535 return NULL;
Takashi Iwaib2e18592008-07-30 15:01:44 +02005536 if (array->used >= array->alloced) {
5537 int num = array->alloced + array->alloc_align;
Takashi Iwai3101ba02011-07-12 08:05:16 +02005538 int size = (num + 1) * array->elem_size;
Takashi Iwai00ef9612011-07-14 15:57:27 +02005539 int oldsize = array->alloced * array->elem_size;
Takashi Iwaib910d9a2008-11-07 00:26:52 +01005540 void *nlist;
5541 if (snd_BUG_ON(num >= 4096))
5542 return NULL;
Takashi Iwai3101ba02011-07-12 08:05:16 +02005543 nlist = krealloc(array->list, size, GFP_KERNEL);
Takashi Iwaib2e18592008-07-30 15:01:44 +02005544 if (!nlist)
5545 return NULL;
Takashi Iwai00ef9612011-07-14 15:57:27 +02005546 memset(nlist + oldsize, 0, size - oldsize);
Takashi Iwaib2e18592008-07-30 15:01:44 +02005547 array->list = nlist;
5548 array->alloced = num;
5549 }
Takashi Iwaif43aa022008-11-10 16:24:26 +01005550 return snd_array_elem(array, array->used++);
Takashi Iwaib2e18592008-07-30 15:01:44 +02005551}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005552EXPORT_SYMBOL_HDA(snd_array_new);
Takashi Iwaib2e18592008-07-30 15:01:44 +02005553
Takashi Iwaid5191e52009-11-16 14:58:17 +01005554/**
5555 * snd_array_free - free the given array elements
5556 * @array: the array object
5557 */
Takashi Iwaib2e18592008-07-30 15:01:44 +02005558void snd_array_free(struct snd_array *array)
5559{
5560 kfree(array->list);
5561 array->used = 0;
5562 array->alloced = 0;
5563 array->list = NULL;
5564}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005565EXPORT_SYMBOL_HDA(snd_array_free);
Takashi Iwaib2022262008-11-21 21:24:03 +01005566
Takashi Iwaid5191e52009-11-16 14:58:17 +01005567/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01005568 * snd_print_pcm_bits - Print the supported PCM fmt bits to the string buffer
5569 * @pcm: PCM caps bits
5570 * @buf: the string buffer to write
5571 * @buflen: the max buffer length
5572 *
5573 * used by hda_proc.c and hda_eld.c
5574 */
Takashi Iwaib2022262008-11-21 21:24:03 +01005575void snd_print_pcm_bits(int pcm, char *buf, int buflen)
5576{
5577 static unsigned int bits[] = { 8, 16, 20, 24, 32 };
5578 int i, j;
5579
5580 for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++)
5581 if (pcm & (AC_SUPPCM_BITS_8 << i))
5582 j += snprintf(buf + j, buflen - j, " %d", bits[i]);
5583
5584 buf[j] = '\0'; /* necessary when j == 0 */
5585}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01005586EXPORT_SYMBOL_HDA(snd_print_pcm_bits);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01005587
5588MODULE_DESCRIPTION("HDA codec core");
5589MODULE_LICENSE("GPL");