blob: d03f99298be95eb64856288f71f957e4c63d2e8e [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"
Takashi Iwai28073142007-07-27 18:58:06 +020033#include <sound/hda_hwdep.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Linus Torvalds1da177e2005-04-16 15:20:36 -070035/*
36 * vendor / preset table
37 */
38
39struct hda_vendor_id {
40 unsigned int id;
41 const char *name;
42};
43
44/* codec vendor labels */
45static struct hda_vendor_id hda_vendor_ids[] = {
Takashi Iwaic8cd1282008-02-13 16:59:29 +010046 { 0x1002, "ATI" },
Takashi Iwaia9226252006-09-17 22:05:54 +020047 { 0x1057, "Motorola" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010048 { 0x1095, "Silicon Image" },
Takashi Iwai31117b72008-12-16 14:43:21 +010049 { 0x10de, "Nvidia" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010050 { 0x10ec, "Realtek" },
Joseph Chanc577b8a2006-11-29 15:29:40 +010051 { 0x1106, "VIA" },
Matthew Ranostay7f168592007-10-18 17:38:17 +020052 { 0x111d, "IDT" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010053 { 0x11c1, "LSI" },
Takashi Iwai54b903e2005-05-15 14:30:10 +020054 { 0x11d4, "Analog Devices" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 { 0x13f6, "C-Media" },
Takashi Iwaia9226252006-09-17 22:05:54 +020056 { 0x14f1, "Conexant" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010057 { 0x17e8, "Chrontel" },
58 { 0x1854, "LG" },
Mark Brown8199de32008-10-28 14:50:13 +000059 { 0x1aec, "Wolfson Microelectronics" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 { 0x434d, "C-Media" },
Takashi Iwai74c61132008-12-18 09:11:33 +010061 { 0x8086, "Intel" },
Matt2f2f4252005-04-13 14:45:30 +020062 { 0x8384, "SigmaTel" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 {} /* terminator */
64};
65
Takashi Iwai1289e9e2008-11-27 15:47:11 +010066static DEFINE_MUTEX(preset_mutex);
67static LIST_HEAD(hda_preset_tables);
68
69int snd_hda_add_codec_preset(struct hda_codec_preset_list *preset)
70{
71 mutex_lock(&preset_mutex);
72 list_add_tail(&preset->list, &hda_preset_tables);
73 mutex_unlock(&preset_mutex);
74 return 0;
75}
Takashi Iwaiff7a3262008-11-28 15:17:06 +010076EXPORT_SYMBOL_HDA(snd_hda_add_codec_preset);
Takashi Iwai1289e9e2008-11-27 15:47:11 +010077
78int snd_hda_delete_codec_preset(struct hda_codec_preset_list *preset)
79{
80 mutex_lock(&preset_mutex);
81 list_del(&preset->list);
82 mutex_unlock(&preset_mutex);
83 return 0;
84}
Takashi Iwaiff7a3262008-11-28 15:17:06 +010085EXPORT_SYMBOL_HDA(snd_hda_delete_codec_preset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Takashi Iwaicb53c622007-08-10 17:21:45 +020087#ifdef CONFIG_SND_HDA_POWER_SAVE
88static void hda_power_work(struct work_struct *work);
89static void hda_keep_power_on(struct hda_codec *codec);
90#else
91static inline void hda_keep_power_on(struct hda_codec *codec) {}
92#endif
93
Matthew Ranostay50a9f792008-10-25 01:05:45 -040094const char *snd_hda_get_jack_location(u32 cfg)
95{
96 static char *bases[7] = {
97 "N/A", "Rear", "Front", "Left", "Right", "Top", "Bottom",
98 };
99 static unsigned char specials_idx[] = {
100 0x07, 0x08,
101 0x17, 0x18, 0x19,
102 0x37, 0x38
103 };
104 static char *specials[] = {
105 "Rear Panel", "Drive Bar",
106 "Riser", "HDMI", "ATAPI",
107 "Mobile-In", "Mobile-Out"
108 };
109 int i;
110 cfg = (cfg & AC_DEFCFG_LOCATION) >> AC_DEFCFG_LOCATION_SHIFT;
111 if ((cfg & 0x0f) < 7)
112 return bases[cfg & 0x0f];
113 for (i = 0; i < ARRAY_SIZE(specials_idx); i++) {
114 if (cfg == specials_idx[i])
115 return specials[i];
116 }
117 return "UNKNOWN";
118}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100119EXPORT_SYMBOL_HDA(snd_hda_get_jack_location);
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400120
121const char *snd_hda_get_jack_connectivity(u32 cfg)
122{
123 static char *jack_locations[4] = { "Ext", "Int", "Sep", "Oth" };
124
125 return jack_locations[(cfg >> (AC_DEFCFG_LOCATION_SHIFT + 4)) & 3];
126}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100127EXPORT_SYMBOL_HDA(snd_hda_get_jack_connectivity);
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400128
129const char *snd_hda_get_jack_type(u32 cfg)
130{
131 static char *jack_types[16] = {
132 "Line Out", "Speaker", "HP Out", "CD",
133 "SPDIF Out", "Digital Out", "Modem Line", "Modem Hand",
134 "Line In", "Aux", "Mic", "Telephony",
135 "SPDIF In", "Digitial In", "Reserved", "Other"
136 };
137
138 return jack_types[(cfg & AC_DEFCFG_DEVICE)
139 >> AC_DEFCFG_DEVICE_SHIFT];
140}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100141EXPORT_SYMBOL_HDA(snd_hda_get_jack_type);
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400142
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100143/*
144 * Compose a 32bit command word to be sent to the HD-audio controller
145 */
146static inline unsigned int
147make_codec_cmd(struct hda_codec *codec, hda_nid_t nid, int direct,
148 unsigned int verb, unsigned int parm)
149{
150 u32 val;
151
152 val = (u32)(codec->addr & 0x0f) << 28;
153 val |= (u32)direct << 27;
154 val |= (u32)nid << 20;
155 val |= verb << 8;
156 val |= parm;
157 return val;
158}
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160/**
161 * snd_hda_codec_read - send a command and get the response
162 * @codec: the HDA codec
163 * @nid: NID to send the command
164 * @direct: direct flag
165 * @verb: the verb to send
166 * @parm: the parameter for the verb
167 *
168 * Send a single command and read the corresponding response.
169 *
170 * Returns the obtained response value, or -1 for an error.
171 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200172unsigned int snd_hda_codec_read(struct hda_codec *codec, hda_nid_t nid,
173 int direct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 unsigned int verb, unsigned int parm)
175{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100176 struct hda_bus *bus = codec->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 unsigned int res;
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100178
179 res = make_codec_cmd(codec, nid, direct, verb, parm);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200180 snd_hda_power_up(codec);
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100181 mutex_lock(&bus->cmd_mutex);
182 if (!bus->ops.command(bus, res))
183 res = bus->ops.get_response(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 else
185 res = (unsigned int)-1;
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100186 mutex_unlock(&bus->cmd_mutex);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200187 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return res;
189}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100190EXPORT_SYMBOL_HDA(snd_hda_codec_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192/**
193 * snd_hda_codec_write - send a single command without waiting for response
194 * @codec: the HDA codec
195 * @nid: NID to send the command
196 * @direct: direct flag
197 * @verb: the verb to send
198 * @parm: the parameter for the verb
199 *
200 * Send a single command without waiting for response.
201 *
202 * Returns 0 if successful, or a negative error code.
203 */
204int snd_hda_codec_write(struct hda_codec *codec, hda_nid_t nid, int direct,
205 unsigned int verb, unsigned int parm)
206{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100207 struct hda_bus *bus = codec->bus;
208 unsigned int res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 int err;
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100210
211 res = make_codec_cmd(codec, nid, direct, verb, parm);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200212 snd_hda_power_up(codec);
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100213 mutex_lock(&bus->cmd_mutex);
214 err = bus->ops.command(bus, res);
215 mutex_unlock(&bus->cmd_mutex);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200216 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return err;
218}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100219EXPORT_SYMBOL_HDA(snd_hda_codec_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221/**
222 * snd_hda_sequence_write - sequence writes
223 * @codec: the HDA codec
224 * @seq: VERB array to send
225 *
226 * Send the commands sequentially from the given array.
227 * The array must be terminated with NID=0.
228 */
229void snd_hda_sequence_write(struct hda_codec *codec, const struct hda_verb *seq)
230{
231 for (; seq->nid; seq++)
232 snd_hda_codec_write(codec, seq->nid, 0, seq->verb, seq->param);
233}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100234EXPORT_SYMBOL_HDA(snd_hda_sequence_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236/**
237 * snd_hda_get_sub_nodes - get the range of sub nodes
238 * @codec: the HDA codec
239 * @nid: NID to parse
240 * @start_id: the pointer to store the start NID
241 *
242 * Parse the NID and store the start NID of its sub-nodes.
243 * Returns the number of sub-nodes.
244 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200245int snd_hda_get_sub_nodes(struct hda_codec *codec, hda_nid_t nid,
246 hda_nid_t *start_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 unsigned int parm;
249
250 parm = snd_hda_param_read(codec, nid, AC_PAR_NODE_COUNT);
Danny Tholene8a7f132007-09-11 21:41:56 +0200251 if (parm == -1)
252 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 *start_id = (parm >> 16) & 0x7fff;
254 return (int)(parm & 0x7fff);
255}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100256EXPORT_SYMBOL_HDA(snd_hda_get_sub_nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258/**
259 * snd_hda_get_connections - get connection list
260 * @codec: the HDA codec
261 * @nid: NID to parse
262 * @conn_list: connection list array
263 * @max_conns: max. number of connections to store
264 *
265 * Parses the connection list of the given widget and stores the list
266 * of NIDs.
267 *
268 * Returns the number of connections, or a negative error code.
269 */
270int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid,
271 hda_nid_t *conn_list, int max_conns)
272{
273 unsigned int parm;
Takashi Iwai54d17402005-11-21 16:33:22 +0100274 int i, conn_len, conns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 unsigned int shift, num_elems, mask;
Takashi Iwai54d17402005-11-21 16:33:22 +0100276 hda_nid_t prev_nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Takashi Iwaida3cec32008-08-08 17:12:14 +0200278 if (snd_BUG_ON(!conn_list || max_conns <= 0))
279 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 parm = snd_hda_param_read(codec, nid, AC_PAR_CONNLIST_LEN);
282 if (parm & AC_CLIST_LONG) {
283 /* long form */
284 shift = 16;
285 num_elems = 2;
286 } else {
287 /* short form */
288 shift = 8;
289 num_elems = 4;
290 }
291 conn_len = parm & AC_CLIST_LENGTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 mask = (1 << (shift-1)) - 1;
293
Takashi Iwai0ba21762007-04-16 11:29:14 +0200294 if (!conn_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 return 0; /* no connection */
296
297 if (conn_len == 1) {
298 /* single connection */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200299 parm = snd_hda_codec_read(codec, nid, 0,
300 AC_VERB_GET_CONNECT_LIST, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 conn_list[0] = parm & mask;
302 return 1;
303 }
304
305 /* multi connection */
306 conns = 0;
Takashi Iwai54d17402005-11-21 16:33:22 +0100307 prev_nid = 0;
308 for (i = 0; i < conn_len; i++) {
309 int range_val;
310 hda_nid_t val, n;
311
312 if (i % num_elems == 0)
313 parm = snd_hda_codec_read(codec, nid, 0,
314 AC_VERB_GET_CONNECT_LIST, i);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200315 range_val = !!(parm & (1 << (shift-1))); /* ranges */
Takashi Iwai54d17402005-11-21 16:33:22 +0100316 val = parm & mask;
317 parm >>= shift;
318 if (range_val) {
319 /* ranges between the previous and this one */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200320 if (!prev_nid || prev_nid >= val) {
321 snd_printk(KERN_WARNING "hda_codec: "
322 "invalid dep_range_val %x:%x\n",
323 prev_nid, val);
Takashi Iwai54d17402005-11-21 16:33:22 +0100324 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100326 for (n = prev_nid + 1; n <= val; n++) {
327 if (conns >= max_conns) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200328 snd_printk(KERN_ERR
329 "Too many connections\n");
Takashi Iwai54d17402005-11-21 16:33:22 +0100330 return -EINVAL;
331 }
332 conn_list[conns++] = n;
333 }
334 } else {
335 if (conns >= max_conns) {
336 snd_printk(KERN_ERR "Too many connections\n");
337 return -EINVAL;
338 }
339 conn_list[conns++] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100341 prev_nid = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343 return conns;
344}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100345EXPORT_SYMBOL_HDA(snd_hda_get_connections);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347
348/**
349 * snd_hda_queue_unsol_event - add an unsolicited event to queue
350 * @bus: the BUS
351 * @res: unsolicited event (lower 32bit of RIRB entry)
352 * @res_ex: codec addr and flags (upper 32bit or RIRB entry)
353 *
354 * Adds the given event to the queue. The events are processed in
355 * the workqueue asynchronously. Call this function in the interrupt
356 * hanlder when RIRB receives an unsolicited event.
357 *
358 * Returns 0 if successful, or a negative error code.
359 */
360int snd_hda_queue_unsol_event(struct hda_bus *bus, u32 res, u32 res_ex)
361{
362 struct hda_bus_unsolicited *unsol;
363 unsigned int wp;
364
Takashi Iwai0ba21762007-04-16 11:29:14 +0200365 unsol = bus->unsol;
366 if (!unsol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return 0;
368
369 wp = (unsol->wp + 1) % HDA_UNSOL_QUEUE_SIZE;
370 unsol->wp = wp;
371
372 wp <<= 1;
373 unsol->queue[wp] = res;
374 unsol->queue[wp + 1] = res_ex;
375
Takashi Iwai6acaed32009-01-12 10:09:24 +0100376 queue_work(bus->workq, &unsol->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 return 0;
379}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100380EXPORT_SYMBOL_HDA(snd_hda_queue_unsol_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382/*
Wu Fengguang5c1d1a92008-10-07 14:17:53 +0800383 * process queued unsolicited events
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 */
David Howellsc4028952006-11-22 14:57:56 +0000385static void process_unsol_events(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
David Howellsc4028952006-11-22 14:57:56 +0000387 struct hda_bus_unsolicited *unsol =
388 container_of(work, struct hda_bus_unsolicited, work);
389 struct hda_bus *bus = unsol->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 struct hda_codec *codec;
391 unsigned int rp, caddr, res;
392
393 while (unsol->rp != unsol->wp) {
394 rp = (unsol->rp + 1) % HDA_UNSOL_QUEUE_SIZE;
395 unsol->rp = rp;
396 rp <<= 1;
397 res = unsol->queue[rp];
398 caddr = unsol->queue[rp + 1];
Takashi Iwai0ba21762007-04-16 11:29:14 +0200399 if (!(caddr & (1 << 4))) /* no unsolicited event? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 continue;
401 codec = bus->caddr_tbl[caddr & 0x0f];
402 if (codec && codec->patch_ops.unsol_event)
403 codec->patch_ops.unsol_event(codec, res);
404 }
405}
406
407/*
408 * initialize unsolicited queue
409 */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200410static int init_unsol_queue(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
412 struct hda_bus_unsolicited *unsol;
413
Takashi Iwai9f146bb2005-11-17 11:07:49 +0100414 if (bus->unsol) /* already initialized */
415 return 0;
416
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200417 unsol = kzalloc(sizeof(*unsol), GFP_KERNEL);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200418 if (!unsol) {
419 snd_printk(KERN_ERR "hda_codec: "
420 "can't allocate unsolicited queue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 return -ENOMEM;
422 }
David Howellsc4028952006-11-22 14:57:56 +0000423 INIT_WORK(&unsol->work, process_unsol_events);
424 unsol->bus = bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 bus->unsol = unsol;
426 return 0;
427}
428
429/*
430 * destructor
431 */
432static void snd_hda_codec_free(struct hda_codec *codec);
433
434static int snd_hda_bus_free(struct hda_bus *bus)
435{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200436 struct hda_codec *codec, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Takashi Iwai0ba21762007-04-16 11:29:14 +0200438 if (!bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 return 0;
Takashi Iwai6acaed32009-01-12 10:09:24 +0100440 if (bus->workq)
441 flush_workqueue(bus->workq);
442 if (bus->unsol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 kfree(bus->unsol);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200444 list_for_each_entry_safe(codec, n, &bus->codec_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 snd_hda_codec_free(codec);
446 }
447 if (bus->ops.private_free)
448 bus->ops.private_free(bus);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100449 if (bus->workq)
450 destroy_workqueue(bus->workq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 kfree(bus);
452 return 0;
453}
454
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100455static int snd_hda_bus_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
457 struct hda_bus *bus = device->device_data;
Takashi Iwaib94d35392008-11-21 09:08:06 +0100458 bus->shutdown = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 return snd_hda_bus_free(bus);
460}
461
Takashi Iwaid7ffba12008-07-30 15:01:46 +0200462#ifdef CONFIG_SND_HDA_HWDEP
463static int snd_hda_bus_dev_register(struct snd_device *device)
464{
465 struct hda_bus *bus = device->device_data;
466 struct hda_codec *codec;
467 list_for_each_entry(codec, &bus->codec_list, list) {
468 snd_hda_hwdep_add_sysfs(codec);
469 }
470 return 0;
471}
472#else
473#define snd_hda_bus_dev_register NULL
474#endif
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476/**
477 * snd_hda_bus_new - create a HDA bus
478 * @card: the card entry
479 * @temp: the template for hda_bus information
480 * @busp: the pointer to store the created bus instance
481 *
482 * Returns 0 if successful, or a negative error code.
483 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100484int /*__devinit*/ snd_hda_bus_new(struct snd_card *card,
Takashi Iwai756e2b02007-04-16 11:27:07 +0200485 const struct hda_bus_template *temp,
486 struct hda_bus **busp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
488 struct hda_bus *bus;
489 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100490 static struct snd_device_ops dev_ops = {
Takashi Iwaid7ffba12008-07-30 15:01:46 +0200491 .dev_register = snd_hda_bus_dev_register,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 .dev_free = snd_hda_bus_dev_free,
493 };
494
Takashi Iwaida3cec32008-08-08 17:12:14 +0200495 if (snd_BUG_ON(!temp))
496 return -EINVAL;
497 if (snd_BUG_ON(!temp->ops.command || !temp->ops.get_response))
498 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 if (busp)
501 *busp = NULL;
502
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200503 bus = kzalloc(sizeof(*bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (bus == NULL) {
505 snd_printk(KERN_ERR "can't allocate struct hda_bus\n");
506 return -ENOMEM;
507 }
508
509 bus->card = card;
510 bus->private_data = temp->private_data;
511 bus->pci = temp->pci;
512 bus->modelname = temp->modelname;
Takashi Iwaifee2fba2008-11-27 12:43:28 +0100513 bus->power_save = temp->power_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 bus->ops = temp->ops;
515
Ingo Molnar62932df2006-01-16 16:34:20 +0100516 mutex_init(&bus->cmd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 INIT_LIST_HEAD(&bus->codec_list);
518
Takashi Iwaie8c0ee52009-02-05 07:34:28 +0100519 snprintf(bus->workq_name, sizeof(bus->workq_name),
520 "hd-audio%d", card->number);
521 bus->workq = create_singlethread_workqueue(bus->workq_name);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100522 if (!bus->workq) {
Takashi Iwaie8c0ee52009-02-05 07:34:28 +0100523 snd_printk(KERN_ERR "cannot create workqueue %s\n",
524 bus->workq_name);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100525 kfree(bus);
526 return -ENOMEM;
527 }
528
Takashi Iwai0ba21762007-04-16 11:29:14 +0200529 err = snd_device_new(card, SNDRV_DEV_BUS, bus, &dev_ops);
530 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 snd_hda_bus_free(bus);
532 return err;
533 }
534 if (busp)
535 *busp = bus;
536 return 0;
537}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100538EXPORT_SYMBOL_HDA(snd_hda_bus_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Takashi Iwai82467612007-07-27 19:15:54 +0200540#ifdef CONFIG_SND_HDA_GENERIC
541#define is_generic_config(codec) \
Takashi Iwaif44ac832008-07-30 15:01:45 +0200542 (codec->modelname && !strcmp(codec->modelname, "generic"))
Takashi Iwai82467612007-07-27 19:15:54 +0200543#else
544#define is_generic_config(codec) 0
545#endif
546
Takashi Iwai645f10c2008-11-28 15:07:37 +0100547#ifdef MODULE
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100548#define HDA_MODREQ_MAX_COUNT 2 /* two request_modules()'s */
549#else
Takashi Iwai645f10c2008-11-28 15:07:37 +0100550#define HDA_MODREQ_MAX_COUNT 0 /* all presets are statically linked */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100551#endif
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553/*
554 * find a matching codec preset
555 */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200556static const struct hda_codec_preset *
Takashi Iwai756e2b02007-04-16 11:27:07 +0200557find_codec_preset(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100559 struct hda_codec_preset_list *tbl;
560 const struct hda_codec_preset *preset;
561 int mod_requested = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Takashi Iwai82467612007-07-27 19:15:54 +0200563 if (is_generic_config(codec))
Takashi Iwaid5ad6302007-03-07 15:55:59 +0100564 return NULL; /* use the generic parser */
565
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100566 again:
567 mutex_lock(&preset_mutex);
568 list_for_each_entry(tbl, &hda_preset_tables, list) {
569 if (!try_module_get(tbl->owner)) {
570 snd_printk(KERN_ERR "hda_codec: cannot module_get\n");
571 continue;
572 }
573 for (preset = tbl->preset; preset->id; preset++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 u32 mask = preset->mask;
Marc Boucherca7cfae2008-01-22 15:32:25 +0100575 if (preset->afg && preset->afg != codec->afg)
576 continue;
577 if (preset->mfg && preset->mfg != codec->mfg)
578 continue;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200579 if (!mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 mask = ~0;
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200581 if (preset->id == (codec->vendor_id & mask) &&
Takashi Iwai0ba21762007-04-16 11:29:14 +0200582 (!preset->rev ||
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100583 preset->rev == codec->revision_id)) {
584 mutex_unlock(&preset_mutex);
585 codec->owner = tbl->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return preset;
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100587 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100589 module_put(tbl->owner);
590 }
591 mutex_unlock(&preset_mutex);
592
593 if (mod_requested < HDA_MODREQ_MAX_COUNT) {
594 char name[32];
595 if (!mod_requested)
596 snprintf(name, sizeof(name), "snd-hda-codec-id:%08x",
597 codec->vendor_id);
598 else
599 snprintf(name, sizeof(name), "snd-hda-codec-id:%04x*",
600 (codec->vendor_id >> 16) & 0xffff);
601 request_module(name);
602 mod_requested++;
603 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605 return NULL;
606}
607
608/*
Takashi Iwaif44ac832008-07-30 15:01:45 +0200609 * get_codec_name - store the codec name
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 */
Takashi Iwaif44ac832008-07-30 15:01:45 +0200611static int get_codec_name(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
613 const struct hda_vendor_id *c;
614 const char *vendor = NULL;
615 u16 vendor_id = codec->vendor_id >> 16;
Takashi Iwaif44ac832008-07-30 15:01:45 +0200616 char tmp[16], name[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 for (c = hda_vendor_ids; c->id; c++) {
619 if (c->id == vendor_id) {
620 vendor = c->name;
621 break;
622 }
623 }
Takashi Iwai0ba21762007-04-16 11:29:14 +0200624 if (!vendor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 sprintf(tmp, "Generic %04x", vendor_id);
626 vendor = tmp;
627 }
628 if (codec->preset && codec->preset->name)
Takashi Iwaif44ac832008-07-30 15:01:45 +0200629 snprintf(name, sizeof(name), "%s %s", vendor,
630 codec->preset->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 else
Takashi Iwaif44ac832008-07-30 15:01:45 +0200632 snprintf(name, sizeof(name), "%s ID %x", vendor,
Takashi Iwai0ba21762007-04-16 11:29:14 +0200633 codec->vendor_id & 0xffff);
Takashi Iwaif44ac832008-07-30 15:01:45 +0200634 codec->name = kstrdup(name, GFP_KERNEL);
635 if (!codec->name)
636 return -ENOMEM;
637 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
640/*
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200641 * look for an AFG and MFG nodes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100643static void /*__devinit*/ setup_fg_nodes(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
645 int i, total_nodes;
646 hda_nid_t nid;
647
648 total_nodes = snd_hda_get_sub_nodes(codec, AC_NODE_ROOT, &nid);
649 for (i = 0; i < total_nodes; i++, nid++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200650 unsigned int func;
651 func = snd_hda_param_read(codec, nid, AC_PAR_FUNCTION_TYPE);
652 switch (func & 0xff) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200653 case AC_GRP_AUDIO_FUNCTION:
654 codec->afg = nid;
655 break;
656 case AC_GRP_MODEM_FUNCTION:
657 codec->mfg = nid;
658 break;
659 default:
660 break;
661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
664
665/*
Takashi Iwai54d17402005-11-21 16:33:22 +0100666 * read widget caps for each widget and store in cache
667 */
668static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node)
669{
670 int i;
671 hda_nid_t nid;
672
673 codec->num_nodes = snd_hda_get_sub_nodes(codec, fg_node,
674 &codec->start_nid);
675 codec->wcaps = kmalloc(codec->num_nodes * 4, GFP_KERNEL);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200676 if (!codec->wcaps)
Takashi Iwai54d17402005-11-21 16:33:22 +0100677 return -ENOMEM;
678 nid = codec->start_nid;
679 for (i = 0; i < codec->num_nodes; i++, nid++)
680 codec->wcaps[i] = snd_hda_param_read(codec, nid,
681 AC_PAR_AUDIO_WIDGET_CAP);
682 return 0;
683}
684
685
Takashi Iwai01751f52007-08-10 16:59:39 +0200686static void init_hda_cache(struct hda_cache_rec *cache,
687 unsigned int record_size);
Takashi Iwai1fcaee62007-08-23 00:01:09 +0200688static void free_hda_cache(struct hda_cache_rec *cache);
Takashi Iwai01751f52007-08-10 16:59:39 +0200689
Takashi Iwai54d17402005-11-21 16:33:22 +0100690/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 * codec destructor
692 */
693static void snd_hda_codec_free(struct hda_codec *codec)
694{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200695 if (!codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 return;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200697#ifdef CONFIG_SND_HDA_POWER_SAVE
698 cancel_delayed_work(&codec->power_work);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100699 flush_workqueue(codec->bus->workq);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200700#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 list_del(&codec->list);
Takashi Iwaid13bd412008-07-30 15:01:45 +0200702 snd_array_free(&codec->mixers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 codec->bus->caddr_tbl[codec->addr] = NULL;
704 if (codec->patch_ops.free)
705 codec->patch_ops.free(codec);
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100706 module_put(codec->owner);
Takashi Iwai01751f52007-08-10 16:59:39 +0200707 free_hda_cache(&codec->amp_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200708 free_hda_cache(&codec->cmd_cache);
Takashi Iwaif44ac832008-07-30 15:01:45 +0200709 kfree(codec->name);
710 kfree(codec->modelname);
Takashi Iwai54d17402005-11-21 16:33:22 +0100711 kfree(codec->wcaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 kfree(codec);
713}
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715/**
716 * snd_hda_codec_new - create a HDA codec
717 * @bus: the bus to assign
718 * @codec_addr: the codec address
719 * @codecp: the pointer to store the generated codec
720 *
721 * Returns 0 if successful, or a negative error code.
722 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100723int /*__devinit*/ snd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr,
Takashi Iwaid4d9cd032008-12-19 15:19:11 +0100724 int do_init, struct hda_codec **codecp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
726 struct hda_codec *codec;
Jaroslav Kyselaba443682008-08-13 20:55:32 +0200727 char component[31];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 int err;
729
Takashi Iwaida3cec32008-08-08 17:12:14 +0200730 if (snd_BUG_ON(!bus))
731 return -EINVAL;
732 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
733 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 if (bus->caddr_tbl[codec_addr]) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200736 snd_printk(KERN_ERR "hda_codec: "
737 "address 0x%x is already occupied\n", codec_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return -EBUSY;
739 }
740
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200741 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (codec == NULL) {
743 snd_printk(KERN_ERR "can't allocate struct hda_codec\n");
744 return -ENOMEM;
745 }
746
747 codec->bus = bus;
748 codec->addr = codec_addr;
Ingo Molnar62932df2006-01-16 16:34:20 +0100749 mutex_init(&codec->spdif_mutex);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +0800750 mutex_init(&codec->control_mutex);
Takashi Iwai01751f52007-08-10 16:59:39 +0200751 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200752 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Takashi Iwaid13bd412008-07-30 15:01:45 +0200753 snd_array_init(&codec->mixers, sizeof(struct snd_kcontrol *), 32);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200754 if (codec->bus->modelname) {
755 codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL);
756 if (!codec->modelname) {
757 snd_hda_codec_free(codec);
758 return -ENODEV;
759 }
760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Takashi Iwaicb53c622007-08-10 17:21:45 +0200762#ifdef CONFIG_SND_HDA_POWER_SAVE
763 INIT_DELAYED_WORK(&codec->power_work, hda_power_work);
764 /* snd_hda_codec_new() marks the codec as power-up, and leave it as is.
765 * the caller has to power down appropriatley after initialization
766 * phase.
767 */
768 hda_keep_power_on(codec);
769#endif
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 list_add_tail(&codec->list, &bus->codec_list);
772 bus->caddr_tbl[codec_addr] = codec;
773
Takashi Iwai0ba21762007-04-16 11:29:14 +0200774 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
775 AC_PAR_VENDOR_ID);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100776 if (codec->vendor_id == -1)
777 /* read again, hopefully the access method was corrected
778 * in the last read...
779 */
780 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
781 AC_PAR_VENDOR_ID);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200782 codec->subsystem_id = snd_hda_param_read(codec, AC_NODE_ROOT,
783 AC_PAR_SUBSYSTEM_ID);
784 codec->revision_id = snd_hda_param_read(codec, AC_NODE_ROOT,
785 AC_PAR_REV_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200787 setup_fg_nodes(codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200788 if (!codec->afg && !codec->mfg) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200789 snd_printdd("hda_codec: no AFG or MFG node found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 snd_hda_codec_free(codec);
791 return -ENODEV;
792 }
793
Takashi Iwai54d17402005-11-21 16:33:22 +0100794 if (read_widget_caps(codec, codec->afg ? codec->afg : codec->mfg) < 0) {
795 snd_printk(KERN_ERR "hda_codec: cannot malloc\n");
796 snd_hda_codec_free(codec);
797 return -ENOMEM;
798 }
799
Takashi Iwai0ba21762007-04-16 11:29:14 +0200800 if (!codec->subsystem_id) {
Takashi Iwai86284e42005-10-11 15:05:54 +0200801 hda_nid_t nid = codec->afg ? codec->afg : codec->mfg;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200802 codec->subsystem_id =
803 snd_hda_codec_read(codec, nid, 0,
804 AC_VERB_GET_SUBSYSTEM_ID, 0);
Takashi Iwai86284e42005-10-11 15:05:54 +0200805 }
Takashi Iwaif44ac832008-07-30 15:01:45 +0200806 if (bus->modelname)
807 codec->modelname = kstrdup(bus->modelname, GFP_KERNEL);
Takashi Iwai86284e42005-10-11 15:05:54 +0200808
Takashi Iwaid4d9cd032008-12-19 15:19:11 +0100809 if (do_init) {
810 err = snd_hda_codec_configure(codec);
811 if (err < 0) {
812 snd_hda_codec_free(codec);
813 return err;
814 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200815 }
816 snd_hda_codec_proc_new(codec);
817
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200818 snd_hda_create_hwdep(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200819
820 sprintf(component, "HDA:%08x,%08x,%08x", codec->vendor_id,
821 codec->subsystem_id, codec->revision_id);
822 snd_component_add(codec->bus->card, component);
823
824 if (codecp)
825 *codecp = codec;
826 return 0;
827}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100828EXPORT_SYMBOL_HDA(snd_hda_codec_new);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200829
830int snd_hda_codec_configure(struct hda_codec *codec)
831{
832 int err;
833
Takashi Iwaid5ad6302007-03-07 15:55:59 +0100834 codec->preset = find_codec_preset(codec);
Takashi Iwaif44ac832008-07-30 15:01:45 +0200835 if (!codec->name) {
836 err = get_codec_name(codec);
837 if (err < 0)
838 return err;
839 }
Takashi Iwai43ea1d42007-04-26 19:12:08 +0200840 /* audio codec should override the mixer name */
Takashi Iwaif44ac832008-07-30 15:01:45 +0200841 if (codec->afg || !*codec->bus->card->mixername)
842 strlcpy(codec->bus->card->mixername, codec->name,
843 sizeof(codec->bus->card->mixername));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Takashi Iwai82467612007-07-27 19:15:54 +0200845 if (is_generic_config(codec)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 err = snd_hda_parse_generic_codec(codec);
Takashi Iwai82467612007-07-27 19:15:54 +0200847 goto patched;
848 }
Takashi Iwai82467612007-07-27 19:15:54 +0200849 if (codec->preset && codec->preset->patch) {
850 err = codec->preset->patch(codec);
851 goto patched;
852 }
853
854 /* call the default parser */
Takashi Iwai82467612007-07-27 19:15:54 +0200855 err = snd_hda_parse_generic_codec(codec);
Takashi Iwai35a1e0c2007-10-19 08:13:40 +0200856 if (err < 0)
857 printk(KERN_ERR "hda-codec: No codec parser is available\n");
Takashi Iwai82467612007-07-27 19:15:54 +0200858
859 patched:
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200860 if (!err && codec->patch_ops.unsol_event)
861 err = init_unsol_queue(codec->bus);
862 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863}
864
865/**
866 * snd_hda_codec_setup_stream - set up the codec for streaming
867 * @codec: the CODEC to set up
868 * @nid: the NID to set up
869 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
870 * @channel_id: channel id to pass, zero based.
871 * @format: stream format.
872 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200873void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
874 u32 stream_tag,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 int channel_id, int format)
876{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200877 if (!nid)
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200878 return;
879
Takashi Iwai0ba21762007-04-16 11:29:14 +0200880 snd_printdd("hda_codec_setup_stream: "
881 "NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 nid, stream_tag, channel_id, format);
883 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID,
884 (stream_tag << 4) | channel_id);
885 msleep(1);
886 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, format);
887}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100888EXPORT_SYMBOL_HDA(snd_hda_codec_setup_stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Takashi Iwai888afa12008-03-18 09:57:50 +0100890void snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid)
891{
892 if (!nid)
893 return;
894
895 snd_printdd("hda_codec_cleanup_stream: NID=0x%x\n", nid);
896 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
897#if 0 /* keep the format */
898 msleep(1);
899 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0);
900#endif
901}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100902EXPORT_SYMBOL_HDA(snd_hda_codec_cleanup_stream);
Takashi Iwai888afa12008-03-18 09:57:50 +0100903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904/*
905 * amp access functions
906 */
907
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200908/* FIXME: more better hash key? */
909#define HDA_HASH_KEY(nid,dir,idx) (u32)((nid) + ((idx) << 16) + ((dir) << 24))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910#define INFO_AMP_CAPS (1<<0)
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200911#define INFO_AMP_VOL(ch) (1 << (1 + (ch)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913/* initialize the hash table */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100914static void /*__devinit*/ init_hda_cache(struct hda_cache_rec *cache,
Takashi Iwai01751f52007-08-10 16:59:39 +0200915 unsigned int record_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
Takashi Iwai01751f52007-08-10 16:59:39 +0200917 memset(cache, 0, sizeof(*cache));
918 memset(cache->hash, 0xff, sizeof(cache->hash));
Takashi Iwai603c4012008-07-30 15:01:44 +0200919 snd_array_init(&cache->buf, record_size, 64);
Takashi Iwai01751f52007-08-10 16:59:39 +0200920}
921
Takashi Iwai1fcaee62007-08-23 00:01:09 +0200922static void free_hda_cache(struct hda_cache_rec *cache)
Takashi Iwai01751f52007-08-10 16:59:39 +0200923{
Takashi Iwai603c4012008-07-30 15:01:44 +0200924 snd_array_free(&cache->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
926
927/* query the hash. allocate an entry if not found. */
Takashi Iwai01751f52007-08-10 16:59:39 +0200928static struct hda_cache_head *get_alloc_hash(struct hda_cache_rec *cache,
929 u32 key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Takashi Iwai01751f52007-08-10 16:59:39 +0200931 u16 idx = key % (u16)ARRAY_SIZE(cache->hash);
932 u16 cur = cache->hash[idx];
933 struct hda_cache_head *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 while (cur != 0xffff) {
Takashi Iwaif43aa022008-11-10 16:24:26 +0100936 info = snd_array_elem(&cache->buf, cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 if (info->key == key)
938 return info;
939 cur = info->next;
940 }
941
942 /* add a new hash entry */
Takashi Iwai603c4012008-07-30 15:01:44 +0200943 info = snd_array_new(&cache->buf);
Takashi Iwaic2174292008-11-07 00:23:30 +0100944 if (!info)
945 return NULL;
Takashi Iwaif43aa022008-11-10 16:24:26 +0100946 cur = snd_array_index(&cache->buf, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 info->key = key;
Takashi Iwai01751f52007-08-10 16:59:39 +0200948 info->val = 0;
949 info->next = cache->hash[idx];
950 cache->hash[idx] = cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 return info;
953}
954
Takashi Iwai01751f52007-08-10 16:59:39 +0200955/* query and allocate an amp hash entry */
956static inline struct hda_amp_info *
957get_alloc_amp_hash(struct hda_codec *codec, u32 key)
958{
959 return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key);
960}
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962/*
963 * query AMP capabilities for the given widget and direction
964 */
Matthew Ranostay09a99952008-01-24 11:49:21 +0100965u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200967 struct hda_amp_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Takashi Iwai0ba21762007-04-16 11:29:14 +0200969 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, 0));
970 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 return 0;
Takashi Iwai01751f52007-08-10 16:59:39 +0200972 if (!(info->head.val & INFO_AMP_CAPS)) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200973 if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 nid = codec->afg;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200975 info->amp_caps = snd_hda_param_read(codec, nid,
976 direction == HDA_OUTPUT ?
977 AC_PAR_AMP_OUT_CAP :
978 AC_PAR_AMP_IN_CAP);
Takashi Iwaib75e53f2007-05-10 16:56:09 +0200979 if (info->amp_caps)
Takashi Iwai01751f52007-08-10 16:59:39 +0200980 info->head.val |= INFO_AMP_CAPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 }
982 return info->amp_caps;
983}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100984EXPORT_SYMBOL_HDA(query_amp_caps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
Takashi Iwai897cc182007-05-29 19:01:37 +0200986int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
987 unsigned int caps)
988{
989 struct hda_amp_info *info;
990
991 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, dir, 0));
992 if (!info)
993 return -EINVAL;
994 info->amp_caps = caps;
Takashi Iwai01751f52007-08-10 16:59:39 +0200995 info->head.val |= INFO_AMP_CAPS;
Takashi Iwai897cc182007-05-29 19:01:37 +0200996 return 0;
997}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100998EXPORT_SYMBOL_HDA(snd_hda_override_amp_caps);
Takashi Iwai897cc182007-05-29 19:01:37 +0200999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000/*
1001 * read the current volume to info
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001002 * if the cache exists, read the cache value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001004static unsigned int get_vol_mute(struct hda_codec *codec,
1005 struct hda_amp_info *info, hda_nid_t nid,
1006 int ch, int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007{
1008 u32 val, parm;
1009
Takashi Iwai01751f52007-08-10 16:59:39 +02001010 if (info->head.val & INFO_AMP_VOL(ch))
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001011 return info->vol[ch];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 parm = ch ? AC_AMP_GET_RIGHT : AC_AMP_GET_LEFT;
1014 parm |= direction == HDA_OUTPUT ? AC_AMP_GET_OUTPUT : AC_AMP_GET_INPUT;
1015 parm |= index;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001016 val = snd_hda_codec_read(codec, nid, 0,
1017 AC_VERB_GET_AMP_GAIN_MUTE, parm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 info->vol[ch] = val & 0xff;
Takashi Iwai01751f52007-08-10 16:59:39 +02001019 info->head.val |= INFO_AMP_VOL(ch);
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001020 return info->vol[ch];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
1022
1023/*
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001024 * write the current volume in info to the h/w and update the cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 */
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001026static void put_vol_mute(struct hda_codec *codec, struct hda_amp_info *info,
Takashi Iwai0ba21762007-04-16 11:29:14 +02001027 hda_nid_t nid, int ch, int direction, int index,
1028 int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
1030 u32 parm;
1031
1032 parm = ch ? AC_AMP_SET_RIGHT : AC_AMP_SET_LEFT;
1033 parm |= direction == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT;
1034 parm |= index << AC_AMP_SET_INDEX_SHIFT;
1035 parm |= val;
1036 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, parm);
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001037 info->vol[ch] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
1039
1040/*
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001041 * read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 */
Takashi Iwai834be882006-03-01 14:16:17 +01001043int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch,
1044 int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001046 struct hda_amp_info *info;
1047 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, index));
1048 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001050 return get_vol_mute(codec, info, nid, ch, direction, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001052EXPORT_SYMBOL_HDA(snd_hda_codec_amp_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001054/*
1055 * update the AMP value, mask = bit mask to set, val = the value
1056 */
Takashi Iwai834be882006-03-01 14:16:17 +01001057int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch,
1058 int direction, int idx, int mask, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001060 struct hda_amp_info *info;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001061
Takashi Iwai0ba21762007-04-16 11:29:14 +02001062 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, idx));
1063 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001065 val &= mask;
1066 val |= get_vol_mute(codec, info, nid, ch, direction, idx) & ~mask;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001067 if (info->vol[ch] == val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001069 put_vol_mute(codec, info, nid, ch, direction, idx, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 return 1;
1071}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001072EXPORT_SYMBOL_HDA(snd_hda_codec_amp_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Takashi Iwai47fd8302007-08-10 17:11:07 +02001074/*
1075 * update the AMP stereo with the same mask and value
1076 */
1077int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
1078 int direction, int idx, int mask, int val)
1079{
1080 int ch, ret = 0;
1081 for (ch = 0; ch < 2; ch++)
1082 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
1083 idx, mask, val);
1084 return ret;
1085}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001086EXPORT_SYMBOL_HDA(snd_hda_codec_amp_stereo);
Takashi Iwai47fd8302007-08-10 17:11:07 +02001087
Takashi Iwaicb53c622007-08-10 17:21:45 +02001088#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001089/* resume the all amp commands from the cache */
1090void snd_hda_codec_resume_amp(struct hda_codec *codec)
1091{
Takashi Iwai603c4012008-07-30 15:01:44 +02001092 struct hda_amp_info *buffer = codec->amp_cache.buf.list;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001093 int i;
1094
Takashi Iwai603c4012008-07-30 15:01:44 +02001095 for (i = 0; i < codec->amp_cache.buf.used; i++, buffer++) {
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001096 u32 key = buffer->head.key;
1097 hda_nid_t nid;
1098 unsigned int idx, dir, ch;
1099 if (!key)
1100 continue;
1101 nid = key & 0xff;
1102 idx = (key >> 16) & 0xff;
1103 dir = (key >> 24) & 0xff;
1104 for (ch = 0; ch < 2; ch++) {
1105 if (!(buffer->head.val & INFO_AMP_VOL(ch)))
1106 continue;
1107 put_vol_mute(codec, buffer, nid, ch, dir, idx,
1108 buffer->vol[ch]);
1109 }
1110 }
1111}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001112EXPORT_SYMBOL_HDA(snd_hda_codec_resume_amp);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001113#endif /* SND_HDA_NEEDS_RESUME */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115/* volume */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001116int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
1117 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
1119 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1120 u16 nid = get_amp_nid(kcontrol);
1121 u8 chs = get_amp_channels(kcontrol);
1122 int dir = get_amp_direction(kcontrol);
1123 u32 caps;
1124
1125 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001126 /* num steps */
1127 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1128 if (!caps) {
1129 printk(KERN_WARNING "hda_codec: "
Takashi Iwai9c8f2ab2008-01-11 16:12:23 +01001130 "num_steps = 0 for NID=0x%x (ctl = %s)\n", nid,
1131 kcontrol->id.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 return -EINVAL;
1133 }
1134 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1135 uinfo->count = chs == 3 ? 2 : 1;
1136 uinfo->value.integer.min = 0;
1137 uinfo->value.integer.max = caps;
1138 return 0;
1139}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001140EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
Takashi Iwai0ba21762007-04-16 11:29:14 +02001142int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
1143 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
1145 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1146 hda_nid_t nid = get_amp_nid(kcontrol);
1147 int chs = get_amp_channels(kcontrol);
1148 int dir = get_amp_direction(kcontrol);
1149 int idx = get_amp_index(kcontrol);
1150 long *valp = ucontrol->value.integer.value;
1151
1152 if (chs & 1)
Takashi Iwai47fd8302007-08-10 17:11:07 +02001153 *valp++ = snd_hda_codec_amp_read(codec, nid, 0, dir, idx)
1154 & HDA_AMP_VOLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 if (chs & 2)
Takashi Iwai47fd8302007-08-10 17:11:07 +02001156 *valp = snd_hda_codec_amp_read(codec, nid, 1, dir, idx)
1157 & HDA_AMP_VOLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 return 0;
1159}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001160EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Takashi Iwai0ba21762007-04-16 11:29:14 +02001162int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
1163 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164{
1165 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1166 hda_nid_t nid = get_amp_nid(kcontrol);
1167 int chs = get_amp_channels(kcontrol);
1168 int dir = get_amp_direction(kcontrol);
1169 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 long *valp = ucontrol->value.integer.value;
1171 int change = 0;
1172
Takashi Iwaicb53c622007-08-10 17:21:45 +02001173 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001174 if (chs & 1) {
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001175 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
1176 0x7f, *valp);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001177 valp++;
1178 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001179 if (chs & 2)
1180 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001181 0x7f, *valp);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001182 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 return change;
1184}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001185EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001187int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1188 unsigned int size, unsigned int __user *_tlv)
1189{
1190 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1191 hda_nid_t nid = get_amp_nid(kcontrol);
1192 int dir = get_amp_direction(kcontrol);
1193 u32 caps, val1, val2;
1194
1195 if (size < 4 * sizeof(unsigned int))
1196 return -ENOMEM;
1197 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001198 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1199 val2 = (val2 + 1) * 25;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001200 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
1201 val1 = ((int)val1) * ((int)val2);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001202 if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv))
1203 return -EFAULT;
1204 if (put_user(2 * sizeof(unsigned int), _tlv + 1))
1205 return -EFAULT;
1206 if (put_user(val1, _tlv + 2))
1207 return -EFAULT;
1208 if (put_user(val2, _tlv + 3))
1209 return -EFAULT;
1210 return 0;
1211}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001212EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_tlv);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001213
Takashi Iwai2134ea42008-01-10 16:53:55 +01001214/*
1215 * set (static) TLV for virtual master volume; recalculated as max 0dB
1216 */
1217void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
1218 unsigned int *tlv)
1219{
1220 u32 caps;
1221 int nums, step;
1222
1223 caps = query_amp_caps(codec, nid, dir);
1224 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1225 step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1226 step = (step + 1) * 25;
1227 tlv[0] = SNDRV_CTL_TLVT_DB_SCALE;
1228 tlv[1] = 2 * sizeof(unsigned int);
1229 tlv[2] = -nums * step;
1230 tlv[3] = step;
1231}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001232EXPORT_SYMBOL_HDA(snd_hda_set_vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001233
1234/* find a mixer control element with the given name */
Takashi Iwai09f99702008-02-04 12:31:13 +01001235static struct snd_kcontrol *
1236_snd_hda_find_mixer_ctl(struct hda_codec *codec,
1237 const char *name, int idx)
Takashi Iwai2134ea42008-01-10 16:53:55 +01001238{
1239 struct snd_ctl_elem_id id;
1240 memset(&id, 0, sizeof(id));
1241 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Takashi Iwai09f99702008-02-04 12:31:13 +01001242 id.index = idx;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001243 strcpy(id.name, name);
1244 return snd_ctl_find_id(codec->bus->card, &id);
1245}
1246
Takashi Iwai09f99702008-02-04 12:31:13 +01001247struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
1248 const char *name)
1249{
1250 return _snd_hda_find_mixer_ctl(codec, name, 0);
1251}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001252EXPORT_SYMBOL_HDA(snd_hda_find_mixer_ctl);
Takashi Iwai09f99702008-02-04 12:31:13 +01001253
Takashi Iwaid13bd412008-07-30 15:01:45 +02001254/* Add a control element and assign to the codec */
1255int snd_hda_ctl_add(struct hda_codec *codec, struct snd_kcontrol *kctl)
1256{
1257 int err;
1258 struct snd_kcontrol **knewp;
1259
1260 err = snd_ctl_add(codec->bus->card, kctl);
1261 if (err < 0)
1262 return err;
1263 knewp = snd_array_new(&codec->mixers);
1264 if (!knewp)
1265 return -ENOMEM;
1266 *knewp = kctl;
1267 return 0;
1268}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001269EXPORT_SYMBOL_HDA(snd_hda_ctl_add);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001270
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001271#ifdef CONFIG_SND_HDA_RECONFIG
Takashi Iwaid13bd412008-07-30 15:01:45 +02001272/* Clear all controls assigned to the given codec */
1273void snd_hda_ctls_clear(struct hda_codec *codec)
1274{
1275 int i;
1276 struct snd_kcontrol **kctls = codec->mixers.list;
1277 for (i = 0; i < codec->mixers.used; i++)
1278 snd_ctl_remove(codec->bus->card, kctls[i]);
1279 snd_array_free(&codec->mixers);
1280}
1281
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001282void snd_hda_codec_reset(struct hda_codec *codec)
1283{
1284 int i;
1285
1286#ifdef CONFIG_SND_HDA_POWER_SAVE
1287 cancel_delayed_work(&codec->power_work);
Takashi Iwai6acaed32009-01-12 10:09:24 +01001288 flush_workqueue(codec->bus->workq);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001289#endif
1290 snd_hda_ctls_clear(codec);
1291 /* relase PCMs */
1292 for (i = 0; i < codec->num_pcms; i++) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001293 if (codec->pcm_info[i].pcm) {
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001294 snd_device_free(codec->bus->card,
1295 codec->pcm_info[i].pcm);
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001296 clear_bit(codec->pcm_info[i].device,
1297 codec->bus->pcm_dev_bits);
1298 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001299 }
1300 if (codec->patch_ops.free)
1301 codec->patch_ops.free(codec);
Takashi Iwai56d17712008-11-28 14:36:23 +01001302 codec->proc_widget_hook = NULL;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001303 codec->spec = NULL;
1304 free_hda_cache(&codec->amp_cache);
1305 free_hda_cache(&codec->cmd_cache);
Takashi Iwai827057f2008-12-19 10:12:02 +01001306 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
1307 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001308 codec->num_pcms = 0;
1309 codec->pcm_info = NULL;
1310 codec->preset = NULL;
Takashi Iwai1289e9e2008-11-27 15:47:11 +01001311 module_put(codec->owner);
1312 codec->owner = NULL;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001313}
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001314#endif /* CONFIG_SND_HDA_RECONFIG */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001315
Takashi Iwai2134ea42008-01-10 16:53:55 +01001316/* create a virtual master control and add slaves */
1317int snd_hda_add_vmaster(struct hda_codec *codec, char *name,
1318 unsigned int *tlv, const char **slaves)
1319{
1320 struct snd_kcontrol *kctl;
1321 const char **s;
1322 int err;
1323
Takashi Iwai2f085542008-02-22 18:43:50 +01001324 for (s = slaves; *s && !snd_hda_find_mixer_ctl(codec, *s); s++)
1325 ;
1326 if (!*s) {
1327 snd_printdd("No slave found for %s\n", name);
1328 return 0;
1329 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001330 kctl = snd_ctl_make_virtual_master(name, tlv);
1331 if (!kctl)
1332 return -ENOMEM;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001333 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001334 if (err < 0)
1335 return err;
1336
1337 for (s = slaves; *s; s++) {
1338 struct snd_kcontrol *sctl;
1339
1340 sctl = snd_hda_find_mixer_ctl(codec, *s);
1341 if (!sctl) {
1342 snd_printdd("Cannot find slave %s, skipped\n", *s);
1343 continue;
1344 }
1345 err = snd_ctl_add_slave(kctl, sctl);
1346 if (err < 0)
1347 return err;
1348 }
1349 return 0;
1350}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001351EXPORT_SYMBOL_HDA(snd_hda_add_vmaster);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353/* switch */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001354int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
1355 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356{
1357 int chs = get_amp_channels(kcontrol);
1358
1359 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1360 uinfo->count = chs == 3 ? 2 : 1;
1361 uinfo->value.integer.min = 0;
1362 uinfo->value.integer.max = 1;
1363 return 0;
1364}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001365EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Takashi Iwai0ba21762007-04-16 11:29:14 +02001367int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
1368 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
1370 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1371 hda_nid_t nid = get_amp_nid(kcontrol);
1372 int chs = get_amp_channels(kcontrol);
1373 int dir = get_amp_direction(kcontrol);
1374 int idx = get_amp_index(kcontrol);
1375 long *valp = ucontrol->value.integer.value;
1376
1377 if (chs & 1)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001378 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02001379 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 if (chs & 2)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001381 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02001382 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 return 0;
1384}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001385EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Takashi Iwai0ba21762007-04-16 11:29:14 +02001387int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
1388 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389{
1390 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1391 hda_nid_t nid = get_amp_nid(kcontrol);
1392 int chs = get_amp_channels(kcontrol);
1393 int dir = get_amp_direction(kcontrol);
1394 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 long *valp = ucontrol->value.integer.value;
1396 int change = 0;
1397
Takashi Iwaicb53c622007-08-10 17:21:45 +02001398 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001399 if (chs & 1) {
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001400 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001401 HDA_AMP_MUTE,
1402 *valp ? 0 : HDA_AMP_MUTE);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001403 valp++;
1404 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001405 if (chs & 2)
1406 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001407 HDA_AMP_MUTE,
1408 *valp ? 0 : HDA_AMP_MUTE);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001409#ifdef CONFIG_SND_HDA_POWER_SAVE
1410 if (codec->patch_ops.check_power_status)
1411 codec->patch_ops.check_power_status(codec, nid);
1412#endif
1413 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return change;
1415}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001416EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418/*
Takashi Iwai985be542005-11-02 18:26:49 +01001419 * bound volume controls
1420 *
1421 * bind multiple volumes (# indices, from 0)
1422 */
1423
1424#define AMP_VAL_IDX_SHIFT 19
1425#define AMP_VAL_IDX_MASK (0x0f<<19)
1426
Takashi Iwai0ba21762007-04-16 11:29:14 +02001427int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol,
1428 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01001429{
1430 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1431 unsigned long pval;
1432 int err;
1433
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001434 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001435 pval = kcontrol->private_value;
1436 kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */
1437 err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
1438 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001439 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001440 return err;
1441}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001442EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_get);
Takashi Iwai985be542005-11-02 18:26:49 +01001443
Takashi Iwai0ba21762007-04-16 11:29:14 +02001444int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol,
1445 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01001446{
1447 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1448 unsigned long pval;
1449 int i, indices, err = 0, change = 0;
1450
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001451 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001452 pval = kcontrol->private_value;
1453 indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT;
1454 for (i = 0; i < indices; i++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001455 kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) |
1456 (i << AMP_VAL_IDX_SHIFT);
Takashi Iwai985be542005-11-02 18:26:49 +01001457 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
1458 if (err < 0)
1459 break;
1460 change |= err;
1461 }
1462 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001463 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001464 return err < 0 ? err : change;
1465}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001466EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_put);
Takashi Iwai985be542005-11-02 18:26:49 +01001467
1468/*
Takashi Iwai532d5382007-07-27 19:02:40 +02001469 * generic bound volume/swtich controls
1470 */
1471int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol,
1472 struct snd_ctl_elem_info *uinfo)
1473{
1474 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1475 struct hda_bind_ctls *c;
1476 int err;
1477
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001478 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001479 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001480 kcontrol->private_value = *c->values;
1481 err = c->ops->info(kcontrol, uinfo);
1482 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001483 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001484 return err;
1485}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001486EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_info);
Takashi Iwai532d5382007-07-27 19:02:40 +02001487
1488int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol,
1489 struct snd_ctl_elem_value *ucontrol)
1490{
1491 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1492 struct hda_bind_ctls *c;
1493 int err;
1494
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001495 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001496 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001497 kcontrol->private_value = *c->values;
1498 err = c->ops->get(kcontrol, ucontrol);
1499 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001500 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001501 return err;
1502}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001503EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_get);
Takashi Iwai532d5382007-07-27 19:02:40 +02001504
1505int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol,
1506 struct snd_ctl_elem_value *ucontrol)
1507{
1508 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1509 struct hda_bind_ctls *c;
1510 unsigned long *vals;
1511 int err = 0, change = 0;
1512
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001513 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001514 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001515 for (vals = c->values; *vals; vals++) {
1516 kcontrol->private_value = *vals;
1517 err = c->ops->put(kcontrol, ucontrol);
1518 if (err < 0)
1519 break;
1520 change |= err;
1521 }
1522 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001523 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001524 return err < 0 ? err : change;
1525}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001526EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_put);
Takashi Iwai532d5382007-07-27 19:02:40 +02001527
1528int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1529 unsigned int size, unsigned int __user *tlv)
1530{
1531 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1532 struct hda_bind_ctls *c;
1533 int err;
1534
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001535 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001536 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001537 kcontrol->private_value = *c->values;
1538 err = c->ops->tlv(kcontrol, op_flag, size, tlv);
1539 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001540 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001541 return err;
1542}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001543EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_tlv);
Takashi Iwai532d5382007-07-27 19:02:40 +02001544
1545struct hda_ctl_ops snd_hda_bind_vol = {
1546 .info = snd_hda_mixer_amp_volume_info,
1547 .get = snd_hda_mixer_amp_volume_get,
1548 .put = snd_hda_mixer_amp_volume_put,
1549 .tlv = snd_hda_mixer_amp_tlv
1550};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001551EXPORT_SYMBOL_HDA(snd_hda_bind_vol);
Takashi Iwai532d5382007-07-27 19:02:40 +02001552
1553struct hda_ctl_ops snd_hda_bind_sw = {
1554 .info = snd_hda_mixer_amp_switch_info,
1555 .get = snd_hda_mixer_amp_switch_get,
1556 .put = snd_hda_mixer_amp_switch_put,
1557 .tlv = snd_hda_mixer_amp_tlv
1558};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001559EXPORT_SYMBOL_HDA(snd_hda_bind_sw);
Takashi Iwai532d5382007-07-27 19:02:40 +02001560
1561/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 * SPDIF out controls
1563 */
1564
Takashi Iwai0ba21762007-04-16 11:29:14 +02001565static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
1566 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567{
1568 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1569 uinfo->count = 1;
1570 return 0;
1571}
1572
Takashi Iwai0ba21762007-04-16 11:29:14 +02001573static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
1574 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
1576 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1577 IEC958_AES0_NONAUDIO |
1578 IEC958_AES0_CON_EMPHASIS_5015 |
1579 IEC958_AES0_CON_NOT_COPYRIGHT;
1580 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
1581 IEC958_AES1_CON_ORIGINAL;
1582 return 0;
1583}
1584
Takashi Iwai0ba21762007-04-16 11:29:14 +02001585static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
1586 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
1588 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1589 IEC958_AES0_NONAUDIO |
1590 IEC958_AES0_PRO_EMPHASIS_5015;
1591 return 0;
1592}
1593
Takashi Iwai0ba21762007-04-16 11:29:14 +02001594static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
1595 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
1597 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1598
1599 ucontrol->value.iec958.status[0] = codec->spdif_status & 0xff;
1600 ucontrol->value.iec958.status[1] = (codec->spdif_status >> 8) & 0xff;
1601 ucontrol->value.iec958.status[2] = (codec->spdif_status >> 16) & 0xff;
1602 ucontrol->value.iec958.status[3] = (codec->spdif_status >> 24) & 0xff;
1603
1604 return 0;
1605}
1606
1607/* convert from SPDIF status bits to HDA SPDIF bits
1608 * bit 0 (DigEn) is always set zero (to be filled later)
1609 */
1610static unsigned short convert_from_spdif_status(unsigned int sbits)
1611{
1612 unsigned short val = 0;
1613
1614 if (sbits & IEC958_AES0_PROFESSIONAL)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001615 val |= AC_DIG1_PROFESSIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 if (sbits & IEC958_AES0_NONAUDIO)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001617 val |= AC_DIG1_NONAUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001619 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
1620 IEC958_AES0_PRO_EMPHASIS_5015)
1621 val |= AC_DIG1_EMPHASIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001623 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
1624 IEC958_AES0_CON_EMPHASIS_5015)
1625 val |= AC_DIG1_EMPHASIS;
1626 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
1627 val |= AC_DIG1_COPYRIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
Takashi Iwai0ba21762007-04-16 11:29:14 +02001629 val |= AC_DIG1_LEVEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
1631 }
1632 return val;
1633}
1634
1635/* convert to SPDIF status bits from HDA SPDIF bits
1636 */
1637static unsigned int convert_to_spdif_status(unsigned short val)
1638{
1639 unsigned int sbits = 0;
1640
Takashi Iwai0ba21762007-04-16 11:29:14 +02001641 if (val & AC_DIG1_NONAUDIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 sbits |= IEC958_AES0_NONAUDIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001643 if (val & AC_DIG1_PROFESSIONAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 sbits |= IEC958_AES0_PROFESSIONAL;
1645 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001646 if (sbits & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
1648 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001649 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001651 if (!(val & AC_DIG1_COPYRIGHT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001653 if (val & AC_DIG1_LEVEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
1655 sbits |= val & (0x7f << 8);
1656 }
1657 return sbits;
1658}
1659
Takashi Iwai2f728532008-09-25 16:32:41 +02001660/* set digital convert verbs both for the given NID and its slaves */
1661static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
1662 int verb, int val)
1663{
1664 hda_nid_t *d;
1665
Takashi Iwai9e976972008-11-25 08:17:20 +01001666 snd_hda_codec_write_cache(codec, nid, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02001667 d = codec->slave_dig_outs;
1668 if (!d)
1669 return;
1670 for (; *d; d++)
Takashi Iwai9e976972008-11-25 08:17:20 +01001671 snd_hda_codec_write_cache(codec, *d, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02001672}
1673
1674static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,
1675 int dig1, int dig2)
1676{
1677 if (dig1 != -1)
1678 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_1, dig1);
1679 if (dig2 != -1)
1680 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_2, dig2);
1681}
1682
Takashi Iwai0ba21762007-04-16 11:29:14 +02001683static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
1684 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685{
1686 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1687 hda_nid_t nid = kcontrol->private_value;
1688 unsigned short val;
1689 int change;
1690
Ingo Molnar62932df2006-01-16 16:34:20 +01001691 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 codec->spdif_status = ucontrol->value.iec958.status[0] |
1693 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
1694 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
1695 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
1696 val = convert_from_spdif_status(codec->spdif_status);
1697 val |= codec->spdif_ctls & 1;
1698 change = codec->spdif_ctls != val;
1699 codec->spdif_ctls = val;
1700
Takashi Iwai2f728532008-09-25 16:32:41 +02001701 if (change)
1702 set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
Ingo Molnar62932df2006-01-16 16:34:20 +01001704 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 return change;
1706}
1707
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001708#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Takashi Iwai0ba21762007-04-16 11:29:14 +02001710static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
1711 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712{
1713 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1714
Takashi Iwai0ba21762007-04-16 11:29:14 +02001715 ucontrol->value.integer.value[0] = codec->spdif_ctls & AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 return 0;
1717}
1718
Takashi Iwai0ba21762007-04-16 11:29:14 +02001719static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
1720 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721{
1722 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1723 hda_nid_t nid = kcontrol->private_value;
1724 unsigned short val;
1725 int change;
1726
Ingo Molnar62932df2006-01-16 16:34:20 +01001727 mutex_lock(&codec->spdif_mutex);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001728 val = codec->spdif_ctls & ~AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 if (ucontrol->value.integer.value[0])
Takashi Iwai0ba21762007-04-16 11:29:14 +02001730 val |= AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 change = codec->spdif_ctls != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001732 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 codec->spdif_ctls = val;
Takashi Iwai2f728532008-09-25 16:32:41 +02001734 set_dig_out_convert(codec, nid, val & 0xff, -1);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001735 /* unmute amp switch (if any) */
1736 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
Takashi Iwai47fd8302007-08-10 17:11:07 +02001737 (val & AC_DIG1_ENABLE))
1738 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
1739 HDA_AMP_MUTE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001741 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 return change;
1743}
1744
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001745static struct snd_kcontrol_new dig_mixes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 {
1747 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1748 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1749 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK),
1750 .info = snd_hda_spdif_mask_info,
1751 .get = snd_hda_spdif_cmask_get,
1752 },
1753 {
1754 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1755 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1756 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PRO_MASK),
1757 .info = snd_hda_spdif_mask_info,
1758 .get = snd_hda_spdif_pmask_get,
1759 },
1760 {
1761 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1762 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
1763 .info = snd_hda_spdif_mask_info,
1764 .get = snd_hda_spdif_default_get,
1765 .put = snd_hda_spdif_default_put,
1766 },
1767 {
1768 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1769 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH),
1770 .info = snd_hda_spdif_out_switch_info,
1771 .get = snd_hda_spdif_out_switch_get,
1772 .put = snd_hda_spdif_out_switch_put,
1773 },
1774 { } /* end */
1775};
1776
Takashi Iwai09f99702008-02-04 12:31:13 +01001777#define SPDIF_MAX_IDX 4 /* 4 instances should be enough to probe */
1778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779/**
1780 * snd_hda_create_spdif_out_ctls - create Output SPDIF-related controls
1781 * @codec: the HDA codec
1782 * @nid: audio out widget NID
1783 *
1784 * Creates controls related with the SPDIF output.
1785 * Called from each patch supporting the SPDIF out.
1786 *
1787 * Returns 0 if successful, or a negative error code.
1788 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02001789int snd_hda_create_spdif_out_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790{
1791 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001792 struct snd_kcontrol *kctl;
1793 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01001794 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
Takashi Iwai09f99702008-02-04 12:31:13 +01001796 for (idx = 0; idx < SPDIF_MAX_IDX; idx++) {
1797 if (!_snd_hda_find_mixer_ctl(codec, "IEC958 Playback Switch",
1798 idx))
1799 break;
1800 }
1801 if (idx >= SPDIF_MAX_IDX) {
1802 printk(KERN_ERR "hda_codec: too many IEC958 outputs\n");
1803 return -EBUSY;
1804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
1806 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaib91f0802008-11-04 08:43:08 +01001807 if (!kctl)
1808 return -ENOMEM;
Takashi Iwai09f99702008-02-04 12:31:13 +01001809 kctl->id.index = idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 kctl->private_value = nid;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001811 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001812 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 return err;
1814 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001815 codec->spdif_ctls =
Andrew Paprocki3982d172007-12-19 12:13:44 +01001816 snd_hda_codec_read(codec, nid, 0,
1817 AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 codec->spdif_status = convert_to_spdif_status(codec->spdif_ctls);
1819 return 0;
1820}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001821EXPORT_SYMBOL_HDA(snd_hda_create_spdif_out_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
1823/*
Takashi Iwai9a081602008-02-12 18:37:26 +01001824 * SPDIF sharing with analog output
1825 */
1826static int spdif_share_sw_get(struct snd_kcontrol *kcontrol,
1827 struct snd_ctl_elem_value *ucontrol)
1828{
1829 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
1830 ucontrol->value.integer.value[0] = mout->share_spdif;
1831 return 0;
1832}
1833
1834static int spdif_share_sw_put(struct snd_kcontrol *kcontrol,
1835 struct snd_ctl_elem_value *ucontrol)
1836{
1837 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
1838 mout->share_spdif = !!ucontrol->value.integer.value[0];
1839 return 0;
1840}
1841
1842static struct snd_kcontrol_new spdif_share_sw = {
1843 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1844 .name = "IEC958 Default PCM Playback Switch",
1845 .info = snd_ctl_boolean_mono_info,
1846 .get = spdif_share_sw_get,
1847 .put = spdif_share_sw_put,
1848};
1849
1850int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
1851 struct hda_multi_out *mout)
1852{
1853 if (!mout->dig_out_nid)
1854 return 0;
1855 /* ATTENTION: here mout is passed as private_data, instead of codec */
Takashi Iwaid13bd412008-07-30 15:01:45 +02001856 return snd_hda_ctl_add(codec,
Takashi Iwai9a081602008-02-12 18:37:26 +01001857 snd_ctl_new1(&spdif_share_sw, mout));
1858}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001859EXPORT_SYMBOL_HDA(snd_hda_create_spdif_share_sw);
Takashi Iwai9a081602008-02-12 18:37:26 +01001860
1861/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 * SPDIF input
1863 */
1864
1865#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
1866
Takashi Iwai0ba21762007-04-16 11:29:14 +02001867static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
1868 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869{
1870 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1871
1872 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
1873 return 0;
1874}
1875
Takashi Iwai0ba21762007-04-16 11:29:14 +02001876static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
1877 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878{
1879 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1880 hda_nid_t nid = kcontrol->private_value;
1881 unsigned int val = !!ucontrol->value.integer.value[0];
1882 int change;
1883
Ingo Molnar62932df2006-01-16 16:34:20 +01001884 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001886 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 codec->spdif_in_enable = val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001888 snd_hda_codec_write_cache(codec, nid, 0,
1889 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001891 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 return change;
1893}
1894
Takashi Iwai0ba21762007-04-16 11:29:14 +02001895static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
1896 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897{
1898 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1899 hda_nid_t nid = kcontrol->private_value;
1900 unsigned short val;
1901 unsigned int sbits;
1902
Andrew Paprocki3982d172007-12-19 12:13:44 +01001903 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 sbits = convert_to_spdif_status(val);
1905 ucontrol->value.iec958.status[0] = sbits;
1906 ucontrol->value.iec958.status[1] = sbits >> 8;
1907 ucontrol->value.iec958.status[2] = sbits >> 16;
1908 ucontrol->value.iec958.status[3] = sbits >> 24;
1909 return 0;
1910}
1911
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001912static struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 {
1914 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1915 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH),
1916 .info = snd_hda_spdif_in_switch_info,
1917 .get = snd_hda_spdif_in_switch_get,
1918 .put = snd_hda_spdif_in_switch_put,
1919 },
1920 {
1921 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1922 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1923 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,DEFAULT),
1924 .info = snd_hda_spdif_mask_info,
1925 .get = snd_hda_spdif_in_status_get,
1926 },
1927 { } /* end */
1928};
1929
1930/**
1931 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
1932 * @codec: the HDA codec
1933 * @nid: audio in widget NID
1934 *
1935 * Creates controls related with the SPDIF input.
1936 * Called from each patch supporting the SPDIF in.
1937 *
1938 * Returns 0 if successful, or a negative error code.
1939 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02001940int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941{
1942 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001943 struct snd_kcontrol *kctl;
1944 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01001945 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Takashi Iwai09f99702008-02-04 12:31:13 +01001947 for (idx = 0; idx < SPDIF_MAX_IDX; idx++) {
1948 if (!_snd_hda_find_mixer_ctl(codec, "IEC958 Capture Switch",
1949 idx))
1950 break;
1951 }
1952 if (idx >= SPDIF_MAX_IDX) {
1953 printk(KERN_ERR "hda_codec: too many IEC958 inputs\n");
1954 return -EBUSY;
1955 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
1957 kctl = snd_ctl_new1(dig_mix, codec);
1958 kctl->private_value = nid;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001959 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001960 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 return err;
1962 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001963 codec->spdif_in_enable =
Andrew Paprocki3982d172007-12-19 12:13:44 +01001964 snd_hda_codec_read(codec, nid, 0,
1965 AC_VERB_GET_DIGI_CONVERT_1, 0) &
Takashi Iwai0ba21762007-04-16 11:29:14 +02001966 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 return 0;
1968}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001969EXPORT_SYMBOL_HDA(snd_hda_create_spdif_in_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Takashi Iwaicb53c622007-08-10 17:21:45 +02001971#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001972/*
1973 * command cache
1974 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001976/* build a 32bit cache key with the widget id and the command parameter */
1977#define build_cmd_cache_key(nid, verb) ((verb << 8) | nid)
1978#define get_cmd_cache_nid(key) ((key) & 0xff)
1979#define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff)
1980
1981/**
1982 * snd_hda_codec_write_cache - send a single command with caching
1983 * @codec: the HDA codec
1984 * @nid: NID to send the command
1985 * @direct: direct flag
1986 * @verb: the verb to send
1987 * @parm: the parameter for the verb
1988 *
1989 * Send a single command without waiting for response.
1990 *
1991 * Returns 0 if successful, or a negative error code.
1992 */
1993int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid,
1994 int direct, unsigned int verb, unsigned int parm)
1995{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01001996 struct hda_bus *bus = codec->bus;
1997 unsigned int res;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001998 int err;
Takashi Iwai33fa35e2008-11-06 16:50:40 +01001999
2000 res = make_codec_cmd(codec, nid, direct, verb, parm);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002001 snd_hda_power_up(codec);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002002 mutex_lock(&bus->cmd_mutex);
2003 err = bus->ops.command(bus, res);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002004 if (!err) {
2005 struct hda_cache_head *c;
2006 u32 key = build_cmd_cache_key(nid, verb);
2007 c = get_alloc_hash(&codec->cmd_cache, key);
2008 if (c)
2009 c->val = parm;
2010 }
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002011 mutex_unlock(&bus->cmd_mutex);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002012 snd_hda_power_down(codec);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002013 return err;
2014}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002015EXPORT_SYMBOL_HDA(snd_hda_codec_write_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002016
2017/* resume the all commands from the cache */
2018void snd_hda_codec_resume_cache(struct hda_codec *codec)
2019{
Takashi Iwai603c4012008-07-30 15:01:44 +02002020 struct hda_cache_head *buffer = codec->cmd_cache.buf.list;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002021 int i;
2022
Takashi Iwai603c4012008-07-30 15:01:44 +02002023 for (i = 0; i < codec->cmd_cache.buf.used; i++, buffer++) {
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002024 u32 key = buffer->key;
2025 if (!key)
2026 continue;
2027 snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0,
2028 get_cmd_cache_cmd(key), buffer->val);
2029 }
2030}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002031EXPORT_SYMBOL_HDA(snd_hda_codec_resume_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002032
2033/**
2034 * snd_hda_sequence_write_cache - sequence writes with caching
2035 * @codec: the HDA codec
2036 * @seq: VERB array to send
2037 *
2038 * Send the commands sequentially from the given array.
2039 * Thte commands are recorded on cache for power-save and resume.
2040 * The array must be terminated with NID=0.
2041 */
2042void snd_hda_sequence_write_cache(struct hda_codec *codec,
2043 const struct hda_verb *seq)
2044{
2045 for (; seq->nid; seq++)
2046 snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb,
2047 seq->param);
2048}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002049EXPORT_SYMBOL_HDA(snd_hda_sequence_write_cache);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002050#endif /* SND_HDA_NEEDS_RESUME */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002051
Takashi Iwai54d17402005-11-21 16:33:22 +01002052/*
2053 * set power state of the codec
2054 */
2055static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2056 unsigned int power_state)
2057{
Takashi Iwaicb53c622007-08-10 17:21:45 +02002058 hda_nid_t nid;
2059 int i;
Takashi Iwai54d17402005-11-21 16:33:22 +01002060
2061 snd_hda_codec_write(codec, fg, 0, AC_VERB_SET_POWER_STATE,
2062 power_state);
Marc Boucherd2595d82008-01-22 15:23:30 +01002063 msleep(10); /* partial workaround for "azx_get_response timeout" */
Takashi Iwai54d17402005-11-21 16:33:22 +01002064
Takashi Iwaicb53c622007-08-10 17:21:45 +02002065 nid = codec->start_nid;
2066 for (i = 0; i < codec->num_nodes; i++, nid++) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01002067 unsigned int wcaps = get_wcaps(codec, nid);
2068 if (wcaps & AC_WCAP_POWER) {
2069 unsigned int wid_type = (wcaps & AC_WCAP_TYPE) >>
2070 AC_WCAP_TYPE_SHIFT;
2071 if (wid_type == AC_WID_PIN) {
2072 unsigned int pincap;
2073 /*
2074 * don't power down the widget if it controls
2075 * eapd and EAPD_BTLENABLE is set.
2076 */
2077 pincap = snd_hda_param_read(codec, nid,
2078 AC_PAR_PIN_CAP);
2079 if (pincap & AC_PINCAP_EAPD) {
2080 int eapd = snd_hda_codec_read(codec,
2081 nid, 0,
2082 AC_VERB_GET_EAPD_BTLENABLE, 0);
2083 eapd &= 0x02;
2084 if (power_state == AC_PWRST_D3 && eapd)
2085 continue;
2086 }
Takashi Iwai1194b5b2007-10-10 10:04:26 +02002087 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002088 snd_hda_codec_write(codec, nid, 0,
2089 AC_VERB_SET_POWER_STATE,
2090 power_state);
Takashi Iwai1194b5b2007-10-10 10:04:26 +02002091 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002092 }
2093
Takashi Iwaicb53c622007-08-10 17:21:45 +02002094 if (power_state == AC_PWRST_D0) {
2095 unsigned long end_time;
2096 int state;
Takashi Iwai54d17402005-11-21 16:33:22 +01002097 msleep(10);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002098 /* wait until the codec reachs to D0 */
2099 end_time = jiffies + msecs_to_jiffies(500);
2100 do {
2101 state = snd_hda_codec_read(codec, fg, 0,
2102 AC_VERB_GET_POWER_STATE, 0);
2103 if (state == power_state)
2104 break;
2105 msleep(1);
2106 } while (time_after_eq(end_time, jiffies));
2107 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002108}
2109
Takashi Iwai11aeff02008-07-30 15:01:46 +02002110#ifdef CONFIG_SND_HDA_HWDEP
2111/* execute additional init verbs */
2112static void hda_exec_init_verbs(struct hda_codec *codec)
2113{
2114 if (codec->init_verbs.list)
2115 snd_hda_sequence_write(codec, codec->init_verbs.list);
2116}
2117#else
2118static inline void hda_exec_init_verbs(struct hda_codec *codec) {}
2119#endif
2120
Takashi Iwaicb53c622007-08-10 17:21:45 +02002121#ifdef SND_HDA_NEEDS_RESUME
2122/*
2123 * call suspend and power-down; used both from PM and power-save
2124 */
2125static void hda_call_codec_suspend(struct hda_codec *codec)
2126{
2127 if (codec->patch_ops.suspend)
2128 codec->patch_ops.suspend(codec, PMSG_SUSPEND);
2129 hda_set_power_state(codec,
2130 codec->afg ? codec->afg : codec->mfg,
2131 AC_PWRST_D3);
2132#ifdef CONFIG_SND_HDA_POWER_SAVE
2133 cancel_delayed_work(&codec->power_work);
Takashi Iwai95e99fd2007-08-13 15:29:04 +02002134 codec->power_on = 0;
Takashi Iwaia221e282007-08-16 16:35:33 +02002135 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002136#endif
2137}
2138
2139/*
2140 * kick up codec; used both from PM and power-save
2141 */
2142static void hda_call_codec_resume(struct hda_codec *codec)
2143{
2144 hda_set_power_state(codec,
2145 codec->afg ? codec->afg : codec->mfg,
2146 AC_PWRST_D0);
Takashi Iwai11aeff02008-07-30 15:01:46 +02002147 hda_exec_init_verbs(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002148 if (codec->patch_ops.resume)
2149 codec->patch_ops.resume(codec);
2150 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02002151 if (codec->patch_ops.init)
2152 codec->patch_ops.init(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002153 snd_hda_codec_resume_amp(codec);
2154 snd_hda_codec_resume_cache(codec);
2155 }
2156}
2157#endif /* SND_HDA_NEEDS_RESUME */
2158
Takashi Iwai54d17402005-11-21 16:33:22 +01002159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160/**
2161 * snd_hda_build_controls - build mixer controls
2162 * @bus: the BUS
2163 *
2164 * Creates mixer controls for each codec included in the bus.
2165 *
2166 * Returns 0 if successful, otherwise a negative error code.
2167 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +01002168int /*__devinit*/ snd_hda_build_controls(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002170 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171
Takashi Iwai0ba21762007-04-16 11:29:14 +02002172 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002173 int err = snd_hda_codec_build_controls(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 if (err < 0)
2175 return err;
2176 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002177 return 0;
2178}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002179EXPORT_SYMBOL_HDA(snd_hda_build_controls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002181int snd_hda_codec_build_controls(struct hda_codec *codec)
2182{
2183 int err = 0;
2184 /* fake as if already powered-on */
2185 hda_keep_power_on(codec);
2186 /* then fire up */
2187 hda_set_power_state(codec,
2188 codec->afg ? codec->afg : codec->mfg,
2189 AC_PWRST_D0);
Takashi Iwai11aeff02008-07-30 15:01:46 +02002190 hda_exec_init_verbs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002191 /* continue to initialize... */
2192 if (codec->patch_ops.init)
2193 err = codec->patch_ops.init(codec);
2194 if (!err && codec->patch_ops.build_controls)
2195 err = codec->patch_ops.build_controls(codec);
2196 snd_hda_power_down(codec);
2197 if (err < 0)
2198 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 return 0;
2200}
2201
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202/*
2203 * stream formats
2204 */
Takashi Iwaibefdf312005-08-22 13:57:55 +02002205struct hda_rate_tbl {
2206 unsigned int hz;
2207 unsigned int alsa_bits;
2208 unsigned int hda_fmt;
2209};
2210
2211static struct hda_rate_tbl rate_bits[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 /* rate in Hz, ALSA rate bitmask, HDA format value */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02002213
2214 /* autodetected value used in snd_hda_query_supported_pcm */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 { 8000, SNDRV_PCM_RATE_8000, 0x0500 }, /* 1/6 x 48 */
2216 { 11025, SNDRV_PCM_RATE_11025, 0x4300 }, /* 1/4 x 44 */
2217 { 16000, SNDRV_PCM_RATE_16000, 0x0200 }, /* 1/3 x 48 */
2218 { 22050, SNDRV_PCM_RATE_22050, 0x4100 }, /* 1/2 x 44 */
2219 { 32000, SNDRV_PCM_RATE_32000, 0x0a00 }, /* 2/3 x 48 */
2220 { 44100, SNDRV_PCM_RATE_44100, 0x4000 }, /* 44 */
2221 { 48000, SNDRV_PCM_RATE_48000, 0x0000 }, /* 48 */
2222 { 88200, SNDRV_PCM_RATE_88200, 0x4800 }, /* 2 x 44 */
2223 { 96000, SNDRV_PCM_RATE_96000, 0x0800 }, /* 2 x 48 */
2224 { 176400, SNDRV_PCM_RATE_176400, 0x5800 },/* 4 x 44 */
2225 { 192000, SNDRV_PCM_RATE_192000, 0x1800 }, /* 4 x 48 */
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002226#define AC_PAR_PCM_RATE_BITS 11
2227 /* up to bits 10, 384kHZ isn't supported properly */
2228
2229 /* not autodetected value */
2230 { 9600, SNDRV_PCM_RATE_KNOT, 0x0400 }, /* 1/5 x 48 */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02002231
Takashi Iwaibefdf312005-08-22 13:57:55 +02002232 { 0 } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233};
2234
2235/**
2236 * snd_hda_calc_stream_format - calculate format bitset
2237 * @rate: the sample rate
2238 * @channels: the number of channels
2239 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
2240 * @maxbps: the max. bps
2241 *
2242 * Calculate the format bitset from the given rate, channels and th PCM format.
2243 *
2244 * Return zero if invalid.
2245 */
2246unsigned int snd_hda_calc_stream_format(unsigned int rate,
2247 unsigned int channels,
2248 unsigned int format,
2249 unsigned int maxbps)
2250{
2251 int i;
2252 unsigned int val = 0;
2253
Takashi Iwaibefdf312005-08-22 13:57:55 +02002254 for (i = 0; rate_bits[i].hz; i++)
2255 if (rate_bits[i].hz == rate) {
2256 val = rate_bits[i].hda_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 break;
2258 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002259 if (!rate_bits[i].hz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 snd_printdd("invalid rate %d\n", rate);
2261 return 0;
2262 }
2263
2264 if (channels == 0 || channels > 8) {
2265 snd_printdd("invalid channels %d\n", channels);
2266 return 0;
2267 }
2268 val |= channels - 1;
2269
2270 switch (snd_pcm_format_width(format)) {
2271 case 8: val |= 0x00; break;
2272 case 16: val |= 0x10; break;
2273 case 20:
2274 case 24:
2275 case 32:
2276 if (maxbps >= 32)
2277 val |= 0x40;
2278 else if (maxbps >= 24)
2279 val |= 0x30;
2280 else
2281 val |= 0x20;
2282 break;
2283 default:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002284 snd_printdd("invalid format width %d\n",
2285 snd_pcm_format_width(format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 return 0;
2287 }
2288
2289 return val;
2290}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002291EXPORT_SYMBOL_HDA(snd_hda_calc_stream_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
2293/**
2294 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
2295 * @codec: the HDA codec
2296 * @nid: NID to query
2297 * @ratesp: the pointer to store the detected rate bitflags
2298 * @formatsp: the pointer to store the detected formats
2299 * @bpsp: the pointer to store the detected format widths
2300 *
2301 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
2302 * or @bsps argument is ignored.
2303 *
2304 * Returns 0 if successful, otherwise a negative error code.
2305 */
Takashi Iwai986862bd2008-11-27 12:40:13 +01002306static int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 u32 *ratesp, u64 *formatsp, unsigned int *bpsp)
2308{
2309 int i;
2310 unsigned int val, streams;
2311
2312 val = 0;
2313 if (nid != codec->afg &&
Takashi Iwai54d17402005-11-21 16:33:22 +01002314 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
2316 if (val == -1)
2317 return -EIO;
2318 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002319 if (!val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
2321
2322 if (ratesp) {
2323 u32 rates = 0;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002324 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 if (val & (1 << i))
Takashi Iwaibefdf312005-08-22 13:57:55 +02002326 rates |= rate_bits[i].alsa_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 }
2328 *ratesp = rates;
2329 }
2330
2331 if (formatsp || bpsp) {
2332 u64 formats = 0;
2333 unsigned int bps;
2334 unsigned int wcaps;
2335
Takashi Iwai54d17402005-11-21 16:33:22 +01002336 wcaps = get_wcaps(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
2338 if (streams == -1)
2339 return -EIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002340 if (!streams) {
2341 streams = snd_hda_param_read(codec, codec->afg,
2342 AC_PAR_STREAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 if (streams == -1)
2344 return -EIO;
2345 }
2346
2347 bps = 0;
2348 if (streams & AC_SUPFMT_PCM) {
2349 if (val & AC_SUPPCM_BITS_8) {
2350 formats |= SNDRV_PCM_FMTBIT_U8;
2351 bps = 8;
2352 }
2353 if (val & AC_SUPPCM_BITS_16) {
2354 formats |= SNDRV_PCM_FMTBIT_S16_LE;
2355 bps = 16;
2356 }
2357 if (wcaps & AC_WCAP_DIGITAL) {
2358 if (val & AC_SUPPCM_BITS_32)
2359 formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
2360 if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24))
2361 formats |= SNDRV_PCM_FMTBIT_S32_LE;
2362 if (val & AC_SUPPCM_BITS_24)
2363 bps = 24;
2364 else if (val & AC_SUPPCM_BITS_20)
2365 bps = 20;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002366 } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24|
2367 AC_SUPPCM_BITS_32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 formats |= SNDRV_PCM_FMTBIT_S32_LE;
2369 if (val & AC_SUPPCM_BITS_32)
2370 bps = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 else if (val & AC_SUPPCM_BITS_24)
2372 bps = 24;
Nicolas Graziano33ef76512006-09-19 14:23:14 +02002373 else if (val & AC_SUPPCM_BITS_20)
2374 bps = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 }
2376 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002377 else if (streams == AC_SUPFMT_FLOAT32) {
2378 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
2380 bps = 32;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002381 } else if (streams == AC_SUPFMT_AC3) {
2382 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 /* temporary hack: we have still no proper support
2384 * for the direct AC3 stream...
2385 */
2386 formats |= SNDRV_PCM_FMTBIT_U8;
2387 bps = 8;
2388 }
2389 if (formatsp)
2390 *formatsp = formats;
2391 if (bpsp)
2392 *bpsp = bps;
2393 }
2394
2395 return 0;
2396}
2397
2398/**
Takashi Iwai0ba21762007-04-16 11:29:14 +02002399 * snd_hda_is_supported_format - check whether the given node supports
2400 * the format val
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 *
2402 * Returns 1 if supported, 0 if not.
2403 */
2404int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
2405 unsigned int format)
2406{
2407 int i;
2408 unsigned int val = 0, rate, stream;
2409
2410 if (nid != codec->afg &&
Takashi Iwai54d17402005-11-21 16:33:22 +01002411 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
2413 if (val == -1)
2414 return 0;
2415 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002416 if (!val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
2418 if (val == -1)
2419 return 0;
2420 }
2421
2422 rate = format & 0xff00;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002423 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++)
Takashi Iwaibefdf312005-08-22 13:57:55 +02002424 if (rate_bits[i].hda_fmt == rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 if (val & (1 << i))
2426 break;
2427 return 0;
2428 }
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002429 if (i >= AC_PAR_PCM_RATE_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 return 0;
2431
2432 stream = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
2433 if (stream == -1)
2434 return 0;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002435 if (!stream && nid != codec->afg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 stream = snd_hda_param_read(codec, codec->afg, AC_PAR_STREAM);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002437 if (!stream || stream == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 return 0;
2439
2440 if (stream & AC_SUPFMT_PCM) {
2441 switch (format & 0xf0) {
2442 case 0x00:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002443 if (!(val & AC_SUPPCM_BITS_8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 return 0;
2445 break;
2446 case 0x10:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002447 if (!(val & AC_SUPPCM_BITS_16))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 return 0;
2449 break;
2450 case 0x20:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002451 if (!(val & AC_SUPPCM_BITS_20))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 return 0;
2453 break;
2454 case 0x30:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002455 if (!(val & AC_SUPPCM_BITS_24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 return 0;
2457 break;
2458 case 0x40:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002459 if (!(val & AC_SUPPCM_BITS_32))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 return 0;
2461 break;
2462 default:
2463 return 0;
2464 }
2465 } else {
2466 /* FIXME: check for float32 and AC3? */
2467 }
2468
2469 return 1;
2470}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002471EXPORT_SYMBOL_HDA(snd_hda_is_supported_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472
2473/*
2474 * PCM stuff
2475 */
2476static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
2477 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002478 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479{
2480 return 0;
2481}
2482
2483static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
2484 struct hda_codec *codec,
2485 unsigned int stream_tag,
2486 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002487 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488{
2489 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
2490 return 0;
2491}
2492
2493static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
2494 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002495 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496{
Takashi Iwai888afa12008-03-18 09:57:50 +01002497 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 return 0;
2499}
2500
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002501static int set_pcm_default_values(struct hda_codec *codec,
2502 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002504 /* query support PCM information from the given NID */
2505 if (info->nid && (!info->rates || !info->formats)) {
2506 snd_hda_query_supported_pcm(codec, info->nid,
2507 info->rates ? NULL : &info->rates,
2508 info->formats ? NULL : &info->formats,
2509 info->maxbps ? NULL : &info->maxbps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 }
2511 if (info->ops.open == NULL)
2512 info->ops.open = hda_pcm_default_open_close;
2513 if (info->ops.close == NULL)
2514 info->ops.close = hda_pcm_default_open_close;
2515 if (info->ops.prepare == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02002516 if (snd_BUG_ON(!info->nid))
2517 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 info->ops.prepare = hda_pcm_default_prepare;
2519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 if (info->ops.cleanup == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02002521 if (snd_BUG_ON(!info->nid))
2522 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 info->ops.cleanup = hda_pcm_default_cleanup;
2524 }
2525 return 0;
2526}
2527
Takashi Iwai176d5332008-07-30 15:01:44 +02002528/*
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002529 * get the empty PCM device number to assign
2530 */
2531static int get_empty_pcm_device(struct hda_bus *bus, int type)
2532{
2533 static const char *dev_name[HDA_PCM_NTYPES] = {
2534 "Audio", "SPDIF", "HDMI", "Modem"
2535 };
2536 /* starting device index for each PCM type */
2537 static int dev_idx[HDA_PCM_NTYPES] = {
2538 [HDA_PCM_TYPE_AUDIO] = 0,
2539 [HDA_PCM_TYPE_SPDIF] = 1,
2540 [HDA_PCM_TYPE_HDMI] = 3,
2541 [HDA_PCM_TYPE_MODEM] = 6
2542 };
2543 /* normal audio device indices; not linear to keep compatibility */
2544 static int audio_idx[4] = { 0, 2, 4, 5 };
2545 int i, dev;
2546
2547 switch (type) {
2548 case HDA_PCM_TYPE_AUDIO:
2549 for (i = 0; i < ARRAY_SIZE(audio_idx); i++) {
2550 dev = audio_idx[i];
2551 if (!test_bit(dev, bus->pcm_dev_bits))
2552 break;
2553 }
2554 if (i >= ARRAY_SIZE(audio_idx)) {
2555 snd_printk(KERN_WARNING "Too many audio devices\n");
2556 return -EAGAIN;
2557 }
2558 break;
2559 case HDA_PCM_TYPE_SPDIF:
2560 case HDA_PCM_TYPE_HDMI:
2561 case HDA_PCM_TYPE_MODEM:
2562 dev = dev_idx[type];
2563 if (test_bit(dev, bus->pcm_dev_bits)) {
2564 snd_printk(KERN_WARNING "%s already defined\n",
2565 dev_name[type]);
2566 return -EAGAIN;
2567 }
2568 break;
2569 default:
2570 snd_printk(KERN_WARNING "Invalid PCM type %d\n", type);
2571 return -EINVAL;
2572 }
2573 set_bit(dev, bus->pcm_dev_bits);
2574 return dev;
2575}
2576
2577/*
Takashi Iwai176d5332008-07-30 15:01:44 +02002578 * attach a new PCM stream
2579 */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002580static int snd_hda_attach_pcm(struct hda_codec *codec, struct hda_pcm *pcm)
Takashi Iwai176d5332008-07-30 15:01:44 +02002581{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002582 struct hda_bus *bus = codec->bus;
Takashi Iwai176d5332008-07-30 15:01:44 +02002583 struct hda_pcm_stream *info;
2584 int stream, err;
2585
Takashi Iwaib91f0802008-11-04 08:43:08 +01002586 if (snd_BUG_ON(!pcm->name))
Takashi Iwai176d5332008-07-30 15:01:44 +02002587 return -EINVAL;
2588 for (stream = 0; stream < 2; stream++) {
2589 info = &pcm->stream[stream];
2590 if (info->substreams) {
2591 err = set_pcm_default_values(codec, info);
2592 if (err < 0)
2593 return err;
2594 }
2595 }
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002596 return bus->ops.attach_pcm(bus, codec, pcm);
Takashi Iwai176d5332008-07-30 15:01:44 +02002597}
2598
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002599/* assign all PCMs of the given codec */
2600int snd_hda_codec_build_pcms(struct hda_codec *codec)
2601{
2602 unsigned int pcm;
2603 int err;
2604
2605 if (!codec->num_pcms) {
2606 if (!codec->patch_ops.build_pcms)
2607 return 0;
2608 err = codec->patch_ops.build_pcms(codec);
2609 if (err < 0)
2610 return err;
2611 }
2612 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
2613 struct hda_pcm *cpcm = &codec->pcm_info[pcm];
2614 int dev;
2615
2616 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
2617 return 0; /* no substreams assigned */
2618
2619 if (!cpcm->pcm) {
2620 dev = get_empty_pcm_device(codec->bus, cpcm->pcm_type);
2621 if (dev < 0)
2622 return 0;
2623 cpcm->device = dev;
2624 err = snd_hda_attach_pcm(codec, cpcm);
2625 if (err < 0)
2626 return err;
2627 }
2628 }
2629 return 0;
2630}
2631
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632/**
2633 * snd_hda_build_pcms - build PCM information
2634 * @bus: the BUS
2635 *
2636 * Create PCM information for each codec included in the bus.
2637 *
2638 * The build_pcms codec patch is requested to set up codec->num_pcms and
2639 * codec->pcm_info properly. The array is referred by the top-level driver
2640 * to create its PCM instances.
2641 * The allocated codec->pcm_info should be released in codec->patch_ops.free
2642 * callback.
2643 *
2644 * At least, substreams, channels_min and channels_max must be filled for
2645 * each stream. substreams = 0 indicates that the stream doesn't exist.
2646 * When rates and/or formats are zero, the supported values are queried
2647 * from the given nid. The nid is used also by the default ops.prepare
2648 * and ops.cleanup callbacks.
2649 *
2650 * The driver needs to call ops.open in its open callback. Similarly,
2651 * ops.close is supposed to be called in the close callback.
2652 * ops.prepare should be called in the prepare or hw_params callback
2653 * with the proper parameters for set up.
2654 * ops.cleanup should be called in hw_free for clean up of streams.
2655 *
2656 * This function returns 0 if successfull, or a negative error code.
2657 */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002658int __devinit snd_hda_build_pcms(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002660 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
Takashi Iwai0ba21762007-04-16 11:29:14 +02002662 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002663 int err = snd_hda_codec_build_pcms(codec);
2664 if (err < 0)
2665 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 }
2667 return 0;
2668}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002669EXPORT_SYMBOL_HDA(snd_hda_build_pcms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671/**
2672 * snd_hda_check_board_config - compare the current codec with the config table
2673 * @codec: the HDA codec
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002674 * @num_configs: number of config enums
2675 * @models: array of model name strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 * @tbl: configuration table, terminated by null entries
2677 *
2678 * Compares the modelname or PCI subsystem id of the current codec with the
2679 * given configuration table. If a matching entry is found, returns its
2680 * config value (supposed to be 0 or positive).
2681 *
2682 * If no entries are matching, the function returns a negative value.
2683 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002684int snd_hda_check_board_config(struct hda_codec *codec,
2685 int num_configs, const char **models,
2686 const struct snd_pci_quirk *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687{
Takashi Iwaif44ac832008-07-30 15:01:45 +02002688 if (codec->modelname && models) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002689 int i;
2690 for (i = 0; i < num_configs; i++) {
2691 if (models[i] &&
Takashi Iwaif44ac832008-07-30 15:01:45 +02002692 !strcmp(codec->modelname, models[i])) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002693 snd_printd(KERN_INFO "hda_codec: model '%s' is "
2694 "selected\n", models[i]);
2695 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 }
2697 }
2698 }
2699
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002700 if (!codec->bus->pci || !tbl)
2701 return -1;
2702
2703 tbl = snd_pci_quirk_lookup(codec->bus->pci, tbl);
2704 if (!tbl)
2705 return -1;
2706 if (tbl->value >= 0 && tbl->value < num_configs) {
Takashi Iwai62cf8722008-05-20 12:15:15 +02002707#ifdef CONFIG_SND_DEBUG_VERBOSE
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002708 char tmp[10];
2709 const char *model = NULL;
2710 if (models)
2711 model = models[tbl->value];
2712 if (!model) {
2713 sprintf(tmp, "#%d", tbl->value);
2714 model = tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 }
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002716 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
2717 "for config %x:%x (%s)\n",
2718 model, tbl->subvendor, tbl->subdevice,
2719 (tbl->name ? tbl->name : "Unknown device"));
2720#endif
2721 return tbl->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 }
2723 return -1;
2724}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002725EXPORT_SYMBOL_HDA(snd_hda_check_board_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
2727/**
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02002728 * snd_hda_check_board_codec_sid_config - compare the current codec
2729 subsystem ID with the
2730 config table
2731
2732 This is important for Gateway notebooks with SB450 HDA Audio
2733 where the vendor ID of the PCI device is:
2734 ATI Technologies Inc SB450 HDA Audio [1002:437b]
2735 and the vendor/subvendor are found only at the codec.
2736
2737 * @codec: the HDA codec
2738 * @num_configs: number of config enums
2739 * @models: array of model name strings
2740 * @tbl: configuration table, terminated by null entries
2741 *
2742 * Compares the modelname or PCI subsystem id of the current codec with the
2743 * given configuration table. If a matching entry is found, returns its
2744 * config value (supposed to be 0 or positive).
2745 *
2746 * If no entries are matching, the function returns a negative value.
2747 */
2748int snd_hda_check_board_codec_sid_config(struct hda_codec *codec,
2749 int num_configs, const char **models,
2750 const struct snd_pci_quirk *tbl)
2751{
2752 const struct snd_pci_quirk *q;
2753
2754 /* Search for codec ID */
2755 for (q = tbl; q->subvendor; q++) {
2756 unsigned long vendorid = (q->subdevice) | (q->subvendor << 16);
2757
2758 if (vendorid == codec->subsystem_id)
2759 break;
2760 }
2761
2762 if (!q->subvendor)
2763 return -1;
2764
2765 tbl = q;
2766
2767 if (tbl->value >= 0 && tbl->value < num_configs) {
2768#ifdef CONFIG_SND_DEBUG_DETECT
2769 char tmp[10];
2770 const char *model = NULL;
2771 if (models)
2772 model = models[tbl->value];
2773 if (!model) {
2774 sprintf(tmp, "#%d", tbl->value);
2775 model = tmp;
2776 }
2777 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
2778 "for config %x:%x (%s)\n",
2779 model, tbl->subvendor, tbl->subdevice,
2780 (tbl->name ? tbl->name : "Unknown device"));
2781#endif
2782 return tbl->value;
2783 }
2784 return -1;
2785}
2786EXPORT_SYMBOL_HDA(snd_hda_check_board_codec_sid_config);
2787
2788/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 * snd_hda_add_new_ctls - create controls from the array
2790 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002791 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 *
2793 * This helper function creates and add new controls in the given array.
2794 * The array must be terminated with an empty entry as terminator.
2795 *
2796 * Returns 0 if successful, or a negative error code.
2797 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002798int snd_hda_add_new_ctls(struct hda_codec *codec, struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799{
Takashi Iwaicb53c622007-08-10 17:21:45 +02002800 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
2802 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01002803 struct snd_kcontrol *kctl;
2804 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002805 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01002806 return -ENOMEM;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002807 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai54d17402005-11-21 16:33:22 +01002808 if (err < 0) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002809 if (!codec->addr)
Takashi Iwai54d17402005-11-21 16:33:22 +01002810 return err;
2811 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002812 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01002813 return -ENOMEM;
2814 kctl->id.device = codec->addr;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002815 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002816 if (err < 0)
Takashi Iwai54d17402005-11-21 16:33:22 +01002817 return err;
2818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 }
2820 return 0;
2821}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002822EXPORT_SYMBOL_HDA(snd_hda_add_new_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
Takashi Iwaicb53c622007-08-10 17:21:45 +02002824#ifdef CONFIG_SND_HDA_POWER_SAVE
2825static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2826 unsigned int power_state);
2827
2828static void hda_power_work(struct work_struct *work)
2829{
2830 struct hda_codec *codec =
2831 container_of(work, struct hda_codec, power_work.work);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002832 struct hda_bus *bus = codec->bus;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002833
Maxim Levitsky2e492462007-09-03 15:26:57 +02002834 if (!codec->power_on || codec->power_count) {
2835 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002836 return;
Maxim Levitsky2e492462007-09-03 15:26:57 +02002837 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02002838
2839 hda_call_codec_suspend(codec);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002840 if (bus->ops.pm_notify)
2841 bus->ops.pm_notify(bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002842}
2843
2844static void hda_keep_power_on(struct hda_codec *codec)
2845{
2846 codec->power_count++;
2847 codec->power_on = 1;
2848}
2849
2850void snd_hda_power_up(struct hda_codec *codec)
2851{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002852 struct hda_bus *bus = codec->bus;
2853
Takashi Iwaicb53c622007-08-10 17:21:45 +02002854 codec->power_count++;
Takashi Iwaia221e282007-08-16 16:35:33 +02002855 if (codec->power_on || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002856 return;
2857
2858 codec->power_on = 1;
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002859 if (bus->ops.pm_notify)
2860 bus->ops.pm_notify(bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002861 hda_call_codec_resume(codec);
2862 cancel_delayed_work(&codec->power_work);
Takashi Iwaia221e282007-08-16 16:35:33 +02002863 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002864}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002865EXPORT_SYMBOL_HDA(snd_hda_power_up);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01002866
2867#define power_save(codec) \
2868 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002869
Takashi Iwaifee2fba2008-11-27 12:43:28 +01002870#define power_save(codec) \
2871 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0)
2872
Takashi Iwaicb53c622007-08-10 17:21:45 +02002873void snd_hda_power_down(struct hda_codec *codec)
2874{
2875 --codec->power_count;
Takashi Iwaia221e282007-08-16 16:35:33 +02002876 if (!codec->power_on || codec->power_count || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002877 return;
Takashi Iwaifee2fba2008-11-27 12:43:28 +01002878 if (power_save(codec)) {
Takashi Iwaia221e282007-08-16 16:35:33 +02002879 codec->power_transition = 1; /* avoid reentrance */
Takashi Iwaic107b412009-01-13 17:46:37 +01002880 queue_delayed_work(codec->bus->workq, &codec->power_work,
Takashi Iwaifee2fba2008-11-27 12:43:28 +01002881 msecs_to_jiffies(power_save(codec) * 1000));
Takashi Iwaia221e282007-08-16 16:35:33 +02002882 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02002883}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002884EXPORT_SYMBOL_HDA(snd_hda_power_down);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002885
2886int snd_hda_check_amp_list_power(struct hda_codec *codec,
2887 struct hda_loopback_check *check,
2888 hda_nid_t nid)
2889{
2890 struct hda_amp_list *p;
2891 int ch, v;
2892
2893 if (!check->amplist)
2894 return 0;
2895 for (p = check->amplist; p->nid; p++) {
2896 if (p->nid == nid)
2897 break;
2898 }
2899 if (!p->nid)
2900 return 0; /* nothing changed */
2901
2902 for (p = check->amplist; p->nid; p++) {
2903 for (ch = 0; ch < 2; ch++) {
2904 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
2905 p->idx);
2906 if (!(v & HDA_AMP_MUTE) && v > 0) {
2907 if (!check->power_on) {
2908 check->power_on = 1;
2909 snd_hda_power_up(codec);
2910 }
2911 return 1;
2912 }
2913 }
2914 }
2915 if (check->power_on) {
2916 check->power_on = 0;
2917 snd_hda_power_down(codec);
2918 }
2919 return 0;
2920}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002921EXPORT_SYMBOL_HDA(snd_hda_check_amp_list_power);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002922#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002924/*
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002925 * Channel mode helper
2926 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002927int snd_hda_ch_mode_info(struct hda_codec *codec,
2928 struct snd_ctl_elem_info *uinfo,
2929 const struct hda_channel_mode *chmode,
2930 int num_chmodes)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002931{
2932 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2933 uinfo->count = 1;
2934 uinfo->value.enumerated.items = num_chmodes;
2935 if (uinfo->value.enumerated.item >= num_chmodes)
2936 uinfo->value.enumerated.item = num_chmodes - 1;
2937 sprintf(uinfo->value.enumerated.name, "%dch",
2938 chmode[uinfo->value.enumerated.item].channels);
2939 return 0;
2940}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002941EXPORT_SYMBOL_HDA(snd_hda_ch_mode_info);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002942
Takashi Iwai0ba21762007-04-16 11:29:14 +02002943int snd_hda_ch_mode_get(struct hda_codec *codec,
2944 struct snd_ctl_elem_value *ucontrol,
2945 const struct hda_channel_mode *chmode,
2946 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002947 int max_channels)
2948{
2949 int i;
2950
2951 for (i = 0; i < num_chmodes; i++) {
2952 if (max_channels == chmode[i].channels) {
2953 ucontrol->value.enumerated.item[0] = i;
2954 break;
2955 }
2956 }
2957 return 0;
2958}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002959EXPORT_SYMBOL_HDA(snd_hda_ch_mode_get);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002960
Takashi Iwai0ba21762007-04-16 11:29:14 +02002961int snd_hda_ch_mode_put(struct hda_codec *codec,
2962 struct snd_ctl_elem_value *ucontrol,
2963 const struct hda_channel_mode *chmode,
2964 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002965 int *max_channelsp)
2966{
2967 unsigned int mode;
2968
2969 mode = ucontrol->value.enumerated.item[0];
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002970 if (mode >= num_chmodes)
2971 return -EINVAL;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002972 if (*max_channelsp == chmode[mode].channels)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002973 return 0;
2974 /* change the current channel setting */
2975 *max_channelsp = chmode[mode].channels;
2976 if (chmode[mode].sequence)
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002977 snd_hda_sequence_write_cache(codec, chmode[mode].sequence);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002978 return 1;
2979}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002980EXPORT_SYMBOL_HDA(snd_hda_ch_mode_put);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002981
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982/*
2983 * input MUX helper
2984 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002985int snd_hda_input_mux_info(const struct hda_input_mux *imux,
2986 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987{
2988 unsigned int index;
2989
2990 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2991 uinfo->count = 1;
2992 uinfo->value.enumerated.items = imux->num_items;
Takashi Iwai5513b0c2007-10-09 11:58:41 +02002993 if (!imux->num_items)
2994 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 index = uinfo->value.enumerated.item;
2996 if (index >= imux->num_items)
2997 index = imux->num_items - 1;
2998 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
2999 return 0;
3000}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003001EXPORT_SYMBOL_HDA(snd_hda_input_mux_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002
Takashi Iwai0ba21762007-04-16 11:29:14 +02003003int snd_hda_input_mux_put(struct hda_codec *codec,
3004 const struct hda_input_mux *imux,
3005 struct snd_ctl_elem_value *ucontrol,
3006 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 unsigned int *cur_val)
3008{
3009 unsigned int idx;
3010
Takashi Iwai5513b0c2007-10-09 11:58:41 +02003011 if (!imux->num_items)
3012 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 idx = ucontrol->value.enumerated.item[0];
3014 if (idx >= imux->num_items)
3015 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003016 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003018 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
3019 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 *cur_val = idx;
3021 return 1;
3022}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003023EXPORT_SYMBOL_HDA(snd_hda_input_mux_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
3025
3026/*
3027 * Multi-channel / digital-out PCM helper functions
3028 */
3029
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003030/* setup SPDIF output stream */
3031static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
3032 unsigned int stream_tag, unsigned int format)
3033{
3034 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
Takashi Iwai2f728532008-09-25 16:32:41 +02003035 if (codec->spdif_status_reset && (codec->spdif_ctls & AC_DIG1_ENABLE))
3036 set_dig_out_convert(codec, nid,
3037 codec->spdif_ctls & ~AC_DIG1_ENABLE & 0xff,
3038 -1);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003039 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Takashi Iwai2f728532008-09-25 16:32:41 +02003040 if (codec->slave_dig_outs) {
3041 hda_nid_t *d;
3042 for (d = codec->slave_dig_outs; *d; d++)
3043 snd_hda_codec_setup_stream(codec, *d, stream_tag, 0,
3044 format);
Matthew Ranostayde51ca12008-09-07 14:31:40 -04003045 }
Takashi Iwai2f728532008-09-25 16:32:41 +02003046 /* turn on again (if needed) */
3047 if (codec->spdif_status_reset && (codec->spdif_ctls & AC_DIG1_ENABLE))
3048 set_dig_out_convert(codec, nid,
3049 codec->spdif_ctls & 0xff, -1);
3050}
Matthew Ranostayde51ca12008-09-07 14:31:40 -04003051
Takashi Iwai2f728532008-09-25 16:32:41 +02003052static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid)
3053{
3054 snd_hda_codec_cleanup_stream(codec, nid);
3055 if (codec->slave_dig_outs) {
3056 hda_nid_t *d;
3057 for (d = codec->slave_dig_outs; *d; d++)
3058 snd_hda_codec_cleanup_stream(codec, *d);
3059 }
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003060}
3061
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062/*
3063 * open the digital out in the exclusive mode
3064 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003065int snd_hda_multi_out_dig_open(struct hda_codec *codec,
3066 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067{
Ingo Molnar62932df2006-01-16 16:34:20 +01003068 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02003069 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
3070 /* already opened as analog dup; reset it once */
Takashi Iwai2f728532008-09-25 16:32:41 +02003071 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01003073 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 return 0;
3075}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003076EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003078int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
3079 struct hda_multi_out *mout,
3080 unsigned int stream_tag,
3081 unsigned int format,
3082 struct snd_pcm_substream *substream)
3083{
3084 mutex_lock(&codec->spdif_mutex);
3085 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
3086 mutex_unlock(&codec->spdif_mutex);
3087 return 0;
3088}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003089EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_prepare);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003090
Takashi Iwai9411e212009-02-13 11:32:28 +01003091int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
3092 struct hda_multi_out *mout)
3093{
3094 mutex_lock(&codec->spdif_mutex);
3095 cleanup_dig_out_stream(codec, mout->dig_out_nid);
3096 mutex_unlock(&codec->spdif_mutex);
3097 return 0;
3098}
3099EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_cleanup);
3100
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101/*
3102 * release the digital out
3103 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003104int snd_hda_multi_out_dig_close(struct hda_codec *codec,
3105 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106{
Ingo Molnar62932df2006-01-16 16:34:20 +01003107 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01003109 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 return 0;
3111}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003112EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
3114/*
3115 * set up more restrictions for analog out
3116 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003117int snd_hda_multi_out_analog_open(struct hda_codec *codec,
3118 struct hda_multi_out *mout,
Takashi Iwai9a081602008-02-12 18:37:26 +01003119 struct snd_pcm_substream *substream,
3120 struct hda_pcm_stream *hinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121{
Takashi Iwai9a081602008-02-12 18:37:26 +01003122 struct snd_pcm_runtime *runtime = substream->runtime;
3123 runtime->hw.channels_max = mout->max_channels;
3124 if (mout->dig_out_nid) {
3125 if (!mout->analog_rates) {
3126 mout->analog_rates = hinfo->rates;
3127 mout->analog_formats = hinfo->formats;
3128 mout->analog_maxbps = hinfo->maxbps;
3129 } else {
3130 runtime->hw.rates = mout->analog_rates;
3131 runtime->hw.formats = mout->analog_formats;
3132 hinfo->maxbps = mout->analog_maxbps;
3133 }
3134 if (!mout->spdif_rates) {
3135 snd_hda_query_supported_pcm(codec, mout->dig_out_nid,
3136 &mout->spdif_rates,
3137 &mout->spdif_formats,
3138 &mout->spdif_maxbps);
3139 }
3140 mutex_lock(&codec->spdif_mutex);
3141 if (mout->share_spdif) {
3142 runtime->hw.rates &= mout->spdif_rates;
3143 runtime->hw.formats &= mout->spdif_formats;
3144 if (mout->spdif_maxbps < hinfo->maxbps)
3145 hinfo->maxbps = mout->spdif_maxbps;
3146 }
Frederik Deweerdteaa99852008-04-14 13:11:44 +02003147 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01003148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 return snd_pcm_hw_constraint_step(substream->runtime, 0,
3150 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
3151}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003152EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
3154/*
3155 * set up the i/o for analog out
3156 * when the digital out is available, copy the front out to digital out, too.
3157 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003158int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
3159 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 unsigned int stream_tag,
3161 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003162 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163{
3164 hda_nid_t *nids = mout->dac_nids;
3165 int chs = substream->runtime->channels;
3166 int i;
3167
Ingo Molnar62932df2006-01-16 16:34:20 +01003168 mutex_lock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01003169 if (mout->dig_out_nid && mout->share_spdif &&
3170 mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 if (chs == 2 &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02003172 snd_hda_is_supported_format(codec, mout->dig_out_nid,
3173 format) &&
3174 !(codec->spdif_status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003176 setup_dig_out_stream(codec, mout->dig_out_nid,
3177 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 } else {
3179 mout->dig_out_used = 0;
Takashi Iwai2f728532008-09-25 16:32:41 +02003180 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 }
3182 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003183 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184
3185 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003186 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
3187 0, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02003188 if (!mout->no_share_stream &&
3189 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003191 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
3192 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003193 /* extra outputs copied from front */
3194 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
Takashi Iwaid29240c2007-10-26 12:35:56 +02003195 if (!mout->no_share_stream && mout->extra_out_nid[i])
Takashi Iwai82bc9552006-03-21 11:24:42 +01003196 snd_hda_codec_setup_stream(codec,
3197 mout->extra_out_nid[i],
3198 stream_tag, 0, format);
3199
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 /* surrounds */
3201 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02003202 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003203 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3204 i * 2, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02003205 else if (!mout->no_share_stream) /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003206 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3207 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 }
3209 return 0;
3210}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003211EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212
3213/*
3214 * clean up the setting for analog out
3215 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003216int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
3217 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218{
3219 hda_nid_t *nids = mout->dac_nids;
3220 int i;
3221
3222 for (i = 0; i < mout->num_dacs; i++)
Takashi Iwai888afa12008-03-18 09:57:50 +01003223 snd_hda_codec_cleanup_stream(codec, nids[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 if (mout->hp_nid)
Takashi Iwai888afa12008-03-18 09:57:50 +01003225 snd_hda_codec_cleanup_stream(codec, mout->hp_nid);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003226 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
3227 if (mout->extra_out_nid[i])
Takashi Iwai888afa12008-03-18 09:57:50 +01003228 snd_hda_codec_cleanup_stream(codec,
3229 mout->extra_out_nid[i]);
Ingo Molnar62932df2006-01-16 16:34:20 +01003230 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
Takashi Iwai2f728532008-09-25 16:32:41 +02003232 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 mout->dig_out_used = 0;
3234 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003235 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 return 0;
3237}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003238EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003240/*
Wu Fengguang6b345002008-10-07 14:21:41 +08003241 * Helper for automatic pin configuration
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003242 */
Kailang Yangdf694da2005-12-05 19:42:22 +01003243
Takashi Iwai12f288b2007-08-02 15:51:59 +02003244static int is_in_nid_list(hda_nid_t nid, hda_nid_t *list)
Kailang Yangdf694da2005-12-05 19:42:22 +01003245{
3246 for (; *list; list++)
3247 if (*list == nid)
3248 return 1;
3249 return 0;
3250}
3251
Steve Longerbeam81937d32007-05-08 15:33:03 +02003252
3253/*
3254 * Sort an associated group of pins according to their sequence numbers.
3255 */
3256static void sort_pins_by_sequence(hda_nid_t * pins, short * sequences,
3257 int num_pins)
3258{
3259 int i, j;
3260 short seq;
3261 hda_nid_t nid;
3262
3263 for (i = 0; i < num_pins; i++) {
3264 for (j = i + 1; j < num_pins; j++) {
3265 if (sequences[i] > sequences[j]) {
3266 seq = sequences[i];
3267 sequences[i] = sequences[j];
3268 sequences[j] = seq;
3269 nid = pins[i];
3270 pins[i] = pins[j];
3271 pins[j] = nid;
3272 }
3273 }
3274 }
3275}
3276
3277
Takashi Iwai82bc9552006-03-21 11:24:42 +01003278/*
3279 * Parse all pin widgets and store the useful pin nids to cfg
3280 *
3281 * The number of line-outs or any primary output is stored in line_outs,
3282 * and the corresponding output pins are assigned to line_out_pins[],
3283 * in the order of front, rear, CLFE, side, ...
3284 *
3285 * If more extra outputs (speaker and headphone) are found, the pins are
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003286 * assisnged to hp_pins[] and speaker_pins[], respectively. If no line-out jack
Takashi Iwai82bc9552006-03-21 11:24:42 +01003287 * is detected, one of speaker of HP pins is assigned as the primary
3288 * output, i.e. to line_out_pins[0]. So, line_outs is always positive
3289 * if any analog output exists.
3290 *
3291 * The analog input pins are assigned to input_pins array.
3292 * The digital input/output pins are assigned to dig_in_pin and dig_out_pin,
3293 * respectively.
3294 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02003295int snd_hda_parse_pin_def_config(struct hda_codec *codec,
3296 struct auto_pin_cfg *cfg,
3297 hda_nid_t *ignore_nids)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003298{
Takashi Iwai0ef6ce72008-01-22 15:35:37 +01003299 hda_nid_t nid, end_nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02003300 short seq, assoc_line_out, assoc_speaker;
3301 short sequences_line_out[ARRAY_SIZE(cfg->line_out_pins)];
3302 short sequences_speaker[ARRAY_SIZE(cfg->speaker_pins)];
Takashi Iwaif889fa92007-10-31 15:49:32 +01003303 short sequences_hp[ARRAY_SIZE(cfg->hp_pins)];
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003304
3305 memset(cfg, 0, sizeof(*cfg));
3306
Steve Longerbeam81937d32007-05-08 15:33:03 +02003307 memset(sequences_line_out, 0, sizeof(sequences_line_out));
3308 memset(sequences_speaker, 0, sizeof(sequences_speaker));
Takashi Iwaif889fa92007-10-31 15:49:32 +01003309 memset(sequences_hp, 0, sizeof(sequences_hp));
Steve Longerbeam81937d32007-05-08 15:33:03 +02003310 assoc_line_out = assoc_speaker = 0;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003311
Takashi Iwai0ef6ce72008-01-22 15:35:37 +01003312 end_nid = codec->start_nid + codec->num_nodes;
3313 for (nid = codec->start_nid; nid < end_nid; nid++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01003314 unsigned int wid_caps = get_wcaps(codec, nid);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003315 unsigned int wid_type =
3316 (wid_caps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003317 unsigned int def_conf;
3318 short assoc, loc;
3319
3320 /* read all default configuration for pin complex */
3321 if (wid_type != AC_WID_PIN)
3322 continue;
Kailang Yangdf694da2005-12-05 19:42:22 +01003323 /* ignore the given nids (e.g. pc-beep returns error) */
3324 if (ignore_nids && is_in_nid_list(nid, ignore_nids))
3325 continue;
3326
Takashi Iwai0ba21762007-04-16 11:29:14 +02003327 def_conf = snd_hda_codec_read(codec, nid, 0,
3328 AC_VERB_GET_CONFIG_DEFAULT, 0);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003329 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
3330 continue;
3331 loc = get_defcfg_location(def_conf);
3332 switch (get_defcfg_device(def_conf)) {
3333 case AC_JACK_LINE_OUT:
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003334 seq = get_defcfg_sequence(def_conf);
3335 assoc = get_defcfg_association(def_conf);
Matthew Ranostay90da78b2008-01-24 11:48:01 +01003336
3337 if (!(wid_caps & AC_WCAP_STEREO))
3338 if (!cfg->mono_out_pin)
3339 cfg->mono_out_pin = nid;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003340 if (!assoc)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003341 continue;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003342 if (!assoc_line_out)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003343 assoc_line_out = assoc;
3344 else if (assoc_line_out != assoc)
3345 continue;
3346 if (cfg->line_outs >= ARRAY_SIZE(cfg->line_out_pins))
3347 continue;
3348 cfg->line_out_pins[cfg->line_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02003349 sequences_line_out[cfg->line_outs] = seq;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003350 cfg->line_outs++;
3351 break;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003352 case AC_JACK_SPEAKER:
Steve Longerbeam81937d32007-05-08 15:33:03 +02003353 seq = get_defcfg_sequence(def_conf);
3354 assoc = get_defcfg_association(def_conf);
3355 if (! assoc)
3356 continue;
3357 if (! assoc_speaker)
3358 assoc_speaker = assoc;
3359 else if (assoc_speaker != assoc)
3360 continue;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003361 if (cfg->speaker_outs >= ARRAY_SIZE(cfg->speaker_pins))
3362 continue;
3363 cfg->speaker_pins[cfg->speaker_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02003364 sequences_speaker[cfg->speaker_outs] = seq;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003365 cfg->speaker_outs++;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003366 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003367 case AC_JACK_HP_OUT:
Takashi Iwaif889fa92007-10-31 15:49:32 +01003368 seq = get_defcfg_sequence(def_conf);
3369 assoc = get_defcfg_association(def_conf);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003370 if (cfg->hp_outs >= ARRAY_SIZE(cfg->hp_pins))
3371 continue;
3372 cfg->hp_pins[cfg->hp_outs] = nid;
Takashi Iwaif889fa92007-10-31 15:49:32 +01003373 sequences_hp[cfg->hp_outs] = (assoc << 4) | seq;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003374 cfg->hp_outs++;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003375 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02003376 case AC_JACK_MIC_IN: {
3377 int preferred, alt;
3378 if (loc == AC_JACK_LOC_FRONT) {
3379 preferred = AUTO_PIN_FRONT_MIC;
3380 alt = AUTO_PIN_MIC;
3381 } else {
3382 preferred = AUTO_PIN_MIC;
3383 alt = AUTO_PIN_FRONT_MIC;
3384 }
3385 if (!cfg->input_pins[preferred])
3386 cfg->input_pins[preferred] = nid;
3387 else if (!cfg->input_pins[alt])
3388 cfg->input_pins[alt] = nid;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003389 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02003390 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003391 case AC_JACK_LINE_IN:
3392 if (loc == AC_JACK_LOC_FRONT)
3393 cfg->input_pins[AUTO_PIN_FRONT_LINE] = nid;
3394 else
3395 cfg->input_pins[AUTO_PIN_LINE] = nid;
3396 break;
3397 case AC_JACK_CD:
3398 cfg->input_pins[AUTO_PIN_CD] = nid;
3399 break;
3400 case AC_JACK_AUX:
3401 cfg->input_pins[AUTO_PIN_AUX] = nid;
3402 break;
3403 case AC_JACK_SPDIF_OUT:
3404 cfg->dig_out_pin = nid;
3405 break;
3406 case AC_JACK_SPDIF_IN:
3407 cfg->dig_in_pin = nid;
3408 break;
3409 }
3410 }
3411
Takashi Iwai5832fcf2008-02-12 18:30:12 +01003412 /* FIX-UP:
3413 * If no line-out is defined but multiple HPs are found,
3414 * some of them might be the real line-outs.
3415 */
3416 if (!cfg->line_outs && cfg->hp_outs > 1) {
3417 int i = 0;
3418 while (i < cfg->hp_outs) {
3419 /* The real HPs should have the sequence 0x0f */
3420 if ((sequences_hp[i] & 0x0f) == 0x0f) {
3421 i++;
3422 continue;
3423 }
3424 /* Move it to the line-out table */
3425 cfg->line_out_pins[cfg->line_outs] = cfg->hp_pins[i];
3426 sequences_line_out[cfg->line_outs] = sequences_hp[i];
3427 cfg->line_outs++;
3428 cfg->hp_outs--;
3429 memmove(cfg->hp_pins + i, cfg->hp_pins + i + 1,
3430 sizeof(cfg->hp_pins[0]) * (cfg->hp_outs - i));
3431 memmove(sequences_hp + i - 1, sequences_hp + i,
3432 sizeof(sequences_hp[0]) * (cfg->hp_outs - i));
3433 }
3434 }
3435
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003436 /* sort by sequence */
Steve Longerbeam81937d32007-05-08 15:33:03 +02003437 sort_pins_by_sequence(cfg->line_out_pins, sequences_line_out,
3438 cfg->line_outs);
3439 sort_pins_by_sequence(cfg->speaker_pins, sequences_speaker,
3440 cfg->speaker_outs);
Takashi Iwaif889fa92007-10-31 15:49:32 +01003441 sort_pins_by_sequence(cfg->hp_pins, sequences_hp,
3442 cfg->hp_outs);
Steve Longerbeam81937d32007-05-08 15:33:03 +02003443
Takashi Iwaif889fa92007-10-31 15:49:32 +01003444 /* if we have only one mic, make it AUTO_PIN_MIC */
3445 if (!cfg->input_pins[AUTO_PIN_MIC] &&
3446 cfg->input_pins[AUTO_PIN_FRONT_MIC]) {
3447 cfg->input_pins[AUTO_PIN_MIC] =
3448 cfg->input_pins[AUTO_PIN_FRONT_MIC];
3449 cfg->input_pins[AUTO_PIN_FRONT_MIC] = 0;
3450 }
3451 /* ditto for line-in */
3452 if (!cfg->input_pins[AUTO_PIN_LINE] &&
3453 cfg->input_pins[AUTO_PIN_FRONT_LINE]) {
3454 cfg->input_pins[AUTO_PIN_LINE] =
3455 cfg->input_pins[AUTO_PIN_FRONT_LINE];
3456 cfg->input_pins[AUTO_PIN_FRONT_LINE] = 0;
3457 }
3458
Steve Longerbeam81937d32007-05-08 15:33:03 +02003459 /*
3460 * FIX-UP: if no line-outs are detected, try to use speaker or HP pin
3461 * as a primary output
3462 */
3463 if (!cfg->line_outs) {
3464 if (cfg->speaker_outs) {
3465 cfg->line_outs = cfg->speaker_outs;
3466 memcpy(cfg->line_out_pins, cfg->speaker_pins,
3467 sizeof(cfg->speaker_pins));
3468 cfg->speaker_outs = 0;
3469 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
3470 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
3471 } else if (cfg->hp_outs) {
3472 cfg->line_outs = cfg->hp_outs;
3473 memcpy(cfg->line_out_pins, cfg->hp_pins,
3474 sizeof(cfg->hp_pins));
3475 cfg->hp_outs = 0;
3476 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
3477 cfg->line_out_type = AUTO_PIN_HP_OUT;
3478 }
3479 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003480
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003481 /* Reorder the surround channels
3482 * ALSA sequence is front/surr/clfe/side
3483 * HDA sequence is:
3484 * 4-ch: front/surr => OK as it is
3485 * 6-ch: front/clfe/surr
Takashi Iwai9422db42007-04-20 16:11:43 +02003486 * 8-ch: front/clfe/rear/side|fc
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003487 */
3488 switch (cfg->line_outs) {
3489 case 3:
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003490 case 4:
3491 nid = cfg->line_out_pins[1];
Takashi Iwai9422db42007-04-20 16:11:43 +02003492 cfg->line_out_pins[1] = cfg->line_out_pins[2];
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003493 cfg->line_out_pins[2] = nid;
3494 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003495 }
3496
Takashi Iwai82bc9552006-03-21 11:24:42 +01003497 /*
3498 * debug prints of the parsed results
3499 */
3500 snd_printd("autoconfig: line_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3501 cfg->line_outs, cfg->line_out_pins[0], cfg->line_out_pins[1],
3502 cfg->line_out_pins[2], cfg->line_out_pins[3],
3503 cfg->line_out_pins[4]);
3504 snd_printd(" speaker_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3505 cfg->speaker_outs, cfg->speaker_pins[0],
3506 cfg->speaker_pins[1], cfg->speaker_pins[2],
3507 cfg->speaker_pins[3], cfg->speaker_pins[4]);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003508 snd_printd(" hp_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3509 cfg->hp_outs, cfg->hp_pins[0],
3510 cfg->hp_pins[1], cfg->hp_pins[2],
3511 cfg->hp_pins[3], cfg->hp_pins[4]);
Matthew Ranostay90da78b2008-01-24 11:48:01 +01003512 snd_printd(" mono: mono_out=0x%x\n", cfg->mono_out_pin);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003513 snd_printd(" inputs: mic=0x%x, fmic=0x%x, line=0x%x, fline=0x%x,"
3514 " cd=0x%x, aux=0x%x\n",
3515 cfg->input_pins[AUTO_PIN_MIC],
3516 cfg->input_pins[AUTO_PIN_FRONT_MIC],
3517 cfg->input_pins[AUTO_PIN_LINE],
3518 cfg->input_pins[AUTO_PIN_FRONT_LINE],
3519 cfg->input_pins[AUTO_PIN_CD],
3520 cfg->input_pins[AUTO_PIN_AUX]);
3521
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003522 return 0;
3523}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003524EXPORT_SYMBOL_HDA(snd_hda_parse_pin_def_config);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003525
Takashi Iwai4a471b72005-12-07 13:56:29 +01003526/* labels for input pins */
3527const char *auto_pin_cfg_labels[AUTO_PIN_LAST] = {
3528 "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux"
3529};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003530EXPORT_SYMBOL_HDA(auto_pin_cfg_labels);
Takashi Iwai4a471b72005-12-07 13:56:29 +01003531
3532
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533#ifdef CONFIG_PM
3534/*
3535 * power management
3536 */
3537
3538/**
3539 * snd_hda_suspend - suspend the codecs
3540 * @bus: the HDA bus
3541 * @state: suspsend state
3542 *
3543 * Returns 0 if successful.
3544 */
3545int snd_hda_suspend(struct hda_bus *bus, pm_message_t state)
3546{
Takashi Iwai0ba21762007-04-16 11:29:14 +02003547 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548
Takashi Iwai0ba21762007-04-16 11:29:14 +02003549 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai0b7a2e92007-08-14 15:18:26 +02003550#ifdef CONFIG_SND_HDA_POWER_SAVE
3551 if (!codec->power_on)
3552 continue;
3553#endif
Takashi Iwaicb53c622007-08-10 17:21:45 +02003554 hda_call_codec_suspend(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 }
3556 return 0;
3557}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003558EXPORT_SYMBOL_HDA(snd_hda_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559
3560/**
3561 * snd_hda_resume - resume the codecs
3562 * @bus: the HDA bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 *
3564 * Returns 0 if successful.
Takashi Iwaicb53c622007-08-10 17:21:45 +02003565 *
3566 * This fucntion is defined only when POWER_SAVE isn't set.
3567 * In the power-save mode, the codec is resumed dynamically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 */
3569int snd_hda_resume(struct hda_bus *bus)
3570{
Takashi Iwai0ba21762007-04-16 11:29:14 +02003571 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572
Takashi Iwai0ba21762007-04-16 11:29:14 +02003573 list_for_each_entry(codec, &bus->codec_list, list) {
Maxim Levitskyd804ad92007-09-03 15:28:04 +02003574 if (snd_hda_codec_needs_resume(codec))
3575 hda_call_codec_resume(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 return 0;
3578}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003579EXPORT_SYMBOL_HDA(snd_hda_resume);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003580#endif /* CONFIG_PM */
Takashi Iwaib2e18592008-07-30 15:01:44 +02003581
3582/*
3583 * generic arrays
3584 */
3585
3586/* get a new element from the given array
3587 * if it exceeds the pre-allocated array size, re-allocate the array
3588 */
3589void *snd_array_new(struct snd_array *array)
3590{
3591 if (array->used >= array->alloced) {
3592 int num = array->alloced + array->alloc_align;
Takashi Iwaib910d9a2008-11-07 00:26:52 +01003593 void *nlist;
3594 if (snd_BUG_ON(num >= 4096))
3595 return NULL;
3596 nlist = kcalloc(num + 1, array->elem_size, GFP_KERNEL);
Takashi Iwaib2e18592008-07-30 15:01:44 +02003597 if (!nlist)
3598 return NULL;
3599 if (array->list) {
3600 memcpy(nlist, array->list,
3601 array->elem_size * array->alloced);
3602 kfree(array->list);
3603 }
3604 array->list = nlist;
3605 array->alloced = num;
3606 }
Takashi Iwaif43aa022008-11-10 16:24:26 +01003607 return snd_array_elem(array, array->used++);
Takashi Iwaib2e18592008-07-30 15:01:44 +02003608}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003609EXPORT_SYMBOL_HDA(snd_array_new);
Takashi Iwaib2e18592008-07-30 15:01:44 +02003610
3611/* free the given array elements */
3612void snd_array_free(struct snd_array *array)
3613{
3614 kfree(array->list);
3615 array->used = 0;
3616 array->alloced = 0;
3617 array->list = NULL;
3618}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003619EXPORT_SYMBOL_HDA(snd_array_free);
Takashi Iwaib2022262008-11-21 21:24:03 +01003620
3621/*
3622 * used by hda_proc.c and hda_eld.c
3623 */
3624void snd_print_pcm_rates(int pcm, char *buf, int buflen)
3625{
3626 static unsigned int rates[] = {
3627 8000, 11025, 16000, 22050, 32000, 44100, 48000, 88200,
3628 96000, 176400, 192000, 384000
3629 };
3630 int i, j;
3631
3632 for (i = 0, j = 0; i < ARRAY_SIZE(rates); i++)
3633 if (pcm & (1 << i))
3634 j += snprintf(buf + j, buflen - j, " %d", rates[i]);
3635
3636 buf[j] = '\0'; /* necessary when j == 0 */
3637}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003638EXPORT_SYMBOL_HDA(snd_print_pcm_rates);
Takashi Iwaib2022262008-11-21 21:24:03 +01003639
3640void snd_print_pcm_bits(int pcm, char *buf, int buflen)
3641{
3642 static unsigned int bits[] = { 8, 16, 20, 24, 32 };
3643 int i, j;
3644
3645 for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++)
3646 if (pcm & (AC_SUPPCM_BITS_8 << i))
3647 j += snprintf(buf + j, buflen - j, " %d", bits[i]);
3648
3649 buf[j] = '\0'; /* necessary when j == 0 */
3650}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003651EXPORT_SYMBOL_HDA(snd_print_pcm_bits);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003652
3653MODULE_DESCRIPTION("HDA codec core");
3654MODULE_LICENSE("GPL");