blob: d1424e7b9f3dfffd3b914ed35d5d928c981486ce [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/init.h>
23#include <linux/delay.h>
24#include <linux/slab.h>
25#include <linux/pci.h>
Ingo Molnar62932df2006-01-16 16:34:20 +010026#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <sound/core.h>
28#include "hda_codec.h"
29#include <sound/asoundef.h>
Jaroslav Kysela302e9c52006-07-05 17:39:49 +020030#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <sound/initval.h>
32#include "hda_local.h"
Jaroslav Kysela123c07a2009-10-21 14:48:23 +020033#include "hda_beep.h"
Takashi Iwai28073142007-07-27 18:58:06 +020034#include <sound/hda_hwdep.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036/*
37 * vendor / preset table
38 */
39
40struct hda_vendor_id {
41 unsigned int id;
42 const char *name;
43};
44
45/* codec vendor labels */
46static struct hda_vendor_id hda_vendor_ids[] = {
Takashi Iwaic8cd1282008-02-13 16:59:29 +010047 { 0x1002, "ATI" },
Takashi Iwaie5f14242009-07-01 18:11:44 +020048 { 0x1013, "Cirrus Logic" },
Takashi Iwaia9226252006-09-17 22:05:54 +020049 { 0x1057, "Motorola" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010050 { 0x1095, "Silicon Image" },
Takashi Iwai31117b72008-12-16 14:43:21 +010051 { 0x10de, "Nvidia" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010052 { 0x10ec, "Realtek" },
Takashi Iwai4e01f542009-04-16 08:53:34 +020053 { 0x1102, "Creative" },
Joseph Chanc577b8a2006-11-29 15:29:40 +010054 { 0x1106, "VIA" },
Matthew Ranostay7f168592007-10-18 17:38:17 +020055 { 0x111d, "IDT" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010056 { 0x11c1, "LSI" },
Takashi Iwai54b903e2005-05-15 14:30:10 +020057 { 0x11d4, "Analog Devices" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 { 0x13f6, "C-Media" },
Takashi Iwaia9226252006-09-17 22:05:54 +020059 { 0x14f1, "Conexant" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010060 { 0x17e8, "Chrontel" },
61 { 0x1854, "LG" },
Mark Brown8199de32008-10-28 14:50:13 +000062 { 0x1aec, "Wolfson Microelectronics" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 { 0x434d, "C-Media" },
Takashi Iwai74c61132008-12-18 09:11:33 +010064 { 0x8086, "Intel" },
Matt2f2f4252005-04-13 14:45:30 +020065 { 0x8384, "SigmaTel" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 {} /* terminator */
67};
68
Takashi Iwai1289e9e2008-11-27 15:47:11 +010069static DEFINE_MUTEX(preset_mutex);
70static LIST_HEAD(hda_preset_tables);
71
72int snd_hda_add_codec_preset(struct hda_codec_preset_list *preset)
73{
74 mutex_lock(&preset_mutex);
75 list_add_tail(&preset->list, &hda_preset_tables);
76 mutex_unlock(&preset_mutex);
77 return 0;
78}
Takashi Iwaiff7a3262008-11-28 15:17:06 +010079EXPORT_SYMBOL_HDA(snd_hda_add_codec_preset);
Takashi Iwai1289e9e2008-11-27 15:47:11 +010080
81int snd_hda_delete_codec_preset(struct hda_codec_preset_list *preset)
82{
83 mutex_lock(&preset_mutex);
84 list_del(&preset->list);
85 mutex_unlock(&preset_mutex);
86 return 0;
87}
Takashi Iwaiff7a3262008-11-28 15:17:06 +010088EXPORT_SYMBOL_HDA(snd_hda_delete_codec_preset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Takashi Iwaicb53c622007-08-10 17:21:45 +020090#ifdef CONFIG_SND_HDA_POWER_SAVE
91static void hda_power_work(struct work_struct *work);
92static void hda_keep_power_on(struct hda_codec *codec);
93#else
94static inline void hda_keep_power_on(struct hda_codec *codec) {}
95#endif
96
Takashi Iwaid5191e52009-11-16 14:58:17 +010097/**
98 * snd_hda_get_jack_location - Give a location string of the jack
99 * @cfg: pin default config value
100 *
101 * Parse the pin default config value and returns the string of the
102 * jack location, e.g. "Rear", "Front", etc.
103 */
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400104const char *snd_hda_get_jack_location(u32 cfg)
105{
106 static char *bases[7] = {
107 "N/A", "Rear", "Front", "Left", "Right", "Top", "Bottom",
108 };
109 static unsigned char specials_idx[] = {
110 0x07, 0x08,
111 0x17, 0x18, 0x19,
112 0x37, 0x38
113 };
114 static char *specials[] = {
115 "Rear Panel", "Drive Bar",
116 "Riser", "HDMI", "ATAPI",
117 "Mobile-In", "Mobile-Out"
118 };
119 int i;
120 cfg = (cfg & AC_DEFCFG_LOCATION) >> AC_DEFCFG_LOCATION_SHIFT;
121 if ((cfg & 0x0f) < 7)
122 return bases[cfg & 0x0f];
123 for (i = 0; i < ARRAY_SIZE(specials_idx); i++) {
124 if (cfg == specials_idx[i])
125 return specials[i];
126 }
127 return "UNKNOWN";
128}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100129EXPORT_SYMBOL_HDA(snd_hda_get_jack_location);
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400130
Takashi Iwaid5191e52009-11-16 14:58:17 +0100131/**
132 * snd_hda_get_jack_connectivity - Give a connectivity string of the jack
133 * @cfg: pin default config value
134 *
135 * Parse the pin default config value and returns the string of the
136 * jack connectivity, i.e. external or internal connection.
137 */
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400138const char *snd_hda_get_jack_connectivity(u32 cfg)
139{
140 static char *jack_locations[4] = { "Ext", "Int", "Sep", "Oth" };
141
142 return jack_locations[(cfg >> (AC_DEFCFG_LOCATION_SHIFT + 4)) & 3];
143}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100144EXPORT_SYMBOL_HDA(snd_hda_get_jack_connectivity);
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400145
Takashi Iwaid5191e52009-11-16 14:58:17 +0100146/**
147 * snd_hda_get_jack_type - Give a type string of the jack
148 * @cfg: pin default config value
149 *
150 * Parse the pin default config value and returns the string of the
151 * jack type, i.e. the purpose of the jack, such as Line-Out or CD.
152 */
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400153const char *snd_hda_get_jack_type(u32 cfg)
154{
155 static char *jack_types[16] = {
156 "Line Out", "Speaker", "HP Out", "CD",
157 "SPDIF Out", "Digital Out", "Modem Line", "Modem Hand",
158 "Line In", "Aux", "Mic", "Telephony",
159 "SPDIF In", "Digitial In", "Reserved", "Other"
160 };
161
162 return jack_types[(cfg & AC_DEFCFG_DEVICE)
163 >> AC_DEFCFG_DEVICE_SHIFT];
164}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100165EXPORT_SYMBOL_HDA(snd_hda_get_jack_type);
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400166
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100167/*
168 * Compose a 32bit command word to be sent to the HD-audio controller
169 */
170static inline unsigned int
171make_codec_cmd(struct hda_codec *codec, hda_nid_t nid, int direct,
172 unsigned int verb, unsigned int parm)
173{
174 u32 val;
175
Takashi Iwai82e1b802009-07-17 12:47:34 +0200176 if ((codec->addr & ~0xf) || (direct & ~1) || (nid & ~0x7f) ||
177 (verb & ~0xfff) || (parm & ~0xffff)) {
Wu Fengguang6430aee2009-07-17 16:49:19 +0800178 printk(KERN_ERR "hda-codec: out of range cmd %x:%x:%x:%x:%x\n",
179 codec->addr, direct, nid, verb, parm);
180 return ~0;
181 }
182
183 val = (u32)codec->addr << 28;
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100184 val |= (u32)direct << 27;
185 val |= (u32)nid << 20;
186 val |= verb << 8;
187 val |= parm;
188 return val;
189}
190
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200191/*
192 * Send and receive a verb
193 */
194static int codec_exec_verb(struct hda_codec *codec, unsigned int cmd,
195 unsigned int *res)
196{
197 struct hda_bus *bus = codec->bus;
Takashi Iwai8dd78332009-06-02 01:16:07 +0200198 int err;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200199
Wu Fengguang6430aee2009-07-17 16:49:19 +0800200 if (cmd == ~0)
201 return -1;
202
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200203 if (res)
204 *res = -1;
Takashi Iwai8dd78332009-06-02 01:16:07 +0200205 again:
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200206 snd_hda_power_up(codec);
207 mutex_lock(&bus->cmd_mutex);
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200208 err = bus->ops.command(bus, cmd);
Takashi Iwai8dd78332009-06-02 01:16:07 +0200209 if (!err && res)
Wu Fengguangdeadff12009-08-01 18:45:16 +0800210 *res = bus->ops.get_response(bus, codec->addr);
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200211 mutex_unlock(&bus->cmd_mutex);
212 snd_hda_power_down(codec);
Takashi Iwai8dd78332009-06-02 01:16:07 +0200213 if (res && *res == -1 && bus->rirb_error) {
214 if (bus->response_reset) {
215 snd_printd("hda_codec: resetting BUS due to "
216 "fatal communication error\n");
217 bus->ops.bus_reset(bus);
218 }
219 goto again;
220 }
221 /* clear reset-flag when the communication gets recovered */
222 if (!err)
223 bus->response_reset = 0;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200224 return err;
225}
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227/**
228 * snd_hda_codec_read - send a command and get the response
229 * @codec: the HDA codec
230 * @nid: NID to send the command
231 * @direct: direct flag
232 * @verb: the verb to send
233 * @parm: the parameter for the verb
234 *
235 * Send a single command and read the corresponding response.
236 *
237 * Returns the obtained response value, or -1 for an error.
238 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200239unsigned int snd_hda_codec_read(struct hda_codec *codec, hda_nid_t nid,
240 int direct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 unsigned int verb, unsigned int parm)
242{
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200243 unsigned cmd = make_codec_cmd(codec, nid, direct, verb, parm);
244 unsigned int res;
245 codec_exec_verb(codec, cmd, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return res;
247}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100248EXPORT_SYMBOL_HDA(snd_hda_codec_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250/**
251 * snd_hda_codec_write - send a single command without waiting for response
252 * @codec: the HDA codec
253 * @nid: NID to send the command
254 * @direct: direct flag
255 * @verb: the verb to send
256 * @parm: the parameter for the verb
257 *
258 * Send a single command without waiting for response.
259 *
260 * Returns 0 if successful, or a negative error code.
261 */
262int snd_hda_codec_write(struct hda_codec *codec, hda_nid_t nid, int direct,
263 unsigned int verb, unsigned int parm)
264{
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200265 unsigned int cmd = make_codec_cmd(codec, nid, direct, verb, parm);
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100266 unsigned int res;
Takashi Iwaib20f3b82009-06-02 01:20:22 +0200267 return codec_exec_verb(codec, cmd,
268 codec->bus->sync_write ? &res : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100270EXPORT_SYMBOL_HDA(snd_hda_codec_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272/**
273 * snd_hda_sequence_write - sequence writes
274 * @codec: the HDA codec
275 * @seq: VERB array to send
276 *
277 * Send the commands sequentially from the given array.
278 * The array must be terminated with NID=0.
279 */
280void snd_hda_sequence_write(struct hda_codec *codec, const struct hda_verb *seq)
281{
282 for (; seq->nid; seq++)
283 snd_hda_codec_write(codec, seq->nid, 0, seq->verb, seq->param);
284}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100285EXPORT_SYMBOL_HDA(snd_hda_sequence_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287/**
288 * snd_hda_get_sub_nodes - get the range of sub nodes
289 * @codec: the HDA codec
290 * @nid: NID to parse
291 * @start_id: the pointer to store the start NID
292 *
293 * Parse the NID and store the start NID of its sub-nodes.
294 * Returns the number of sub-nodes.
295 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200296int snd_hda_get_sub_nodes(struct hda_codec *codec, hda_nid_t nid,
297 hda_nid_t *start_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 unsigned int parm;
300
301 parm = snd_hda_param_read(codec, nid, AC_PAR_NODE_COUNT);
Danny Tholene8a7f132007-09-11 21:41:56 +0200302 if (parm == -1)
303 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 *start_id = (parm >> 16) & 0x7fff;
305 return (int)(parm & 0x7fff);
306}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100307EXPORT_SYMBOL_HDA(snd_hda_get_sub_nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
309/**
310 * snd_hda_get_connections - get connection list
311 * @codec: the HDA codec
312 * @nid: NID to parse
313 * @conn_list: connection list array
314 * @max_conns: max. number of connections to store
315 *
316 * Parses the connection list of the given widget and stores the list
317 * of NIDs.
318 *
319 * Returns the number of connections, or a negative error code.
320 */
321int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid,
322 hda_nid_t *conn_list, int max_conns)
323{
324 unsigned int parm;
Takashi Iwai54d17402005-11-21 16:33:22 +0100325 int i, conn_len, conns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 unsigned int shift, num_elems, mask;
Takashi Iwai1ba7a7c2009-07-27 12:56:26 +0200327 unsigned int wcaps;
Takashi Iwai54d17402005-11-21 16:33:22 +0100328 hda_nid_t prev_nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Takashi Iwaida3cec32008-08-08 17:12:14 +0200330 if (snd_BUG_ON(!conn_list || max_conns <= 0))
331 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Takashi Iwai1ba7a7c2009-07-27 12:56:26 +0200333 wcaps = get_wcaps(codec, nid);
334 if (!(wcaps & AC_WCAP_CONN_LIST) &&
335 get_wcaps_type(wcaps) != AC_WID_VOL_KNB) {
Jaroslav Kysela16a433d2009-07-22 16:20:40 +0200336 snd_printk(KERN_WARNING "hda_codec: "
337 "connection list not available for 0x%x\n", nid);
338 return -EINVAL;
339 }
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 parm = snd_hda_param_read(codec, nid, AC_PAR_CONNLIST_LEN);
342 if (parm & AC_CLIST_LONG) {
343 /* long form */
344 shift = 16;
345 num_elems = 2;
346 } else {
347 /* short form */
348 shift = 8;
349 num_elems = 4;
350 }
351 conn_len = parm & AC_CLIST_LENGTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 mask = (1 << (shift-1)) - 1;
353
Takashi Iwai0ba21762007-04-16 11:29:14 +0200354 if (!conn_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return 0; /* no connection */
356
357 if (conn_len == 1) {
358 /* single connection */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200359 parm = snd_hda_codec_read(codec, nid, 0,
360 AC_VERB_GET_CONNECT_LIST, 0);
Takashi Iwai3c6aae42009-07-10 12:52:27 +0200361 if (parm == -1 && codec->bus->rirb_error)
362 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 conn_list[0] = parm & mask;
364 return 1;
365 }
366
367 /* multi connection */
368 conns = 0;
Takashi Iwai54d17402005-11-21 16:33:22 +0100369 prev_nid = 0;
370 for (i = 0; i < conn_len; i++) {
371 int range_val;
372 hda_nid_t val, n;
373
Takashi Iwai3c6aae42009-07-10 12:52:27 +0200374 if (i % num_elems == 0) {
Takashi Iwai54d17402005-11-21 16:33:22 +0100375 parm = snd_hda_codec_read(codec, nid, 0,
376 AC_VERB_GET_CONNECT_LIST, i);
Takashi Iwai3c6aae42009-07-10 12:52:27 +0200377 if (parm == -1 && codec->bus->rirb_error)
378 return -EIO;
379 }
Takashi Iwai0ba21762007-04-16 11:29:14 +0200380 range_val = !!(parm & (1 << (shift-1))); /* ranges */
Takashi Iwai54d17402005-11-21 16:33:22 +0100381 val = parm & mask;
Jaroslav Kysela2e9bf242009-07-18 11:48:19 +0200382 if (val == 0) {
383 snd_printk(KERN_WARNING "hda_codec: "
384 "invalid CONNECT_LIST verb %x[%i]:%x\n",
385 nid, i, parm);
386 return 0;
387 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100388 parm >>= shift;
389 if (range_val) {
390 /* ranges between the previous and this one */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200391 if (!prev_nid || prev_nid >= val) {
392 snd_printk(KERN_WARNING "hda_codec: "
393 "invalid dep_range_val %x:%x\n",
394 prev_nid, val);
Takashi Iwai54d17402005-11-21 16:33:22 +0100395 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100397 for (n = prev_nid + 1; n <= val; n++) {
398 if (conns >= max_conns) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200399 snd_printk(KERN_ERR
400 "Too many connections\n");
Takashi Iwai54d17402005-11-21 16:33:22 +0100401 return -EINVAL;
402 }
403 conn_list[conns++] = n;
404 }
405 } else {
406 if (conns >= max_conns) {
407 snd_printk(KERN_ERR "Too many connections\n");
408 return -EINVAL;
409 }
410 conn_list[conns++] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100412 prev_nid = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 }
414 return conns;
415}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100416EXPORT_SYMBOL_HDA(snd_hda_get_connections);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418
419/**
420 * snd_hda_queue_unsol_event - add an unsolicited event to queue
421 * @bus: the BUS
422 * @res: unsolicited event (lower 32bit of RIRB entry)
423 * @res_ex: codec addr and flags (upper 32bit or RIRB entry)
424 *
425 * Adds the given event to the queue. The events are processed in
426 * the workqueue asynchronously. Call this function in the interrupt
427 * hanlder when RIRB receives an unsolicited event.
428 *
429 * Returns 0 if successful, or a negative error code.
430 */
431int snd_hda_queue_unsol_event(struct hda_bus *bus, u32 res, u32 res_ex)
432{
433 struct hda_bus_unsolicited *unsol;
434 unsigned int wp;
435
Takashi Iwai0ba21762007-04-16 11:29:14 +0200436 unsol = bus->unsol;
437 if (!unsol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return 0;
439
440 wp = (unsol->wp + 1) % HDA_UNSOL_QUEUE_SIZE;
441 unsol->wp = wp;
442
443 wp <<= 1;
444 unsol->queue[wp] = res;
445 unsol->queue[wp + 1] = res_ex;
446
Takashi Iwai6acaed32009-01-12 10:09:24 +0100447 queue_work(bus->workq, &unsol->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 return 0;
450}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100451EXPORT_SYMBOL_HDA(snd_hda_queue_unsol_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453/*
Wu Fengguang5c1d1a92008-10-07 14:17:53 +0800454 * process queued unsolicited events
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 */
David Howellsc4028952006-11-22 14:57:56 +0000456static void process_unsol_events(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
David Howellsc4028952006-11-22 14:57:56 +0000458 struct hda_bus_unsolicited *unsol =
459 container_of(work, struct hda_bus_unsolicited, work);
460 struct hda_bus *bus = unsol->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 struct hda_codec *codec;
462 unsigned int rp, caddr, res;
463
464 while (unsol->rp != unsol->wp) {
465 rp = (unsol->rp + 1) % HDA_UNSOL_QUEUE_SIZE;
466 unsol->rp = rp;
467 rp <<= 1;
468 res = unsol->queue[rp];
469 caddr = unsol->queue[rp + 1];
Takashi Iwai0ba21762007-04-16 11:29:14 +0200470 if (!(caddr & (1 << 4))) /* no unsolicited event? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 continue;
472 codec = bus->caddr_tbl[caddr & 0x0f];
473 if (codec && codec->patch_ops.unsol_event)
474 codec->patch_ops.unsol_event(codec, res);
475 }
476}
477
478/*
479 * initialize unsolicited queue
480 */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200481static int init_unsol_queue(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
483 struct hda_bus_unsolicited *unsol;
484
Takashi Iwai9f146bb2005-11-17 11:07:49 +0100485 if (bus->unsol) /* already initialized */
486 return 0;
487
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200488 unsol = kzalloc(sizeof(*unsol), GFP_KERNEL);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200489 if (!unsol) {
490 snd_printk(KERN_ERR "hda_codec: "
491 "can't allocate unsolicited queue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return -ENOMEM;
493 }
David Howellsc4028952006-11-22 14:57:56 +0000494 INIT_WORK(&unsol->work, process_unsol_events);
495 unsol->bus = bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 bus->unsol = unsol;
497 return 0;
498}
499
500/*
501 * destructor
502 */
503static void snd_hda_codec_free(struct hda_codec *codec);
504
505static int snd_hda_bus_free(struct hda_bus *bus)
506{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200507 struct hda_codec *codec, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Takashi Iwai0ba21762007-04-16 11:29:14 +0200509 if (!bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 return 0;
Takashi Iwai6acaed32009-01-12 10:09:24 +0100511 if (bus->workq)
512 flush_workqueue(bus->workq);
513 if (bus->unsol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 kfree(bus->unsol);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200515 list_for_each_entry_safe(codec, n, &bus->codec_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 snd_hda_codec_free(codec);
517 }
518 if (bus->ops.private_free)
519 bus->ops.private_free(bus);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100520 if (bus->workq)
521 destroy_workqueue(bus->workq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 kfree(bus);
523 return 0;
524}
525
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100526static int snd_hda_bus_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
528 struct hda_bus *bus = device->device_data;
Takashi Iwaib94d35392008-11-21 09:08:06 +0100529 bus->shutdown = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return snd_hda_bus_free(bus);
531}
532
Takashi Iwaid7ffba12008-07-30 15:01:46 +0200533#ifdef CONFIG_SND_HDA_HWDEP
534static int snd_hda_bus_dev_register(struct snd_device *device)
535{
536 struct hda_bus *bus = device->device_data;
537 struct hda_codec *codec;
538 list_for_each_entry(codec, &bus->codec_list, list) {
539 snd_hda_hwdep_add_sysfs(codec);
Takashi Iwaia2f63092009-11-11 09:34:25 +0100540 snd_hda_hwdep_add_power_sysfs(codec);
Takashi Iwaid7ffba12008-07-30 15:01:46 +0200541 }
542 return 0;
543}
544#else
545#define snd_hda_bus_dev_register NULL
546#endif
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548/**
549 * snd_hda_bus_new - create a HDA bus
550 * @card: the card entry
551 * @temp: the template for hda_bus information
552 * @busp: the pointer to store the created bus instance
553 *
554 * Returns 0 if successful, or a negative error code.
555 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100556int /*__devinit*/ snd_hda_bus_new(struct snd_card *card,
Takashi Iwai756e2b02007-04-16 11:27:07 +0200557 const struct hda_bus_template *temp,
558 struct hda_bus **busp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
560 struct hda_bus *bus;
561 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100562 static struct snd_device_ops dev_ops = {
Takashi Iwaid7ffba12008-07-30 15:01:46 +0200563 .dev_register = snd_hda_bus_dev_register,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 .dev_free = snd_hda_bus_dev_free,
565 };
566
Takashi Iwaida3cec32008-08-08 17:12:14 +0200567 if (snd_BUG_ON(!temp))
568 return -EINVAL;
569 if (snd_BUG_ON(!temp->ops.command || !temp->ops.get_response))
570 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 if (busp)
573 *busp = NULL;
574
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200575 bus = kzalloc(sizeof(*bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (bus == NULL) {
577 snd_printk(KERN_ERR "can't allocate struct hda_bus\n");
578 return -ENOMEM;
579 }
580
581 bus->card = card;
582 bus->private_data = temp->private_data;
583 bus->pci = temp->pci;
584 bus->modelname = temp->modelname;
Takashi Iwaifee2fba2008-11-27 12:43:28 +0100585 bus->power_save = temp->power_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 bus->ops = temp->ops;
587
Ingo Molnar62932df2006-01-16 16:34:20 +0100588 mutex_init(&bus->cmd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 INIT_LIST_HEAD(&bus->codec_list);
590
Takashi Iwaie8c0ee52009-02-05 07:34:28 +0100591 snprintf(bus->workq_name, sizeof(bus->workq_name),
592 "hd-audio%d", card->number);
593 bus->workq = create_singlethread_workqueue(bus->workq_name);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100594 if (!bus->workq) {
Takashi Iwaie8c0ee52009-02-05 07:34:28 +0100595 snd_printk(KERN_ERR "cannot create workqueue %s\n",
596 bus->workq_name);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100597 kfree(bus);
598 return -ENOMEM;
599 }
600
Takashi Iwai0ba21762007-04-16 11:29:14 +0200601 err = snd_device_new(card, SNDRV_DEV_BUS, bus, &dev_ops);
602 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 snd_hda_bus_free(bus);
604 return err;
605 }
606 if (busp)
607 *busp = bus;
608 return 0;
609}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100610EXPORT_SYMBOL_HDA(snd_hda_bus_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Takashi Iwai82467612007-07-27 19:15:54 +0200612#ifdef CONFIG_SND_HDA_GENERIC
613#define is_generic_config(codec) \
Takashi Iwaif44ac832008-07-30 15:01:45 +0200614 (codec->modelname && !strcmp(codec->modelname, "generic"))
Takashi Iwai82467612007-07-27 19:15:54 +0200615#else
616#define is_generic_config(codec) 0
617#endif
618
Takashi Iwai645f10c2008-11-28 15:07:37 +0100619#ifdef MODULE
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100620#define HDA_MODREQ_MAX_COUNT 2 /* two request_modules()'s */
621#else
Takashi Iwai645f10c2008-11-28 15:07:37 +0100622#define HDA_MODREQ_MAX_COUNT 0 /* all presets are statically linked */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100623#endif
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625/*
626 * find a matching codec preset
627 */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200628static const struct hda_codec_preset *
Takashi Iwai756e2b02007-04-16 11:27:07 +0200629find_codec_preset(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100631 struct hda_codec_preset_list *tbl;
632 const struct hda_codec_preset *preset;
633 int mod_requested = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Takashi Iwai82467612007-07-27 19:15:54 +0200635 if (is_generic_config(codec))
Takashi Iwaid5ad6302007-03-07 15:55:59 +0100636 return NULL; /* use the generic parser */
637
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100638 again:
639 mutex_lock(&preset_mutex);
640 list_for_each_entry(tbl, &hda_preset_tables, list) {
641 if (!try_module_get(tbl->owner)) {
642 snd_printk(KERN_ERR "hda_codec: cannot module_get\n");
643 continue;
644 }
645 for (preset = tbl->preset; preset->id; preset++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 u32 mask = preset->mask;
Marc Boucherca7cfae2008-01-22 15:32:25 +0100647 if (preset->afg && preset->afg != codec->afg)
648 continue;
649 if (preset->mfg && preset->mfg != codec->mfg)
650 continue;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200651 if (!mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 mask = ~0;
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200653 if (preset->id == (codec->vendor_id & mask) &&
Takashi Iwai0ba21762007-04-16 11:29:14 +0200654 (!preset->rev ||
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100655 preset->rev == codec->revision_id)) {
656 mutex_unlock(&preset_mutex);
657 codec->owner = tbl->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 return preset;
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 }
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100661 module_put(tbl->owner);
662 }
663 mutex_unlock(&preset_mutex);
664
665 if (mod_requested < HDA_MODREQ_MAX_COUNT) {
666 char name[32];
667 if (!mod_requested)
668 snprintf(name, sizeof(name), "snd-hda-codec-id:%08x",
669 codec->vendor_id);
670 else
671 snprintf(name, sizeof(name), "snd-hda-codec-id:%04x*",
672 (codec->vendor_id >> 16) & 0xffff);
673 request_module(name);
674 mod_requested++;
675 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
677 return NULL;
678}
679
680/*
Takashi Iwaif44ac832008-07-30 15:01:45 +0200681 * get_codec_name - store the codec name
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 */
Takashi Iwaif44ac832008-07-30 15:01:45 +0200683static int get_codec_name(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
685 const struct hda_vendor_id *c;
686 const char *vendor = NULL;
687 u16 vendor_id = codec->vendor_id >> 16;
Takashi Iwai812a2cc2009-05-16 10:00:49 +0200688 char tmp[16];
689
690 if (codec->vendor_name)
691 goto get_chip_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 for (c = hda_vendor_ids; c->id; c++) {
694 if (c->id == vendor_id) {
695 vendor = c->name;
696 break;
697 }
698 }
Takashi Iwai0ba21762007-04-16 11:29:14 +0200699 if (!vendor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 sprintf(tmp, "Generic %04x", vendor_id);
701 vendor = tmp;
702 }
Takashi Iwai812a2cc2009-05-16 10:00:49 +0200703 codec->vendor_name = kstrdup(vendor, GFP_KERNEL);
704 if (!codec->vendor_name)
705 return -ENOMEM;
706
707 get_chip_name:
708 if (codec->chip_name)
709 return 0;
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (codec->preset && codec->preset->name)
Takashi Iwai812a2cc2009-05-16 10:00:49 +0200712 codec->chip_name = kstrdup(codec->preset->name, GFP_KERNEL);
713 else {
714 sprintf(tmp, "ID %x", codec->vendor_id & 0xffff);
715 codec->chip_name = kstrdup(tmp, GFP_KERNEL);
716 }
717 if (!codec->chip_name)
Takashi Iwaif44ac832008-07-30 15:01:45 +0200718 return -ENOMEM;
719 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
721
722/*
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200723 * look for an AFG and MFG nodes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100725static void /*__devinit*/ setup_fg_nodes(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
Takashi Iwai93e82ae2009-04-17 18:04:41 +0200727 int i, total_nodes, function_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 hda_nid_t nid;
729
730 total_nodes = snd_hda_get_sub_nodes(codec, AC_NODE_ROOT, &nid);
731 for (i = 0; i < total_nodes; i++, nid++) {
Takashi Iwai93e82ae2009-04-17 18:04:41 +0200732 function_id = snd_hda_param_read(codec, nid,
Pascal de Bruijn234b4342009-03-23 11:15:59 +0100733 AC_PAR_FUNCTION_TYPE) & 0xff;
Takashi Iwai93e82ae2009-04-17 18:04:41 +0200734 switch (function_id) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200735 case AC_GRP_AUDIO_FUNCTION:
736 codec->afg = nid;
Takashi Iwai93e82ae2009-04-17 18:04:41 +0200737 codec->function_id = function_id;
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200738 break;
739 case AC_GRP_MODEM_FUNCTION:
740 codec->mfg = nid;
Takashi Iwai93e82ae2009-04-17 18:04:41 +0200741 codec->function_id = function_id;
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200742 break;
743 default:
744 break;
745 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
748
749/*
Takashi Iwai54d17402005-11-21 16:33:22 +0100750 * read widget caps for each widget and store in cache
751 */
752static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node)
753{
754 int i;
755 hda_nid_t nid;
756
757 codec->num_nodes = snd_hda_get_sub_nodes(codec, fg_node,
758 &codec->start_nid);
759 codec->wcaps = kmalloc(codec->num_nodes * 4, GFP_KERNEL);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200760 if (!codec->wcaps)
Takashi Iwai54d17402005-11-21 16:33:22 +0100761 return -ENOMEM;
762 nid = codec->start_nid;
763 for (i = 0; i < codec->num_nodes; i++, nid++)
764 codec->wcaps[i] = snd_hda_param_read(codec, nid,
765 AC_PAR_AUDIO_WIDGET_CAP);
766 return 0;
767}
768
Takashi Iwai3be14142009-02-20 14:11:16 +0100769/* read all pin default configurations and save codec->init_pins */
770static int read_pin_defaults(struct hda_codec *codec)
771{
772 int i;
773 hda_nid_t nid = codec->start_nid;
774
775 for (i = 0; i < codec->num_nodes; i++, nid++) {
776 struct hda_pincfg *pin;
777 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwaia22d5432009-07-27 12:54:26 +0200778 unsigned int wid_type = get_wcaps_type(wcaps);
Takashi Iwai3be14142009-02-20 14:11:16 +0100779 if (wid_type != AC_WID_PIN)
780 continue;
781 pin = snd_array_new(&codec->init_pins);
782 if (!pin)
783 return -ENOMEM;
784 pin->nid = nid;
785 pin->cfg = snd_hda_codec_read(codec, nid, 0,
786 AC_VERB_GET_CONFIG_DEFAULT, 0);
787 }
788 return 0;
789}
790
791/* look up the given pin config list and return the item matching with NID */
792static struct hda_pincfg *look_up_pincfg(struct hda_codec *codec,
793 struct snd_array *array,
794 hda_nid_t nid)
795{
796 int i;
797 for (i = 0; i < array->used; i++) {
798 struct hda_pincfg *pin = snd_array_elem(array, i);
799 if (pin->nid == nid)
800 return pin;
801 }
802 return NULL;
803}
804
805/* write a config value for the given NID */
806static void set_pincfg(struct hda_codec *codec, hda_nid_t nid,
807 unsigned int cfg)
808{
809 int i;
810 for (i = 0; i < 4; i++) {
811 snd_hda_codec_write(codec, nid, 0,
812 AC_VERB_SET_CONFIG_DEFAULT_BYTES_0 + i,
813 cfg & 0xff);
814 cfg >>= 8;
815 }
816}
817
818/* set the current pin config value for the given NID.
819 * the value is cached, and read via snd_hda_codec_get_pincfg()
820 */
821int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list,
822 hda_nid_t nid, unsigned int cfg)
823{
824 struct hda_pincfg *pin;
Takashi Iwai5e7b8e02009-02-23 09:45:59 +0100825 unsigned int oldcfg;
Takashi Iwai3be14142009-02-20 14:11:16 +0100826
Takashi Iwaib82855a2009-12-27 11:24:56 +0100827 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
828 return -EINVAL;
829
Takashi Iwai5e7b8e02009-02-23 09:45:59 +0100830 oldcfg = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwai3be14142009-02-20 14:11:16 +0100831 pin = look_up_pincfg(codec, list, nid);
832 if (!pin) {
833 pin = snd_array_new(list);
834 if (!pin)
835 return -ENOMEM;
836 pin->nid = nid;
837 }
838 pin->cfg = cfg;
Takashi Iwai5e7b8e02009-02-23 09:45:59 +0100839
840 /* change only when needed; e.g. if the pincfg is already present
841 * in user_pins[], don't write it
842 */
843 cfg = snd_hda_codec_get_pincfg(codec, nid);
844 if (oldcfg != cfg)
845 set_pincfg(codec, nid, cfg);
Takashi Iwai3be14142009-02-20 14:11:16 +0100846 return 0;
847}
848
Takashi Iwaid5191e52009-11-16 14:58:17 +0100849/**
850 * snd_hda_codec_set_pincfg - Override a pin default configuration
851 * @codec: the HDA codec
852 * @nid: NID to set the pin config
853 * @cfg: the pin default config value
854 *
855 * Override a pin default configuration value in the cache.
856 * This value can be read by snd_hda_codec_get_pincfg() in a higher
857 * priority than the real hardware value.
858 */
Takashi Iwai3be14142009-02-20 14:11:16 +0100859int snd_hda_codec_set_pincfg(struct hda_codec *codec,
860 hda_nid_t nid, unsigned int cfg)
861{
Takashi Iwai346ff702009-02-23 09:42:57 +0100862 return snd_hda_add_pincfg(codec, &codec->driver_pins, nid, cfg);
Takashi Iwai3be14142009-02-20 14:11:16 +0100863}
864EXPORT_SYMBOL_HDA(snd_hda_codec_set_pincfg);
865
Takashi Iwaid5191e52009-11-16 14:58:17 +0100866/**
867 * snd_hda_codec_get_pincfg - Obtain a pin-default configuration
868 * @codec: the HDA codec
869 * @nid: NID to get the pin config
870 *
871 * Get the current pin config value of the given pin NID.
872 * If the pincfg value is cached or overridden via sysfs or driver,
873 * returns the cached value.
874 */
Takashi Iwai3be14142009-02-20 14:11:16 +0100875unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid)
876{
877 struct hda_pincfg *pin;
878
Takashi Iwai3be14142009-02-20 14:11:16 +0100879#ifdef CONFIG_SND_HDA_HWDEP
Takashi Iwai346ff702009-02-23 09:42:57 +0100880 pin = look_up_pincfg(codec, &codec->user_pins, nid);
Takashi Iwai3be14142009-02-20 14:11:16 +0100881 if (pin)
882 return pin->cfg;
883#endif
Takashi Iwai5e7b8e02009-02-23 09:45:59 +0100884 pin = look_up_pincfg(codec, &codec->driver_pins, nid);
885 if (pin)
886 return pin->cfg;
Takashi Iwai3be14142009-02-20 14:11:16 +0100887 pin = look_up_pincfg(codec, &codec->init_pins, nid);
888 if (pin)
889 return pin->cfg;
890 return 0;
891}
892EXPORT_SYMBOL_HDA(snd_hda_codec_get_pincfg);
893
894/* restore all current pin configs */
895static void restore_pincfgs(struct hda_codec *codec)
896{
897 int i;
898 for (i = 0; i < codec->init_pins.used; i++) {
899 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
900 set_pincfg(codec, pin->nid,
901 snd_hda_codec_get_pincfg(codec, pin->nid));
902 }
903}
Takashi Iwai54d17402005-11-21 16:33:22 +0100904
Takashi Iwai92ee6162009-12-27 11:18:59 +0100905/**
906 * snd_hda_shutup_pins - Shut up all pins
907 * @codec: the HDA codec
908 *
909 * Clear all pin controls to shup up before suspend for avoiding click noise.
910 * The controls aren't cached so that they can be resumed properly.
911 */
912void snd_hda_shutup_pins(struct hda_codec *codec)
913{
914 int i;
915 for (i = 0; i < codec->init_pins.used; i++) {
916 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
917 /* use read here for syncing after issuing each verb */
918 snd_hda_codec_read(codec, pin->nid, 0,
919 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
920 }
921}
922EXPORT_SYMBOL_HDA(snd_hda_shutup_pins);
923
Takashi Iwai01751f52007-08-10 16:59:39 +0200924static void init_hda_cache(struct hda_cache_rec *cache,
925 unsigned int record_size);
Takashi Iwai1fcaee62007-08-23 00:01:09 +0200926static void free_hda_cache(struct hda_cache_rec *cache);
Takashi Iwai01751f52007-08-10 16:59:39 +0200927
Takashi Iwai3be14142009-02-20 14:11:16 +0100928/* restore the initial pin cfgs and release all pincfg lists */
929static void restore_init_pincfgs(struct hda_codec *codec)
930{
Takashi Iwai346ff702009-02-23 09:42:57 +0100931 /* first free driver_pins and user_pins, then call restore_pincfg
Takashi Iwai3be14142009-02-20 14:11:16 +0100932 * so that only the values in init_pins are restored
933 */
Takashi Iwai346ff702009-02-23 09:42:57 +0100934 snd_array_free(&codec->driver_pins);
Takashi Iwai3be14142009-02-20 14:11:16 +0100935#ifdef CONFIG_SND_HDA_HWDEP
Takashi Iwai346ff702009-02-23 09:42:57 +0100936 snd_array_free(&codec->user_pins);
Takashi Iwai3be14142009-02-20 14:11:16 +0100937#endif
938 restore_pincfgs(codec);
939 snd_array_free(&codec->init_pins);
940}
941
Takashi Iwai54d17402005-11-21 16:33:22 +0100942/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 * codec destructor
944 */
945static void snd_hda_codec_free(struct hda_codec *codec)
946{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200947 if (!codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 return;
Takashi Iwai3be14142009-02-20 14:11:16 +0100949 restore_init_pincfgs(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200950#ifdef CONFIG_SND_HDA_POWER_SAVE
951 cancel_delayed_work(&codec->power_work);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100952 flush_workqueue(codec->bus->workq);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200953#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 list_del(&codec->list);
Takashi Iwaid13bd412008-07-30 15:01:45 +0200955 snd_array_free(&codec->mixers);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100956 snd_array_free(&codec->nids);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 codec->bus->caddr_tbl[codec->addr] = NULL;
958 if (codec->patch_ops.free)
959 codec->patch_ops.free(codec);
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100960 module_put(codec->owner);
Takashi Iwai01751f52007-08-10 16:59:39 +0200961 free_hda_cache(&codec->amp_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200962 free_hda_cache(&codec->cmd_cache);
Takashi Iwai812a2cc2009-05-16 10:00:49 +0200963 kfree(codec->vendor_name);
964 kfree(codec->chip_name);
Takashi Iwaif44ac832008-07-30 15:01:45 +0200965 kfree(codec->modelname);
Takashi Iwai54d17402005-11-21 16:33:22 +0100966 kfree(codec->wcaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 kfree(codec);
968}
969
Takashi Iwaibb6ac722009-03-13 09:02:42 +0100970static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
971 unsigned int power_state);
972
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973/**
974 * snd_hda_codec_new - create a HDA codec
975 * @bus: the bus to assign
976 * @codec_addr: the codec address
977 * @codecp: the pointer to store the generated codec
978 *
979 * Returns 0 if successful, or a negative error code.
980 */
Norberto Lopes28aedaf2010-02-28 20:16:53 +0100981int /*__devinit*/ snd_hda_codec_new(struct hda_bus *bus,
982 unsigned int codec_addr,
983 struct hda_codec **codecp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
985 struct hda_codec *codec;
Jaroslav Kyselaba443682008-08-13 20:55:32 +0200986 char component[31];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 int err;
988
Takashi Iwaida3cec32008-08-08 17:12:14 +0200989 if (snd_BUG_ON(!bus))
990 return -EINVAL;
991 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
992 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
994 if (bus->caddr_tbl[codec_addr]) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200995 snd_printk(KERN_ERR "hda_codec: "
996 "address 0x%x is already occupied\n", codec_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 return -EBUSY;
998 }
999
Takashi Iwaie560d8d2005-09-09 14:21:46 +02001000 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 if (codec == NULL) {
1002 snd_printk(KERN_ERR "can't allocate struct hda_codec\n");
1003 return -ENOMEM;
1004 }
1005
1006 codec->bus = bus;
1007 codec->addr = codec_addr;
Ingo Molnar62932df2006-01-16 16:34:20 +01001008 mutex_init(&codec->spdif_mutex);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001009 mutex_init(&codec->control_mutex);
Takashi Iwai01751f52007-08-10 16:59:39 +02001010 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001011 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001012 snd_array_init(&codec->mixers, sizeof(struct hda_nid_item), 32);
1013 snd_array_init(&codec->nids, sizeof(struct hda_nid_item), 32);
Takashi Iwai3be14142009-02-20 14:11:16 +01001014 snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwai346ff702009-02-23 09:42:57 +01001015 snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001016 if (codec->bus->modelname) {
1017 codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL);
1018 if (!codec->modelname) {
1019 snd_hda_codec_free(codec);
1020 return -ENODEV;
1021 }
1022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
Takashi Iwaicb53c622007-08-10 17:21:45 +02001024#ifdef CONFIG_SND_HDA_POWER_SAVE
1025 INIT_DELAYED_WORK(&codec->power_work, hda_power_work);
1026 /* snd_hda_codec_new() marks the codec as power-up, and leave it as is.
1027 * the caller has to power down appropriatley after initialization
1028 * phase.
1029 */
1030 hda_keep_power_on(codec);
1031#endif
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 list_add_tail(&codec->list, &bus->codec_list);
1034 bus->caddr_tbl[codec_addr] = codec;
1035
Takashi Iwai0ba21762007-04-16 11:29:14 +02001036 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
1037 AC_PAR_VENDOR_ID);
Takashi Iwai111d3af2006-02-16 18:17:58 +01001038 if (codec->vendor_id == -1)
1039 /* read again, hopefully the access method was corrected
1040 * in the last read...
1041 */
1042 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
1043 AC_PAR_VENDOR_ID);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001044 codec->subsystem_id = snd_hda_param_read(codec, AC_NODE_ROOT,
1045 AC_PAR_SUBSYSTEM_ID);
1046 codec->revision_id = snd_hda_param_read(codec, AC_NODE_ROOT,
1047 AC_PAR_REV_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Sasha Khapyorsky673b6832005-08-11 11:00:16 +02001049 setup_fg_nodes(codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001050 if (!codec->afg && !codec->mfg) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +02001051 snd_printdd("hda_codec: no AFG or MFG node found\n");
Takashi Iwai3be14142009-02-20 14:11:16 +01001052 err = -ENODEV;
1053 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 }
1055
Takashi Iwai3be14142009-02-20 14:11:16 +01001056 err = read_widget_caps(codec, codec->afg ? codec->afg : codec->mfg);
1057 if (err < 0) {
Takashi Iwai54d17402005-11-21 16:33:22 +01001058 snd_printk(KERN_ERR "hda_codec: cannot malloc\n");
Takashi Iwai3be14142009-02-20 14:11:16 +01001059 goto error;
Takashi Iwai54d17402005-11-21 16:33:22 +01001060 }
Takashi Iwai3be14142009-02-20 14:11:16 +01001061 err = read_pin_defaults(codec);
1062 if (err < 0)
1063 goto error;
Takashi Iwai54d17402005-11-21 16:33:22 +01001064
Takashi Iwai0ba21762007-04-16 11:29:14 +02001065 if (!codec->subsystem_id) {
Takashi Iwai86284e42005-10-11 15:05:54 +02001066 hda_nid_t nid = codec->afg ? codec->afg : codec->mfg;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001067 codec->subsystem_id =
1068 snd_hda_codec_read(codec, nid, 0,
1069 AC_VERB_GET_SUBSYSTEM_ID, 0);
Takashi Iwai86284e42005-10-11 15:05:54 +02001070 }
1071
Takashi Iwaibb6ac722009-03-13 09:02:42 +01001072 /* power-up all before initialization */
1073 hda_set_power_state(codec,
1074 codec->afg ? codec->afg : codec->mfg,
1075 AC_PWRST_D0);
1076
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001077 snd_hda_codec_proc_new(codec);
1078
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001079 snd_hda_create_hwdep(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001080
1081 sprintf(component, "HDA:%08x,%08x,%08x", codec->vendor_id,
1082 codec->subsystem_id, codec->revision_id);
1083 snd_component_add(codec->bus->card, component);
1084
1085 if (codecp)
1086 *codecp = codec;
1087 return 0;
Takashi Iwai3be14142009-02-20 14:11:16 +01001088
1089 error:
1090 snd_hda_codec_free(codec);
1091 return err;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001092}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001093EXPORT_SYMBOL_HDA(snd_hda_codec_new);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001094
Takashi Iwaid5191e52009-11-16 14:58:17 +01001095/**
1096 * snd_hda_codec_configure - (Re-)configure the HD-audio codec
1097 * @codec: the HDA codec
1098 *
1099 * Start parsing of the given codec tree and (re-)initialize the whole
1100 * patch instance.
1101 *
1102 * Returns 0 if successful or a negative error code.
1103 */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001104int snd_hda_codec_configure(struct hda_codec *codec)
1105{
1106 int err;
1107
Takashi Iwaid5ad6302007-03-07 15:55:59 +01001108 codec->preset = find_codec_preset(codec);
Takashi Iwai812a2cc2009-05-16 10:00:49 +02001109 if (!codec->vendor_name || !codec->chip_name) {
Takashi Iwaif44ac832008-07-30 15:01:45 +02001110 err = get_codec_name(codec);
1111 if (err < 0)
1112 return err;
1113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Takashi Iwai82467612007-07-27 19:15:54 +02001115 if (is_generic_config(codec)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 err = snd_hda_parse_generic_codec(codec);
Takashi Iwai82467612007-07-27 19:15:54 +02001117 goto patched;
1118 }
Takashi Iwai82467612007-07-27 19:15:54 +02001119 if (codec->preset && codec->preset->patch) {
1120 err = codec->preset->patch(codec);
1121 goto patched;
1122 }
1123
1124 /* call the default parser */
Takashi Iwai82467612007-07-27 19:15:54 +02001125 err = snd_hda_parse_generic_codec(codec);
Takashi Iwai35a1e0c2007-10-19 08:13:40 +02001126 if (err < 0)
1127 printk(KERN_ERR "hda-codec: No codec parser is available\n");
Takashi Iwai82467612007-07-27 19:15:54 +02001128
1129 patched:
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001130 if (!err && codec->patch_ops.unsol_event)
1131 err = init_unsol_queue(codec->bus);
Takashi Iwaif62faed2009-12-23 09:27:51 +01001132 /* audio codec should override the mixer name */
1133 if (!err && (codec->afg || !*codec->bus->card->mixername))
1134 snprintf(codec->bus->card->mixername,
1135 sizeof(codec->bus->card->mixername),
1136 "%s %s", codec->vendor_name, codec->chip_name);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001137 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138}
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001139EXPORT_SYMBOL_HDA(snd_hda_codec_configure);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
1141/**
1142 * snd_hda_codec_setup_stream - set up the codec for streaming
1143 * @codec: the CODEC to set up
1144 * @nid: the NID to set up
1145 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
1146 * @channel_id: channel id to pass, zero based.
1147 * @format: stream format.
1148 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001149void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
1150 u32 stream_tag,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 int channel_id, int format)
1152{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001153 if (!nid)
Takashi Iwaid21b37e2005-04-20 13:45:55 +02001154 return;
1155
Takashi Iwai0ba21762007-04-16 11:29:14 +02001156 snd_printdd("hda_codec_setup_stream: "
1157 "NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 nid, stream_tag, channel_id, format);
1159 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID,
1160 (stream_tag << 4) | channel_id);
1161 msleep(1);
1162 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, format);
1163}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001164EXPORT_SYMBOL_HDA(snd_hda_codec_setup_stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Takashi Iwaid5191e52009-11-16 14:58:17 +01001166/**
1167 * snd_hda_codec_cleanup_stream - clean up the codec for closing
1168 * @codec: the CODEC to clean up
1169 * @nid: the NID to clean up
1170 */
Takashi Iwai888afa12008-03-18 09:57:50 +01001171void snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid)
1172{
1173 if (!nid)
1174 return;
1175
1176 snd_printdd("hda_codec_cleanup_stream: NID=0x%x\n", nid);
1177 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
1178#if 0 /* keep the format */
1179 msleep(1);
1180 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0);
1181#endif
1182}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001183EXPORT_SYMBOL_HDA(snd_hda_codec_cleanup_stream);
Takashi Iwai888afa12008-03-18 09:57:50 +01001184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185/*
1186 * amp access functions
1187 */
1188
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001189/* FIXME: more better hash key? */
Norberto Lopes28aedaf2010-02-28 20:16:53 +01001190#define HDA_HASH_KEY(nid, dir, idx) (u32)((nid) + ((idx) << 16) + ((dir) << 24))
Takashi Iwai1327a322009-03-23 13:07:47 +01001191#define HDA_HASH_PINCAP_KEY(nid) (u32)((nid) + (0x02 << 24))
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001192#define HDA_HASH_PARPCM_KEY(nid) (u32)((nid) + (0x03 << 24))
1193#define HDA_HASH_PARSTR_KEY(nid) (u32)((nid) + (0x04 << 24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194#define INFO_AMP_CAPS (1<<0)
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001195#define INFO_AMP_VOL(ch) (1 << (1 + (ch)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
1197/* initialize the hash table */
Takashi Iwai1289e9e2008-11-27 15:47:11 +01001198static void /*__devinit*/ init_hda_cache(struct hda_cache_rec *cache,
Takashi Iwai01751f52007-08-10 16:59:39 +02001199 unsigned int record_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200{
Takashi Iwai01751f52007-08-10 16:59:39 +02001201 memset(cache, 0, sizeof(*cache));
1202 memset(cache->hash, 0xff, sizeof(cache->hash));
Takashi Iwai603c4012008-07-30 15:01:44 +02001203 snd_array_init(&cache->buf, record_size, 64);
Takashi Iwai01751f52007-08-10 16:59:39 +02001204}
1205
Takashi Iwai1fcaee62007-08-23 00:01:09 +02001206static void free_hda_cache(struct hda_cache_rec *cache)
Takashi Iwai01751f52007-08-10 16:59:39 +02001207{
Takashi Iwai603c4012008-07-30 15:01:44 +02001208 snd_array_free(&cache->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209}
1210
1211/* query the hash. allocate an entry if not found. */
Takashi Iwai01751f52007-08-10 16:59:39 +02001212static struct hda_cache_head *get_alloc_hash(struct hda_cache_rec *cache,
1213 u32 key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214{
Takashi Iwai01751f52007-08-10 16:59:39 +02001215 u16 idx = key % (u16)ARRAY_SIZE(cache->hash);
1216 u16 cur = cache->hash[idx];
1217 struct hda_cache_head *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
1219 while (cur != 0xffff) {
Takashi Iwaif43aa022008-11-10 16:24:26 +01001220 info = snd_array_elem(&cache->buf, cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 if (info->key == key)
1222 return info;
1223 cur = info->next;
1224 }
1225
1226 /* add a new hash entry */
Takashi Iwai603c4012008-07-30 15:01:44 +02001227 info = snd_array_new(&cache->buf);
Takashi Iwaic2174292008-11-07 00:23:30 +01001228 if (!info)
1229 return NULL;
Takashi Iwaif43aa022008-11-10 16:24:26 +01001230 cur = snd_array_index(&cache->buf, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 info->key = key;
Takashi Iwai01751f52007-08-10 16:59:39 +02001232 info->val = 0;
1233 info->next = cache->hash[idx];
1234 cache->hash[idx] = cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 return info;
1237}
1238
Takashi Iwai01751f52007-08-10 16:59:39 +02001239/* query and allocate an amp hash entry */
1240static inline struct hda_amp_info *
1241get_alloc_amp_hash(struct hda_codec *codec, u32 key)
1242{
1243 return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key);
1244}
1245
Takashi Iwaid5191e52009-11-16 14:58:17 +01001246/**
1247 * query_amp_caps - query AMP capabilities
1248 * @codec: the HD-auio codec
1249 * @nid: the NID to query
1250 * @direction: either #HDA_INPUT or #HDA_OUTPUT
1251 *
1252 * Query AMP capabilities for the given widget and direction.
1253 * Returns the obtained capability bits.
1254 *
1255 * When cap bits have been already read, this doesn't read again but
1256 * returns the cached value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 */
Matthew Ranostay09a99952008-01-24 11:49:21 +01001258u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001260 struct hda_amp_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Takashi Iwai0ba21762007-04-16 11:29:14 +02001262 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, 0));
1263 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 return 0;
Takashi Iwai01751f52007-08-10 16:59:39 +02001265 if (!(info->head.val & INFO_AMP_CAPS)) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001266 if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 nid = codec->afg;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001268 info->amp_caps = snd_hda_param_read(codec, nid,
1269 direction == HDA_OUTPUT ?
1270 AC_PAR_AMP_OUT_CAP :
1271 AC_PAR_AMP_IN_CAP);
Takashi Iwaib75e53f2007-05-10 16:56:09 +02001272 if (info->amp_caps)
Takashi Iwai01751f52007-08-10 16:59:39 +02001273 info->head.val |= INFO_AMP_CAPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 }
1275 return info->amp_caps;
1276}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001277EXPORT_SYMBOL_HDA(query_amp_caps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Takashi Iwaid5191e52009-11-16 14:58:17 +01001279/**
1280 * snd_hda_override_amp_caps - Override the AMP capabilities
1281 * @codec: the CODEC to clean up
1282 * @nid: the NID to clean up
1283 * @direction: either #HDA_INPUT or #HDA_OUTPUT
1284 * @caps: the capability bits to set
1285 *
1286 * Override the cached AMP caps bits value by the given one.
1287 * This function is useful if the driver needs to adjust the AMP ranges,
1288 * e.g. limit to 0dB, etc.
1289 *
1290 * Returns zero if successful or a negative error code.
1291 */
Takashi Iwai897cc182007-05-29 19:01:37 +02001292int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
1293 unsigned int caps)
1294{
1295 struct hda_amp_info *info;
1296
1297 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, dir, 0));
1298 if (!info)
1299 return -EINVAL;
1300 info->amp_caps = caps;
Takashi Iwai01751f52007-08-10 16:59:39 +02001301 info->head.val |= INFO_AMP_CAPS;
Takashi Iwai897cc182007-05-29 19:01:37 +02001302 return 0;
1303}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001304EXPORT_SYMBOL_HDA(snd_hda_override_amp_caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001305
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001306static unsigned int
1307query_caps_hash(struct hda_codec *codec, hda_nid_t nid, u32 key,
1308 unsigned int (*func)(struct hda_codec *, hda_nid_t))
Takashi Iwai1327a322009-03-23 13:07:47 +01001309{
1310 struct hda_amp_info *info;
1311
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001312 info = get_alloc_amp_hash(codec, key);
Takashi Iwai1327a322009-03-23 13:07:47 +01001313 if (!info)
1314 return 0;
1315 if (!info->head.val) {
Takashi Iwai1327a322009-03-23 13:07:47 +01001316 info->head.val |= INFO_AMP_CAPS;
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001317 info->amp_caps = func(codec, nid);
Takashi Iwai1327a322009-03-23 13:07:47 +01001318 }
1319 return info->amp_caps;
1320}
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001321
1322static unsigned int read_pin_cap(struct hda_codec *codec, hda_nid_t nid)
1323{
1324 return snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP);
1325}
1326
Takashi Iwaid5191e52009-11-16 14:58:17 +01001327/**
1328 * snd_hda_query_pin_caps - Query PIN capabilities
1329 * @codec: the HD-auio codec
1330 * @nid: the NID to query
1331 *
1332 * Query PIN capabilities for the given widget.
1333 * Returns the obtained capability bits.
1334 *
1335 * When cap bits have been already read, this doesn't read again but
1336 * returns the cached value.
1337 */
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001338u32 snd_hda_query_pin_caps(struct hda_codec *codec, hda_nid_t nid)
1339{
1340 return query_caps_hash(codec, nid, HDA_HASH_PINCAP_KEY(nid),
1341 read_pin_cap);
1342}
Takashi Iwai1327a322009-03-23 13:07:47 +01001343EXPORT_SYMBOL_HDA(snd_hda_query_pin_caps);
1344
Wu Fengguang864f92b2009-11-18 12:38:02 +08001345/**
1346 * snd_hda_pin_sense - execute pin sense measurement
1347 * @codec: the CODEC to sense
1348 * @nid: the pin NID to sense
1349 *
1350 * Execute necessary pin sense measurement and return its Presence Detect,
1351 * Impedance, ELD Valid etc. status bits.
1352 */
1353u32 snd_hda_pin_sense(struct hda_codec *codec, hda_nid_t nid)
1354{
Takashi Iwai729d55b2009-12-25 22:49:01 +01001355 u32 pincap;
Wu Fengguang864f92b2009-11-18 12:38:02 +08001356
Takashi Iwai729d55b2009-12-25 22:49:01 +01001357 if (!codec->no_trigger_sense) {
1358 pincap = snd_hda_query_pin_caps(codec, nid);
1359 if (pincap & AC_PINCAP_TRIG_REQ) /* need trigger? */
Norberto Lopes28aedaf2010-02-28 20:16:53 +01001360 snd_hda_codec_read(codec, nid, 0,
1361 AC_VERB_SET_PIN_SENSE, 0);
Takashi Iwai729d55b2009-12-25 22:49:01 +01001362 }
Wu Fengguang864f92b2009-11-18 12:38:02 +08001363 return snd_hda_codec_read(codec, nid, 0,
1364 AC_VERB_GET_PIN_SENSE, 0);
1365}
1366EXPORT_SYMBOL_HDA(snd_hda_pin_sense);
1367
1368/**
1369 * snd_hda_jack_detect - query pin Presence Detect status
1370 * @codec: the CODEC to sense
1371 * @nid: the pin NID to sense
1372 *
1373 * Query and return the pin's Presence Detect status.
1374 */
1375int snd_hda_jack_detect(struct hda_codec *codec, hda_nid_t nid)
1376{
Norberto Lopes28aedaf2010-02-28 20:16:53 +01001377 u32 sense = snd_hda_pin_sense(codec, nid);
1378 return !!(sense & AC_PINSENSE_PRESENCE);
Wu Fengguang864f92b2009-11-18 12:38:02 +08001379}
1380EXPORT_SYMBOL_HDA(snd_hda_jack_detect);
1381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382/*
1383 * read the current volume to info
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001384 * if the cache exists, read the cache value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001386static unsigned int get_vol_mute(struct hda_codec *codec,
1387 struct hda_amp_info *info, hda_nid_t nid,
1388 int ch, int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389{
1390 u32 val, parm;
1391
Takashi Iwai01751f52007-08-10 16:59:39 +02001392 if (info->head.val & INFO_AMP_VOL(ch))
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001393 return info->vol[ch];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
1395 parm = ch ? AC_AMP_GET_RIGHT : AC_AMP_GET_LEFT;
1396 parm |= direction == HDA_OUTPUT ? AC_AMP_GET_OUTPUT : AC_AMP_GET_INPUT;
1397 parm |= index;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001398 val = snd_hda_codec_read(codec, nid, 0,
1399 AC_VERB_GET_AMP_GAIN_MUTE, parm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 info->vol[ch] = val & 0xff;
Takashi Iwai01751f52007-08-10 16:59:39 +02001401 info->head.val |= INFO_AMP_VOL(ch);
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001402 return info->vol[ch];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403}
1404
1405/*
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001406 * write the current volume in info to the h/w and update the cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 */
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001408static void put_vol_mute(struct hda_codec *codec, struct hda_amp_info *info,
Takashi Iwai0ba21762007-04-16 11:29:14 +02001409 hda_nid_t nid, int ch, int direction, int index,
1410 int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
1412 u32 parm;
1413
1414 parm = ch ? AC_AMP_SET_RIGHT : AC_AMP_SET_LEFT;
1415 parm |= direction == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT;
1416 parm |= index << AC_AMP_SET_INDEX_SHIFT;
1417 parm |= val;
1418 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, parm);
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001419 info->vol[ch] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420}
1421
Takashi Iwaid5191e52009-11-16 14:58:17 +01001422/**
1423 * snd_hda_codec_amp_read - Read AMP value
1424 * @codec: HD-audio codec
1425 * @nid: NID to read the AMP value
1426 * @ch: channel (left=0 or right=1)
1427 * @direction: #HDA_INPUT or #HDA_OUTPUT
1428 * @index: the index value (only for input direction)
1429 *
1430 * Read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 */
Takashi Iwai834be882006-03-01 14:16:17 +01001432int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch,
1433 int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001435 struct hda_amp_info *info;
1436 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, index));
1437 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001439 return get_vol_mute(codec, info, nid, ch, direction, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001441EXPORT_SYMBOL_HDA(snd_hda_codec_amp_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Takashi Iwaid5191e52009-11-16 14:58:17 +01001443/**
1444 * snd_hda_codec_amp_update - update the AMP value
1445 * @codec: HD-audio codec
1446 * @nid: NID to read the AMP value
1447 * @ch: channel (left=0 or right=1)
1448 * @direction: #HDA_INPUT or #HDA_OUTPUT
1449 * @idx: the index value (only for input direction)
1450 * @mask: bit mask to set
1451 * @val: the bits value to set
1452 *
1453 * Update the AMP value with a bit mask.
1454 * Returns 0 if the value is unchanged, 1 if changed.
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001455 */
Takashi Iwai834be882006-03-01 14:16:17 +01001456int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch,
1457 int direction, int idx, int mask, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001459 struct hda_amp_info *info;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001460
Takashi Iwai0ba21762007-04-16 11:29:14 +02001461 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, idx));
1462 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 return 0;
Takashi Iwai467126462010-03-29 09:19:38 +02001464 if (snd_BUG_ON(mask & ~0xff))
1465 mask &= 0xff;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001466 val &= mask;
1467 val |= get_vol_mute(codec, info, nid, ch, direction, idx) & ~mask;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001468 if (info->vol[ch] == val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001470 put_vol_mute(codec, info, nid, ch, direction, idx, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 return 1;
1472}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001473EXPORT_SYMBOL_HDA(snd_hda_codec_amp_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
Takashi Iwaid5191e52009-11-16 14:58:17 +01001475/**
1476 * snd_hda_codec_amp_stereo - update the AMP stereo values
1477 * @codec: HD-audio codec
1478 * @nid: NID to read the AMP value
1479 * @direction: #HDA_INPUT or #HDA_OUTPUT
1480 * @idx: the index value (only for input direction)
1481 * @mask: bit mask to set
1482 * @val: the bits value to set
1483 *
1484 * Update the AMP values like snd_hda_codec_amp_update(), but for a
1485 * stereo widget with the same mask and value.
Takashi Iwai47fd8302007-08-10 17:11:07 +02001486 */
1487int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
1488 int direction, int idx, int mask, int val)
1489{
1490 int ch, ret = 0;
Takashi Iwai467126462010-03-29 09:19:38 +02001491
1492 if (snd_BUG_ON(mask & ~0xff))
1493 mask &= 0xff;
Takashi Iwai47fd8302007-08-10 17:11:07 +02001494 for (ch = 0; ch < 2; ch++)
1495 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
1496 idx, mask, val);
1497 return ret;
1498}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001499EXPORT_SYMBOL_HDA(snd_hda_codec_amp_stereo);
Takashi Iwai47fd8302007-08-10 17:11:07 +02001500
Takashi Iwaicb53c622007-08-10 17:21:45 +02001501#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwaid5191e52009-11-16 14:58:17 +01001502/**
1503 * snd_hda_codec_resume_amp - Resume all AMP commands from the cache
1504 * @codec: HD-audio codec
1505 *
1506 * Resume the all amp commands from the cache.
1507 */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001508void snd_hda_codec_resume_amp(struct hda_codec *codec)
1509{
Takashi Iwai603c4012008-07-30 15:01:44 +02001510 struct hda_amp_info *buffer = codec->amp_cache.buf.list;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001511 int i;
1512
Takashi Iwai603c4012008-07-30 15:01:44 +02001513 for (i = 0; i < codec->amp_cache.buf.used; i++, buffer++) {
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001514 u32 key = buffer->head.key;
1515 hda_nid_t nid;
1516 unsigned int idx, dir, ch;
1517 if (!key)
1518 continue;
1519 nid = key & 0xff;
1520 idx = (key >> 16) & 0xff;
1521 dir = (key >> 24) & 0xff;
1522 for (ch = 0; ch < 2; ch++) {
1523 if (!(buffer->head.val & INFO_AMP_VOL(ch)))
1524 continue;
1525 put_vol_mute(codec, buffer, nid, ch, dir, idx,
1526 buffer->vol[ch]);
1527 }
1528 }
1529}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001530EXPORT_SYMBOL_HDA(snd_hda_codec_resume_amp);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001531#endif /* SND_HDA_NEEDS_RESUME */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
Takashi Iwaid5191e52009-11-16 14:58:17 +01001533/**
1534 * snd_hda_mixer_amp_volume_info - Info callback for a standard AMP mixer
1535 *
1536 * The control element is supposed to have the private_value field
1537 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1538 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001539int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
1540 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541{
1542 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1543 u16 nid = get_amp_nid(kcontrol);
1544 u8 chs = get_amp_channels(kcontrol);
1545 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001546 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 u32 caps;
1548
1549 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001550 /* num steps */
1551 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1552 if (!caps) {
1553 printk(KERN_WARNING "hda_codec: "
Takashi Iwai9c8f2ab2008-01-11 16:12:23 +01001554 "num_steps = 0 for NID=0x%x (ctl = %s)\n", nid,
1555 kcontrol->id.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 return -EINVAL;
1557 }
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001558 if (ofs < caps)
1559 caps -= ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1561 uinfo->count = chs == 3 ? 2 : 1;
1562 uinfo->value.integer.min = 0;
1563 uinfo->value.integer.max = caps;
1564 return 0;
1565}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001566EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001568
1569static inline unsigned int
1570read_amp_value(struct hda_codec *codec, hda_nid_t nid,
1571 int ch, int dir, int idx, unsigned int ofs)
1572{
1573 unsigned int val;
1574 val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx);
1575 val &= HDA_AMP_VOLMASK;
1576 if (val >= ofs)
1577 val -= ofs;
1578 else
1579 val = 0;
1580 return val;
1581}
1582
1583static inline int
1584update_amp_value(struct hda_codec *codec, hda_nid_t nid,
1585 int ch, int dir, int idx, unsigned int ofs,
1586 unsigned int val)
1587{
1588 if (val > 0)
1589 val += ofs;
1590 return snd_hda_codec_amp_update(codec, nid, ch, dir, idx,
1591 HDA_AMP_VOLMASK, val);
1592}
1593
Takashi Iwaid5191e52009-11-16 14:58:17 +01001594/**
1595 * snd_hda_mixer_amp_volume_get - Get callback for a standard AMP mixer volume
1596 *
1597 * The control element is supposed to have the private_value field
1598 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1599 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001600int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
1601 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
1603 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1604 hda_nid_t nid = get_amp_nid(kcontrol);
1605 int chs = get_amp_channels(kcontrol);
1606 int dir = get_amp_direction(kcontrol);
1607 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001608 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 long *valp = ucontrol->value.integer.value;
1610
1611 if (chs & 1)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001612 *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001614 *valp = read_amp_value(codec, nid, 1, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 return 0;
1616}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001617EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Takashi Iwaid5191e52009-11-16 14:58:17 +01001619/**
1620 * snd_hda_mixer_amp_volume_put - Put callback for a standard AMP mixer volume
1621 *
1622 * The control element is supposed to have the private_value field
1623 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1624 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001625int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
1626 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627{
1628 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1629 hda_nid_t nid = get_amp_nid(kcontrol);
1630 int chs = get_amp_channels(kcontrol);
1631 int dir = get_amp_direction(kcontrol);
1632 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001633 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 long *valp = ucontrol->value.integer.value;
1635 int change = 0;
1636
Takashi Iwaicb53c622007-08-10 17:21:45 +02001637 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001638 if (chs & 1) {
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001639 change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001640 valp++;
1641 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001642 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001643 change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001644 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 return change;
1646}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001647EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Takashi Iwaid5191e52009-11-16 14:58:17 +01001649/**
1650 * snd_hda_mixer_amp_volume_put - TLV callback for a standard AMP mixer volume
1651 *
1652 * The control element is supposed to have the private_value field
1653 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1654 */
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001655int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1656 unsigned int size, unsigned int __user *_tlv)
1657{
1658 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1659 hda_nid_t nid = get_amp_nid(kcontrol);
1660 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001661 unsigned int ofs = get_amp_offset(kcontrol);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001662 u32 caps, val1, val2;
1663
1664 if (size < 4 * sizeof(unsigned int))
1665 return -ENOMEM;
1666 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001667 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1668 val2 = (val2 + 1) * 25;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001669 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001670 val1 += ofs;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001671 val1 = ((int)val1) * ((int)val2);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001672 if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv))
1673 return -EFAULT;
1674 if (put_user(2 * sizeof(unsigned int), _tlv + 1))
1675 return -EFAULT;
1676 if (put_user(val1, _tlv + 2))
1677 return -EFAULT;
1678 if (put_user(val2, _tlv + 3))
1679 return -EFAULT;
1680 return 0;
1681}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001682EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_tlv);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001683
Takashi Iwaid5191e52009-11-16 14:58:17 +01001684/**
1685 * snd_hda_set_vmaster_tlv - Set TLV for a virtual master control
1686 * @codec: HD-audio codec
1687 * @nid: NID of a reference widget
1688 * @dir: #HDA_INPUT or #HDA_OUTPUT
1689 * @tlv: TLV data to be stored, at least 4 elements
1690 *
1691 * Set (static) TLV data for a virtual master volume using the AMP caps
1692 * obtained from the reference NID.
1693 * The volume range is recalculated as if the max volume is 0dB.
Takashi Iwai2134ea42008-01-10 16:53:55 +01001694 */
1695void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
1696 unsigned int *tlv)
1697{
1698 u32 caps;
1699 int nums, step;
1700
1701 caps = query_amp_caps(codec, nid, dir);
1702 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1703 step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1704 step = (step + 1) * 25;
1705 tlv[0] = SNDRV_CTL_TLVT_DB_SCALE;
1706 tlv[1] = 2 * sizeof(unsigned int);
1707 tlv[2] = -nums * step;
1708 tlv[3] = step;
1709}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001710EXPORT_SYMBOL_HDA(snd_hda_set_vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001711
1712/* find a mixer control element with the given name */
Takashi Iwai09f99702008-02-04 12:31:13 +01001713static struct snd_kcontrol *
1714_snd_hda_find_mixer_ctl(struct hda_codec *codec,
1715 const char *name, int idx)
Takashi Iwai2134ea42008-01-10 16:53:55 +01001716{
1717 struct snd_ctl_elem_id id;
1718 memset(&id, 0, sizeof(id));
1719 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Takashi Iwai09f99702008-02-04 12:31:13 +01001720 id.index = idx;
Takashi Iwai18cb7102009-04-16 10:22:24 +02001721 if (snd_BUG_ON(strlen(name) >= sizeof(id.name)))
1722 return NULL;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001723 strcpy(id.name, name);
1724 return snd_ctl_find_id(codec->bus->card, &id);
1725}
1726
Takashi Iwaid5191e52009-11-16 14:58:17 +01001727/**
1728 * snd_hda_find_mixer_ctl - Find a mixer control element with the given name
1729 * @codec: HD-audio codec
1730 * @name: ctl id name string
1731 *
1732 * Get the control element with the given id string and IFACE_MIXER.
1733 */
Takashi Iwai09f99702008-02-04 12:31:13 +01001734struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
1735 const char *name)
1736{
1737 return _snd_hda_find_mixer_ctl(codec, name, 0);
1738}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001739EXPORT_SYMBOL_HDA(snd_hda_find_mixer_ctl);
Takashi Iwai09f99702008-02-04 12:31:13 +01001740
Takashi Iwaid5191e52009-11-16 14:58:17 +01001741/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001742 * snd_hda_ctl_add - Add a control element and assign to the codec
Takashi Iwaid5191e52009-11-16 14:58:17 +01001743 * @codec: HD-audio codec
1744 * @nid: corresponding NID (optional)
1745 * @kctl: the control element to assign
1746 *
1747 * Add the given control element to an array inside the codec instance.
1748 * All control elements belonging to a codec are supposed to be added
1749 * by this function so that a proper clean-up works at the free or
1750 * reconfiguration time.
1751 *
1752 * If non-zero @nid is passed, the NID is assigned to the control element.
1753 * The assignment is shown in the codec proc file.
1754 *
1755 * snd_hda_ctl_add() checks the control subdev id field whether
1756 * #HDA_SUBDEV_NID_FLAG bit is set. If set (and @nid is zero), the lower
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001757 * bits value is taken as the NID to assign. The #HDA_NID_ITEM_AMP bit
1758 * specifies if kctl->private_value is a HDA amplifier value.
Takashi Iwaid5191e52009-11-16 14:58:17 +01001759 */
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001760int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid,
1761 struct snd_kcontrol *kctl)
Takashi Iwaid13bd412008-07-30 15:01:45 +02001762{
1763 int err;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001764 unsigned short flags = 0;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001765 struct hda_nid_item *item;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001766
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001767 if (kctl->id.subdevice & HDA_SUBDEV_AMP_FLAG) {
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001768 flags |= HDA_NID_ITEM_AMP;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001769 if (nid == 0)
1770 nid = get_amp_nid_(kctl->private_value);
1771 }
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001772 if ((kctl->id.subdevice & HDA_SUBDEV_NID_FLAG) != 0 && nid == 0)
1773 nid = kctl->id.subdevice & 0xffff;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001774 if (kctl->id.subdevice & (HDA_SUBDEV_NID_FLAG|HDA_SUBDEV_AMP_FLAG))
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01001775 kctl->id.subdevice = 0;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001776 err = snd_ctl_add(codec->bus->card, kctl);
1777 if (err < 0)
1778 return err;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001779 item = snd_array_new(&codec->mixers);
1780 if (!item)
Takashi Iwaid13bd412008-07-30 15:01:45 +02001781 return -ENOMEM;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001782 item->kctl = kctl;
1783 item->nid = nid;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001784 item->flags = flags;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001785 return 0;
1786}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001787EXPORT_SYMBOL_HDA(snd_hda_ctl_add);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001788
Takashi Iwaid5191e52009-11-16 14:58:17 +01001789/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001790 * snd_hda_add_nid - Assign a NID to a control element
1791 * @codec: HD-audio codec
1792 * @nid: corresponding NID (optional)
1793 * @kctl: the control element to assign
1794 * @index: index to kctl
1795 *
1796 * Add the given control element to an array inside the codec instance.
1797 * This function is used when #snd_hda_ctl_add cannot be used for 1:1
1798 * NID:KCTL mapping - for example "Capture Source" selector.
1799 */
1800int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl,
1801 unsigned int index, hda_nid_t nid)
1802{
1803 struct hda_nid_item *item;
1804
1805 if (nid > 0) {
1806 item = snd_array_new(&codec->nids);
1807 if (!item)
1808 return -ENOMEM;
1809 item->kctl = kctl;
1810 item->index = index;
1811 item->nid = nid;
1812 return 0;
1813 }
Takashi Iwai28d1a852010-03-15 09:05:46 +01001814 printk(KERN_ERR "hda-codec: no NID for mapping control %s:%d:%d\n",
1815 kctl->id.name, kctl->id.index, index);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001816 return -EINVAL;
1817}
1818EXPORT_SYMBOL_HDA(snd_hda_add_nid);
1819
1820/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01001821 * snd_hda_ctls_clear - Clear all controls assigned to the given codec
1822 * @codec: HD-audio codec
1823 */
Takashi Iwaid13bd412008-07-30 15:01:45 +02001824void snd_hda_ctls_clear(struct hda_codec *codec)
1825{
1826 int i;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001827 struct hda_nid_item *items = codec->mixers.list;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001828 for (i = 0; i < codec->mixers.used; i++)
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001829 snd_ctl_remove(codec->bus->card, items[i].kctl);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001830 snd_array_free(&codec->mixers);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001831 snd_array_free(&codec->nids);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001832}
1833
Takashi Iwaia65d6292009-02-23 16:57:04 +01001834/* pseudo device locking
1835 * toggle card->shutdown to allow/disallow the device access (as a hack)
1836 */
1837static int hda_lock_devices(struct snd_card *card)
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001838{
Takashi Iwaia65d6292009-02-23 16:57:04 +01001839 spin_lock(&card->files_lock);
1840 if (card->shutdown) {
1841 spin_unlock(&card->files_lock);
1842 return -EINVAL;
1843 }
1844 card->shutdown = 1;
1845 spin_unlock(&card->files_lock);
1846 return 0;
1847}
1848
1849static void hda_unlock_devices(struct snd_card *card)
1850{
1851 spin_lock(&card->files_lock);
1852 card->shutdown = 0;
1853 spin_unlock(&card->files_lock);
1854}
1855
Takashi Iwaid5191e52009-11-16 14:58:17 +01001856/**
1857 * snd_hda_codec_reset - Clear all objects assigned to the codec
1858 * @codec: HD-audio codec
1859 *
1860 * This frees the all PCM and control elements assigned to the codec, and
1861 * clears the caches and restores the pin default configurations.
1862 *
1863 * When a device is being used, it returns -EBSY. If successfully freed,
1864 * returns zero.
1865 */
Takashi Iwaia65d6292009-02-23 16:57:04 +01001866int snd_hda_codec_reset(struct hda_codec *codec)
1867{
1868 struct snd_card *card = codec->bus->card;
1869 int i, pcm;
1870
1871 if (hda_lock_devices(card) < 0)
1872 return -EBUSY;
1873 /* check whether the codec isn't used by any mixer or PCM streams */
1874 if (!list_empty(&card->ctl_files)) {
1875 hda_unlock_devices(card);
1876 return -EBUSY;
1877 }
1878 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
1879 struct hda_pcm *cpcm = &codec->pcm_info[pcm];
1880 if (!cpcm->pcm)
1881 continue;
1882 if (cpcm->pcm->streams[0].substream_opened ||
1883 cpcm->pcm->streams[1].substream_opened) {
1884 hda_unlock_devices(card);
1885 return -EBUSY;
1886 }
1887 }
1888
1889 /* OK, let it free */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001890
1891#ifdef CONFIG_SND_HDA_POWER_SAVE
1892 cancel_delayed_work(&codec->power_work);
Takashi Iwai6acaed32009-01-12 10:09:24 +01001893 flush_workqueue(codec->bus->workq);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001894#endif
1895 snd_hda_ctls_clear(codec);
1896 /* relase PCMs */
1897 for (i = 0; i < codec->num_pcms; i++) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001898 if (codec->pcm_info[i].pcm) {
Takashi Iwaia65d6292009-02-23 16:57:04 +01001899 snd_device_free(card, codec->pcm_info[i].pcm);
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001900 clear_bit(codec->pcm_info[i].device,
1901 codec->bus->pcm_dev_bits);
1902 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001903 }
1904 if (codec->patch_ops.free)
1905 codec->patch_ops.free(codec);
Takashi Iwai56d17712008-11-28 14:36:23 +01001906 codec->proc_widget_hook = NULL;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001907 codec->spec = NULL;
1908 free_hda_cache(&codec->amp_cache);
1909 free_hda_cache(&codec->cmd_cache);
Takashi Iwai827057f2008-12-19 10:12:02 +01001910 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
1911 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Takashi Iwai346ff702009-02-23 09:42:57 +01001912 /* free only driver_pins so that init_pins + user_pins are restored */
1913 snd_array_free(&codec->driver_pins);
Takashi Iwai3be14142009-02-20 14:11:16 +01001914 restore_pincfgs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001915 codec->num_pcms = 0;
1916 codec->pcm_info = NULL;
1917 codec->preset = NULL;
Takashi Iwaid1f1af22009-03-02 10:35:29 +01001918 memset(&codec->patch_ops, 0, sizeof(codec->patch_ops));
1919 codec->slave_dig_outs = NULL;
1920 codec->spdif_status_reset = 0;
Takashi Iwai1289e9e2008-11-27 15:47:11 +01001921 module_put(codec->owner);
1922 codec->owner = NULL;
Takashi Iwaia65d6292009-02-23 16:57:04 +01001923
1924 /* allow device access again */
1925 hda_unlock_devices(card);
1926 return 0;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001927}
1928
Takashi Iwaid5191e52009-11-16 14:58:17 +01001929/**
1930 * snd_hda_add_vmaster - create a virtual master control and add slaves
1931 * @codec: HD-audio codec
1932 * @name: vmaster control name
1933 * @tlv: TLV data (optional)
1934 * @slaves: slave control names (optional)
1935 *
1936 * Create a virtual master control with the given name. The TLV data
1937 * must be either NULL or a valid data.
1938 *
1939 * @slaves is a NULL-terminated array of strings, each of which is a
1940 * slave control name. All controls with these names are assigned to
1941 * the new virtual master control.
1942 *
1943 * This function returns zero if successful or a negative error code.
1944 */
Takashi Iwai2134ea42008-01-10 16:53:55 +01001945int snd_hda_add_vmaster(struct hda_codec *codec, char *name,
1946 unsigned int *tlv, const char **slaves)
1947{
1948 struct snd_kcontrol *kctl;
1949 const char **s;
1950 int err;
1951
Takashi Iwai2f085542008-02-22 18:43:50 +01001952 for (s = slaves; *s && !snd_hda_find_mixer_ctl(codec, *s); s++)
1953 ;
1954 if (!*s) {
1955 snd_printdd("No slave found for %s\n", name);
1956 return 0;
1957 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001958 kctl = snd_ctl_make_virtual_master(name, tlv);
1959 if (!kctl)
1960 return -ENOMEM;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001961 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001962 if (err < 0)
1963 return err;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01001964
Takashi Iwai2134ea42008-01-10 16:53:55 +01001965 for (s = slaves; *s; s++) {
1966 struct snd_kcontrol *sctl;
Takashi Iwai7a411ee2009-03-06 10:08:14 +01001967 int i = 0;
1968 for (;;) {
1969 sctl = _snd_hda_find_mixer_ctl(codec, *s, i);
1970 if (!sctl) {
1971 if (!i)
1972 snd_printdd("Cannot find slave %s, "
1973 "skipped\n", *s);
1974 break;
1975 }
1976 err = snd_ctl_add_slave(kctl, sctl);
1977 if (err < 0)
1978 return err;
1979 i++;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001980 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001981 }
1982 return 0;
1983}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001984EXPORT_SYMBOL_HDA(snd_hda_add_vmaster);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001985
Takashi Iwaid5191e52009-11-16 14:58:17 +01001986/**
1987 * snd_hda_mixer_amp_switch_info - Info callback for a standard AMP mixer switch
1988 *
1989 * The control element is supposed to have the private_value field
1990 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1991 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001992int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
1993 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994{
1995 int chs = get_amp_channels(kcontrol);
1996
1997 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1998 uinfo->count = chs == 3 ? 2 : 1;
1999 uinfo->value.integer.min = 0;
2000 uinfo->value.integer.max = 1;
2001 return 0;
2002}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002003EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
Takashi Iwaid5191e52009-11-16 14:58:17 +01002005/**
2006 * snd_hda_mixer_amp_switch_get - Get callback for a standard AMP mixer switch
2007 *
2008 * The control element is supposed to have the private_value field
2009 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2010 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002011int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
2012 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013{
2014 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2015 hda_nid_t nid = get_amp_nid(kcontrol);
2016 int chs = get_amp_channels(kcontrol);
2017 int dir = get_amp_direction(kcontrol);
2018 int idx = get_amp_index(kcontrol);
2019 long *valp = ucontrol->value.integer.value;
2020
2021 if (chs & 1)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002022 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002023 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 if (chs & 2)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002025 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002026 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 return 0;
2028}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002029EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
Takashi Iwaid5191e52009-11-16 14:58:17 +01002031/**
2032 * snd_hda_mixer_amp_switch_put - Put callback for a standard AMP mixer switch
2033 *
2034 * The control element is supposed to have the private_value field
2035 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2036 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002037int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
2038 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039{
2040 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2041 hda_nid_t nid = get_amp_nid(kcontrol);
2042 int chs = get_amp_channels(kcontrol);
2043 int dir = get_amp_direction(kcontrol);
2044 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 long *valp = ucontrol->value.integer.value;
2046 int change = 0;
2047
Takashi Iwaicb53c622007-08-10 17:21:45 +02002048 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002049 if (chs & 1) {
Takashi Iwai4a19fae2005-06-08 14:43:58 +02002050 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02002051 HDA_AMP_MUTE,
2052 *valp ? 0 : HDA_AMP_MUTE);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002053 valp++;
2054 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02002055 if (chs & 2)
2056 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02002057 HDA_AMP_MUTE,
2058 *valp ? 0 : HDA_AMP_MUTE);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002059#ifdef CONFIG_SND_HDA_POWER_SAVE
2060 if (codec->patch_ops.check_power_status)
2061 codec->patch_ops.check_power_status(codec, nid);
2062#endif
2063 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 return change;
2065}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002066EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Takashi Iwai67d634c2009-11-16 15:35:59 +01002068#ifdef CONFIG_SND_HDA_INPUT_BEEP
Takashi Iwaid5191e52009-11-16 14:58:17 +01002069/**
2070 * snd_hda_mixer_amp_switch_put_beep - Put callback for a beep AMP switch
2071 *
2072 * This function calls snd_hda_enable_beep_device(), which behaves differently
2073 * depending on beep_mode option.
2074 */
Jaroslav Kysela123c07a2009-10-21 14:48:23 +02002075int snd_hda_mixer_amp_switch_put_beep(struct snd_kcontrol *kcontrol,
2076 struct snd_ctl_elem_value *ucontrol)
2077{
2078 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2079 long *valp = ucontrol->value.integer.value;
2080
2081 snd_hda_enable_beep_device(codec, *valp);
2082 return snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2083}
2084EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_put_beep);
Takashi Iwai67d634c2009-11-16 15:35:59 +01002085#endif /* CONFIG_SND_HDA_INPUT_BEEP */
Jaroslav Kysela123c07a2009-10-21 14:48:23 +02002086
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087/*
Takashi Iwai985be542005-11-02 18:26:49 +01002088 * bound volume controls
2089 *
2090 * bind multiple volumes (# indices, from 0)
2091 */
2092
2093#define AMP_VAL_IDX_SHIFT 19
2094#define AMP_VAL_IDX_MASK (0x0f<<19)
2095
Takashi Iwaid5191e52009-11-16 14:58:17 +01002096/**
2097 * snd_hda_mixer_bind_switch_get - Get callback for a bound volume control
2098 *
2099 * The control element is supposed to have the private_value field
2100 * set up via HDA_BIND_MUTE*() macros.
2101 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002102int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol,
2103 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01002104{
2105 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2106 unsigned long pval;
2107 int err;
2108
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002109 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002110 pval = kcontrol->private_value;
2111 kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */
2112 err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
2113 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002114 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002115 return err;
2116}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002117EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_get);
Takashi Iwai985be542005-11-02 18:26:49 +01002118
Takashi Iwaid5191e52009-11-16 14:58:17 +01002119/**
2120 * snd_hda_mixer_bind_switch_put - Put callback for a bound volume control
2121 *
2122 * The control element is supposed to have the private_value field
2123 * set up via HDA_BIND_MUTE*() macros.
2124 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002125int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol,
2126 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01002127{
2128 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2129 unsigned long pval;
2130 int i, indices, err = 0, change = 0;
2131
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002132 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002133 pval = kcontrol->private_value;
2134 indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT;
2135 for (i = 0; i < indices; i++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002136 kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) |
2137 (i << AMP_VAL_IDX_SHIFT);
Takashi Iwai985be542005-11-02 18:26:49 +01002138 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2139 if (err < 0)
2140 break;
2141 change |= err;
2142 }
2143 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002144 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002145 return err < 0 ? err : change;
2146}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002147EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_put);
Takashi Iwai985be542005-11-02 18:26:49 +01002148
Takashi Iwaid5191e52009-11-16 14:58:17 +01002149/**
2150 * snd_hda_mixer_bind_ctls_info - Info callback for a generic bound control
2151 *
2152 * The control element is supposed to have the private_value field
2153 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
Takashi Iwai532d5382007-07-27 19:02:40 +02002154 */
2155int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol,
2156 struct snd_ctl_elem_info *uinfo)
2157{
2158 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2159 struct hda_bind_ctls *c;
2160 int err;
2161
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002162 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01002163 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02002164 kcontrol->private_value = *c->values;
2165 err = c->ops->info(kcontrol, uinfo);
2166 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002167 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02002168 return err;
2169}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002170EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_info);
Takashi Iwai532d5382007-07-27 19:02:40 +02002171
Takashi Iwaid5191e52009-11-16 14:58:17 +01002172/**
2173 * snd_hda_mixer_bind_ctls_get - Get callback for a generic bound control
2174 *
2175 * The control element is supposed to have the private_value field
2176 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
2177 */
Takashi Iwai532d5382007-07-27 19:02:40 +02002178int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol,
2179 struct snd_ctl_elem_value *ucontrol)
2180{
2181 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2182 struct hda_bind_ctls *c;
2183 int err;
2184
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002185 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01002186 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02002187 kcontrol->private_value = *c->values;
2188 err = c->ops->get(kcontrol, ucontrol);
2189 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002190 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02002191 return err;
2192}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002193EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_get);
Takashi Iwai532d5382007-07-27 19:02:40 +02002194
Takashi Iwaid5191e52009-11-16 14:58:17 +01002195/**
2196 * snd_hda_mixer_bind_ctls_put - Put callback for a generic bound control
2197 *
2198 * The control element is supposed to have the private_value field
2199 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
2200 */
Takashi Iwai532d5382007-07-27 19:02:40 +02002201int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol,
2202 struct snd_ctl_elem_value *ucontrol)
2203{
2204 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2205 struct hda_bind_ctls *c;
2206 unsigned long *vals;
2207 int err = 0, change = 0;
2208
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002209 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01002210 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02002211 for (vals = c->values; *vals; vals++) {
2212 kcontrol->private_value = *vals;
2213 err = c->ops->put(kcontrol, ucontrol);
2214 if (err < 0)
2215 break;
2216 change |= err;
2217 }
2218 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002219 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02002220 return err < 0 ? err : change;
2221}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002222EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_put);
Takashi Iwai532d5382007-07-27 19:02:40 +02002223
Takashi Iwaid5191e52009-11-16 14:58:17 +01002224/**
2225 * snd_hda_mixer_bind_tlv - TLV callback for a generic bound control
2226 *
2227 * The control element is supposed to have the private_value field
2228 * set up via HDA_BIND_VOL() macro.
2229 */
Takashi Iwai532d5382007-07-27 19:02:40 +02002230int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag,
2231 unsigned int size, unsigned int __user *tlv)
2232{
2233 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2234 struct hda_bind_ctls *c;
2235 int err;
2236
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002237 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01002238 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02002239 kcontrol->private_value = *c->values;
2240 err = c->ops->tlv(kcontrol, op_flag, size, tlv);
2241 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002242 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02002243 return err;
2244}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002245EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_tlv);
Takashi Iwai532d5382007-07-27 19:02:40 +02002246
2247struct hda_ctl_ops snd_hda_bind_vol = {
2248 .info = snd_hda_mixer_amp_volume_info,
2249 .get = snd_hda_mixer_amp_volume_get,
2250 .put = snd_hda_mixer_amp_volume_put,
2251 .tlv = snd_hda_mixer_amp_tlv
2252};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002253EXPORT_SYMBOL_HDA(snd_hda_bind_vol);
Takashi Iwai532d5382007-07-27 19:02:40 +02002254
2255struct hda_ctl_ops snd_hda_bind_sw = {
2256 .info = snd_hda_mixer_amp_switch_info,
2257 .get = snd_hda_mixer_amp_switch_get,
2258 .put = snd_hda_mixer_amp_switch_put,
2259 .tlv = snd_hda_mixer_amp_tlv
2260};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002261EXPORT_SYMBOL_HDA(snd_hda_bind_sw);
Takashi Iwai532d5382007-07-27 19:02:40 +02002262
2263/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 * SPDIF out controls
2265 */
2266
Takashi Iwai0ba21762007-04-16 11:29:14 +02002267static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
2268 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269{
2270 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
2271 uinfo->count = 1;
2272 return 0;
2273}
2274
Takashi Iwai0ba21762007-04-16 11:29:14 +02002275static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
2276 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277{
2278 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
2279 IEC958_AES0_NONAUDIO |
2280 IEC958_AES0_CON_EMPHASIS_5015 |
2281 IEC958_AES0_CON_NOT_COPYRIGHT;
2282 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
2283 IEC958_AES1_CON_ORIGINAL;
2284 return 0;
2285}
2286
Takashi Iwai0ba21762007-04-16 11:29:14 +02002287static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
2288 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289{
2290 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
2291 IEC958_AES0_NONAUDIO |
2292 IEC958_AES0_PRO_EMPHASIS_5015;
2293 return 0;
2294}
2295
Takashi Iwai0ba21762007-04-16 11:29:14 +02002296static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
2297 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298{
2299 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2300
2301 ucontrol->value.iec958.status[0] = codec->spdif_status & 0xff;
2302 ucontrol->value.iec958.status[1] = (codec->spdif_status >> 8) & 0xff;
2303 ucontrol->value.iec958.status[2] = (codec->spdif_status >> 16) & 0xff;
2304 ucontrol->value.iec958.status[3] = (codec->spdif_status >> 24) & 0xff;
2305
2306 return 0;
2307}
2308
2309/* convert from SPDIF status bits to HDA SPDIF bits
2310 * bit 0 (DigEn) is always set zero (to be filled later)
2311 */
2312static unsigned short convert_from_spdif_status(unsigned int sbits)
2313{
2314 unsigned short val = 0;
2315
2316 if (sbits & IEC958_AES0_PROFESSIONAL)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002317 val |= AC_DIG1_PROFESSIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 if (sbits & IEC958_AES0_NONAUDIO)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002319 val |= AC_DIG1_NONAUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002321 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
2322 IEC958_AES0_PRO_EMPHASIS_5015)
2323 val |= AC_DIG1_EMPHASIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002325 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
2326 IEC958_AES0_CON_EMPHASIS_5015)
2327 val |= AC_DIG1_EMPHASIS;
2328 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
2329 val |= AC_DIG1_COPYRIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
Takashi Iwai0ba21762007-04-16 11:29:14 +02002331 val |= AC_DIG1_LEVEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
2333 }
2334 return val;
2335}
2336
2337/* convert to SPDIF status bits from HDA SPDIF bits
2338 */
2339static unsigned int convert_to_spdif_status(unsigned short val)
2340{
2341 unsigned int sbits = 0;
2342
Takashi Iwai0ba21762007-04-16 11:29:14 +02002343 if (val & AC_DIG1_NONAUDIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 sbits |= IEC958_AES0_NONAUDIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002345 if (val & AC_DIG1_PROFESSIONAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 sbits |= IEC958_AES0_PROFESSIONAL;
2347 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002348 if (sbits & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
2350 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002351 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002353 if (!(val & AC_DIG1_COPYRIGHT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002355 if (val & AC_DIG1_LEVEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
2357 sbits |= val & (0x7f << 8);
2358 }
2359 return sbits;
2360}
2361
Takashi Iwai2f728532008-09-25 16:32:41 +02002362/* set digital convert verbs both for the given NID and its slaves */
2363static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
2364 int verb, int val)
2365{
2366 hda_nid_t *d;
2367
Takashi Iwai9e976972008-11-25 08:17:20 +01002368 snd_hda_codec_write_cache(codec, nid, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02002369 d = codec->slave_dig_outs;
2370 if (!d)
2371 return;
2372 for (; *d; d++)
Takashi Iwai9e976972008-11-25 08:17:20 +01002373 snd_hda_codec_write_cache(codec, *d, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02002374}
2375
2376static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,
2377 int dig1, int dig2)
2378{
2379 if (dig1 != -1)
2380 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_1, dig1);
2381 if (dig2 != -1)
2382 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_2, dig2);
2383}
2384
Takashi Iwai0ba21762007-04-16 11:29:14 +02002385static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
2386 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387{
2388 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2389 hda_nid_t nid = kcontrol->private_value;
2390 unsigned short val;
2391 int change;
2392
Ingo Molnar62932df2006-01-16 16:34:20 +01002393 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 codec->spdif_status = ucontrol->value.iec958.status[0] |
2395 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
2396 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
2397 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
2398 val = convert_from_spdif_status(codec->spdif_status);
2399 val |= codec->spdif_ctls & 1;
2400 change = codec->spdif_ctls != val;
2401 codec->spdif_ctls = val;
2402
Takashi Iwai2f728532008-09-25 16:32:41 +02002403 if (change)
2404 set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
Ingo Molnar62932df2006-01-16 16:34:20 +01002406 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 return change;
2408}
2409
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002410#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
Takashi Iwai0ba21762007-04-16 11:29:14 +02002412static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
2413 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414{
2415 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2416
Takashi Iwai0ba21762007-04-16 11:29:14 +02002417 ucontrol->value.integer.value[0] = codec->spdif_ctls & AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 return 0;
2419}
2420
Takashi Iwai0ba21762007-04-16 11:29:14 +02002421static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
2422 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423{
2424 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2425 hda_nid_t nid = kcontrol->private_value;
2426 unsigned short val;
2427 int change;
2428
Ingo Molnar62932df2006-01-16 16:34:20 +01002429 mutex_lock(&codec->spdif_mutex);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002430 val = codec->spdif_ctls & ~AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 if (ucontrol->value.integer.value[0])
Takashi Iwai0ba21762007-04-16 11:29:14 +02002432 val |= AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 change = codec->spdif_ctls != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002434 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 codec->spdif_ctls = val;
Takashi Iwai2f728532008-09-25 16:32:41 +02002436 set_dig_out_convert(codec, nid, val & 0xff, -1);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002437 /* unmute amp switch (if any) */
2438 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
Takashi Iwai47fd8302007-08-10 17:11:07 +02002439 (val & AC_DIG1_ENABLE))
2440 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
2441 HDA_AMP_MUTE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 }
Ingo Molnar62932df2006-01-16 16:34:20 +01002443 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 return change;
2445}
2446
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002447static struct snd_kcontrol_new dig_mixes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 {
2449 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2450 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002451 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 .info = snd_hda_spdif_mask_info,
2453 .get = snd_hda_spdif_cmask_get,
2454 },
2455 {
2456 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2457 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002458 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 .info = snd_hda_spdif_mask_info,
2460 .get = snd_hda_spdif_pmask_get,
2461 },
2462 {
2463 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002464 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 .info = snd_hda_spdif_mask_info,
2466 .get = snd_hda_spdif_default_get,
2467 .put = snd_hda_spdif_default_put,
2468 },
2469 {
2470 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002471 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 .info = snd_hda_spdif_out_switch_info,
2473 .get = snd_hda_spdif_out_switch_get,
2474 .put = snd_hda_spdif_out_switch_put,
2475 },
2476 { } /* end */
2477};
2478
Takashi Iwai09f99702008-02-04 12:31:13 +01002479#define SPDIF_MAX_IDX 4 /* 4 instances should be enough to probe */
2480
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481/**
2482 * snd_hda_create_spdif_out_ctls - create Output SPDIF-related controls
2483 * @codec: the HDA codec
2484 * @nid: audio out widget NID
2485 *
2486 * Creates controls related with the SPDIF output.
2487 * Called from each patch supporting the SPDIF out.
2488 *
2489 * Returns 0 if successful, or a negative error code.
2490 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002491int snd_hda_create_spdif_out_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492{
2493 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002494 struct snd_kcontrol *kctl;
2495 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01002496 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
Takashi Iwai09f99702008-02-04 12:31:13 +01002498 for (idx = 0; idx < SPDIF_MAX_IDX; idx++) {
2499 if (!_snd_hda_find_mixer_ctl(codec, "IEC958 Playback Switch",
2500 idx))
2501 break;
2502 }
2503 if (idx >= SPDIF_MAX_IDX) {
2504 printk(KERN_ERR "hda_codec: too many IEC958 outputs\n");
2505 return -EBUSY;
2506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
2508 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaib91f0802008-11-04 08:43:08 +01002509 if (!kctl)
2510 return -ENOMEM;
Takashi Iwai09f99702008-02-04 12:31:13 +01002511 kctl->id.index = idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 kctl->private_value = nid;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002513 err = snd_hda_ctl_add(codec, nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002514 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 return err;
2516 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002517 codec->spdif_ctls =
Andrew Paprocki3982d172007-12-19 12:13:44 +01002518 snd_hda_codec_read(codec, nid, 0,
2519 AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 codec->spdif_status = convert_to_spdif_status(codec->spdif_ctls);
2521 return 0;
2522}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002523EXPORT_SYMBOL_HDA(snd_hda_create_spdif_out_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
2525/*
Takashi Iwai9a081602008-02-12 18:37:26 +01002526 * SPDIF sharing with analog output
2527 */
2528static int spdif_share_sw_get(struct snd_kcontrol *kcontrol,
2529 struct snd_ctl_elem_value *ucontrol)
2530{
2531 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2532 ucontrol->value.integer.value[0] = mout->share_spdif;
2533 return 0;
2534}
2535
2536static int spdif_share_sw_put(struct snd_kcontrol *kcontrol,
2537 struct snd_ctl_elem_value *ucontrol)
2538{
2539 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2540 mout->share_spdif = !!ucontrol->value.integer.value[0];
2541 return 0;
2542}
2543
2544static struct snd_kcontrol_new spdif_share_sw = {
2545 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2546 .name = "IEC958 Default PCM Playback Switch",
2547 .info = snd_ctl_boolean_mono_info,
2548 .get = spdif_share_sw_get,
2549 .put = spdif_share_sw_put,
2550};
2551
Takashi Iwaid5191e52009-11-16 14:58:17 +01002552/**
2553 * snd_hda_create_spdif_share_sw - create Default PCM switch
2554 * @codec: the HDA codec
2555 * @mout: multi-out instance
2556 */
Takashi Iwai9a081602008-02-12 18:37:26 +01002557int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
2558 struct hda_multi_out *mout)
2559{
2560 if (!mout->dig_out_nid)
2561 return 0;
2562 /* ATTENTION: here mout is passed as private_data, instead of codec */
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002563 return snd_hda_ctl_add(codec, mout->dig_out_nid,
2564 snd_ctl_new1(&spdif_share_sw, mout));
Takashi Iwai9a081602008-02-12 18:37:26 +01002565}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002566EXPORT_SYMBOL_HDA(snd_hda_create_spdif_share_sw);
Takashi Iwai9a081602008-02-12 18:37:26 +01002567
2568/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 * SPDIF input
2570 */
2571
2572#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
2573
Takashi Iwai0ba21762007-04-16 11:29:14 +02002574static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
2575 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576{
2577 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2578
2579 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
2580 return 0;
2581}
2582
Takashi Iwai0ba21762007-04-16 11:29:14 +02002583static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
2584 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585{
2586 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2587 hda_nid_t nid = kcontrol->private_value;
2588 unsigned int val = !!ucontrol->value.integer.value[0];
2589 int change;
2590
Ingo Molnar62932df2006-01-16 16:34:20 +01002591 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002593 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 codec->spdif_in_enable = val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002595 snd_hda_codec_write_cache(codec, nid, 0,
2596 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 }
Ingo Molnar62932df2006-01-16 16:34:20 +01002598 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 return change;
2600}
2601
Takashi Iwai0ba21762007-04-16 11:29:14 +02002602static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
2603 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604{
2605 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2606 hda_nid_t nid = kcontrol->private_value;
2607 unsigned short val;
2608 unsigned int sbits;
2609
Andrew Paprocki3982d172007-12-19 12:13:44 +01002610 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 sbits = convert_to_spdif_status(val);
2612 ucontrol->value.iec958.status[0] = sbits;
2613 ucontrol->value.iec958.status[1] = sbits >> 8;
2614 ucontrol->value.iec958.status[2] = sbits >> 16;
2615 ucontrol->value.iec958.status[3] = sbits >> 24;
2616 return 0;
2617}
2618
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002619static struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 {
2621 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002622 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 .info = snd_hda_spdif_in_switch_info,
2624 .get = snd_hda_spdif_in_switch_get,
2625 .put = snd_hda_spdif_in_switch_put,
2626 },
2627 {
2628 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2629 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002630 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 .info = snd_hda_spdif_mask_info,
2632 .get = snd_hda_spdif_in_status_get,
2633 },
2634 { } /* end */
2635};
2636
2637/**
2638 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
2639 * @codec: the HDA codec
2640 * @nid: audio in widget NID
2641 *
2642 * Creates controls related with the SPDIF input.
2643 * Called from each patch supporting the SPDIF in.
2644 *
2645 * Returns 0 if successful, or a negative error code.
2646 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002647int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648{
2649 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002650 struct snd_kcontrol *kctl;
2651 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01002652 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653
Takashi Iwai09f99702008-02-04 12:31:13 +01002654 for (idx = 0; idx < SPDIF_MAX_IDX; idx++) {
2655 if (!_snd_hda_find_mixer_ctl(codec, "IEC958 Capture Switch",
2656 idx))
2657 break;
2658 }
2659 if (idx >= SPDIF_MAX_IDX) {
2660 printk(KERN_ERR "hda_codec: too many IEC958 inputs\n");
2661 return -EBUSY;
2662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
2664 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaic8dcdf82009-02-06 16:21:20 +01002665 if (!kctl)
2666 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 kctl->private_value = nid;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002668 err = snd_hda_ctl_add(codec, nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002669 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 return err;
2671 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002672 codec->spdif_in_enable =
Andrew Paprocki3982d172007-12-19 12:13:44 +01002673 snd_hda_codec_read(codec, nid, 0,
2674 AC_VERB_GET_DIGI_CONVERT_1, 0) &
Takashi Iwai0ba21762007-04-16 11:29:14 +02002675 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 return 0;
2677}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002678EXPORT_SYMBOL_HDA(snd_hda_create_spdif_in_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
Takashi Iwaicb53c622007-08-10 17:21:45 +02002680#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002681/*
2682 * command cache
2683 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002685/* build a 32bit cache key with the widget id and the command parameter */
2686#define build_cmd_cache_key(nid, verb) ((verb << 8) | nid)
2687#define get_cmd_cache_nid(key) ((key) & 0xff)
2688#define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff)
2689
2690/**
2691 * snd_hda_codec_write_cache - send a single command with caching
2692 * @codec: the HDA codec
2693 * @nid: NID to send the command
2694 * @direct: direct flag
2695 * @verb: the verb to send
2696 * @parm: the parameter for the verb
2697 *
2698 * Send a single command without waiting for response.
2699 *
2700 * Returns 0 if successful, or a negative error code.
2701 */
2702int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid,
2703 int direct, unsigned int verb, unsigned int parm)
2704{
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02002705 int err = snd_hda_codec_write(codec, nid, direct, verb, parm);
2706 struct hda_cache_head *c;
2707 u32 key;
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002708
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02002709 if (err < 0)
2710 return err;
2711 /* parm may contain the verb stuff for get/set amp */
2712 verb = verb | (parm >> 8);
2713 parm &= 0xff;
2714 key = build_cmd_cache_key(nid, verb);
2715 mutex_lock(&codec->bus->cmd_mutex);
2716 c = get_alloc_hash(&codec->cmd_cache, key);
2717 if (c)
2718 c->val = parm;
2719 mutex_unlock(&codec->bus->cmd_mutex);
2720 return 0;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002721}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002722EXPORT_SYMBOL_HDA(snd_hda_codec_write_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002723
Takashi Iwaid5191e52009-11-16 14:58:17 +01002724/**
2725 * snd_hda_codec_resume_cache - Resume the all commands from the cache
2726 * @codec: HD-audio codec
2727 *
2728 * Execute all verbs recorded in the command caches to resume.
2729 */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002730void snd_hda_codec_resume_cache(struct hda_codec *codec)
2731{
Takashi Iwai603c4012008-07-30 15:01:44 +02002732 struct hda_cache_head *buffer = codec->cmd_cache.buf.list;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002733 int i;
2734
Takashi Iwai603c4012008-07-30 15:01:44 +02002735 for (i = 0; i < codec->cmd_cache.buf.used; i++, buffer++) {
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002736 u32 key = buffer->key;
2737 if (!key)
2738 continue;
2739 snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0,
2740 get_cmd_cache_cmd(key), buffer->val);
2741 }
2742}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002743EXPORT_SYMBOL_HDA(snd_hda_codec_resume_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002744
2745/**
2746 * snd_hda_sequence_write_cache - sequence writes with caching
2747 * @codec: the HDA codec
2748 * @seq: VERB array to send
2749 *
2750 * Send the commands sequentially from the given array.
2751 * Thte commands are recorded on cache for power-save and resume.
2752 * The array must be terminated with NID=0.
2753 */
2754void snd_hda_sequence_write_cache(struct hda_codec *codec,
2755 const struct hda_verb *seq)
2756{
2757 for (; seq->nid; seq++)
2758 snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb,
2759 seq->param);
2760}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002761EXPORT_SYMBOL_HDA(snd_hda_sequence_write_cache);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002762#endif /* SND_HDA_NEEDS_RESUME */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002763
Takashi Iwai54d17402005-11-21 16:33:22 +01002764/*
2765 * set power state of the codec
2766 */
2767static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2768 unsigned int power_state)
2769{
Takashi Iwaicb53c622007-08-10 17:21:45 +02002770 hda_nid_t nid;
2771 int i;
Takashi Iwai54d17402005-11-21 16:33:22 +01002772
Takashi Iwai05ff7e12009-07-22 12:39:24 +02002773 /* this delay seems necessary to avoid click noise at power-down */
2774 if (power_state == AC_PWRST_D3)
2775 msleep(100);
2776 snd_hda_codec_read(codec, fg, 0, AC_VERB_SET_POWER_STATE,
Takashi Iwai54d17402005-11-21 16:33:22 +01002777 power_state);
Takashi Iwai05ff7e12009-07-22 12:39:24 +02002778 /* partial workaround for "azx_get_response timeout" */
Zhang, Ruidd2b4a72010-02-24 09:38:49 +08002779 if (power_state == AC_PWRST_D0 &&
2780 (codec->vendor_id & 0xffff0000) == 0x14f10000)
Takashi Iwai05ff7e12009-07-22 12:39:24 +02002781 msleep(10);
Takashi Iwai54d17402005-11-21 16:33:22 +01002782
Takashi Iwaicb53c622007-08-10 17:21:45 +02002783 nid = codec->start_nid;
2784 for (i = 0; i < codec->num_nodes; i++, nid++) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01002785 unsigned int wcaps = get_wcaps(codec, nid);
2786 if (wcaps & AC_WCAP_POWER) {
Takashi Iwaia22d5432009-07-27 12:54:26 +02002787 unsigned int wid_type = get_wcaps_type(wcaps);
Takashi Iwaia3b48c82009-04-21 13:37:29 +02002788 if (power_state == AC_PWRST_D3 &&
2789 wid_type == AC_WID_PIN) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01002790 unsigned int pincap;
2791 /*
2792 * don't power down the widget if it controls
2793 * eapd and EAPD_BTLENABLE is set.
2794 */
Takashi Iwai14bafe32009-03-23 16:35:39 +01002795 pincap = snd_hda_query_pin_caps(codec, nid);
Takashi Iwai7eba5c92007-11-14 14:53:42 +01002796 if (pincap & AC_PINCAP_EAPD) {
2797 int eapd = snd_hda_codec_read(codec,
2798 nid, 0,
2799 AC_VERB_GET_EAPD_BTLENABLE, 0);
2800 eapd &= 0x02;
Takashi Iwaia3b48c82009-04-21 13:37:29 +02002801 if (eapd)
Takashi Iwai7eba5c92007-11-14 14:53:42 +01002802 continue;
2803 }
Takashi Iwai1194b5b2007-10-10 10:04:26 +02002804 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002805 snd_hda_codec_write(codec, nid, 0,
2806 AC_VERB_SET_POWER_STATE,
2807 power_state);
Takashi Iwai1194b5b2007-10-10 10:04:26 +02002808 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002809 }
2810
Takashi Iwaicb53c622007-08-10 17:21:45 +02002811 if (power_state == AC_PWRST_D0) {
2812 unsigned long end_time;
2813 int state;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002814 /* wait until the codec reachs to D0 */
2815 end_time = jiffies + msecs_to_jiffies(500);
2816 do {
2817 state = snd_hda_codec_read(codec, fg, 0,
2818 AC_VERB_GET_POWER_STATE, 0);
2819 if (state == power_state)
2820 break;
2821 msleep(1);
2822 } while (time_after_eq(end_time, jiffies));
2823 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002824}
2825
Takashi Iwai11aeff02008-07-30 15:01:46 +02002826#ifdef CONFIG_SND_HDA_HWDEP
2827/* execute additional init verbs */
2828static void hda_exec_init_verbs(struct hda_codec *codec)
2829{
2830 if (codec->init_verbs.list)
2831 snd_hda_sequence_write(codec, codec->init_verbs.list);
2832}
2833#else
2834static inline void hda_exec_init_verbs(struct hda_codec *codec) {}
2835#endif
2836
Takashi Iwaicb53c622007-08-10 17:21:45 +02002837#ifdef SND_HDA_NEEDS_RESUME
2838/*
2839 * call suspend and power-down; used both from PM and power-save
2840 */
2841static void hda_call_codec_suspend(struct hda_codec *codec)
2842{
2843 if (codec->patch_ops.suspend)
2844 codec->patch_ops.suspend(codec, PMSG_SUSPEND);
2845 hda_set_power_state(codec,
2846 codec->afg ? codec->afg : codec->mfg,
2847 AC_PWRST_D3);
2848#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwaia2f63092009-11-11 09:34:25 +01002849 snd_hda_update_power_acct(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002850 cancel_delayed_work(&codec->power_work);
Takashi Iwai95e99fd2007-08-13 15:29:04 +02002851 codec->power_on = 0;
Takashi Iwaia221e282007-08-16 16:35:33 +02002852 codec->power_transition = 0;
Takashi Iwaia2f63092009-11-11 09:34:25 +01002853 codec->power_jiffies = jiffies;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002854#endif
2855}
2856
2857/*
2858 * kick up codec; used both from PM and power-save
2859 */
2860static void hda_call_codec_resume(struct hda_codec *codec)
2861{
2862 hda_set_power_state(codec,
2863 codec->afg ? codec->afg : codec->mfg,
2864 AC_PWRST_D0);
Takashi Iwai3be14142009-02-20 14:11:16 +01002865 restore_pincfgs(codec); /* restore all current pin configs */
Takashi Iwai11aeff02008-07-30 15:01:46 +02002866 hda_exec_init_verbs(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002867 if (codec->patch_ops.resume)
2868 codec->patch_ops.resume(codec);
2869 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02002870 if (codec->patch_ops.init)
2871 codec->patch_ops.init(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002872 snd_hda_codec_resume_amp(codec);
2873 snd_hda_codec_resume_cache(codec);
2874 }
2875}
2876#endif /* SND_HDA_NEEDS_RESUME */
2877
Takashi Iwai54d17402005-11-21 16:33:22 +01002878
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879/**
2880 * snd_hda_build_controls - build mixer controls
2881 * @bus: the BUS
2882 *
2883 * Creates mixer controls for each codec included in the bus.
2884 *
2885 * Returns 0 if successful, otherwise a negative error code.
2886 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +01002887int /*__devinit*/ snd_hda_build_controls(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002889 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
Takashi Iwai0ba21762007-04-16 11:29:14 +02002891 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002892 int err = snd_hda_codec_build_controls(codec);
Takashi Iwaif93d4612009-03-02 10:44:15 +01002893 if (err < 0) {
Takashi Iwai28d1a852010-03-15 09:05:46 +01002894 printk(KERN_ERR "hda_codec: cannot build controls "
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002895 "for #%d (error %d)\n", codec->addr, err);
Takashi Iwaif93d4612009-03-02 10:44:15 +01002896 err = snd_hda_codec_reset(codec);
2897 if (err < 0) {
2898 printk(KERN_ERR
2899 "hda_codec: cannot revert codec\n");
2900 return err;
2901 }
2902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002904 return 0;
2905}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002906EXPORT_SYMBOL_HDA(snd_hda_build_controls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002908int snd_hda_codec_build_controls(struct hda_codec *codec)
2909{
2910 int err = 0;
Takashi Iwai11aeff02008-07-30 15:01:46 +02002911 hda_exec_init_verbs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002912 /* continue to initialize... */
2913 if (codec->patch_ops.init)
2914 err = codec->patch_ops.init(codec);
2915 if (!err && codec->patch_ops.build_controls)
2916 err = codec->patch_ops.build_controls(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002917 if (err < 0)
2918 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 return 0;
2920}
2921
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922/*
2923 * stream formats
2924 */
Takashi Iwaibefdf312005-08-22 13:57:55 +02002925struct hda_rate_tbl {
2926 unsigned int hz;
2927 unsigned int alsa_bits;
2928 unsigned int hda_fmt;
2929};
2930
2931static struct hda_rate_tbl rate_bits[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 /* rate in Hz, ALSA rate bitmask, HDA format value */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02002933
2934 /* autodetected value used in snd_hda_query_supported_pcm */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 { 8000, SNDRV_PCM_RATE_8000, 0x0500 }, /* 1/6 x 48 */
2936 { 11025, SNDRV_PCM_RATE_11025, 0x4300 }, /* 1/4 x 44 */
2937 { 16000, SNDRV_PCM_RATE_16000, 0x0200 }, /* 1/3 x 48 */
2938 { 22050, SNDRV_PCM_RATE_22050, 0x4100 }, /* 1/2 x 44 */
2939 { 32000, SNDRV_PCM_RATE_32000, 0x0a00 }, /* 2/3 x 48 */
2940 { 44100, SNDRV_PCM_RATE_44100, 0x4000 }, /* 44 */
2941 { 48000, SNDRV_PCM_RATE_48000, 0x0000 }, /* 48 */
2942 { 88200, SNDRV_PCM_RATE_88200, 0x4800 }, /* 2 x 44 */
2943 { 96000, SNDRV_PCM_RATE_96000, 0x0800 }, /* 2 x 48 */
2944 { 176400, SNDRV_PCM_RATE_176400, 0x5800 },/* 4 x 44 */
2945 { 192000, SNDRV_PCM_RATE_192000, 0x1800 }, /* 4 x 48 */
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002946#define AC_PAR_PCM_RATE_BITS 11
2947 /* up to bits 10, 384kHZ isn't supported properly */
2948
2949 /* not autodetected value */
2950 { 9600, SNDRV_PCM_RATE_KNOT, 0x0400 }, /* 1/5 x 48 */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02002951
Takashi Iwaibefdf312005-08-22 13:57:55 +02002952 { 0 } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953};
2954
2955/**
2956 * snd_hda_calc_stream_format - calculate format bitset
2957 * @rate: the sample rate
2958 * @channels: the number of channels
2959 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
2960 * @maxbps: the max. bps
2961 *
2962 * Calculate the format bitset from the given rate, channels and th PCM format.
2963 *
2964 * Return zero if invalid.
2965 */
2966unsigned int snd_hda_calc_stream_format(unsigned int rate,
2967 unsigned int channels,
2968 unsigned int format,
2969 unsigned int maxbps)
2970{
2971 int i;
2972 unsigned int val = 0;
2973
Takashi Iwaibefdf312005-08-22 13:57:55 +02002974 for (i = 0; rate_bits[i].hz; i++)
2975 if (rate_bits[i].hz == rate) {
2976 val = rate_bits[i].hda_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 break;
2978 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002979 if (!rate_bits[i].hz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 snd_printdd("invalid rate %d\n", rate);
2981 return 0;
2982 }
2983
2984 if (channels == 0 || channels > 8) {
2985 snd_printdd("invalid channels %d\n", channels);
2986 return 0;
2987 }
2988 val |= channels - 1;
2989
2990 switch (snd_pcm_format_width(format)) {
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002991 case 8:
2992 val |= 0x00;
2993 break;
2994 case 16:
2995 val |= 0x10;
2996 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 case 20:
2998 case 24:
2999 case 32:
Takashi Iwaib0bb3aa2009-07-03 23:25:37 +02003000 if (maxbps >= 32 || format == SNDRV_PCM_FORMAT_FLOAT_LE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 val |= 0x40;
3002 else if (maxbps >= 24)
3003 val |= 0x30;
3004 else
3005 val |= 0x20;
3006 break;
3007 default:
Takashi Iwai0ba21762007-04-16 11:29:14 +02003008 snd_printdd("invalid format width %d\n",
3009 snd_pcm_format_width(format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 return 0;
3011 }
3012
3013 return val;
3014}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003015EXPORT_SYMBOL_HDA(snd_hda_calc_stream_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003017static unsigned int get_pcm_param(struct hda_codec *codec, hda_nid_t nid)
3018{
3019 unsigned int val = 0;
3020 if (nid != codec->afg &&
3021 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD))
3022 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
3023 if (!val || val == -1)
3024 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
3025 if (!val || val == -1)
3026 return 0;
3027 return val;
3028}
3029
3030static unsigned int query_pcm_param(struct hda_codec *codec, hda_nid_t nid)
3031{
3032 return query_caps_hash(codec, nid, HDA_HASH_PARPCM_KEY(nid),
3033 get_pcm_param);
3034}
3035
3036static unsigned int get_stream_param(struct hda_codec *codec, hda_nid_t nid)
3037{
3038 unsigned int streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
3039 if (!streams || streams == -1)
3040 streams = snd_hda_param_read(codec, codec->afg, AC_PAR_STREAM);
3041 if (!streams || streams == -1)
3042 return 0;
3043 return streams;
3044}
3045
3046static unsigned int query_stream_param(struct hda_codec *codec, hda_nid_t nid)
3047{
3048 return query_caps_hash(codec, nid, HDA_HASH_PARSTR_KEY(nid),
3049 get_stream_param);
3050}
3051
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052/**
3053 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
3054 * @codec: the HDA codec
3055 * @nid: NID to query
3056 * @ratesp: the pointer to store the detected rate bitflags
3057 * @formatsp: the pointer to store the detected formats
3058 * @bpsp: the pointer to store the detected format widths
3059 *
3060 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
3061 * or @bsps argument is ignored.
3062 *
3063 * Returns 0 if successful, otherwise a negative error code.
3064 */
Takashi Iwai986862bd2008-11-27 12:40:13 +01003065static int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 u32 *ratesp, u64 *formatsp, unsigned int *bpsp)
3067{
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003068 unsigned int i, val, wcaps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003070 wcaps = get_wcaps(codec, nid);
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003071 val = query_pcm_param(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072
3073 if (ratesp) {
3074 u32 rates = 0;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02003075 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 if (val & (1 << i))
Takashi Iwaibefdf312005-08-22 13:57:55 +02003077 rates |= rate_bits[i].alsa_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 }
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003079 if (rates == 0) {
3080 snd_printk(KERN_ERR "hda_codec: rates == 0 "
3081 "(nid=0x%x, val=0x%x, ovrd=%i)\n",
3082 nid, val,
3083 (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0);
3084 return -EIO;
3085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 *ratesp = rates;
3087 }
3088
3089 if (formatsp || bpsp) {
3090 u64 formats = 0;
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003091 unsigned int streams, bps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003093 streams = query_stream_param(codec, nid);
3094 if (!streams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
3097 bps = 0;
3098 if (streams & AC_SUPFMT_PCM) {
3099 if (val & AC_SUPPCM_BITS_8) {
3100 formats |= SNDRV_PCM_FMTBIT_U8;
3101 bps = 8;
3102 }
3103 if (val & AC_SUPPCM_BITS_16) {
3104 formats |= SNDRV_PCM_FMTBIT_S16_LE;
3105 bps = 16;
3106 }
3107 if (wcaps & AC_WCAP_DIGITAL) {
3108 if (val & AC_SUPPCM_BITS_32)
3109 formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
3110 if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24))
3111 formats |= SNDRV_PCM_FMTBIT_S32_LE;
3112 if (val & AC_SUPPCM_BITS_24)
3113 bps = 24;
3114 else if (val & AC_SUPPCM_BITS_20)
3115 bps = 20;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003116 } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24|
3117 AC_SUPPCM_BITS_32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 formats |= SNDRV_PCM_FMTBIT_S32_LE;
3119 if (val & AC_SUPPCM_BITS_32)
3120 bps = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 else if (val & AC_SUPPCM_BITS_24)
3122 bps = 24;
Nicolas Graziano33ef76512006-09-19 14:23:14 +02003123 else if (val & AC_SUPPCM_BITS_20)
3124 bps = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 }
3126 }
Takashi Iwaib5025c52009-07-01 18:05:27 +02003127 if (streams & AC_SUPFMT_FLOAT32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
Takashi Iwaib0bb3aa2009-07-03 23:25:37 +02003129 if (!bps)
3130 bps = 32;
Takashi Iwaib5025c52009-07-01 18:05:27 +02003131 }
3132 if (streams == AC_SUPFMT_AC3) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003133 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 /* temporary hack: we have still no proper support
3135 * for the direct AC3 stream...
3136 */
3137 formats |= SNDRV_PCM_FMTBIT_U8;
3138 bps = 8;
3139 }
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003140 if (formats == 0) {
3141 snd_printk(KERN_ERR "hda_codec: formats == 0 "
3142 "(nid=0x%x, val=0x%x, ovrd=%i, "
3143 "streams=0x%x)\n",
3144 nid, val,
3145 (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0,
3146 streams);
3147 return -EIO;
3148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 if (formatsp)
3150 *formatsp = formats;
3151 if (bpsp)
3152 *bpsp = bps;
3153 }
3154
3155 return 0;
3156}
3157
3158/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01003159 * snd_hda_is_supported_format - Check the validity of the format
3160 * @codec: HD-audio codec
3161 * @nid: NID to check
3162 * @format: the HD-audio format value to check
3163 *
3164 * Check whether the given node supports the format value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 *
3166 * Returns 1 if supported, 0 if not.
3167 */
3168int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
3169 unsigned int format)
3170{
3171 int i;
3172 unsigned int val = 0, rate, stream;
3173
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003174 val = query_pcm_param(codec, nid);
3175 if (!val)
3176 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177
3178 rate = format & 0xff00;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02003179 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++)
Takashi Iwaibefdf312005-08-22 13:57:55 +02003180 if (rate_bits[i].hda_fmt == rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 if (val & (1 << i))
3182 break;
3183 return 0;
3184 }
Takashi Iwaia961f9f2007-04-12 13:08:09 +02003185 if (i >= AC_PAR_PCM_RATE_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 return 0;
3187
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003188 stream = query_stream_param(codec, nid);
3189 if (!stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 return 0;
3191
3192 if (stream & AC_SUPFMT_PCM) {
3193 switch (format & 0xf0) {
3194 case 0x00:
Takashi Iwai0ba21762007-04-16 11:29:14 +02003195 if (!(val & AC_SUPPCM_BITS_8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 return 0;
3197 break;
3198 case 0x10:
Takashi Iwai0ba21762007-04-16 11:29:14 +02003199 if (!(val & AC_SUPPCM_BITS_16))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 return 0;
3201 break;
3202 case 0x20:
Takashi Iwai0ba21762007-04-16 11:29:14 +02003203 if (!(val & AC_SUPPCM_BITS_20))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 return 0;
3205 break;
3206 case 0x30:
Takashi Iwai0ba21762007-04-16 11:29:14 +02003207 if (!(val & AC_SUPPCM_BITS_24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 return 0;
3209 break;
3210 case 0x40:
Takashi Iwai0ba21762007-04-16 11:29:14 +02003211 if (!(val & AC_SUPPCM_BITS_32))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 return 0;
3213 break;
3214 default:
3215 return 0;
3216 }
3217 } else {
3218 /* FIXME: check for float32 and AC3? */
3219 }
3220
3221 return 1;
3222}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003223EXPORT_SYMBOL_HDA(snd_hda_is_supported_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224
3225/*
3226 * PCM stuff
3227 */
3228static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
3229 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003230 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231{
3232 return 0;
3233}
3234
3235static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
3236 struct hda_codec *codec,
3237 unsigned int stream_tag,
3238 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003239 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240{
3241 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
3242 return 0;
3243}
3244
3245static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
3246 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003247 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248{
Takashi Iwai888afa12008-03-18 09:57:50 +01003249 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 return 0;
3251}
3252
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003253static int set_pcm_default_values(struct hda_codec *codec,
3254 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255{
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003256 int err;
3257
Takashi Iwai0ba21762007-04-16 11:29:14 +02003258 /* query support PCM information from the given NID */
3259 if (info->nid && (!info->rates || !info->formats)) {
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003260 err = snd_hda_query_supported_pcm(codec, info->nid,
Takashi Iwai0ba21762007-04-16 11:29:14 +02003261 info->rates ? NULL : &info->rates,
3262 info->formats ? NULL : &info->formats,
3263 info->maxbps ? NULL : &info->maxbps);
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003264 if (err < 0)
3265 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 }
3267 if (info->ops.open == NULL)
3268 info->ops.open = hda_pcm_default_open_close;
3269 if (info->ops.close == NULL)
3270 info->ops.close = hda_pcm_default_open_close;
3271 if (info->ops.prepare == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02003272 if (snd_BUG_ON(!info->nid))
3273 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 info->ops.prepare = hda_pcm_default_prepare;
3275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 if (info->ops.cleanup == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02003277 if (snd_BUG_ON(!info->nid))
3278 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 info->ops.cleanup = hda_pcm_default_cleanup;
3280 }
3281 return 0;
3282}
3283
Takashi Iwaid5191e52009-11-16 14:58:17 +01003284/* global */
Jaroslav Kyselae3303232009-11-10 14:53:02 +01003285const char *snd_hda_pcm_type_name[HDA_PCM_NTYPES] = {
3286 "Audio", "SPDIF", "HDMI", "Modem"
3287};
3288
Takashi Iwai176d5332008-07-30 15:01:44 +02003289/*
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003290 * get the empty PCM device number to assign
Takashi Iwaic8936222010-01-28 17:08:53 +01003291 *
3292 * note the max device number is limited by HDA_MAX_PCMS, currently 10
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003293 */
3294static int get_empty_pcm_device(struct hda_bus *bus, int type)
3295{
Wu Fengguangf5d6def2009-10-30 11:38:26 +01003296 /* audio device indices; not linear to keep compatibility */
3297 static int audio_idx[HDA_PCM_NTYPES][5] = {
3298 [HDA_PCM_TYPE_AUDIO] = { 0, 2, 4, 5, -1 },
3299 [HDA_PCM_TYPE_SPDIF] = { 1, -1 },
Wu Fengguang92608ba2009-10-30 11:40:03 +01003300 [HDA_PCM_TYPE_HDMI] = { 3, 7, 8, 9, -1 },
Wu Fengguangf5d6def2009-10-30 11:38:26 +01003301 [HDA_PCM_TYPE_MODEM] = { 6, -1 },
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003302 };
Wu Fengguangf5d6def2009-10-30 11:38:26 +01003303 int i;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003304
Wu Fengguangf5d6def2009-10-30 11:38:26 +01003305 if (type >= HDA_PCM_NTYPES) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003306 snd_printk(KERN_WARNING "Invalid PCM type %d\n", type);
3307 return -EINVAL;
3308 }
Wu Fengguangf5d6def2009-10-30 11:38:26 +01003309
3310 for (i = 0; audio_idx[type][i] >= 0 ; i++)
3311 if (!test_and_set_bit(audio_idx[type][i], bus->pcm_dev_bits))
3312 return audio_idx[type][i];
3313
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003314 snd_printk(KERN_WARNING "Too many %s devices\n",
3315 snd_hda_pcm_type_name[type]);
Wu Fengguangf5d6def2009-10-30 11:38:26 +01003316 return -EAGAIN;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003317}
3318
3319/*
Takashi Iwai176d5332008-07-30 15:01:44 +02003320 * attach a new PCM stream
3321 */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003322static int snd_hda_attach_pcm(struct hda_codec *codec, struct hda_pcm *pcm)
Takashi Iwai176d5332008-07-30 15:01:44 +02003323{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003324 struct hda_bus *bus = codec->bus;
Takashi Iwai176d5332008-07-30 15:01:44 +02003325 struct hda_pcm_stream *info;
3326 int stream, err;
3327
Takashi Iwaib91f0802008-11-04 08:43:08 +01003328 if (snd_BUG_ON(!pcm->name))
Takashi Iwai176d5332008-07-30 15:01:44 +02003329 return -EINVAL;
3330 for (stream = 0; stream < 2; stream++) {
3331 info = &pcm->stream[stream];
3332 if (info->substreams) {
3333 err = set_pcm_default_values(codec, info);
3334 if (err < 0)
3335 return err;
3336 }
3337 }
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003338 return bus->ops.attach_pcm(bus, codec, pcm);
Takashi Iwai176d5332008-07-30 15:01:44 +02003339}
3340
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003341/* assign all PCMs of the given codec */
3342int snd_hda_codec_build_pcms(struct hda_codec *codec)
3343{
3344 unsigned int pcm;
3345 int err;
3346
3347 if (!codec->num_pcms) {
3348 if (!codec->patch_ops.build_pcms)
3349 return 0;
3350 err = codec->patch_ops.build_pcms(codec);
Takashi Iwai6e655bf2009-03-02 10:46:03 +01003351 if (err < 0) {
3352 printk(KERN_ERR "hda_codec: cannot build PCMs"
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003353 "for #%d (error %d)\n", codec->addr, err);
Takashi Iwai6e655bf2009-03-02 10:46:03 +01003354 err = snd_hda_codec_reset(codec);
3355 if (err < 0) {
3356 printk(KERN_ERR
3357 "hda_codec: cannot revert codec\n");
3358 return err;
3359 }
3360 }
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003361 }
3362 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
3363 struct hda_pcm *cpcm = &codec->pcm_info[pcm];
3364 int dev;
3365
3366 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
Takashi Iwai41b5b012009-01-20 18:21:23 +01003367 continue; /* no substreams assigned */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003368
3369 if (!cpcm->pcm) {
3370 dev = get_empty_pcm_device(codec->bus, cpcm->pcm_type);
3371 if (dev < 0)
Takashi Iwai6e655bf2009-03-02 10:46:03 +01003372 continue; /* no fatal error */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003373 cpcm->device = dev;
3374 err = snd_hda_attach_pcm(codec, cpcm);
Takashi Iwai6e655bf2009-03-02 10:46:03 +01003375 if (err < 0) {
3376 printk(KERN_ERR "hda_codec: cannot attach "
3377 "PCM stream %d for codec #%d\n",
3378 dev, codec->addr);
3379 continue; /* no fatal error */
3380 }
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003381 }
3382 }
3383 return 0;
3384}
3385
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386/**
3387 * snd_hda_build_pcms - build PCM information
3388 * @bus: the BUS
3389 *
3390 * Create PCM information for each codec included in the bus.
3391 *
3392 * The build_pcms codec patch is requested to set up codec->num_pcms and
3393 * codec->pcm_info properly. The array is referred by the top-level driver
3394 * to create its PCM instances.
3395 * The allocated codec->pcm_info should be released in codec->patch_ops.free
3396 * callback.
3397 *
3398 * At least, substreams, channels_min and channels_max must be filled for
3399 * each stream. substreams = 0 indicates that the stream doesn't exist.
3400 * When rates and/or formats are zero, the supported values are queried
3401 * from the given nid. The nid is used also by the default ops.prepare
3402 * and ops.cleanup callbacks.
3403 *
3404 * The driver needs to call ops.open in its open callback. Similarly,
3405 * ops.close is supposed to be called in the close callback.
3406 * ops.prepare should be called in the prepare or hw_params callback
3407 * with the proper parameters for set up.
3408 * ops.cleanup should be called in hw_free for clean up of streams.
3409 *
3410 * This function returns 0 if successfull, or a negative error code.
3411 */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003412int __devinit snd_hda_build_pcms(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413{
Takashi Iwai0ba21762007-04-16 11:29:14 +02003414 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415
Takashi Iwai0ba21762007-04-16 11:29:14 +02003416 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003417 int err = snd_hda_codec_build_pcms(codec);
3418 if (err < 0)
3419 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 }
3421 return 0;
3422}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003423EXPORT_SYMBOL_HDA(snd_hda_build_pcms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425/**
3426 * snd_hda_check_board_config - compare the current codec with the config table
3427 * @codec: the HDA codec
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003428 * @num_configs: number of config enums
3429 * @models: array of model name strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 * @tbl: configuration table, terminated by null entries
3431 *
3432 * Compares the modelname or PCI subsystem id of the current codec with the
3433 * given configuration table. If a matching entry is found, returns its
3434 * config value (supposed to be 0 or positive).
3435 *
3436 * If no entries are matching, the function returns a negative value.
3437 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02003438int snd_hda_check_board_config(struct hda_codec *codec,
3439 int num_configs, const char **models,
3440 const struct snd_pci_quirk *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441{
Takashi Iwaif44ac832008-07-30 15:01:45 +02003442 if (codec->modelname && models) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003443 int i;
3444 for (i = 0; i < num_configs; i++) {
3445 if (models[i] &&
Takashi Iwaif44ac832008-07-30 15:01:45 +02003446 !strcmp(codec->modelname, models[i])) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003447 snd_printd(KERN_INFO "hda_codec: model '%s' is "
3448 "selected\n", models[i]);
3449 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 }
3451 }
3452 }
3453
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003454 if (!codec->bus->pci || !tbl)
3455 return -1;
3456
3457 tbl = snd_pci_quirk_lookup(codec->bus->pci, tbl);
3458 if (!tbl)
3459 return -1;
3460 if (tbl->value >= 0 && tbl->value < num_configs) {
Takashi Iwai62cf8722008-05-20 12:15:15 +02003461#ifdef CONFIG_SND_DEBUG_VERBOSE
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003462 char tmp[10];
3463 const char *model = NULL;
3464 if (models)
3465 model = models[tbl->value];
3466 if (!model) {
3467 sprintf(tmp, "#%d", tbl->value);
3468 model = tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 }
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003470 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
3471 "for config %x:%x (%s)\n",
3472 model, tbl->subvendor, tbl->subdevice,
3473 (tbl->name ? tbl->name : "Unknown device"));
3474#endif
3475 return tbl->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 }
3477 return -1;
3478}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003479EXPORT_SYMBOL_HDA(snd_hda_check_board_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480
3481/**
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02003482 * snd_hda_check_board_codec_sid_config - compare the current codec
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003483 subsystem ID with the
3484 config table
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02003485
3486 This is important for Gateway notebooks with SB450 HDA Audio
3487 where the vendor ID of the PCI device is:
3488 ATI Technologies Inc SB450 HDA Audio [1002:437b]
3489 and the vendor/subvendor are found only at the codec.
3490
3491 * @codec: the HDA codec
3492 * @num_configs: number of config enums
3493 * @models: array of model name strings
3494 * @tbl: configuration table, terminated by null entries
3495 *
3496 * Compares the modelname or PCI subsystem id of the current codec with the
3497 * given configuration table. If a matching entry is found, returns its
3498 * config value (supposed to be 0 or positive).
3499 *
3500 * If no entries are matching, the function returns a negative value.
3501 */
3502int snd_hda_check_board_codec_sid_config(struct hda_codec *codec,
3503 int num_configs, const char **models,
3504 const struct snd_pci_quirk *tbl)
3505{
3506 const struct snd_pci_quirk *q;
3507
3508 /* Search for codec ID */
3509 for (q = tbl; q->subvendor; q++) {
3510 unsigned long vendorid = (q->subdevice) | (q->subvendor << 16);
3511
3512 if (vendorid == codec->subsystem_id)
3513 break;
3514 }
3515
3516 if (!q->subvendor)
3517 return -1;
3518
3519 tbl = q;
3520
3521 if (tbl->value >= 0 && tbl->value < num_configs) {
Takashi Iwaid94ff6b2009-09-02 00:20:21 +02003522#ifdef CONFIG_SND_DEBUG_VERBOSE
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02003523 char tmp[10];
3524 const char *model = NULL;
3525 if (models)
3526 model = models[tbl->value];
3527 if (!model) {
3528 sprintf(tmp, "#%d", tbl->value);
3529 model = tmp;
3530 }
3531 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
3532 "for config %x:%x (%s)\n",
3533 model, tbl->subvendor, tbl->subdevice,
3534 (tbl->name ? tbl->name : "Unknown device"));
3535#endif
3536 return tbl->value;
3537 }
3538 return -1;
3539}
3540EXPORT_SYMBOL_HDA(snd_hda_check_board_codec_sid_config);
3541
3542/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 * snd_hda_add_new_ctls - create controls from the array
3544 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003545 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546 *
3547 * This helper function creates and add new controls in the given array.
3548 * The array must be terminated with an empty entry as terminator.
3549 *
3550 * Returns 0 if successful, or a negative error code.
3551 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02003552int snd_hda_add_new_ctls(struct hda_codec *codec, struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553{
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01003554 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555
3556 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01003557 struct snd_kcontrol *kctl;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01003558 if (knew->iface == -1) /* skip this codec private value */
3559 continue;
Takashi Iwai54d17402005-11-21 16:33:22 +01003560 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003561 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01003562 return -ENOMEM;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01003563 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai54d17402005-11-21 16:33:22 +01003564 if (err < 0) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003565 if (!codec->addr)
Takashi Iwai54d17402005-11-21 16:33:22 +01003566 return err;
3567 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003568 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01003569 return -ENOMEM;
3570 kctl->id.device = codec->addr;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01003571 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003572 if (err < 0)
Takashi Iwai54d17402005-11-21 16:33:22 +01003573 return err;
3574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575 }
3576 return 0;
3577}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003578EXPORT_SYMBOL_HDA(snd_hda_add_new_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579
Takashi Iwaicb53c622007-08-10 17:21:45 +02003580#ifdef CONFIG_SND_HDA_POWER_SAVE
3581static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
3582 unsigned int power_state);
3583
3584static void hda_power_work(struct work_struct *work)
3585{
3586 struct hda_codec *codec =
3587 container_of(work, struct hda_codec, power_work.work);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003588 struct hda_bus *bus = codec->bus;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003589
Maxim Levitsky2e492462007-09-03 15:26:57 +02003590 if (!codec->power_on || codec->power_count) {
3591 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003592 return;
Maxim Levitsky2e492462007-09-03 15:26:57 +02003593 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02003594
3595 hda_call_codec_suspend(codec);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003596 if (bus->ops.pm_notify)
3597 bus->ops.pm_notify(bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003598}
3599
3600static void hda_keep_power_on(struct hda_codec *codec)
3601{
3602 codec->power_count++;
3603 codec->power_on = 1;
Takashi Iwaia2f63092009-11-11 09:34:25 +01003604 codec->power_jiffies = jiffies;
3605}
3606
Takashi Iwaid5191e52009-11-16 14:58:17 +01003607/* update the power on/off account with the current jiffies */
Takashi Iwaia2f63092009-11-11 09:34:25 +01003608void snd_hda_update_power_acct(struct hda_codec *codec)
3609{
3610 unsigned long delta = jiffies - codec->power_jiffies;
3611 if (codec->power_on)
3612 codec->power_on_acct += delta;
3613 else
3614 codec->power_off_acct += delta;
3615 codec->power_jiffies += delta;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003616}
3617
Takashi Iwaid5191e52009-11-16 14:58:17 +01003618/**
3619 * snd_hda_power_up - Power-up the codec
3620 * @codec: HD-audio codec
3621 *
3622 * Increment the power-up counter and power up the hardware really when
3623 * not turned on yet.
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003624 */
Takashi Iwaicb53c622007-08-10 17:21:45 +02003625void snd_hda_power_up(struct hda_codec *codec)
3626{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003627 struct hda_bus *bus = codec->bus;
3628
Takashi Iwaicb53c622007-08-10 17:21:45 +02003629 codec->power_count++;
Takashi Iwaia221e282007-08-16 16:35:33 +02003630 if (codec->power_on || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02003631 return;
3632
Takashi Iwaia2f63092009-11-11 09:34:25 +01003633 snd_hda_update_power_acct(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003634 codec->power_on = 1;
Takashi Iwaia2f63092009-11-11 09:34:25 +01003635 codec->power_jiffies = jiffies;
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003636 if (bus->ops.pm_notify)
3637 bus->ops.pm_notify(bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003638 hda_call_codec_resume(codec);
3639 cancel_delayed_work(&codec->power_work);
Takashi Iwaia221e282007-08-16 16:35:33 +02003640 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003641}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003642EXPORT_SYMBOL_HDA(snd_hda_power_up);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003643
3644#define power_save(codec) \
3645 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0)
Takashi Iwaicb53c622007-08-10 17:21:45 +02003646
Takashi Iwaid5191e52009-11-16 14:58:17 +01003647/**
3648 * snd_hda_power_down - Power-down the codec
3649 * @codec: HD-audio codec
3650 *
3651 * Decrement the power-up counter and schedules the power-off work if
3652 * the counter rearches to zero.
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003653 */
Takashi Iwaicb53c622007-08-10 17:21:45 +02003654void snd_hda_power_down(struct hda_codec *codec)
3655{
3656 --codec->power_count;
Takashi Iwaia221e282007-08-16 16:35:33 +02003657 if (!codec->power_on || codec->power_count || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02003658 return;
Takashi Iwaifee2fba2008-11-27 12:43:28 +01003659 if (power_save(codec)) {
Takashi Iwaia221e282007-08-16 16:35:33 +02003660 codec->power_transition = 1; /* avoid reentrance */
Takashi Iwaic107b412009-01-13 17:46:37 +01003661 queue_delayed_work(codec->bus->workq, &codec->power_work,
Takashi Iwaifee2fba2008-11-27 12:43:28 +01003662 msecs_to_jiffies(power_save(codec) * 1000));
Takashi Iwaia221e282007-08-16 16:35:33 +02003663 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02003664}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003665EXPORT_SYMBOL_HDA(snd_hda_power_down);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003666
Takashi Iwaid5191e52009-11-16 14:58:17 +01003667/**
3668 * snd_hda_check_amp_list_power - Check the amp list and update the power
3669 * @codec: HD-audio codec
3670 * @check: the object containing an AMP list and the status
3671 * @nid: NID to check / update
3672 *
3673 * Check whether the given NID is in the amp list. If it's in the list,
3674 * check the current AMP status, and update the the power-status according
3675 * to the mute status.
3676 *
3677 * This function is supposed to be set or called from the check_power_status
3678 * patch ops.
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003679 */
Takashi Iwaicb53c622007-08-10 17:21:45 +02003680int snd_hda_check_amp_list_power(struct hda_codec *codec,
3681 struct hda_loopback_check *check,
3682 hda_nid_t nid)
3683{
3684 struct hda_amp_list *p;
3685 int ch, v;
3686
3687 if (!check->amplist)
3688 return 0;
3689 for (p = check->amplist; p->nid; p++) {
3690 if (p->nid == nid)
3691 break;
3692 }
3693 if (!p->nid)
3694 return 0; /* nothing changed */
3695
3696 for (p = check->amplist; p->nid; p++) {
3697 for (ch = 0; ch < 2; ch++) {
3698 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
3699 p->idx);
3700 if (!(v & HDA_AMP_MUTE) && v > 0) {
3701 if (!check->power_on) {
3702 check->power_on = 1;
3703 snd_hda_power_up(codec);
3704 }
3705 return 1;
3706 }
3707 }
3708 }
3709 if (check->power_on) {
3710 check->power_on = 0;
3711 snd_hda_power_down(codec);
3712 }
3713 return 0;
3714}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003715EXPORT_SYMBOL_HDA(snd_hda_check_amp_list_power);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003716#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003718/*
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003719 * Channel mode helper
3720 */
Takashi Iwaid5191e52009-11-16 14:58:17 +01003721
3722/**
3723 * snd_hda_ch_mode_info - Info callback helper for the channel mode enum
3724 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003725int snd_hda_ch_mode_info(struct hda_codec *codec,
3726 struct snd_ctl_elem_info *uinfo,
3727 const struct hda_channel_mode *chmode,
3728 int num_chmodes)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003729{
3730 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3731 uinfo->count = 1;
3732 uinfo->value.enumerated.items = num_chmodes;
3733 if (uinfo->value.enumerated.item >= num_chmodes)
3734 uinfo->value.enumerated.item = num_chmodes - 1;
3735 sprintf(uinfo->value.enumerated.name, "%dch",
3736 chmode[uinfo->value.enumerated.item].channels);
3737 return 0;
3738}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003739EXPORT_SYMBOL_HDA(snd_hda_ch_mode_info);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003740
Takashi Iwaid5191e52009-11-16 14:58:17 +01003741/**
3742 * snd_hda_ch_mode_get - Get callback helper for the channel mode enum
3743 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003744int snd_hda_ch_mode_get(struct hda_codec *codec,
3745 struct snd_ctl_elem_value *ucontrol,
3746 const struct hda_channel_mode *chmode,
3747 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003748 int max_channels)
3749{
3750 int i;
3751
3752 for (i = 0; i < num_chmodes; i++) {
3753 if (max_channels == chmode[i].channels) {
3754 ucontrol->value.enumerated.item[0] = i;
3755 break;
3756 }
3757 }
3758 return 0;
3759}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003760EXPORT_SYMBOL_HDA(snd_hda_ch_mode_get);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003761
Takashi Iwaid5191e52009-11-16 14:58:17 +01003762/**
3763 * snd_hda_ch_mode_put - Put callback helper for the channel mode enum
3764 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003765int snd_hda_ch_mode_put(struct hda_codec *codec,
3766 struct snd_ctl_elem_value *ucontrol,
3767 const struct hda_channel_mode *chmode,
3768 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003769 int *max_channelsp)
3770{
3771 unsigned int mode;
3772
3773 mode = ucontrol->value.enumerated.item[0];
Takashi Iwai68ea7b22007-11-15 15:54:38 +01003774 if (mode >= num_chmodes)
3775 return -EINVAL;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003776 if (*max_channelsp == chmode[mode].channels)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003777 return 0;
3778 /* change the current channel setting */
3779 *max_channelsp = chmode[mode].channels;
3780 if (chmode[mode].sequence)
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003781 snd_hda_sequence_write_cache(codec, chmode[mode].sequence);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003782 return 1;
3783}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003784EXPORT_SYMBOL_HDA(snd_hda_ch_mode_put);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003785
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786/*
3787 * input MUX helper
3788 */
Takashi Iwaid5191e52009-11-16 14:58:17 +01003789
3790/**
3791 * snd_hda_input_mux_info_info - Info callback helper for the input-mux enum
3792 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003793int snd_hda_input_mux_info(const struct hda_input_mux *imux,
3794 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795{
3796 unsigned int index;
3797
3798 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3799 uinfo->count = 1;
3800 uinfo->value.enumerated.items = imux->num_items;
Takashi Iwai5513b0c2007-10-09 11:58:41 +02003801 if (!imux->num_items)
3802 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803 index = uinfo->value.enumerated.item;
3804 if (index >= imux->num_items)
3805 index = imux->num_items - 1;
3806 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
3807 return 0;
3808}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003809EXPORT_SYMBOL_HDA(snd_hda_input_mux_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810
Takashi Iwaid5191e52009-11-16 14:58:17 +01003811/**
3812 * snd_hda_input_mux_info_put - Put callback helper for the input-mux enum
3813 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003814int snd_hda_input_mux_put(struct hda_codec *codec,
3815 const struct hda_input_mux *imux,
3816 struct snd_ctl_elem_value *ucontrol,
3817 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 unsigned int *cur_val)
3819{
3820 unsigned int idx;
3821
Takashi Iwai5513b0c2007-10-09 11:58:41 +02003822 if (!imux->num_items)
3823 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 idx = ucontrol->value.enumerated.item[0];
3825 if (idx >= imux->num_items)
3826 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003827 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003829 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
3830 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831 *cur_val = idx;
3832 return 1;
3833}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003834EXPORT_SYMBOL_HDA(snd_hda_input_mux_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835
3836
3837/*
3838 * Multi-channel / digital-out PCM helper functions
3839 */
3840
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003841/* setup SPDIF output stream */
3842static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
3843 unsigned int stream_tag, unsigned int format)
3844{
3845 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
Takashi Iwai2f728532008-09-25 16:32:41 +02003846 if (codec->spdif_status_reset && (codec->spdif_ctls & AC_DIG1_ENABLE))
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003847 set_dig_out_convert(codec, nid,
Takashi Iwai2f728532008-09-25 16:32:41 +02003848 codec->spdif_ctls & ~AC_DIG1_ENABLE & 0xff,
3849 -1);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003850 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Takashi Iwai2f728532008-09-25 16:32:41 +02003851 if (codec->slave_dig_outs) {
3852 hda_nid_t *d;
3853 for (d = codec->slave_dig_outs; *d; d++)
3854 snd_hda_codec_setup_stream(codec, *d, stream_tag, 0,
3855 format);
Matthew Ranostayde51ca12008-09-07 14:31:40 -04003856 }
Takashi Iwai2f728532008-09-25 16:32:41 +02003857 /* turn on again (if needed) */
3858 if (codec->spdif_status_reset && (codec->spdif_ctls & AC_DIG1_ENABLE))
3859 set_dig_out_convert(codec, nid,
3860 codec->spdif_ctls & 0xff, -1);
3861}
Matthew Ranostayde51ca12008-09-07 14:31:40 -04003862
Takashi Iwai2f728532008-09-25 16:32:41 +02003863static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid)
3864{
3865 snd_hda_codec_cleanup_stream(codec, nid);
3866 if (codec->slave_dig_outs) {
3867 hda_nid_t *d;
3868 for (d = codec->slave_dig_outs; *d; d++)
3869 snd_hda_codec_cleanup_stream(codec, *d);
3870 }
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003871}
3872
Takashi Iwaid5191e52009-11-16 14:58:17 +01003873/**
3874 * snd_hda_bus_reboot_notify - call the reboot notifier of each codec
3875 * @bus: HD-audio bus
3876 */
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01003877void snd_hda_bus_reboot_notify(struct hda_bus *bus)
3878{
3879 struct hda_codec *codec;
3880
3881 if (!bus)
3882 return;
3883 list_for_each_entry(codec, &bus->codec_list, list) {
3884#ifdef CONFIG_SND_HDA_POWER_SAVE
3885 if (!codec->power_on)
3886 continue;
3887#endif
3888 if (codec->patch_ops.reboot_notify)
3889 codec->patch_ops.reboot_notify(codec);
3890 }
3891}
Takashi Iwai8f217a22009-11-10 18:26:12 +01003892EXPORT_SYMBOL_HDA(snd_hda_bus_reboot_notify);
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01003893
Takashi Iwaid5191e52009-11-16 14:58:17 +01003894/**
3895 * snd_hda_multi_out_dig_open - open the digital out in the exclusive mode
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003897int snd_hda_multi_out_dig_open(struct hda_codec *codec,
3898 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899{
Ingo Molnar62932df2006-01-16 16:34:20 +01003900 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02003901 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
3902 /* already opened as analog dup; reset it once */
Takashi Iwai2f728532008-09-25 16:32:41 +02003903 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01003905 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906 return 0;
3907}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003908EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909
Takashi Iwaid5191e52009-11-16 14:58:17 +01003910/**
3911 * snd_hda_multi_out_dig_prepare - prepare the digital out stream
3912 */
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003913int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
3914 struct hda_multi_out *mout,
3915 unsigned int stream_tag,
3916 unsigned int format,
3917 struct snd_pcm_substream *substream)
3918{
3919 mutex_lock(&codec->spdif_mutex);
3920 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
3921 mutex_unlock(&codec->spdif_mutex);
3922 return 0;
3923}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003924EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_prepare);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003925
Takashi Iwaid5191e52009-11-16 14:58:17 +01003926/**
3927 * snd_hda_multi_out_dig_cleanup - clean-up the digital out stream
3928 */
Takashi Iwai9411e212009-02-13 11:32:28 +01003929int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
3930 struct hda_multi_out *mout)
3931{
3932 mutex_lock(&codec->spdif_mutex);
3933 cleanup_dig_out_stream(codec, mout->dig_out_nid);
3934 mutex_unlock(&codec->spdif_mutex);
3935 return 0;
3936}
3937EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_cleanup);
3938
Takashi Iwaid5191e52009-11-16 14:58:17 +01003939/**
3940 * snd_hda_multi_out_dig_close - release the digital out stream
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003942int snd_hda_multi_out_dig_close(struct hda_codec *codec,
3943 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944{
Ingo Molnar62932df2006-01-16 16:34:20 +01003945 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01003947 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 return 0;
3949}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003950EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951
Takashi Iwaid5191e52009-11-16 14:58:17 +01003952/**
3953 * snd_hda_multi_out_analog_open - open analog outputs
3954 *
3955 * Open analog outputs and set up the hw-constraints.
3956 * If the digital outputs can be opened as slave, open the digital
3957 * outputs, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003959int snd_hda_multi_out_analog_open(struct hda_codec *codec,
3960 struct hda_multi_out *mout,
Takashi Iwai9a081602008-02-12 18:37:26 +01003961 struct snd_pcm_substream *substream,
3962 struct hda_pcm_stream *hinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963{
Takashi Iwai9a081602008-02-12 18:37:26 +01003964 struct snd_pcm_runtime *runtime = substream->runtime;
3965 runtime->hw.channels_max = mout->max_channels;
3966 if (mout->dig_out_nid) {
3967 if (!mout->analog_rates) {
3968 mout->analog_rates = hinfo->rates;
3969 mout->analog_formats = hinfo->formats;
3970 mout->analog_maxbps = hinfo->maxbps;
3971 } else {
3972 runtime->hw.rates = mout->analog_rates;
3973 runtime->hw.formats = mout->analog_formats;
3974 hinfo->maxbps = mout->analog_maxbps;
3975 }
3976 if (!mout->spdif_rates) {
3977 snd_hda_query_supported_pcm(codec, mout->dig_out_nid,
3978 &mout->spdif_rates,
3979 &mout->spdif_formats,
3980 &mout->spdif_maxbps);
3981 }
3982 mutex_lock(&codec->spdif_mutex);
3983 if (mout->share_spdif) {
Takashi Iwai022b4662009-07-03 23:03:30 +02003984 if ((runtime->hw.rates & mout->spdif_rates) &&
3985 (runtime->hw.formats & mout->spdif_formats)) {
3986 runtime->hw.rates &= mout->spdif_rates;
3987 runtime->hw.formats &= mout->spdif_formats;
3988 if (mout->spdif_maxbps < hinfo->maxbps)
3989 hinfo->maxbps = mout->spdif_maxbps;
3990 } else {
3991 mout->share_spdif = 0;
3992 /* FIXME: need notify? */
3993 }
Takashi Iwai9a081602008-02-12 18:37:26 +01003994 }
Frederik Deweerdteaa99852008-04-14 13:11:44 +02003995 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01003996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 return snd_pcm_hw_constraint_step(substream->runtime, 0,
3998 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
3999}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004000EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001
Takashi Iwaid5191e52009-11-16 14:58:17 +01004002/**
4003 * snd_hda_multi_out_analog_prepare - Preapre the analog outputs.
4004 *
4005 * Set up the i/o for analog out.
4006 * When the digital out is available, copy the front out to digital out, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004008int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
4009 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 unsigned int stream_tag,
4011 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004012 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013{
4014 hda_nid_t *nids = mout->dac_nids;
4015 int chs = substream->runtime->channels;
4016 int i;
4017
Ingo Molnar62932df2006-01-16 16:34:20 +01004018 mutex_lock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01004019 if (mout->dig_out_nid && mout->share_spdif &&
4020 mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004021 if (chs == 2 &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02004022 snd_hda_is_supported_format(codec, mout->dig_out_nid,
4023 format) &&
4024 !(codec->spdif_status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02004026 setup_dig_out_stream(codec, mout->dig_out_nid,
4027 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 } else {
4029 mout->dig_out_used = 0;
Takashi Iwai2f728532008-09-25 16:32:41 +02004030 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 }
4032 }
Ingo Molnar62932df2006-01-16 16:34:20 +01004033 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034
4035 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004036 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
4037 0, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02004038 if (!mout->no_share_stream &&
4039 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004041 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
4042 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004043 /* extra outputs copied from front */
4044 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
Takashi Iwaid29240c2007-10-26 12:35:56 +02004045 if (!mout->no_share_stream && mout->extra_out_nid[i])
Takashi Iwai82bc9552006-03-21 11:24:42 +01004046 snd_hda_codec_setup_stream(codec,
4047 mout->extra_out_nid[i],
4048 stream_tag, 0, format);
4049
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 /* surrounds */
4051 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02004052 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004053 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
4054 i * 2, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02004055 else if (!mout->no_share_stream) /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004056 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
4057 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058 }
4059 return 0;
4060}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004061EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062
Takashi Iwaid5191e52009-11-16 14:58:17 +01004063/**
4064 * snd_hda_multi_out_analog_cleanup - clean up the setting for analog out
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004066int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
4067 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068{
4069 hda_nid_t *nids = mout->dac_nids;
4070 int i;
4071
4072 for (i = 0; i < mout->num_dacs; i++)
Takashi Iwai888afa12008-03-18 09:57:50 +01004073 snd_hda_codec_cleanup_stream(codec, nids[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074 if (mout->hp_nid)
Takashi Iwai888afa12008-03-18 09:57:50 +01004075 snd_hda_codec_cleanup_stream(codec, mout->hp_nid);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004076 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
4077 if (mout->extra_out_nid[i])
Takashi Iwai888afa12008-03-18 09:57:50 +01004078 snd_hda_codec_cleanup_stream(codec,
4079 mout->extra_out_nid[i]);
Ingo Molnar62932df2006-01-16 16:34:20 +01004080 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
Takashi Iwai2f728532008-09-25 16:32:41 +02004082 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 mout->dig_out_used = 0;
4084 }
Ingo Molnar62932df2006-01-16 16:34:20 +01004085 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 return 0;
4087}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004088EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004090/*
Wu Fengguang6b345002008-10-07 14:21:41 +08004091 * Helper for automatic pin configuration
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004092 */
Kailang Yangdf694da2005-12-05 19:42:22 +01004093
Takashi Iwai12f288b2007-08-02 15:51:59 +02004094static int is_in_nid_list(hda_nid_t nid, hda_nid_t *list)
Kailang Yangdf694da2005-12-05 19:42:22 +01004095{
4096 for (; *list; list++)
4097 if (*list == nid)
4098 return 1;
4099 return 0;
4100}
4101
Steve Longerbeam81937d32007-05-08 15:33:03 +02004102
4103/*
4104 * Sort an associated group of pins according to their sequence numbers.
4105 */
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004106static void sort_pins_by_sequence(hda_nid_t *pins, short *sequences,
Steve Longerbeam81937d32007-05-08 15:33:03 +02004107 int num_pins)
4108{
4109 int i, j;
4110 short seq;
4111 hda_nid_t nid;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004112
Steve Longerbeam81937d32007-05-08 15:33:03 +02004113 for (i = 0; i < num_pins; i++) {
4114 for (j = i + 1; j < num_pins; j++) {
4115 if (sequences[i] > sequences[j]) {
4116 seq = sequences[i];
4117 sequences[i] = sequences[j];
4118 sequences[j] = seq;
4119 nid = pins[i];
4120 pins[i] = pins[j];
4121 pins[j] = nid;
4122 }
4123 }
4124 }
4125}
4126
4127
Takashi Iwai82bc9552006-03-21 11:24:42 +01004128/*
4129 * Parse all pin widgets and store the useful pin nids to cfg
4130 *
4131 * The number of line-outs or any primary output is stored in line_outs,
4132 * and the corresponding output pins are assigned to line_out_pins[],
4133 * in the order of front, rear, CLFE, side, ...
4134 *
4135 * If more extra outputs (speaker and headphone) are found, the pins are
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004136 * assisnged to hp_pins[] and speaker_pins[], respectively. If no line-out jack
Takashi Iwai82bc9552006-03-21 11:24:42 +01004137 * is detected, one of speaker of HP pins is assigned as the primary
4138 * output, i.e. to line_out_pins[0]. So, line_outs is always positive
4139 * if any analog output exists.
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004140 *
Takashi Iwai82bc9552006-03-21 11:24:42 +01004141 * The analog input pins are assigned to input_pins array.
4142 * The digital input/output pins are assigned to dig_in_pin and dig_out_pin,
4143 * respectively.
4144 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02004145int snd_hda_parse_pin_def_config(struct hda_codec *codec,
4146 struct auto_pin_cfg *cfg,
4147 hda_nid_t *ignore_nids)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004148{
Takashi Iwai0ef6ce72008-01-22 15:35:37 +01004149 hda_nid_t nid, end_nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02004150 short seq, assoc_line_out, assoc_speaker;
4151 short sequences_line_out[ARRAY_SIZE(cfg->line_out_pins)];
4152 short sequences_speaker[ARRAY_SIZE(cfg->speaker_pins)];
Takashi Iwaif889fa92007-10-31 15:49:32 +01004153 short sequences_hp[ARRAY_SIZE(cfg->hp_pins)];
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004154
4155 memset(cfg, 0, sizeof(*cfg));
4156
Steve Longerbeam81937d32007-05-08 15:33:03 +02004157 memset(sequences_line_out, 0, sizeof(sequences_line_out));
4158 memset(sequences_speaker, 0, sizeof(sequences_speaker));
Takashi Iwaif889fa92007-10-31 15:49:32 +01004159 memset(sequences_hp, 0, sizeof(sequences_hp));
Steve Longerbeam81937d32007-05-08 15:33:03 +02004160 assoc_line_out = assoc_speaker = 0;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004161
Takashi Iwai0ef6ce72008-01-22 15:35:37 +01004162 end_nid = codec->start_nid + codec->num_nodes;
4163 for (nid = codec->start_nid; nid < end_nid; nid++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01004164 unsigned int wid_caps = get_wcaps(codec, nid);
Takashi Iwaia22d5432009-07-27 12:54:26 +02004165 unsigned int wid_type = get_wcaps_type(wid_caps);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004166 unsigned int def_conf;
4167 short assoc, loc;
4168
4169 /* read all default configuration for pin complex */
4170 if (wid_type != AC_WID_PIN)
4171 continue;
Kailang Yangdf694da2005-12-05 19:42:22 +01004172 /* ignore the given nids (e.g. pc-beep returns error) */
4173 if (ignore_nids && is_in_nid_list(nid, ignore_nids))
4174 continue;
4175
Takashi Iwaic17a1ab2009-02-23 09:28:12 +01004176 def_conf = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004177 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
4178 continue;
4179 loc = get_defcfg_location(def_conf);
4180 switch (get_defcfg_device(def_conf)) {
4181 case AC_JACK_LINE_OUT:
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004182 seq = get_defcfg_sequence(def_conf);
4183 assoc = get_defcfg_association(def_conf);
Matthew Ranostay90da78b2008-01-24 11:48:01 +01004184
4185 if (!(wid_caps & AC_WCAP_STEREO))
4186 if (!cfg->mono_out_pin)
4187 cfg->mono_out_pin = nid;
Takashi Iwai0ba21762007-04-16 11:29:14 +02004188 if (!assoc)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004189 continue;
Takashi Iwai0ba21762007-04-16 11:29:14 +02004190 if (!assoc_line_out)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004191 assoc_line_out = assoc;
4192 else if (assoc_line_out != assoc)
4193 continue;
4194 if (cfg->line_outs >= ARRAY_SIZE(cfg->line_out_pins))
4195 continue;
4196 cfg->line_out_pins[cfg->line_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02004197 sequences_line_out[cfg->line_outs] = seq;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004198 cfg->line_outs++;
4199 break;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01004200 case AC_JACK_SPEAKER:
Steve Longerbeam81937d32007-05-08 15:33:03 +02004201 seq = get_defcfg_sequence(def_conf);
4202 assoc = get_defcfg_association(def_conf);
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004203 if (!assoc)
Steve Longerbeam81937d32007-05-08 15:33:03 +02004204 continue;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004205 if (!assoc_speaker)
Steve Longerbeam81937d32007-05-08 15:33:03 +02004206 assoc_speaker = assoc;
4207 else if (assoc_speaker != assoc)
4208 continue;
Takashi Iwai82bc9552006-03-21 11:24:42 +01004209 if (cfg->speaker_outs >= ARRAY_SIZE(cfg->speaker_pins))
4210 continue;
4211 cfg->speaker_pins[cfg->speaker_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02004212 sequences_speaker[cfg->speaker_outs] = seq;
Takashi Iwai82bc9552006-03-21 11:24:42 +01004213 cfg->speaker_outs++;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01004214 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004215 case AC_JACK_HP_OUT:
Takashi Iwaif889fa92007-10-31 15:49:32 +01004216 seq = get_defcfg_sequence(def_conf);
4217 assoc = get_defcfg_association(def_conf);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004218 if (cfg->hp_outs >= ARRAY_SIZE(cfg->hp_pins))
4219 continue;
4220 cfg->hp_pins[cfg->hp_outs] = nid;
Takashi Iwaif889fa92007-10-31 15:49:32 +01004221 sequences_hp[cfg->hp_outs] = (assoc << 4) | seq;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004222 cfg->hp_outs++;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004223 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02004224 case AC_JACK_MIC_IN: {
4225 int preferred, alt;
Kailang Yang6ff86a32010-03-19 11:14:36 +01004226 if (loc == AC_JACK_LOC_FRONT ||
4227 (loc & 0x30) == AC_JACK_LOC_INTERNAL) {
Takashi Iwai314634b2006-09-21 11:56:18 +02004228 preferred = AUTO_PIN_FRONT_MIC;
4229 alt = AUTO_PIN_MIC;
4230 } else {
4231 preferred = AUTO_PIN_MIC;
4232 alt = AUTO_PIN_FRONT_MIC;
4233 }
4234 if (!cfg->input_pins[preferred])
4235 cfg->input_pins[preferred] = nid;
4236 else if (!cfg->input_pins[alt])
4237 cfg->input_pins[alt] = nid;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004238 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02004239 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004240 case AC_JACK_LINE_IN:
4241 if (loc == AC_JACK_LOC_FRONT)
4242 cfg->input_pins[AUTO_PIN_FRONT_LINE] = nid;
4243 else
4244 cfg->input_pins[AUTO_PIN_LINE] = nid;
4245 break;
4246 case AC_JACK_CD:
4247 cfg->input_pins[AUTO_PIN_CD] = nid;
4248 break;
4249 case AC_JACK_AUX:
4250 cfg->input_pins[AUTO_PIN_AUX] = nid;
4251 break;
4252 case AC_JACK_SPDIF_OUT:
Takashi Iwai1b52ae72009-01-20 17:17:29 +01004253 case AC_JACK_DIG_OTHER_OUT:
Takashi Iwai0852d7a2009-02-11 11:35:15 +01004254 if (cfg->dig_outs >= ARRAY_SIZE(cfg->dig_out_pins))
4255 continue;
4256 cfg->dig_out_pins[cfg->dig_outs] = nid;
4257 cfg->dig_out_type[cfg->dig_outs] =
4258 (loc == AC_JACK_LOC_HDMI) ?
4259 HDA_PCM_TYPE_HDMI : HDA_PCM_TYPE_SPDIF;
4260 cfg->dig_outs++;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004261 break;
4262 case AC_JACK_SPDIF_IN:
Takashi Iwai1b52ae72009-01-20 17:17:29 +01004263 case AC_JACK_DIG_OTHER_IN:
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004264 cfg->dig_in_pin = nid;
Takashi Iwai2297bd62009-01-20 18:24:13 +01004265 if (loc == AC_JACK_LOC_HDMI)
4266 cfg->dig_in_type = HDA_PCM_TYPE_HDMI;
4267 else
4268 cfg->dig_in_type = HDA_PCM_TYPE_SPDIF;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004269 break;
4270 }
4271 }
4272
Takashi Iwai5832fcf2008-02-12 18:30:12 +01004273 /* FIX-UP:
4274 * If no line-out is defined but multiple HPs are found,
4275 * some of them might be the real line-outs.
4276 */
4277 if (!cfg->line_outs && cfg->hp_outs > 1) {
4278 int i = 0;
4279 while (i < cfg->hp_outs) {
4280 /* The real HPs should have the sequence 0x0f */
4281 if ((sequences_hp[i] & 0x0f) == 0x0f) {
4282 i++;
4283 continue;
4284 }
4285 /* Move it to the line-out table */
4286 cfg->line_out_pins[cfg->line_outs] = cfg->hp_pins[i];
4287 sequences_line_out[cfg->line_outs] = sequences_hp[i];
4288 cfg->line_outs++;
4289 cfg->hp_outs--;
4290 memmove(cfg->hp_pins + i, cfg->hp_pins + i + 1,
4291 sizeof(cfg->hp_pins[0]) * (cfg->hp_outs - i));
4292 memmove(sequences_hp + i - 1, sequences_hp + i,
4293 sizeof(sequences_hp[0]) * (cfg->hp_outs - i));
4294 }
4295 }
4296
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004297 /* sort by sequence */
Steve Longerbeam81937d32007-05-08 15:33:03 +02004298 sort_pins_by_sequence(cfg->line_out_pins, sequences_line_out,
4299 cfg->line_outs);
4300 sort_pins_by_sequence(cfg->speaker_pins, sequences_speaker,
4301 cfg->speaker_outs);
Takashi Iwaif889fa92007-10-31 15:49:32 +01004302 sort_pins_by_sequence(cfg->hp_pins, sequences_hp,
4303 cfg->hp_outs);
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004304
Takashi Iwaif889fa92007-10-31 15:49:32 +01004305 /* if we have only one mic, make it AUTO_PIN_MIC */
4306 if (!cfg->input_pins[AUTO_PIN_MIC] &&
4307 cfg->input_pins[AUTO_PIN_FRONT_MIC]) {
4308 cfg->input_pins[AUTO_PIN_MIC] =
4309 cfg->input_pins[AUTO_PIN_FRONT_MIC];
4310 cfg->input_pins[AUTO_PIN_FRONT_MIC] = 0;
4311 }
4312 /* ditto for line-in */
4313 if (!cfg->input_pins[AUTO_PIN_LINE] &&
4314 cfg->input_pins[AUTO_PIN_FRONT_LINE]) {
4315 cfg->input_pins[AUTO_PIN_LINE] =
4316 cfg->input_pins[AUTO_PIN_FRONT_LINE];
4317 cfg->input_pins[AUTO_PIN_FRONT_LINE] = 0;
4318 }
4319
Steve Longerbeam81937d32007-05-08 15:33:03 +02004320 /*
4321 * FIX-UP: if no line-outs are detected, try to use speaker or HP pin
4322 * as a primary output
4323 */
4324 if (!cfg->line_outs) {
4325 if (cfg->speaker_outs) {
4326 cfg->line_outs = cfg->speaker_outs;
4327 memcpy(cfg->line_out_pins, cfg->speaker_pins,
4328 sizeof(cfg->speaker_pins));
4329 cfg->speaker_outs = 0;
4330 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
4331 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
4332 } else if (cfg->hp_outs) {
4333 cfg->line_outs = cfg->hp_outs;
4334 memcpy(cfg->line_out_pins, cfg->hp_pins,
4335 sizeof(cfg->hp_pins));
4336 cfg->hp_outs = 0;
4337 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
4338 cfg->line_out_type = AUTO_PIN_HP_OUT;
4339 }
4340 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004341
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02004342 /* Reorder the surround channels
4343 * ALSA sequence is front/surr/clfe/side
4344 * HDA sequence is:
4345 * 4-ch: front/surr => OK as it is
4346 * 6-ch: front/clfe/surr
Takashi Iwai9422db42007-04-20 16:11:43 +02004347 * 8-ch: front/clfe/rear/side|fc
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02004348 */
4349 switch (cfg->line_outs) {
4350 case 3:
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02004351 case 4:
4352 nid = cfg->line_out_pins[1];
Takashi Iwai9422db42007-04-20 16:11:43 +02004353 cfg->line_out_pins[1] = cfg->line_out_pins[2];
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02004354 cfg->line_out_pins[2] = nid;
4355 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004356 }
4357
Takashi Iwai82bc9552006-03-21 11:24:42 +01004358 /*
4359 * debug prints of the parsed results
4360 */
4361 snd_printd("autoconfig: line_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
4362 cfg->line_outs, cfg->line_out_pins[0], cfg->line_out_pins[1],
4363 cfg->line_out_pins[2], cfg->line_out_pins[3],
4364 cfg->line_out_pins[4]);
4365 snd_printd(" speaker_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
4366 cfg->speaker_outs, cfg->speaker_pins[0],
4367 cfg->speaker_pins[1], cfg->speaker_pins[2],
4368 cfg->speaker_pins[3], cfg->speaker_pins[4]);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02004369 snd_printd(" hp_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
4370 cfg->hp_outs, cfg->hp_pins[0],
4371 cfg->hp_pins[1], cfg->hp_pins[2],
4372 cfg->hp_pins[3], cfg->hp_pins[4]);
Matthew Ranostay90da78b2008-01-24 11:48:01 +01004373 snd_printd(" mono: mono_out=0x%x\n", cfg->mono_out_pin);
Takashi Iwai0852d7a2009-02-11 11:35:15 +01004374 if (cfg->dig_outs)
4375 snd_printd(" dig-out=0x%x/0x%x\n",
4376 cfg->dig_out_pins[0], cfg->dig_out_pins[1]);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004377 snd_printd(" inputs: mic=0x%x, fmic=0x%x, line=0x%x, fline=0x%x,"
4378 " cd=0x%x, aux=0x%x\n",
4379 cfg->input_pins[AUTO_PIN_MIC],
4380 cfg->input_pins[AUTO_PIN_FRONT_MIC],
4381 cfg->input_pins[AUTO_PIN_LINE],
4382 cfg->input_pins[AUTO_PIN_FRONT_LINE],
4383 cfg->input_pins[AUTO_PIN_CD],
4384 cfg->input_pins[AUTO_PIN_AUX]);
Takashi Iwai32d2c7f2009-02-11 11:33:13 +01004385 if (cfg->dig_in_pin)
Takashi Iwai89ce9e82009-01-20 17:15:57 +01004386 snd_printd(" dig-in=0x%x\n", cfg->dig_in_pin);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004387
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004388 return 0;
4389}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004390EXPORT_SYMBOL_HDA(snd_hda_parse_pin_def_config);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02004391
Takashi Iwai4a471b72005-12-07 13:56:29 +01004392/* labels for input pins */
4393const char *auto_pin_cfg_labels[AUTO_PIN_LAST] = {
4394 "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux"
4395};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004396EXPORT_SYMBOL_HDA(auto_pin_cfg_labels);
Takashi Iwai4a471b72005-12-07 13:56:29 +01004397
4398
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399#ifdef CONFIG_PM
4400/*
4401 * power management
4402 */
4403
4404/**
4405 * snd_hda_suspend - suspend the codecs
4406 * @bus: the HDA bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407 *
4408 * Returns 0 if successful.
4409 */
Takashi Iwai8dd78332009-06-02 01:16:07 +02004410int snd_hda_suspend(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411{
Takashi Iwai0ba21762007-04-16 11:29:14 +02004412 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413
Takashi Iwai0ba21762007-04-16 11:29:14 +02004414 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai0b7a2e92007-08-14 15:18:26 +02004415#ifdef CONFIG_SND_HDA_POWER_SAVE
4416 if (!codec->power_on)
4417 continue;
4418#endif
Takashi Iwaicb53c622007-08-10 17:21:45 +02004419 hda_call_codec_suspend(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420 }
4421 return 0;
4422}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004423EXPORT_SYMBOL_HDA(snd_hda_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424
4425/**
4426 * snd_hda_resume - resume the codecs
4427 * @bus: the HDA bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428 *
4429 * Returns 0 if successful.
Takashi Iwaicb53c622007-08-10 17:21:45 +02004430 *
4431 * This fucntion is defined only when POWER_SAVE isn't set.
4432 * In the power-save mode, the codec is resumed dynamically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 */
4434int snd_hda_resume(struct hda_bus *bus)
4435{
Takashi Iwai0ba21762007-04-16 11:29:14 +02004436 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437
Takashi Iwai0ba21762007-04-16 11:29:14 +02004438 list_for_each_entry(codec, &bus->codec_list, list) {
Maxim Levitskyd804ad92007-09-03 15:28:04 +02004439 if (snd_hda_codec_needs_resume(codec))
4440 hda_call_codec_resume(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 return 0;
4443}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004444EXPORT_SYMBOL_HDA(snd_hda_resume);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01004445#endif /* CONFIG_PM */
Takashi Iwaib2e18592008-07-30 15:01:44 +02004446
4447/*
4448 * generic arrays
4449 */
4450
Takashi Iwaid5191e52009-11-16 14:58:17 +01004451/**
4452 * snd_array_new - get a new element from the given array
4453 * @array: the array object
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004454 *
Takashi Iwaid5191e52009-11-16 14:58:17 +01004455 * Get a new element from the given array. If it exceeds the
4456 * pre-allocated array size, re-allocate the array.
4457 *
4458 * Returns NULL if allocation failed.
Takashi Iwaib2e18592008-07-30 15:01:44 +02004459 */
4460void *snd_array_new(struct snd_array *array)
4461{
4462 if (array->used >= array->alloced) {
4463 int num = array->alloced + array->alloc_align;
Takashi Iwaib910d9a2008-11-07 00:26:52 +01004464 void *nlist;
4465 if (snd_BUG_ON(num >= 4096))
4466 return NULL;
4467 nlist = kcalloc(num + 1, array->elem_size, GFP_KERNEL);
Takashi Iwaib2e18592008-07-30 15:01:44 +02004468 if (!nlist)
4469 return NULL;
4470 if (array->list) {
4471 memcpy(nlist, array->list,
4472 array->elem_size * array->alloced);
4473 kfree(array->list);
4474 }
4475 array->list = nlist;
4476 array->alloced = num;
4477 }
Takashi Iwaif43aa022008-11-10 16:24:26 +01004478 return snd_array_elem(array, array->used++);
Takashi Iwaib2e18592008-07-30 15:01:44 +02004479}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004480EXPORT_SYMBOL_HDA(snd_array_new);
Takashi Iwaib2e18592008-07-30 15:01:44 +02004481
Takashi Iwaid5191e52009-11-16 14:58:17 +01004482/**
4483 * snd_array_free - free the given array elements
4484 * @array: the array object
4485 */
Takashi Iwaib2e18592008-07-30 15:01:44 +02004486void snd_array_free(struct snd_array *array)
4487{
4488 kfree(array->list);
4489 array->used = 0;
4490 array->alloced = 0;
4491 array->list = NULL;
4492}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004493EXPORT_SYMBOL_HDA(snd_array_free);
Takashi Iwaib2022262008-11-21 21:24:03 +01004494
Takashi Iwaid5191e52009-11-16 14:58:17 +01004495/**
4496 * snd_print_pcm_rates - Print the supported PCM rates to the string buffer
4497 * @pcm: PCM caps bits
4498 * @buf: the string buffer to write
4499 * @buflen: the max buffer length
4500 *
Takashi Iwaib2022262008-11-21 21:24:03 +01004501 * used by hda_proc.c and hda_eld.c
4502 */
4503void snd_print_pcm_rates(int pcm, char *buf, int buflen)
4504{
4505 static unsigned int rates[] = {
4506 8000, 11025, 16000, 22050, 32000, 44100, 48000, 88200,
4507 96000, 176400, 192000, 384000
4508 };
4509 int i, j;
4510
4511 for (i = 0, j = 0; i < ARRAY_SIZE(rates); i++)
4512 if (pcm & (1 << i))
4513 j += snprintf(buf + j, buflen - j, " %d", rates[i]);
4514
4515 buf[j] = '\0'; /* necessary when j == 0 */
4516}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004517EXPORT_SYMBOL_HDA(snd_print_pcm_rates);
Takashi Iwaib2022262008-11-21 21:24:03 +01004518
Takashi Iwaid5191e52009-11-16 14:58:17 +01004519/**
4520 * snd_print_pcm_bits - Print the supported PCM fmt bits to the string buffer
4521 * @pcm: PCM caps bits
4522 * @buf: the string buffer to write
4523 * @buflen: the max buffer length
4524 *
4525 * used by hda_proc.c and hda_eld.c
4526 */
Takashi Iwaib2022262008-11-21 21:24:03 +01004527void snd_print_pcm_bits(int pcm, char *buf, int buflen)
4528{
4529 static unsigned int bits[] = { 8, 16, 20, 24, 32 };
4530 int i, j;
4531
4532 for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++)
4533 if (pcm & (AC_SUPPCM_BITS_8 << i))
4534 j += snprintf(buf + j, buflen - j, " %d", bits[i]);
4535
4536 buf[j] = '\0'; /* necessary when j == 0 */
4537}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004538EXPORT_SYMBOL_HDA(snd_print_pcm_bits);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01004539
4540MODULE_DESCRIPTION("HDA codec core");
4541MODULE_LICENSE("GPL");