blob: 93412f335dc479fe494ede57887a271aa349b319 [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);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001123 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 u32 caps;
1125
1126 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001127 /* num steps */
1128 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1129 if (!caps) {
1130 printk(KERN_WARNING "hda_codec: "
Takashi Iwai9c8f2ab2008-01-11 16:12:23 +01001131 "num_steps = 0 for NID=0x%x (ctl = %s)\n", nid,
1132 kcontrol->id.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 return -EINVAL;
1134 }
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001135 if (ofs < caps)
1136 caps -= ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1138 uinfo->count = chs == 3 ? 2 : 1;
1139 uinfo->value.integer.min = 0;
1140 uinfo->value.integer.max = caps;
1141 return 0;
1142}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001143EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001145
1146static inline unsigned int
1147read_amp_value(struct hda_codec *codec, hda_nid_t nid,
1148 int ch, int dir, int idx, unsigned int ofs)
1149{
1150 unsigned int val;
1151 val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx);
1152 val &= HDA_AMP_VOLMASK;
1153 if (val >= ofs)
1154 val -= ofs;
1155 else
1156 val = 0;
1157 return val;
1158}
1159
1160static inline int
1161update_amp_value(struct hda_codec *codec, hda_nid_t nid,
1162 int ch, int dir, int idx, unsigned int ofs,
1163 unsigned int val)
1164{
1165 if (val > 0)
1166 val += ofs;
1167 return snd_hda_codec_amp_update(codec, nid, ch, dir, idx,
1168 HDA_AMP_VOLMASK, val);
1169}
1170
Takashi Iwai0ba21762007-04-16 11:29:14 +02001171int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
1172 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
1174 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1175 hda_nid_t nid = get_amp_nid(kcontrol);
1176 int chs = get_amp_channels(kcontrol);
1177 int dir = get_amp_direction(kcontrol);
1178 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001179 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 long *valp = ucontrol->value.integer.value;
1181
1182 if (chs & 1)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001183 *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001185 *valp = read_amp_value(codec, nid, 1, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 return 0;
1187}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001188EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Takashi Iwai0ba21762007-04-16 11:29:14 +02001190int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
1191 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192{
1193 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1194 hda_nid_t nid = get_amp_nid(kcontrol);
1195 int chs = get_amp_channels(kcontrol);
1196 int dir = get_amp_direction(kcontrol);
1197 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001198 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 long *valp = ucontrol->value.integer.value;
1200 int change = 0;
1201
Takashi Iwaicb53c622007-08-10 17:21:45 +02001202 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001203 if (chs & 1) {
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001204 change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001205 valp++;
1206 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001207 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001208 change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001209 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 return change;
1211}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001212EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001214int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1215 unsigned int size, unsigned int __user *_tlv)
1216{
1217 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1218 hda_nid_t nid = get_amp_nid(kcontrol);
1219 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001220 unsigned int ofs = get_amp_offset(kcontrol);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001221 u32 caps, val1, val2;
1222
1223 if (size < 4 * sizeof(unsigned int))
1224 return -ENOMEM;
1225 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001226 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1227 val2 = (val2 + 1) * 25;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001228 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001229 val1 += ofs;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001230 val1 = ((int)val1) * ((int)val2);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001231 if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv))
1232 return -EFAULT;
1233 if (put_user(2 * sizeof(unsigned int), _tlv + 1))
1234 return -EFAULT;
1235 if (put_user(val1, _tlv + 2))
1236 return -EFAULT;
1237 if (put_user(val2, _tlv + 3))
1238 return -EFAULT;
1239 return 0;
1240}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001241EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_tlv);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001242
Takashi Iwai2134ea42008-01-10 16:53:55 +01001243/*
1244 * set (static) TLV for virtual master volume; recalculated as max 0dB
1245 */
1246void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
1247 unsigned int *tlv)
1248{
1249 u32 caps;
1250 int nums, step;
1251
1252 caps = query_amp_caps(codec, nid, dir);
1253 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1254 step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1255 step = (step + 1) * 25;
1256 tlv[0] = SNDRV_CTL_TLVT_DB_SCALE;
1257 tlv[1] = 2 * sizeof(unsigned int);
1258 tlv[2] = -nums * step;
1259 tlv[3] = step;
1260}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001261EXPORT_SYMBOL_HDA(snd_hda_set_vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001262
1263/* find a mixer control element with the given name */
Takashi Iwai09f99702008-02-04 12:31:13 +01001264static struct snd_kcontrol *
1265_snd_hda_find_mixer_ctl(struct hda_codec *codec,
1266 const char *name, int idx)
Takashi Iwai2134ea42008-01-10 16:53:55 +01001267{
1268 struct snd_ctl_elem_id id;
1269 memset(&id, 0, sizeof(id));
1270 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Takashi Iwai09f99702008-02-04 12:31:13 +01001271 id.index = idx;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001272 strcpy(id.name, name);
1273 return snd_ctl_find_id(codec->bus->card, &id);
1274}
1275
Takashi Iwai09f99702008-02-04 12:31:13 +01001276struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
1277 const char *name)
1278{
1279 return _snd_hda_find_mixer_ctl(codec, name, 0);
1280}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001281EXPORT_SYMBOL_HDA(snd_hda_find_mixer_ctl);
Takashi Iwai09f99702008-02-04 12:31:13 +01001282
Takashi Iwaid13bd412008-07-30 15:01:45 +02001283/* Add a control element and assign to the codec */
1284int snd_hda_ctl_add(struct hda_codec *codec, struct snd_kcontrol *kctl)
1285{
1286 int err;
1287 struct snd_kcontrol **knewp;
1288
1289 err = snd_ctl_add(codec->bus->card, kctl);
1290 if (err < 0)
1291 return err;
1292 knewp = snd_array_new(&codec->mixers);
1293 if (!knewp)
1294 return -ENOMEM;
1295 *knewp = kctl;
1296 return 0;
1297}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001298EXPORT_SYMBOL_HDA(snd_hda_ctl_add);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001299
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001300#ifdef CONFIG_SND_HDA_RECONFIG
Takashi Iwaid13bd412008-07-30 15:01:45 +02001301/* Clear all controls assigned to the given codec */
1302void snd_hda_ctls_clear(struct hda_codec *codec)
1303{
1304 int i;
1305 struct snd_kcontrol **kctls = codec->mixers.list;
1306 for (i = 0; i < codec->mixers.used; i++)
1307 snd_ctl_remove(codec->bus->card, kctls[i]);
1308 snd_array_free(&codec->mixers);
1309}
1310
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001311void snd_hda_codec_reset(struct hda_codec *codec)
1312{
1313 int i;
1314
1315#ifdef CONFIG_SND_HDA_POWER_SAVE
1316 cancel_delayed_work(&codec->power_work);
Takashi Iwai6acaed32009-01-12 10:09:24 +01001317 flush_workqueue(codec->bus->workq);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001318#endif
1319 snd_hda_ctls_clear(codec);
1320 /* relase PCMs */
1321 for (i = 0; i < codec->num_pcms; i++) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001322 if (codec->pcm_info[i].pcm) {
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001323 snd_device_free(codec->bus->card,
1324 codec->pcm_info[i].pcm);
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001325 clear_bit(codec->pcm_info[i].device,
1326 codec->bus->pcm_dev_bits);
1327 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001328 }
1329 if (codec->patch_ops.free)
1330 codec->patch_ops.free(codec);
Takashi Iwai56d17712008-11-28 14:36:23 +01001331 codec->proc_widget_hook = NULL;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001332 codec->spec = NULL;
1333 free_hda_cache(&codec->amp_cache);
1334 free_hda_cache(&codec->cmd_cache);
Takashi Iwai827057f2008-12-19 10:12:02 +01001335 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
1336 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001337 codec->num_pcms = 0;
1338 codec->pcm_info = NULL;
1339 codec->preset = NULL;
Takashi Iwai1289e9e2008-11-27 15:47:11 +01001340 module_put(codec->owner);
1341 codec->owner = NULL;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001342}
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001343#endif /* CONFIG_SND_HDA_RECONFIG */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001344
Takashi Iwai2134ea42008-01-10 16:53:55 +01001345/* create a virtual master control and add slaves */
1346int snd_hda_add_vmaster(struct hda_codec *codec, char *name,
1347 unsigned int *tlv, const char **slaves)
1348{
1349 struct snd_kcontrol *kctl;
1350 const char **s;
1351 int err;
1352
Takashi Iwai2f085542008-02-22 18:43:50 +01001353 for (s = slaves; *s && !snd_hda_find_mixer_ctl(codec, *s); s++)
1354 ;
1355 if (!*s) {
1356 snd_printdd("No slave found for %s\n", name);
1357 return 0;
1358 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001359 kctl = snd_ctl_make_virtual_master(name, tlv);
1360 if (!kctl)
1361 return -ENOMEM;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001362 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001363 if (err < 0)
1364 return err;
1365
1366 for (s = slaves; *s; s++) {
1367 struct snd_kcontrol *sctl;
1368
1369 sctl = snd_hda_find_mixer_ctl(codec, *s);
1370 if (!sctl) {
1371 snd_printdd("Cannot find slave %s, skipped\n", *s);
1372 continue;
1373 }
1374 err = snd_ctl_add_slave(kctl, sctl);
1375 if (err < 0)
1376 return err;
1377 }
1378 return 0;
1379}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001380EXPORT_SYMBOL_HDA(snd_hda_add_vmaster);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001381
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382/* switch */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001383int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
1384 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385{
1386 int chs = get_amp_channels(kcontrol);
1387
1388 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1389 uinfo->count = chs == 3 ? 2 : 1;
1390 uinfo->value.integer.min = 0;
1391 uinfo->value.integer.max = 1;
1392 return 0;
1393}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001394EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Takashi Iwai0ba21762007-04-16 11:29:14 +02001396int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
1397 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398{
1399 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1400 hda_nid_t nid = get_amp_nid(kcontrol);
1401 int chs = get_amp_channels(kcontrol);
1402 int dir = get_amp_direction(kcontrol);
1403 int idx = get_amp_index(kcontrol);
1404 long *valp = ucontrol->value.integer.value;
1405
1406 if (chs & 1)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001407 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02001408 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 if (chs & 2)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001410 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02001411 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 return 0;
1413}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001414EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Takashi Iwai0ba21762007-04-16 11:29:14 +02001416int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
1417 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418{
1419 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1420 hda_nid_t nid = get_amp_nid(kcontrol);
1421 int chs = get_amp_channels(kcontrol);
1422 int dir = get_amp_direction(kcontrol);
1423 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 long *valp = ucontrol->value.integer.value;
1425 int change = 0;
1426
Takashi Iwaicb53c622007-08-10 17:21:45 +02001427 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001428 if (chs & 1) {
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001429 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001430 HDA_AMP_MUTE,
1431 *valp ? 0 : HDA_AMP_MUTE);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001432 valp++;
1433 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001434 if (chs & 2)
1435 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001436 HDA_AMP_MUTE,
1437 *valp ? 0 : HDA_AMP_MUTE);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001438#ifdef CONFIG_SND_HDA_POWER_SAVE
1439 if (codec->patch_ops.check_power_status)
1440 codec->patch_ops.check_power_status(codec, nid);
1441#endif
1442 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 return change;
1444}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001445EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447/*
Takashi Iwai985be542005-11-02 18:26:49 +01001448 * bound volume controls
1449 *
1450 * bind multiple volumes (# indices, from 0)
1451 */
1452
1453#define AMP_VAL_IDX_SHIFT 19
1454#define AMP_VAL_IDX_MASK (0x0f<<19)
1455
Takashi Iwai0ba21762007-04-16 11:29:14 +02001456int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol,
1457 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01001458{
1459 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1460 unsigned long pval;
1461 int err;
1462
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001463 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001464 pval = kcontrol->private_value;
1465 kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */
1466 err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
1467 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001468 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001469 return err;
1470}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001471EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_get);
Takashi Iwai985be542005-11-02 18:26:49 +01001472
Takashi Iwai0ba21762007-04-16 11:29:14 +02001473int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol,
1474 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01001475{
1476 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1477 unsigned long pval;
1478 int i, indices, err = 0, change = 0;
1479
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001480 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001481 pval = kcontrol->private_value;
1482 indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT;
1483 for (i = 0; i < indices; i++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001484 kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) |
1485 (i << AMP_VAL_IDX_SHIFT);
Takashi Iwai985be542005-11-02 18:26:49 +01001486 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
1487 if (err < 0)
1488 break;
1489 change |= err;
1490 }
1491 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001492 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001493 return err < 0 ? err : change;
1494}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001495EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_put);
Takashi Iwai985be542005-11-02 18:26:49 +01001496
1497/*
Takashi Iwai532d5382007-07-27 19:02:40 +02001498 * generic bound volume/swtich controls
1499 */
1500int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol,
1501 struct snd_ctl_elem_info *uinfo)
1502{
1503 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1504 struct hda_bind_ctls *c;
1505 int err;
1506
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001507 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001508 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001509 kcontrol->private_value = *c->values;
1510 err = c->ops->info(kcontrol, uinfo);
1511 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001512 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001513 return err;
1514}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001515EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_info);
Takashi Iwai532d5382007-07-27 19:02:40 +02001516
1517int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol,
1518 struct snd_ctl_elem_value *ucontrol)
1519{
1520 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1521 struct hda_bind_ctls *c;
1522 int err;
1523
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001524 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001525 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001526 kcontrol->private_value = *c->values;
1527 err = c->ops->get(kcontrol, ucontrol);
1528 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001529 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001530 return err;
1531}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001532EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_get);
Takashi Iwai532d5382007-07-27 19:02:40 +02001533
1534int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol,
1535 struct snd_ctl_elem_value *ucontrol)
1536{
1537 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1538 struct hda_bind_ctls *c;
1539 unsigned long *vals;
1540 int err = 0, change = 0;
1541
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001542 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001543 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001544 for (vals = c->values; *vals; vals++) {
1545 kcontrol->private_value = *vals;
1546 err = c->ops->put(kcontrol, ucontrol);
1547 if (err < 0)
1548 break;
1549 change |= err;
1550 }
1551 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001552 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001553 return err < 0 ? err : change;
1554}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001555EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_put);
Takashi Iwai532d5382007-07-27 19:02:40 +02001556
1557int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1558 unsigned int size, unsigned int __user *tlv)
1559{
1560 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1561 struct hda_bind_ctls *c;
1562 int err;
1563
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001564 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001565 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001566 kcontrol->private_value = *c->values;
1567 err = c->ops->tlv(kcontrol, op_flag, size, tlv);
1568 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001569 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001570 return err;
1571}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001572EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_tlv);
Takashi Iwai532d5382007-07-27 19:02:40 +02001573
1574struct hda_ctl_ops snd_hda_bind_vol = {
1575 .info = snd_hda_mixer_amp_volume_info,
1576 .get = snd_hda_mixer_amp_volume_get,
1577 .put = snd_hda_mixer_amp_volume_put,
1578 .tlv = snd_hda_mixer_amp_tlv
1579};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001580EXPORT_SYMBOL_HDA(snd_hda_bind_vol);
Takashi Iwai532d5382007-07-27 19:02:40 +02001581
1582struct hda_ctl_ops snd_hda_bind_sw = {
1583 .info = snd_hda_mixer_amp_switch_info,
1584 .get = snd_hda_mixer_amp_switch_get,
1585 .put = snd_hda_mixer_amp_switch_put,
1586 .tlv = snd_hda_mixer_amp_tlv
1587};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001588EXPORT_SYMBOL_HDA(snd_hda_bind_sw);
Takashi Iwai532d5382007-07-27 19:02:40 +02001589
1590/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 * SPDIF out controls
1592 */
1593
Takashi Iwai0ba21762007-04-16 11:29:14 +02001594static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
1595 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
1597 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1598 uinfo->count = 1;
1599 return 0;
1600}
1601
Takashi Iwai0ba21762007-04-16 11:29:14 +02001602static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
1603 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
1605 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1606 IEC958_AES0_NONAUDIO |
1607 IEC958_AES0_CON_EMPHASIS_5015 |
1608 IEC958_AES0_CON_NOT_COPYRIGHT;
1609 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
1610 IEC958_AES1_CON_ORIGINAL;
1611 return 0;
1612}
1613
Takashi Iwai0ba21762007-04-16 11:29:14 +02001614static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
1615 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616{
1617 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1618 IEC958_AES0_NONAUDIO |
1619 IEC958_AES0_PRO_EMPHASIS_5015;
1620 return 0;
1621}
1622
Takashi Iwai0ba21762007-04-16 11:29:14 +02001623static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
1624 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625{
1626 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1627
1628 ucontrol->value.iec958.status[0] = codec->spdif_status & 0xff;
1629 ucontrol->value.iec958.status[1] = (codec->spdif_status >> 8) & 0xff;
1630 ucontrol->value.iec958.status[2] = (codec->spdif_status >> 16) & 0xff;
1631 ucontrol->value.iec958.status[3] = (codec->spdif_status >> 24) & 0xff;
1632
1633 return 0;
1634}
1635
1636/* convert from SPDIF status bits to HDA SPDIF bits
1637 * bit 0 (DigEn) is always set zero (to be filled later)
1638 */
1639static unsigned short convert_from_spdif_status(unsigned int sbits)
1640{
1641 unsigned short val = 0;
1642
1643 if (sbits & IEC958_AES0_PROFESSIONAL)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001644 val |= AC_DIG1_PROFESSIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 if (sbits & IEC958_AES0_NONAUDIO)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001646 val |= AC_DIG1_NONAUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001648 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
1649 IEC958_AES0_PRO_EMPHASIS_5015)
1650 val |= AC_DIG1_EMPHASIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001652 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
1653 IEC958_AES0_CON_EMPHASIS_5015)
1654 val |= AC_DIG1_EMPHASIS;
1655 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
1656 val |= AC_DIG1_COPYRIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
Takashi Iwai0ba21762007-04-16 11:29:14 +02001658 val |= AC_DIG1_LEVEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
1660 }
1661 return val;
1662}
1663
1664/* convert to SPDIF status bits from HDA SPDIF bits
1665 */
1666static unsigned int convert_to_spdif_status(unsigned short val)
1667{
1668 unsigned int sbits = 0;
1669
Takashi Iwai0ba21762007-04-16 11:29:14 +02001670 if (val & AC_DIG1_NONAUDIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 sbits |= IEC958_AES0_NONAUDIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001672 if (val & AC_DIG1_PROFESSIONAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 sbits |= IEC958_AES0_PROFESSIONAL;
1674 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001675 if (sbits & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
1677 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001678 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001680 if (!(val & AC_DIG1_COPYRIGHT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001682 if (val & AC_DIG1_LEVEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
1684 sbits |= val & (0x7f << 8);
1685 }
1686 return sbits;
1687}
1688
Takashi Iwai2f728532008-09-25 16:32:41 +02001689/* set digital convert verbs both for the given NID and its slaves */
1690static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
1691 int verb, int val)
1692{
1693 hda_nid_t *d;
1694
Takashi Iwai9e976972008-11-25 08:17:20 +01001695 snd_hda_codec_write_cache(codec, nid, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02001696 d = codec->slave_dig_outs;
1697 if (!d)
1698 return;
1699 for (; *d; d++)
Takashi Iwai9e976972008-11-25 08:17:20 +01001700 snd_hda_codec_write_cache(codec, *d, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02001701}
1702
1703static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,
1704 int dig1, int dig2)
1705{
1706 if (dig1 != -1)
1707 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_1, dig1);
1708 if (dig2 != -1)
1709 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_2, dig2);
1710}
1711
Takashi Iwai0ba21762007-04-16 11:29:14 +02001712static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
1713 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714{
1715 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1716 hda_nid_t nid = kcontrol->private_value;
1717 unsigned short val;
1718 int change;
1719
Ingo Molnar62932df2006-01-16 16:34:20 +01001720 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 codec->spdif_status = ucontrol->value.iec958.status[0] |
1722 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
1723 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
1724 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
1725 val = convert_from_spdif_status(codec->spdif_status);
1726 val |= codec->spdif_ctls & 1;
1727 change = codec->spdif_ctls != val;
1728 codec->spdif_ctls = val;
1729
Takashi Iwai2f728532008-09-25 16:32:41 +02001730 if (change)
1731 set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Ingo Molnar62932df2006-01-16 16:34:20 +01001733 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 return change;
1735}
1736
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001737#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Takashi Iwai0ba21762007-04-16 11:29:14 +02001739static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
1740 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741{
1742 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1743
Takashi Iwai0ba21762007-04-16 11:29:14 +02001744 ucontrol->value.integer.value[0] = codec->spdif_ctls & AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 return 0;
1746}
1747
Takashi Iwai0ba21762007-04-16 11:29:14 +02001748static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
1749 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
1751 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1752 hda_nid_t nid = kcontrol->private_value;
1753 unsigned short val;
1754 int change;
1755
Ingo Molnar62932df2006-01-16 16:34:20 +01001756 mutex_lock(&codec->spdif_mutex);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001757 val = codec->spdif_ctls & ~AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 if (ucontrol->value.integer.value[0])
Takashi Iwai0ba21762007-04-16 11:29:14 +02001759 val |= AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 change = codec->spdif_ctls != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001761 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 codec->spdif_ctls = val;
Takashi Iwai2f728532008-09-25 16:32:41 +02001763 set_dig_out_convert(codec, nid, val & 0xff, -1);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001764 /* unmute amp switch (if any) */
1765 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
Takashi Iwai47fd8302007-08-10 17:11:07 +02001766 (val & AC_DIG1_ENABLE))
1767 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
1768 HDA_AMP_MUTE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001770 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 return change;
1772}
1773
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001774static struct snd_kcontrol_new dig_mixes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 {
1776 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1777 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1778 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK),
1779 .info = snd_hda_spdif_mask_info,
1780 .get = snd_hda_spdif_cmask_get,
1781 },
1782 {
1783 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1784 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1785 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PRO_MASK),
1786 .info = snd_hda_spdif_mask_info,
1787 .get = snd_hda_spdif_pmask_get,
1788 },
1789 {
1790 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1791 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
1792 .info = snd_hda_spdif_mask_info,
1793 .get = snd_hda_spdif_default_get,
1794 .put = snd_hda_spdif_default_put,
1795 },
1796 {
1797 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1798 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH),
1799 .info = snd_hda_spdif_out_switch_info,
1800 .get = snd_hda_spdif_out_switch_get,
1801 .put = snd_hda_spdif_out_switch_put,
1802 },
1803 { } /* end */
1804};
1805
Takashi Iwai09f99702008-02-04 12:31:13 +01001806#define SPDIF_MAX_IDX 4 /* 4 instances should be enough to probe */
1807
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808/**
1809 * snd_hda_create_spdif_out_ctls - create Output SPDIF-related controls
1810 * @codec: the HDA codec
1811 * @nid: audio out widget NID
1812 *
1813 * Creates controls related with the SPDIF output.
1814 * Called from each patch supporting the SPDIF out.
1815 *
1816 * Returns 0 if successful, or a negative error code.
1817 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02001818int snd_hda_create_spdif_out_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819{
1820 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001821 struct snd_kcontrol *kctl;
1822 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01001823 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
Takashi Iwai09f99702008-02-04 12:31:13 +01001825 for (idx = 0; idx < SPDIF_MAX_IDX; idx++) {
1826 if (!_snd_hda_find_mixer_ctl(codec, "IEC958 Playback Switch",
1827 idx))
1828 break;
1829 }
1830 if (idx >= SPDIF_MAX_IDX) {
1831 printk(KERN_ERR "hda_codec: too many IEC958 outputs\n");
1832 return -EBUSY;
1833 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
1835 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaib91f0802008-11-04 08:43:08 +01001836 if (!kctl)
1837 return -ENOMEM;
Takashi Iwai09f99702008-02-04 12:31:13 +01001838 kctl->id.index = idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 kctl->private_value = nid;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001840 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001841 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 return err;
1843 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001844 codec->spdif_ctls =
Andrew Paprocki3982d172007-12-19 12:13:44 +01001845 snd_hda_codec_read(codec, nid, 0,
1846 AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 codec->spdif_status = convert_to_spdif_status(codec->spdif_ctls);
1848 return 0;
1849}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001850EXPORT_SYMBOL_HDA(snd_hda_create_spdif_out_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
1852/*
Takashi Iwai9a081602008-02-12 18:37:26 +01001853 * SPDIF sharing with analog output
1854 */
1855static int spdif_share_sw_get(struct snd_kcontrol *kcontrol,
1856 struct snd_ctl_elem_value *ucontrol)
1857{
1858 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
1859 ucontrol->value.integer.value[0] = mout->share_spdif;
1860 return 0;
1861}
1862
1863static int spdif_share_sw_put(struct snd_kcontrol *kcontrol,
1864 struct snd_ctl_elem_value *ucontrol)
1865{
1866 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
1867 mout->share_spdif = !!ucontrol->value.integer.value[0];
1868 return 0;
1869}
1870
1871static struct snd_kcontrol_new spdif_share_sw = {
1872 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1873 .name = "IEC958 Default PCM Playback Switch",
1874 .info = snd_ctl_boolean_mono_info,
1875 .get = spdif_share_sw_get,
1876 .put = spdif_share_sw_put,
1877};
1878
1879int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
1880 struct hda_multi_out *mout)
1881{
1882 if (!mout->dig_out_nid)
1883 return 0;
1884 /* ATTENTION: here mout is passed as private_data, instead of codec */
Takashi Iwaid13bd412008-07-30 15:01:45 +02001885 return snd_hda_ctl_add(codec,
Takashi Iwai9a081602008-02-12 18:37:26 +01001886 snd_ctl_new1(&spdif_share_sw, mout));
1887}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001888EXPORT_SYMBOL_HDA(snd_hda_create_spdif_share_sw);
Takashi Iwai9a081602008-02-12 18:37:26 +01001889
1890/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 * SPDIF input
1892 */
1893
1894#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
1895
Takashi Iwai0ba21762007-04-16 11:29:14 +02001896static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
1897 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898{
1899 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1900
1901 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
1902 return 0;
1903}
1904
Takashi Iwai0ba21762007-04-16 11:29:14 +02001905static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
1906 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907{
1908 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1909 hda_nid_t nid = kcontrol->private_value;
1910 unsigned int val = !!ucontrol->value.integer.value[0];
1911 int change;
1912
Ingo Molnar62932df2006-01-16 16:34:20 +01001913 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001915 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 codec->spdif_in_enable = val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001917 snd_hda_codec_write_cache(codec, nid, 0,
1918 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001920 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 return change;
1922}
1923
Takashi Iwai0ba21762007-04-16 11:29:14 +02001924static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
1925 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
1927 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1928 hda_nid_t nid = kcontrol->private_value;
1929 unsigned short val;
1930 unsigned int sbits;
1931
Andrew Paprocki3982d172007-12-19 12:13:44 +01001932 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 sbits = convert_to_spdif_status(val);
1934 ucontrol->value.iec958.status[0] = sbits;
1935 ucontrol->value.iec958.status[1] = sbits >> 8;
1936 ucontrol->value.iec958.status[2] = sbits >> 16;
1937 ucontrol->value.iec958.status[3] = sbits >> 24;
1938 return 0;
1939}
1940
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001941static struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 {
1943 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1944 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH),
1945 .info = snd_hda_spdif_in_switch_info,
1946 .get = snd_hda_spdif_in_switch_get,
1947 .put = snd_hda_spdif_in_switch_put,
1948 },
1949 {
1950 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1951 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1952 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,DEFAULT),
1953 .info = snd_hda_spdif_mask_info,
1954 .get = snd_hda_spdif_in_status_get,
1955 },
1956 { } /* end */
1957};
1958
1959/**
1960 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
1961 * @codec: the HDA codec
1962 * @nid: audio in widget NID
1963 *
1964 * Creates controls related with the SPDIF input.
1965 * Called from each patch supporting the SPDIF in.
1966 *
1967 * Returns 0 if successful, or a negative error code.
1968 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02001969int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970{
1971 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001972 struct snd_kcontrol *kctl;
1973 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01001974 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
Takashi Iwai09f99702008-02-04 12:31:13 +01001976 for (idx = 0; idx < SPDIF_MAX_IDX; idx++) {
1977 if (!_snd_hda_find_mixer_ctl(codec, "IEC958 Capture Switch",
1978 idx))
1979 break;
1980 }
1981 if (idx >= SPDIF_MAX_IDX) {
1982 printk(KERN_ERR "hda_codec: too many IEC958 inputs\n");
1983 return -EBUSY;
1984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
1986 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaic8dcdf82009-02-06 16:21:20 +01001987 if (!kctl)
1988 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 kctl->private_value = nid;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001990 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001991 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 return err;
1993 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001994 codec->spdif_in_enable =
Andrew Paprocki3982d172007-12-19 12:13:44 +01001995 snd_hda_codec_read(codec, nid, 0,
1996 AC_VERB_GET_DIGI_CONVERT_1, 0) &
Takashi Iwai0ba21762007-04-16 11:29:14 +02001997 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 return 0;
1999}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002000EXPORT_SYMBOL_HDA(snd_hda_create_spdif_in_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Takashi Iwaicb53c622007-08-10 17:21:45 +02002002#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002003/*
2004 * command cache
2005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002007/* build a 32bit cache key with the widget id and the command parameter */
2008#define build_cmd_cache_key(nid, verb) ((verb << 8) | nid)
2009#define get_cmd_cache_nid(key) ((key) & 0xff)
2010#define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff)
2011
2012/**
2013 * snd_hda_codec_write_cache - send a single command with caching
2014 * @codec: the HDA codec
2015 * @nid: NID to send the command
2016 * @direct: direct flag
2017 * @verb: the verb to send
2018 * @parm: the parameter for the verb
2019 *
2020 * Send a single command without waiting for response.
2021 *
2022 * Returns 0 if successful, or a negative error code.
2023 */
2024int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid,
2025 int direct, unsigned int verb, unsigned int parm)
2026{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002027 struct hda_bus *bus = codec->bus;
2028 unsigned int res;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002029 int err;
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002030
2031 res = make_codec_cmd(codec, nid, direct, verb, parm);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002032 snd_hda_power_up(codec);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002033 mutex_lock(&bus->cmd_mutex);
2034 err = bus->ops.command(bus, res);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002035 if (!err) {
2036 struct hda_cache_head *c;
2037 u32 key = build_cmd_cache_key(nid, verb);
2038 c = get_alloc_hash(&codec->cmd_cache, key);
2039 if (c)
2040 c->val = parm;
2041 }
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002042 mutex_unlock(&bus->cmd_mutex);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002043 snd_hda_power_down(codec);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002044 return err;
2045}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002046EXPORT_SYMBOL_HDA(snd_hda_codec_write_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002047
2048/* resume the all commands from the cache */
2049void snd_hda_codec_resume_cache(struct hda_codec *codec)
2050{
Takashi Iwai603c4012008-07-30 15:01:44 +02002051 struct hda_cache_head *buffer = codec->cmd_cache.buf.list;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002052 int i;
2053
Takashi Iwai603c4012008-07-30 15:01:44 +02002054 for (i = 0; i < codec->cmd_cache.buf.used; i++, buffer++) {
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002055 u32 key = buffer->key;
2056 if (!key)
2057 continue;
2058 snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0,
2059 get_cmd_cache_cmd(key), buffer->val);
2060 }
2061}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002062EXPORT_SYMBOL_HDA(snd_hda_codec_resume_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002063
2064/**
2065 * snd_hda_sequence_write_cache - sequence writes with caching
2066 * @codec: the HDA codec
2067 * @seq: VERB array to send
2068 *
2069 * Send the commands sequentially from the given array.
2070 * Thte commands are recorded on cache for power-save and resume.
2071 * The array must be terminated with NID=0.
2072 */
2073void snd_hda_sequence_write_cache(struct hda_codec *codec,
2074 const struct hda_verb *seq)
2075{
2076 for (; seq->nid; seq++)
2077 snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb,
2078 seq->param);
2079}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002080EXPORT_SYMBOL_HDA(snd_hda_sequence_write_cache);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002081#endif /* SND_HDA_NEEDS_RESUME */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002082
Takashi Iwai54d17402005-11-21 16:33:22 +01002083/*
2084 * set power state of the codec
2085 */
2086static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2087 unsigned int power_state)
2088{
Takashi Iwaicb53c622007-08-10 17:21:45 +02002089 hda_nid_t nid;
2090 int i;
Takashi Iwai54d17402005-11-21 16:33:22 +01002091
2092 snd_hda_codec_write(codec, fg, 0, AC_VERB_SET_POWER_STATE,
2093 power_state);
Marc Boucherd2595d82008-01-22 15:23:30 +01002094 msleep(10); /* partial workaround for "azx_get_response timeout" */
Takashi Iwai54d17402005-11-21 16:33:22 +01002095
Takashi Iwaicb53c622007-08-10 17:21:45 +02002096 nid = codec->start_nid;
2097 for (i = 0; i < codec->num_nodes; i++, nid++) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01002098 unsigned int wcaps = get_wcaps(codec, nid);
2099 if (wcaps & AC_WCAP_POWER) {
2100 unsigned int wid_type = (wcaps & AC_WCAP_TYPE) >>
2101 AC_WCAP_TYPE_SHIFT;
2102 if (wid_type == AC_WID_PIN) {
2103 unsigned int pincap;
2104 /*
2105 * don't power down the widget if it controls
2106 * eapd and EAPD_BTLENABLE is set.
2107 */
2108 pincap = snd_hda_param_read(codec, nid,
2109 AC_PAR_PIN_CAP);
2110 if (pincap & AC_PINCAP_EAPD) {
2111 int eapd = snd_hda_codec_read(codec,
2112 nid, 0,
2113 AC_VERB_GET_EAPD_BTLENABLE, 0);
2114 eapd &= 0x02;
2115 if (power_state == AC_PWRST_D3 && eapd)
2116 continue;
2117 }
Takashi Iwai1194b5b2007-10-10 10:04:26 +02002118 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002119 snd_hda_codec_write(codec, nid, 0,
2120 AC_VERB_SET_POWER_STATE,
2121 power_state);
Takashi Iwai1194b5b2007-10-10 10:04:26 +02002122 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002123 }
2124
Takashi Iwaicb53c622007-08-10 17:21:45 +02002125 if (power_state == AC_PWRST_D0) {
2126 unsigned long end_time;
2127 int state;
Takashi Iwai54d17402005-11-21 16:33:22 +01002128 msleep(10);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002129 /* wait until the codec reachs to D0 */
2130 end_time = jiffies + msecs_to_jiffies(500);
2131 do {
2132 state = snd_hda_codec_read(codec, fg, 0,
2133 AC_VERB_GET_POWER_STATE, 0);
2134 if (state == power_state)
2135 break;
2136 msleep(1);
2137 } while (time_after_eq(end_time, jiffies));
2138 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002139}
2140
Takashi Iwai11aeff02008-07-30 15:01:46 +02002141#ifdef CONFIG_SND_HDA_HWDEP
2142/* execute additional init verbs */
2143static void hda_exec_init_verbs(struct hda_codec *codec)
2144{
2145 if (codec->init_verbs.list)
2146 snd_hda_sequence_write(codec, codec->init_verbs.list);
2147}
2148#else
2149static inline void hda_exec_init_verbs(struct hda_codec *codec) {}
2150#endif
2151
Takashi Iwaicb53c622007-08-10 17:21:45 +02002152#ifdef SND_HDA_NEEDS_RESUME
2153/*
2154 * call suspend and power-down; used both from PM and power-save
2155 */
2156static void hda_call_codec_suspend(struct hda_codec *codec)
2157{
2158 if (codec->patch_ops.suspend)
2159 codec->patch_ops.suspend(codec, PMSG_SUSPEND);
2160 hda_set_power_state(codec,
2161 codec->afg ? codec->afg : codec->mfg,
2162 AC_PWRST_D3);
2163#ifdef CONFIG_SND_HDA_POWER_SAVE
2164 cancel_delayed_work(&codec->power_work);
Takashi Iwai95e99fd2007-08-13 15:29:04 +02002165 codec->power_on = 0;
Takashi Iwaia221e282007-08-16 16:35:33 +02002166 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002167#endif
2168}
2169
2170/*
2171 * kick up codec; used both from PM and power-save
2172 */
2173static void hda_call_codec_resume(struct hda_codec *codec)
2174{
2175 hda_set_power_state(codec,
2176 codec->afg ? codec->afg : codec->mfg,
2177 AC_PWRST_D0);
Takashi Iwai11aeff02008-07-30 15:01:46 +02002178 hda_exec_init_verbs(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002179 if (codec->patch_ops.resume)
2180 codec->patch_ops.resume(codec);
2181 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02002182 if (codec->patch_ops.init)
2183 codec->patch_ops.init(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002184 snd_hda_codec_resume_amp(codec);
2185 snd_hda_codec_resume_cache(codec);
2186 }
2187}
2188#endif /* SND_HDA_NEEDS_RESUME */
2189
Takashi Iwai54d17402005-11-21 16:33:22 +01002190
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191/**
2192 * snd_hda_build_controls - build mixer controls
2193 * @bus: the BUS
2194 *
2195 * Creates mixer controls for each codec included in the bus.
2196 *
2197 * Returns 0 if successful, otherwise a negative error code.
2198 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +01002199int /*__devinit*/ snd_hda_build_controls(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002201 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
Takashi Iwai0ba21762007-04-16 11:29:14 +02002203 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002204 int err = snd_hda_codec_build_controls(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 if (err < 0)
2206 return err;
2207 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002208 return 0;
2209}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002210EXPORT_SYMBOL_HDA(snd_hda_build_controls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002212int snd_hda_codec_build_controls(struct hda_codec *codec)
2213{
2214 int err = 0;
2215 /* fake as if already powered-on */
2216 hda_keep_power_on(codec);
2217 /* then fire up */
2218 hda_set_power_state(codec,
2219 codec->afg ? codec->afg : codec->mfg,
2220 AC_PWRST_D0);
Takashi Iwai11aeff02008-07-30 15:01:46 +02002221 hda_exec_init_verbs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002222 /* continue to initialize... */
2223 if (codec->patch_ops.init)
2224 err = codec->patch_ops.init(codec);
2225 if (!err && codec->patch_ops.build_controls)
2226 err = codec->patch_ops.build_controls(codec);
2227 snd_hda_power_down(codec);
2228 if (err < 0)
2229 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 return 0;
2231}
2232
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233/*
2234 * stream formats
2235 */
Takashi Iwaibefdf312005-08-22 13:57:55 +02002236struct hda_rate_tbl {
2237 unsigned int hz;
2238 unsigned int alsa_bits;
2239 unsigned int hda_fmt;
2240};
2241
2242static struct hda_rate_tbl rate_bits[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 /* rate in Hz, ALSA rate bitmask, HDA format value */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02002244
2245 /* autodetected value used in snd_hda_query_supported_pcm */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 { 8000, SNDRV_PCM_RATE_8000, 0x0500 }, /* 1/6 x 48 */
2247 { 11025, SNDRV_PCM_RATE_11025, 0x4300 }, /* 1/4 x 44 */
2248 { 16000, SNDRV_PCM_RATE_16000, 0x0200 }, /* 1/3 x 48 */
2249 { 22050, SNDRV_PCM_RATE_22050, 0x4100 }, /* 1/2 x 44 */
2250 { 32000, SNDRV_PCM_RATE_32000, 0x0a00 }, /* 2/3 x 48 */
2251 { 44100, SNDRV_PCM_RATE_44100, 0x4000 }, /* 44 */
2252 { 48000, SNDRV_PCM_RATE_48000, 0x0000 }, /* 48 */
2253 { 88200, SNDRV_PCM_RATE_88200, 0x4800 }, /* 2 x 44 */
2254 { 96000, SNDRV_PCM_RATE_96000, 0x0800 }, /* 2 x 48 */
2255 { 176400, SNDRV_PCM_RATE_176400, 0x5800 },/* 4 x 44 */
2256 { 192000, SNDRV_PCM_RATE_192000, 0x1800 }, /* 4 x 48 */
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002257#define AC_PAR_PCM_RATE_BITS 11
2258 /* up to bits 10, 384kHZ isn't supported properly */
2259
2260 /* not autodetected value */
2261 { 9600, SNDRV_PCM_RATE_KNOT, 0x0400 }, /* 1/5 x 48 */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02002262
Takashi Iwaibefdf312005-08-22 13:57:55 +02002263 { 0 } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264};
2265
2266/**
2267 * snd_hda_calc_stream_format - calculate format bitset
2268 * @rate: the sample rate
2269 * @channels: the number of channels
2270 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
2271 * @maxbps: the max. bps
2272 *
2273 * Calculate the format bitset from the given rate, channels and th PCM format.
2274 *
2275 * Return zero if invalid.
2276 */
2277unsigned int snd_hda_calc_stream_format(unsigned int rate,
2278 unsigned int channels,
2279 unsigned int format,
2280 unsigned int maxbps)
2281{
2282 int i;
2283 unsigned int val = 0;
2284
Takashi Iwaibefdf312005-08-22 13:57:55 +02002285 for (i = 0; rate_bits[i].hz; i++)
2286 if (rate_bits[i].hz == rate) {
2287 val = rate_bits[i].hda_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 break;
2289 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002290 if (!rate_bits[i].hz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 snd_printdd("invalid rate %d\n", rate);
2292 return 0;
2293 }
2294
2295 if (channels == 0 || channels > 8) {
2296 snd_printdd("invalid channels %d\n", channels);
2297 return 0;
2298 }
2299 val |= channels - 1;
2300
2301 switch (snd_pcm_format_width(format)) {
2302 case 8: val |= 0x00; break;
2303 case 16: val |= 0x10; break;
2304 case 20:
2305 case 24:
2306 case 32:
2307 if (maxbps >= 32)
2308 val |= 0x40;
2309 else if (maxbps >= 24)
2310 val |= 0x30;
2311 else
2312 val |= 0x20;
2313 break;
2314 default:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002315 snd_printdd("invalid format width %d\n",
2316 snd_pcm_format_width(format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 return 0;
2318 }
2319
2320 return val;
2321}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002322EXPORT_SYMBOL_HDA(snd_hda_calc_stream_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
2324/**
2325 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
2326 * @codec: the HDA codec
2327 * @nid: NID to query
2328 * @ratesp: the pointer to store the detected rate bitflags
2329 * @formatsp: the pointer to store the detected formats
2330 * @bpsp: the pointer to store the detected format widths
2331 *
2332 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
2333 * or @bsps argument is ignored.
2334 *
2335 * Returns 0 if successful, otherwise a negative error code.
2336 */
Takashi Iwai986862bd2008-11-27 12:40:13 +01002337static int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 u32 *ratesp, u64 *formatsp, unsigned int *bpsp)
2339{
2340 int i;
2341 unsigned int val, streams;
2342
2343 val = 0;
2344 if (nid != codec->afg &&
Takashi Iwai54d17402005-11-21 16:33:22 +01002345 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
2347 if (val == -1)
2348 return -EIO;
2349 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002350 if (!val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
2352
2353 if (ratesp) {
2354 u32 rates = 0;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002355 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 if (val & (1 << i))
Takashi Iwaibefdf312005-08-22 13:57:55 +02002357 rates |= rate_bits[i].alsa_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 }
2359 *ratesp = rates;
2360 }
2361
2362 if (formatsp || bpsp) {
2363 u64 formats = 0;
2364 unsigned int bps;
2365 unsigned int wcaps;
2366
Takashi Iwai54d17402005-11-21 16:33:22 +01002367 wcaps = get_wcaps(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
2369 if (streams == -1)
2370 return -EIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002371 if (!streams) {
2372 streams = snd_hda_param_read(codec, codec->afg,
2373 AC_PAR_STREAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 if (streams == -1)
2375 return -EIO;
2376 }
2377
2378 bps = 0;
2379 if (streams & AC_SUPFMT_PCM) {
2380 if (val & AC_SUPPCM_BITS_8) {
2381 formats |= SNDRV_PCM_FMTBIT_U8;
2382 bps = 8;
2383 }
2384 if (val & AC_SUPPCM_BITS_16) {
2385 formats |= SNDRV_PCM_FMTBIT_S16_LE;
2386 bps = 16;
2387 }
2388 if (wcaps & AC_WCAP_DIGITAL) {
2389 if (val & AC_SUPPCM_BITS_32)
2390 formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
2391 if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24))
2392 formats |= SNDRV_PCM_FMTBIT_S32_LE;
2393 if (val & AC_SUPPCM_BITS_24)
2394 bps = 24;
2395 else if (val & AC_SUPPCM_BITS_20)
2396 bps = 20;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002397 } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24|
2398 AC_SUPPCM_BITS_32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 formats |= SNDRV_PCM_FMTBIT_S32_LE;
2400 if (val & AC_SUPPCM_BITS_32)
2401 bps = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 else if (val & AC_SUPPCM_BITS_24)
2403 bps = 24;
Nicolas Graziano33ef76512006-09-19 14:23:14 +02002404 else if (val & AC_SUPPCM_BITS_20)
2405 bps = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 }
2407 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002408 else if (streams == AC_SUPFMT_FLOAT32) {
2409 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
2411 bps = 32;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002412 } else if (streams == AC_SUPFMT_AC3) {
2413 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 /* temporary hack: we have still no proper support
2415 * for the direct AC3 stream...
2416 */
2417 formats |= SNDRV_PCM_FMTBIT_U8;
2418 bps = 8;
2419 }
2420 if (formatsp)
2421 *formatsp = formats;
2422 if (bpsp)
2423 *bpsp = bps;
2424 }
2425
2426 return 0;
2427}
2428
2429/**
Takashi Iwai0ba21762007-04-16 11:29:14 +02002430 * snd_hda_is_supported_format - check whether the given node supports
2431 * the format val
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 *
2433 * Returns 1 if supported, 0 if not.
2434 */
2435int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
2436 unsigned int format)
2437{
2438 int i;
2439 unsigned int val = 0, rate, stream;
2440
2441 if (nid != codec->afg &&
Takashi Iwai54d17402005-11-21 16:33:22 +01002442 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
2444 if (val == -1)
2445 return 0;
2446 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002447 if (!val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
2449 if (val == -1)
2450 return 0;
2451 }
2452
2453 rate = format & 0xff00;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002454 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++)
Takashi Iwaibefdf312005-08-22 13:57:55 +02002455 if (rate_bits[i].hda_fmt == rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 if (val & (1 << i))
2457 break;
2458 return 0;
2459 }
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002460 if (i >= AC_PAR_PCM_RATE_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 return 0;
2462
2463 stream = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
2464 if (stream == -1)
2465 return 0;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002466 if (!stream && nid != codec->afg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 stream = snd_hda_param_read(codec, codec->afg, AC_PAR_STREAM);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002468 if (!stream || stream == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 return 0;
2470
2471 if (stream & AC_SUPFMT_PCM) {
2472 switch (format & 0xf0) {
2473 case 0x00:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002474 if (!(val & AC_SUPPCM_BITS_8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 return 0;
2476 break;
2477 case 0x10:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002478 if (!(val & AC_SUPPCM_BITS_16))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 return 0;
2480 break;
2481 case 0x20:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002482 if (!(val & AC_SUPPCM_BITS_20))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 return 0;
2484 break;
2485 case 0x30:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002486 if (!(val & AC_SUPPCM_BITS_24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 return 0;
2488 break;
2489 case 0x40:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002490 if (!(val & AC_SUPPCM_BITS_32))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 return 0;
2492 break;
2493 default:
2494 return 0;
2495 }
2496 } else {
2497 /* FIXME: check for float32 and AC3? */
2498 }
2499
2500 return 1;
2501}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002502EXPORT_SYMBOL_HDA(snd_hda_is_supported_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503
2504/*
2505 * PCM stuff
2506 */
2507static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
2508 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002509 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510{
2511 return 0;
2512}
2513
2514static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
2515 struct hda_codec *codec,
2516 unsigned int stream_tag,
2517 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002518 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519{
2520 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
2521 return 0;
2522}
2523
2524static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
2525 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002526 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527{
Takashi Iwai888afa12008-03-18 09:57:50 +01002528 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 return 0;
2530}
2531
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002532static int set_pcm_default_values(struct hda_codec *codec,
2533 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002535 /* query support PCM information from the given NID */
2536 if (info->nid && (!info->rates || !info->formats)) {
2537 snd_hda_query_supported_pcm(codec, info->nid,
2538 info->rates ? NULL : &info->rates,
2539 info->formats ? NULL : &info->formats,
2540 info->maxbps ? NULL : &info->maxbps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 }
2542 if (info->ops.open == NULL)
2543 info->ops.open = hda_pcm_default_open_close;
2544 if (info->ops.close == NULL)
2545 info->ops.close = hda_pcm_default_open_close;
2546 if (info->ops.prepare == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02002547 if (snd_BUG_ON(!info->nid))
2548 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 info->ops.prepare = hda_pcm_default_prepare;
2550 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 if (info->ops.cleanup == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02002552 if (snd_BUG_ON(!info->nid))
2553 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 info->ops.cleanup = hda_pcm_default_cleanup;
2555 }
2556 return 0;
2557}
2558
Takashi Iwai176d5332008-07-30 15:01:44 +02002559/*
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002560 * get the empty PCM device number to assign
2561 */
2562static int get_empty_pcm_device(struct hda_bus *bus, int type)
2563{
2564 static const char *dev_name[HDA_PCM_NTYPES] = {
2565 "Audio", "SPDIF", "HDMI", "Modem"
2566 };
2567 /* starting device index for each PCM type */
2568 static int dev_idx[HDA_PCM_NTYPES] = {
2569 [HDA_PCM_TYPE_AUDIO] = 0,
2570 [HDA_PCM_TYPE_SPDIF] = 1,
2571 [HDA_PCM_TYPE_HDMI] = 3,
2572 [HDA_PCM_TYPE_MODEM] = 6
2573 };
2574 /* normal audio device indices; not linear to keep compatibility */
2575 static int audio_idx[4] = { 0, 2, 4, 5 };
2576 int i, dev;
2577
2578 switch (type) {
2579 case HDA_PCM_TYPE_AUDIO:
2580 for (i = 0; i < ARRAY_SIZE(audio_idx); i++) {
2581 dev = audio_idx[i];
2582 if (!test_bit(dev, bus->pcm_dev_bits))
2583 break;
2584 }
2585 if (i >= ARRAY_SIZE(audio_idx)) {
2586 snd_printk(KERN_WARNING "Too many audio devices\n");
2587 return -EAGAIN;
2588 }
2589 break;
2590 case HDA_PCM_TYPE_SPDIF:
2591 case HDA_PCM_TYPE_HDMI:
2592 case HDA_PCM_TYPE_MODEM:
2593 dev = dev_idx[type];
2594 if (test_bit(dev, bus->pcm_dev_bits)) {
2595 snd_printk(KERN_WARNING "%s already defined\n",
2596 dev_name[type]);
2597 return -EAGAIN;
2598 }
2599 break;
2600 default:
2601 snd_printk(KERN_WARNING "Invalid PCM type %d\n", type);
2602 return -EINVAL;
2603 }
2604 set_bit(dev, bus->pcm_dev_bits);
2605 return dev;
2606}
2607
2608/*
Takashi Iwai176d5332008-07-30 15:01:44 +02002609 * attach a new PCM stream
2610 */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002611static int snd_hda_attach_pcm(struct hda_codec *codec, struct hda_pcm *pcm)
Takashi Iwai176d5332008-07-30 15:01:44 +02002612{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002613 struct hda_bus *bus = codec->bus;
Takashi Iwai176d5332008-07-30 15:01:44 +02002614 struct hda_pcm_stream *info;
2615 int stream, err;
2616
Takashi Iwaib91f0802008-11-04 08:43:08 +01002617 if (snd_BUG_ON(!pcm->name))
Takashi Iwai176d5332008-07-30 15:01:44 +02002618 return -EINVAL;
2619 for (stream = 0; stream < 2; stream++) {
2620 info = &pcm->stream[stream];
2621 if (info->substreams) {
2622 err = set_pcm_default_values(codec, info);
2623 if (err < 0)
2624 return err;
2625 }
2626 }
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002627 return bus->ops.attach_pcm(bus, codec, pcm);
Takashi Iwai176d5332008-07-30 15:01:44 +02002628}
2629
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002630/* assign all PCMs of the given codec */
2631int snd_hda_codec_build_pcms(struct hda_codec *codec)
2632{
2633 unsigned int pcm;
2634 int err;
2635
2636 if (!codec->num_pcms) {
2637 if (!codec->patch_ops.build_pcms)
2638 return 0;
2639 err = codec->patch_ops.build_pcms(codec);
2640 if (err < 0)
2641 return err;
2642 }
2643 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
2644 struct hda_pcm *cpcm = &codec->pcm_info[pcm];
2645 int dev;
2646
2647 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
Takashi Iwai41b5b012009-01-20 18:21:23 +01002648 continue; /* no substreams assigned */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002649
2650 if (!cpcm->pcm) {
2651 dev = get_empty_pcm_device(codec->bus, cpcm->pcm_type);
2652 if (dev < 0)
2653 return 0;
2654 cpcm->device = dev;
2655 err = snd_hda_attach_pcm(codec, cpcm);
2656 if (err < 0)
2657 return err;
2658 }
2659 }
2660 return 0;
2661}
2662
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663/**
2664 * snd_hda_build_pcms - build PCM information
2665 * @bus: the BUS
2666 *
2667 * Create PCM information for each codec included in the bus.
2668 *
2669 * The build_pcms codec patch is requested to set up codec->num_pcms and
2670 * codec->pcm_info properly. The array is referred by the top-level driver
2671 * to create its PCM instances.
2672 * The allocated codec->pcm_info should be released in codec->patch_ops.free
2673 * callback.
2674 *
2675 * At least, substreams, channels_min and channels_max must be filled for
2676 * each stream. substreams = 0 indicates that the stream doesn't exist.
2677 * When rates and/or formats are zero, the supported values are queried
2678 * from the given nid. The nid is used also by the default ops.prepare
2679 * and ops.cleanup callbacks.
2680 *
2681 * The driver needs to call ops.open in its open callback. Similarly,
2682 * ops.close is supposed to be called in the close callback.
2683 * ops.prepare should be called in the prepare or hw_params callback
2684 * with the proper parameters for set up.
2685 * ops.cleanup should be called in hw_free for clean up of streams.
2686 *
2687 * This function returns 0 if successfull, or a negative error code.
2688 */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002689int __devinit snd_hda_build_pcms(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002691 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692
Takashi Iwai0ba21762007-04-16 11:29:14 +02002693 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002694 int err = snd_hda_codec_build_pcms(codec);
2695 if (err < 0)
2696 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 }
2698 return 0;
2699}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002700EXPORT_SYMBOL_HDA(snd_hda_build_pcms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702/**
2703 * snd_hda_check_board_config - compare the current codec with the config table
2704 * @codec: the HDA codec
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002705 * @num_configs: number of config enums
2706 * @models: array of model name strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 * @tbl: configuration table, terminated by null entries
2708 *
2709 * Compares the modelname or PCI subsystem id of the current codec with the
2710 * given configuration table. If a matching entry is found, returns its
2711 * config value (supposed to be 0 or positive).
2712 *
2713 * If no entries are matching, the function returns a negative value.
2714 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002715int snd_hda_check_board_config(struct hda_codec *codec,
2716 int num_configs, const char **models,
2717 const struct snd_pci_quirk *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718{
Takashi Iwaif44ac832008-07-30 15:01:45 +02002719 if (codec->modelname && models) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002720 int i;
2721 for (i = 0; i < num_configs; i++) {
2722 if (models[i] &&
Takashi Iwaif44ac832008-07-30 15:01:45 +02002723 !strcmp(codec->modelname, models[i])) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002724 snd_printd(KERN_INFO "hda_codec: model '%s' is "
2725 "selected\n", models[i]);
2726 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 }
2728 }
2729 }
2730
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002731 if (!codec->bus->pci || !tbl)
2732 return -1;
2733
2734 tbl = snd_pci_quirk_lookup(codec->bus->pci, tbl);
2735 if (!tbl)
2736 return -1;
2737 if (tbl->value >= 0 && tbl->value < num_configs) {
Takashi Iwai62cf8722008-05-20 12:15:15 +02002738#ifdef CONFIG_SND_DEBUG_VERBOSE
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002739 char tmp[10];
2740 const char *model = NULL;
2741 if (models)
2742 model = models[tbl->value];
2743 if (!model) {
2744 sprintf(tmp, "#%d", tbl->value);
2745 model = tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 }
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002747 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
2748 "for config %x:%x (%s)\n",
2749 model, tbl->subvendor, tbl->subdevice,
2750 (tbl->name ? tbl->name : "Unknown device"));
2751#endif
2752 return tbl->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 }
2754 return -1;
2755}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002756EXPORT_SYMBOL_HDA(snd_hda_check_board_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
2758/**
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02002759 * snd_hda_check_board_codec_sid_config - compare the current codec
2760 subsystem ID with the
2761 config table
2762
2763 This is important for Gateway notebooks with SB450 HDA Audio
2764 where the vendor ID of the PCI device is:
2765 ATI Technologies Inc SB450 HDA Audio [1002:437b]
2766 and the vendor/subvendor are found only at the codec.
2767
2768 * @codec: the HDA codec
2769 * @num_configs: number of config enums
2770 * @models: array of model name strings
2771 * @tbl: configuration table, terminated by null entries
2772 *
2773 * Compares the modelname or PCI subsystem id of the current codec with the
2774 * given configuration table. If a matching entry is found, returns its
2775 * config value (supposed to be 0 or positive).
2776 *
2777 * If no entries are matching, the function returns a negative value.
2778 */
2779int snd_hda_check_board_codec_sid_config(struct hda_codec *codec,
2780 int num_configs, const char **models,
2781 const struct snd_pci_quirk *tbl)
2782{
2783 const struct snd_pci_quirk *q;
2784
2785 /* Search for codec ID */
2786 for (q = tbl; q->subvendor; q++) {
2787 unsigned long vendorid = (q->subdevice) | (q->subvendor << 16);
2788
2789 if (vendorid == codec->subsystem_id)
2790 break;
2791 }
2792
2793 if (!q->subvendor)
2794 return -1;
2795
2796 tbl = q;
2797
2798 if (tbl->value >= 0 && tbl->value < num_configs) {
2799#ifdef CONFIG_SND_DEBUG_DETECT
2800 char tmp[10];
2801 const char *model = NULL;
2802 if (models)
2803 model = models[tbl->value];
2804 if (!model) {
2805 sprintf(tmp, "#%d", tbl->value);
2806 model = tmp;
2807 }
2808 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
2809 "for config %x:%x (%s)\n",
2810 model, tbl->subvendor, tbl->subdevice,
2811 (tbl->name ? tbl->name : "Unknown device"));
2812#endif
2813 return tbl->value;
2814 }
2815 return -1;
2816}
2817EXPORT_SYMBOL_HDA(snd_hda_check_board_codec_sid_config);
2818
2819/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 * snd_hda_add_new_ctls - create controls from the array
2821 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002822 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 *
2824 * This helper function creates and add new controls in the given array.
2825 * The array must be terminated with an empty entry as terminator.
2826 *
2827 * Returns 0 if successful, or a negative error code.
2828 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002829int snd_hda_add_new_ctls(struct hda_codec *codec, struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830{
Takashi Iwaicb53c622007-08-10 17:21:45 +02002831 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
2833 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01002834 struct snd_kcontrol *kctl;
2835 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002836 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01002837 return -ENOMEM;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002838 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai54d17402005-11-21 16:33:22 +01002839 if (err < 0) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002840 if (!codec->addr)
Takashi Iwai54d17402005-11-21 16:33:22 +01002841 return err;
2842 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002843 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01002844 return -ENOMEM;
2845 kctl->id.device = codec->addr;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002846 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002847 if (err < 0)
Takashi Iwai54d17402005-11-21 16:33:22 +01002848 return err;
2849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 }
2851 return 0;
2852}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002853EXPORT_SYMBOL_HDA(snd_hda_add_new_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854
Takashi Iwaicb53c622007-08-10 17:21:45 +02002855#ifdef CONFIG_SND_HDA_POWER_SAVE
2856static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2857 unsigned int power_state);
2858
2859static void hda_power_work(struct work_struct *work)
2860{
2861 struct hda_codec *codec =
2862 container_of(work, struct hda_codec, power_work.work);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002863 struct hda_bus *bus = codec->bus;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002864
Maxim Levitsky2e492462007-09-03 15:26:57 +02002865 if (!codec->power_on || codec->power_count) {
2866 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002867 return;
Maxim Levitsky2e492462007-09-03 15:26:57 +02002868 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02002869
2870 hda_call_codec_suspend(codec);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002871 if (bus->ops.pm_notify)
2872 bus->ops.pm_notify(bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002873}
2874
2875static void hda_keep_power_on(struct hda_codec *codec)
2876{
2877 codec->power_count++;
2878 codec->power_on = 1;
2879}
2880
2881void snd_hda_power_up(struct hda_codec *codec)
2882{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002883 struct hda_bus *bus = codec->bus;
2884
Takashi Iwaicb53c622007-08-10 17:21:45 +02002885 codec->power_count++;
Takashi Iwaia221e282007-08-16 16:35:33 +02002886 if (codec->power_on || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002887 return;
2888
2889 codec->power_on = 1;
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002890 if (bus->ops.pm_notify)
2891 bus->ops.pm_notify(bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002892 hda_call_codec_resume(codec);
2893 cancel_delayed_work(&codec->power_work);
Takashi Iwaia221e282007-08-16 16:35:33 +02002894 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002895}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002896EXPORT_SYMBOL_HDA(snd_hda_power_up);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01002897
2898#define power_save(codec) \
2899 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002900
Takashi Iwaifee2fba2008-11-27 12:43:28 +01002901#define power_save(codec) \
2902 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0)
2903
Takashi Iwaicb53c622007-08-10 17:21:45 +02002904void snd_hda_power_down(struct hda_codec *codec)
2905{
2906 --codec->power_count;
Takashi Iwaia221e282007-08-16 16:35:33 +02002907 if (!codec->power_on || codec->power_count || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002908 return;
Takashi Iwaifee2fba2008-11-27 12:43:28 +01002909 if (power_save(codec)) {
Takashi Iwaia221e282007-08-16 16:35:33 +02002910 codec->power_transition = 1; /* avoid reentrance */
Takashi Iwaic107b412009-01-13 17:46:37 +01002911 queue_delayed_work(codec->bus->workq, &codec->power_work,
Takashi Iwaifee2fba2008-11-27 12:43:28 +01002912 msecs_to_jiffies(power_save(codec) * 1000));
Takashi Iwaia221e282007-08-16 16:35:33 +02002913 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02002914}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002915EXPORT_SYMBOL_HDA(snd_hda_power_down);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002916
2917int snd_hda_check_amp_list_power(struct hda_codec *codec,
2918 struct hda_loopback_check *check,
2919 hda_nid_t nid)
2920{
2921 struct hda_amp_list *p;
2922 int ch, v;
2923
2924 if (!check->amplist)
2925 return 0;
2926 for (p = check->amplist; p->nid; p++) {
2927 if (p->nid == nid)
2928 break;
2929 }
2930 if (!p->nid)
2931 return 0; /* nothing changed */
2932
2933 for (p = check->amplist; p->nid; p++) {
2934 for (ch = 0; ch < 2; ch++) {
2935 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
2936 p->idx);
2937 if (!(v & HDA_AMP_MUTE) && v > 0) {
2938 if (!check->power_on) {
2939 check->power_on = 1;
2940 snd_hda_power_up(codec);
2941 }
2942 return 1;
2943 }
2944 }
2945 }
2946 if (check->power_on) {
2947 check->power_on = 0;
2948 snd_hda_power_down(codec);
2949 }
2950 return 0;
2951}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002952EXPORT_SYMBOL_HDA(snd_hda_check_amp_list_power);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002953#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002955/*
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002956 * Channel mode helper
2957 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002958int snd_hda_ch_mode_info(struct hda_codec *codec,
2959 struct snd_ctl_elem_info *uinfo,
2960 const struct hda_channel_mode *chmode,
2961 int num_chmodes)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002962{
2963 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2964 uinfo->count = 1;
2965 uinfo->value.enumerated.items = num_chmodes;
2966 if (uinfo->value.enumerated.item >= num_chmodes)
2967 uinfo->value.enumerated.item = num_chmodes - 1;
2968 sprintf(uinfo->value.enumerated.name, "%dch",
2969 chmode[uinfo->value.enumerated.item].channels);
2970 return 0;
2971}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002972EXPORT_SYMBOL_HDA(snd_hda_ch_mode_info);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002973
Takashi Iwai0ba21762007-04-16 11:29:14 +02002974int snd_hda_ch_mode_get(struct hda_codec *codec,
2975 struct snd_ctl_elem_value *ucontrol,
2976 const struct hda_channel_mode *chmode,
2977 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002978 int max_channels)
2979{
2980 int i;
2981
2982 for (i = 0; i < num_chmodes; i++) {
2983 if (max_channels == chmode[i].channels) {
2984 ucontrol->value.enumerated.item[0] = i;
2985 break;
2986 }
2987 }
2988 return 0;
2989}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002990EXPORT_SYMBOL_HDA(snd_hda_ch_mode_get);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002991
Takashi Iwai0ba21762007-04-16 11:29:14 +02002992int snd_hda_ch_mode_put(struct hda_codec *codec,
2993 struct snd_ctl_elem_value *ucontrol,
2994 const struct hda_channel_mode *chmode,
2995 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002996 int *max_channelsp)
2997{
2998 unsigned int mode;
2999
3000 mode = ucontrol->value.enumerated.item[0];
Takashi Iwai68ea7b22007-11-15 15:54:38 +01003001 if (mode >= num_chmodes)
3002 return -EINVAL;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003003 if (*max_channelsp == chmode[mode].channels)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003004 return 0;
3005 /* change the current channel setting */
3006 *max_channelsp = chmode[mode].channels;
3007 if (chmode[mode].sequence)
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003008 snd_hda_sequence_write_cache(codec, chmode[mode].sequence);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003009 return 1;
3010}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003011EXPORT_SYMBOL_HDA(snd_hda_ch_mode_put);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003012
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013/*
3014 * input MUX helper
3015 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003016int snd_hda_input_mux_info(const struct hda_input_mux *imux,
3017 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018{
3019 unsigned int index;
3020
3021 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3022 uinfo->count = 1;
3023 uinfo->value.enumerated.items = imux->num_items;
Takashi Iwai5513b0c2007-10-09 11:58:41 +02003024 if (!imux->num_items)
3025 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 index = uinfo->value.enumerated.item;
3027 if (index >= imux->num_items)
3028 index = imux->num_items - 1;
3029 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
3030 return 0;
3031}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003032EXPORT_SYMBOL_HDA(snd_hda_input_mux_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033
Takashi Iwai0ba21762007-04-16 11:29:14 +02003034int snd_hda_input_mux_put(struct hda_codec *codec,
3035 const struct hda_input_mux *imux,
3036 struct snd_ctl_elem_value *ucontrol,
3037 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 unsigned int *cur_val)
3039{
3040 unsigned int idx;
3041
Takashi Iwai5513b0c2007-10-09 11:58:41 +02003042 if (!imux->num_items)
3043 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 idx = ucontrol->value.enumerated.item[0];
3045 if (idx >= imux->num_items)
3046 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003047 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003049 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
3050 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 *cur_val = idx;
3052 return 1;
3053}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003054EXPORT_SYMBOL_HDA(snd_hda_input_mux_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055
3056
3057/*
3058 * Multi-channel / digital-out PCM helper functions
3059 */
3060
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003061/* setup SPDIF output stream */
3062static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
3063 unsigned int stream_tag, unsigned int format)
3064{
3065 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
Takashi Iwai2f728532008-09-25 16:32:41 +02003066 if (codec->spdif_status_reset && (codec->spdif_ctls & AC_DIG1_ENABLE))
3067 set_dig_out_convert(codec, nid,
3068 codec->spdif_ctls & ~AC_DIG1_ENABLE & 0xff,
3069 -1);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003070 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Takashi Iwai2f728532008-09-25 16:32:41 +02003071 if (codec->slave_dig_outs) {
3072 hda_nid_t *d;
3073 for (d = codec->slave_dig_outs; *d; d++)
3074 snd_hda_codec_setup_stream(codec, *d, stream_tag, 0,
3075 format);
Matthew Ranostayde51ca12008-09-07 14:31:40 -04003076 }
Takashi Iwai2f728532008-09-25 16:32:41 +02003077 /* turn on again (if needed) */
3078 if (codec->spdif_status_reset && (codec->spdif_ctls & AC_DIG1_ENABLE))
3079 set_dig_out_convert(codec, nid,
3080 codec->spdif_ctls & 0xff, -1);
3081}
Matthew Ranostayde51ca12008-09-07 14:31:40 -04003082
Takashi Iwai2f728532008-09-25 16:32:41 +02003083static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid)
3084{
3085 snd_hda_codec_cleanup_stream(codec, nid);
3086 if (codec->slave_dig_outs) {
3087 hda_nid_t *d;
3088 for (d = codec->slave_dig_outs; *d; d++)
3089 snd_hda_codec_cleanup_stream(codec, *d);
3090 }
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003091}
3092
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093/*
3094 * open the digital out in the exclusive mode
3095 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003096int snd_hda_multi_out_dig_open(struct hda_codec *codec,
3097 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098{
Ingo Molnar62932df2006-01-16 16:34:20 +01003099 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02003100 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
3101 /* already opened as analog dup; reset it once */
Takashi Iwai2f728532008-09-25 16:32:41 +02003102 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01003104 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 return 0;
3106}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003107EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003109int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
3110 struct hda_multi_out *mout,
3111 unsigned int stream_tag,
3112 unsigned int format,
3113 struct snd_pcm_substream *substream)
3114{
3115 mutex_lock(&codec->spdif_mutex);
3116 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
3117 mutex_unlock(&codec->spdif_mutex);
3118 return 0;
3119}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003120EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_prepare);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003121
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122/*
3123 * release the digital out
3124 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003125int snd_hda_multi_out_dig_close(struct hda_codec *codec,
3126 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127{
Ingo Molnar62932df2006-01-16 16:34:20 +01003128 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01003130 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 return 0;
3132}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003133EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134
3135/*
3136 * set up more restrictions for analog out
3137 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003138int snd_hda_multi_out_analog_open(struct hda_codec *codec,
3139 struct hda_multi_out *mout,
Takashi Iwai9a081602008-02-12 18:37:26 +01003140 struct snd_pcm_substream *substream,
3141 struct hda_pcm_stream *hinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142{
Takashi Iwai9a081602008-02-12 18:37:26 +01003143 struct snd_pcm_runtime *runtime = substream->runtime;
3144 runtime->hw.channels_max = mout->max_channels;
3145 if (mout->dig_out_nid) {
3146 if (!mout->analog_rates) {
3147 mout->analog_rates = hinfo->rates;
3148 mout->analog_formats = hinfo->formats;
3149 mout->analog_maxbps = hinfo->maxbps;
3150 } else {
3151 runtime->hw.rates = mout->analog_rates;
3152 runtime->hw.formats = mout->analog_formats;
3153 hinfo->maxbps = mout->analog_maxbps;
3154 }
3155 if (!mout->spdif_rates) {
3156 snd_hda_query_supported_pcm(codec, mout->dig_out_nid,
3157 &mout->spdif_rates,
3158 &mout->spdif_formats,
3159 &mout->spdif_maxbps);
3160 }
3161 mutex_lock(&codec->spdif_mutex);
3162 if (mout->share_spdif) {
3163 runtime->hw.rates &= mout->spdif_rates;
3164 runtime->hw.formats &= mout->spdif_formats;
3165 if (mout->spdif_maxbps < hinfo->maxbps)
3166 hinfo->maxbps = mout->spdif_maxbps;
3167 }
Frederik Deweerdteaa99852008-04-14 13:11:44 +02003168 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01003169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 return snd_pcm_hw_constraint_step(substream->runtime, 0,
3171 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
3172}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003173EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174
3175/*
3176 * set up the i/o for analog out
3177 * when the digital out is available, copy the front out to digital out, too.
3178 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003179int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
3180 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 unsigned int stream_tag,
3182 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003183 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184{
3185 hda_nid_t *nids = mout->dac_nids;
3186 int chs = substream->runtime->channels;
3187 int i;
3188
Ingo Molnar62932df2006-01-16 16:34:20 +01003189 mutex_lock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01003190 if (mout->dig_out_nid && mout->share_spdif &&
3191 mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 if (chs == 2 &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02003193 snd_hda_is_supported_format(codec, mout->dig_out_nid,
3194 format) &&
3195 !(codec->spdif_status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003197 setup_dig_out_stream(codec, mout->dig_out_nid,
3198 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 } else {
3200 mout->dig_out_used = 0;
Takashi Iwai2f728532008-09-25 16:32:41 +02003201 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202 }
3203 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003204 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
3206 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003207 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
3208 0, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02003209 if (!mout->no_share_stream &&
3210 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003212 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
3213 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003214 /* extra outputs copied from front */
3215 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
Takashi Iwaid29240c2007-10-26 12:35:56 +02003216 if (!mout->no_share_stream && mout->extra_out_nid[i])
Takashi Iwai82bc9552006-03-21 11:24:42 +01003217 snd_hda_codec_setup_stream(codec,
3218 mout->extra_out_nid[i],
3219 stream_tag, 0, format);
3220
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 /* surrounds */
3222 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02003223 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003224 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3225 i * 2, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02003226 else if (!mout->no_share_stream) /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003227 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3228 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 }
3230 return 0;
3231}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003232EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233
3234/*
3235 * clean up the setting for analog out
3236 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003237int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
3238 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239{
3240 hda_nid_t *nids = mout->dac_nids;
3241 int i;
3242
3243 for (i = 0; i < mout->num_dacs; i++)
Takashi Iwai888afa12008-03-18 09:57:50 +01003244 snd_hda_codec_cleanup_stream(codec, nids[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 if (mout->hp_nid)
Takashi Iwai888afa12008-03-18 09:57:50 +01003246 snd_hda_codec_cleanup_stream(codec, mout->hp_nid);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003247 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
3248 if (mout->extra_out_nid[i])
Takashi Iwai888afa12008-03-18 09:57:50 +01003249 snd_hda_codec_cleanup_stream(codec,
3250 mout->extra_out_nid[i]);
Ingo Molnar62932df2006-01-16 16:34:20 +01003251 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
Takashi Iwai2f728532008-09-25 16:32:41 +02003253 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 mout->dig_out_used = 0;
3255 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003256 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 return 0;
3258}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003259EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003261/*
Wu Fengguang6b345002008-10-07 14:21:41 +08003262 * Helper for automatic pin configuration
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003263 */
Kailang Yangdf694da2005-12-05 19:42:22 +01003264
Takashi Iwai12f288b2007-08-02 15:51:59 +02003265static int is_in_nid_list(hda_nid_t nid, hda_nid_t *list)
Kailang Yangdf694da2005-12-05 19:42:22 +01003266{
3267 for (; *list; list++)
3268 if (*list == nid)
3269 return 1;
3270 return 0;
3271}
3272
Steve Longerbeam81937d32007-05-08 15:33:03 +02003273
3274/*
3275 * Sort an associated group of pins according to their sequence numbers.
3276 */
3277static void sort_pins_by_sequence(hda_nid_t * pins, short * sequences,
3278 int num_pins)
3279{
3280 int i, j;
3281 short seq;
3282 hda_nid_t nid;
3283
3284 for (i = 0; i < num_pins; i++) {
3285 for (j = i + 1; j < num_pins; j++) {
3286 if (sequences[i] > sequences[j]) {
3287 seq = sequences[i];
3288 sequences[i] = sequences[j];
3289 sequences[j] = seq;
3290 nid = pins[i];
3291 pins[i] = pins[j];
3292 pins[j] = nid;
3293 }
3294 }
3295 }
3296}
3297
3298
Takashi Iwai82bc9552006-03-21 11:24:42 +01003299/*
3300 * Parse all pin widgets and store the useful pin nids to cfg
3301 *
3302 * The number of line-outs or any primary output is stored in line_outs,
3303 * and the corresponding output pins are assigned to line_out_pins[],
3304 * in the order of front, rear, CLFE, side, ...
3305 *
3306 * If more extra outputs (speaker and headphone) are found, the pins are
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003307 * assisnged to hp_pins[] and speaker_pins[], respectively. If no line-out jack
Takashi Iwai82bc9552006-03-21 11:24:42 +01003308 * is detected, one of speaker of HP pins is assigned as the primary
3309 * output, i.e. to line_out_pins[0]. So, line_outs is always positive
3310 * if any analog output exists.
3311 *
3312 * The analog input pins are assigned to input_pins array.
3313 * The digital input/output pins are assigned to dig_in_pin and dig_out_pin,
3314 * respectively.
3315 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02003316int snd_hda_parse_pin_def_config(struct hda_codec *codec,
3317 struct auto_pin_cfg *cfg,
3318 hda_nid_t *ignore_nids)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003319{
Takashi Iwai0ef6ce72008-01-22 15:35:37 +01003320 hda_nid_t nid, end_nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02003321 short seq, assoc_line_out, assoc_speaker;
3322 short sequences_line_out[ARRAY_SIZE(cfg->line_out_pins)];
3323 short sequences_speaker[ARRAY_SIZE(cfg->speaker_pins)];
Takashi Iwaif889fa92007-10-31 15:49:32 +01003324 short sequences_hp[ARRAY_SIZE(cfg->hp_pins)];
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003325
3326 memset(cfg, 0, sizeof(*cfg));
3327
Steve Longerbeam81937d32007-05-08 15:33:03 +02003328 memset(sequences_line_out, 0, sizeof(sequences_line_out));
3329 memset(sequences_speaker, 0, sizeof(sequences_speaker));
Takashi Iwaif889fa92007-10-31 15:49:32 +01003330 memset(sequences_hp, 0, sizeof(sequences_hp));
Steve Longerbeam81937d32007-05-08 15:33:03 +02003331 assoc_line_out = assoc_speaker = 0;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003332
Takashi Iwai0ef6ce72008-01-22 15:35:37 +01003333 end_nid = codec->start_nid + codec->num_nodes;
3334 for (nid = codec->start_nid; nid < end_nid; nid++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01003335 unsigned int wid_caps = get_wcaps(codec, nid);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003336 unsigned int wid_type =
3337 (wid_caps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003338 unsigned int def_conf;
3339 short assoc, loc;
3340
3341 /* read all default configuration for pin complex */
3342 if (wid_type != AC_WID_PIN)
3343 continue;
Kailang Yangdf694da2005-12-05 19:42:22 +01003344 /* ignore the given nids (e.g. pc-beep returns error) */
3345 if (ignore_nids && is_in_nid_list(nid, ignore_nids))
3346 continue;
3347
Takashi Iwai0ba21762007-04-16 11:29:14 +02003348 def_conf = snd_hda_codec_read(codec, nid, 0,
3349 AC_VERB_GET_CONFIG_DEFAULT, 0);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003350 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
3351 continue;
3352 loc = get_defcfg_location(def_conf);
3353 switch (get_defcfg_device(def_conf)) {
3354 case AC_JACK_LINE_OUT:
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003355 seq = get_defcfg_sequence(def_conf);
3356 assoc = get_defcfg_association(def_conf);
Matthew Ranostay90da78b2008-01-24 11:48:01 +01003357
3358 if (!(wid_caps & AC_WCAP_STEREO))
3359 if (!cfg->mono_out_pin)
3360 cfg->mono_out_pin = nid;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003361 if (!assoc)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003362 continue;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003363 if (!assoc_line_out)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003364 assoc_line_out = assoc;
3365 else if (assoc_line_out != assoc)
3366 continue;
3367 if (cfg->line_outs >= ARRAY_SIZE(cfg->line_out_pins))
3368 continue;
3369 cfg->line_out_pins[cfg->line_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02003370 sequences_line_out[cfg->line_outs] = seq;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003371 cfg->line_outs++;
3372 break;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003373 case AC_JACK_SPEAKER:
Steve Longerbeam81937d32007-05-08 15:33:03 +02003374 seq = get_defcfg_sequence(def_conf);
3375 assoc = get_defcfg_association(def_conf);
3376 if (! assoc)
3377 continue;
3378 if (! assoc_speaker)
3379 assoc_speaker = assoc;
3380 else if (assoc_speaker != assoc)
3381 continue;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003382 if (cfg->speaker_outs >= ARRAY_SIZE(cfg->speaker_pins))
3383 continue;
3384 cfg->speaker_pins[cfg->speaker_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02003385 sequences_speaker[cfg->speaker_outs] = seq;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003386 cfg->speaker_outs++;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003387 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003388 case AC_JACK_HP_OUT:
Takashi Iwaif889fa92007-10-31 15:49:32 +01003389 seq = get_defcfg_sequence(def_conf);
3390 assoc = get_defcfg_association(def_conf);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003391 if (cfg->hp_outs >= ARRAY_SIZE(cfg->hp_pins))
3392 continue;
3393 cfg->hp_pins[cfg->hp_outs] = nid;
Takashi Iwaif889fa92007-10-31 15:49:32 +01003394 sequences_hp[cfg->hp_outs] = (assoc << 4) | seq;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003395 cfg->hp_outs++;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003396 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02003397 case AC_JACK_MIC_IN: {
3398 int preferred, alt;
3399 if (loc == AC_JACK_LOC_FRONT) {
3400 preferred = AUTO_PIN_FRONT_MIC;
3401 alt = AUTO_PIN_MIC;
3402 } else {
3403 preferred = AUTO_PIN_MIC;
3404 alt = AUTO_PIN_FRONT_MIC;
3405 }
3406 if (!cfg->input_pins[preferred])
3407 cfg->input_pins[preferred] = nid;
3408 else if (!cfg->input_pins[alt])
3409 cfg->input_pins[alt] = nid;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003410 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02003411 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003412 case AC_JACK_LINE_IN:
3413 if (loc == AC_JACK_LOC_FRONT)
3414 cfg->input_pins[AUTO_PIN_FRONT_LINE] = nid;
3415 else
3416 cfg->input_pins[AUTO_PIN_LINE] = nid;
3417 break;
3418 case AC_JACK_CD:
3419 cfg->input_pins[AUTO_PIN_CD] = nid;
3420 break;
3421 case AC_JACK_AUX:
3422 cfg->input_pins[AUTO_PIN_AUX] = nid;
3423 break;
3424 case AC_JACK_SPDIF_OUT:
Takashi Iwai1b52ae72009-01-20 17:17:29 +01003425 case AC_JACK_DIG_OTHER_OUT:
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003426 cfg->dig_out_pin = nid;
Takashi Iwai2297bd62009-01-20 18:24:13 +01003427 if (loc == AC_JACK_LOC_HDMI)
3428 cfg->dig_out_type = HDA_PCM_TYPE_HDMI;
3429 else
3430 cfg->dig_out_type = HDA_PCM_TYPE_SPDIF;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003431 break;
3432 case AC_JACK_SPDIF_IN:
Takashi Iwai1b52ae72009-01-20 17:17:29 +01003433 case AC_JACK_DIG_OTHER_IN:
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003434 cfg->dig_in_pin = nid;
Takashi Iwai2297bd62009-01-20 18:24:13 +01003435 if (loc == AC_JACK_LOC_HDMI)
3436 cfg->dig_in_type = HDA_PCM_TYPE_HDMI;
3437 else
3438 cfg->dig_in_type = HDA_PCM_TYPE_SPDIF;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003439 break;
3440 }
3441 }
3442
Takashi Iwai5832fcf2008-02-12 18:30:12 +01003443 /* FIX-UP:
3444 * If no line-out is defined but multiple HPs are found,
3445 * some of them might be the real line-outs.
3446 */
3447 if (!cfg->line_outs && cfg->hp_outs > 1) {
3448 int i = 0;
3449 while (i < cfg->hp_outs) {
3450 /* The real HPs should have the sequence 0x0f */
3451 if ((sequences_hp[i] & 0x0f) == 0x0f) {
3452 i++;
3453 continue;
3454 }
3455 /* Move it to the line-out table */
3456 cfg->line_out_pins[cfg->line_outs] = cfg->hp_pins[i];
3457 sequences_line_out[cfg->line_outs] = sequences_hp[i];
3458 cfg->line_outs++;
3459 cfg->hp_outs--;
3460 memmove(cfg->hp_pins + i, cfg->hp_pins + i + 1,
3461 sizeof(cfg->hp_pins[0]) * (cfg->hp_outs - i));
3462 memmove(sequences_hp + i - 1, sequences_hp + i,
3463 sizeof(sequences_hp[0]) * (cfg->hp_outs - i));
3464 }
3465 }
3466
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003467 /* sort by sequence */
Steve Longerbeam81937d32007-05-08 15:33:03 +02003468 sort_pins_by_sequence(cfg->line_out_pins, sequences_line_out,
3469 cfg->line_outs);
3470 sort_pins_by_sequence(cfg->speaker_pins, sequences_speaker,
3471 cfg->speaker_outs);
Takashi Iwaif889fa92007-10-31 15:49:32 +01003472 sort_pins_by_sequence(cfg->hp_pins, sequences_hp,
3473 cfg->hp_outs);
Steve Longerbeam81937d32007-05-08 15:33:03 +02003474
Takashi Iwaif889fa92007-10-31 15:49:32 +01003475 /* if we have only one mic, make it AUTO_PIN_MIC */
3476 if (!cfg->input_pins[AUTO_PIN_MIC] &&
3477 cfg->input_pins[AUTO_PIN_FRONT_MIC]) {
3478 cfg->input_pins[AUTO_PIN_MIC] =
3479 cfg->input_pins[AUTO_PIN_FRONT_MIC];
3480 cfg->input_pins[AUTO_PIN_FRONT_MIC] = 0;
3481 }
3482 /* ditto for line-in */
3483 if (!cfg->input_pins[AUTO_PIN_LINE] &&
3484 cfg->input_pins[AUTO_PIN_FRONT_LINE]) {
3485 cfg->input_pins[AUTO_PIN_LINE] =
3486 cfg->input_pins[AUTO_PIN_FRONT_LINE];
3487 cfg->input_pins[AUTO_PIN_FRONT_LINE] = 0;
3488 }
3489
Steve Longerbeam81937d32007-05-08 15:33:03 +02003490 /*
3491 * FIX-UP: if no line-outs are detected, try to use speaker or HP pin
3492 * as a primary output
3493 */
3494 if (!cfg->line_outs) {
3495 if (cfg->speaker_outs) {
3496 cfg->line_outs = cfg->speaker_outs;
3497 memcpy(cfg->line_out_pins, cfg->speaker_pins,
3498 sizeof(cfg->speaker_pins));
3499 cfg->speaker_outs = 0;
3500 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
3501 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
3502 } else if (cfg->hp_outs) {
3503 cfg->line_outs = cfg->hp_outs;
3504 memcpy(cfg->line_out_pins, cfg->hp_pins,
3505 sizeof(cfg->hp_pins));
3506 cfg->hp_outs = 0;
3507 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
3508 cfg->line_out_type = AUTO_PIN_HP_OUT;
3509 }
3510 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003511
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003512 /* Reorder the surround channels
3513 * ALSA sequence is front/surr/clfe/side
3514 * HDA sequence is:
3515 * 4-ch: front/surr => OK as it is
3516 * 6-ch: front/clfe/surr
Takashi Iwai9422db42007-04-20 16:11:43 +02003517 * 8-ch: front/clfe/rear/side|fc
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003518 */
3519 switch (cfg->line_outs) {
3520 case 3:
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003521 case 4:
3522 nid = cfg->line_out_pins[1];
Takashi Iwai9422db42007-04-20 16:11:43 +02003523 cfg->line_out_pins[1] = cfg->line_out_pins[2];
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003524 cfg->line_out_pins[2] = nid;
3525 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003526 }
3527
Takashi Iwai82bc9552006-03-21 11:24:42 +01003528 /*
3529 * debug prints of the parsed results
3530 */
3531 snd_printd("autoconfig: line_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3532 cfg->line_outs, cfg->line_out_pins[0], cfg->line_out_pins[1],
3533 cfg->line_out_pins[2], cfg->line_out_pins[3],
3534 cfg->line_out_pins[4]);
3535 snd_printd(" speaker_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3536 cfg->speaker_outs, cfg->speaker_pins[0],
3537 cfg->speaker_pins[1], cfg->speaker_pins[2],
3538 cfg->speaker_pins[3], cfg->speaker_pins[4]);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003539 snd_printd(" hp_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3540 cfg->hp_outs, cfg->hp_pins[0],
3541 cfg->hp_pins[1], cfg->hp_pins[2],
3542 cfg->hp_pins[3], cfg->hp_pins[4]);
Matthew Ranostay90da78b2008-01-24 11:48:01 +01003543 snd_printd(" mono: mono_out=0x%x\n", cfg->mono_out_pin);
Takashi Iwai89ce9e82009-01-20 17:15:57 +01003544 if (cfg->dig_out_pin)
3545 snd_printd(" dig-out=0x%x\n", cfg->dig_out_pin);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003546 snd_printd(" inputs: mic=0x%x, fmic=0x%x, line=0x%x, fline=0x%x,"
3547 " cd=0x%x, aux=0x%x\n",
3548 cfg->input_pins[AUTO_PIN_MIC],
3549 cfg->input_pins[AUTO_PIN_FRONT_MIC],
3550 cfg->input_pins[AUTO_PIN_LINE],
3551 cfg->input_pins[AUTO_PIN_FRONT_LINE],
3552 cfg->input_pins[AUTO_PIN_CD],
3553 cfg->input_pins[AUTO_PIN_AUX]);
Takashi Iwai89ce9e82009-01-20 17:15:57 +01003554 if (cfg->dig_out_pin)
3555 snd_printd(" dig-in=0x%x\n", cfg->dig_in_pin);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003556
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003557 return 0;
3558}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003559EXPORT_SYMBOL_HDA(snd_hda_parse_pin_def_config);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003560
Takashi Iwai4a471b72005-12-07 13:56:29 +01003561/* labels for input pins */
3562const char *auto_pin_cfg_labels[AUTO_PIN_LAST] = {
3563 "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux"
3564};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003565EXPORT_SYMBOL_HDA(auto_pin_cfg_labels);
Takashi Iwai4a471b72005-12-07 13:56:29 +01003566
3567
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568#ifdef CONFIG_PM
3569/*
3570 * power management
3571 */
3572
3573/**
3574 * snd_hda_suspend - suspend the codecs
3575 * @bus: the HDA bus
3576 * @state: suspsend state
3577 *
3578 * Returns 0 if successful.
3579 */
3580int snd_hda_suspend(struct hda_bus *bus, pm_message_t state)
3581{
Takashi Iwai0ba21762007-04-16 11:29:14 +02003582 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583
Takashi Iwai0ba21762007-04-16 11:29:14 +02003584 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai0b7a2e92007-08-14 15:18:26 +02003585#ifdef CONFIG_SND_HDA_POWER_SAVE
3586 if (!codec->power_on)
3587 continue;
3588#endif
Takashi Iwaicb53c622007-08-10 17:21:45 +02003589 hda_call_codec_suspend(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 }
3591 return 0;
3592}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003593EXPORT_SYMBOL_HDA(snd_hda_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594
3595/**
3596 * snd_hda_resume - resume the codecs
3597 * @bus: the HDA bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 *
3599 * Returns 0 if successful.
Takashi Iwaicb53c622007-08-10 17:21:45 +02003600 *
3601 * This fucntion is defined only when POWER_SAVE isn't set.
3602 * In the power-save mode, the codec is resumed dynamically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 */
3604int snd_hda_resume(struct hda_bus *bus)
3605{
Takashi Iwai0ba21762007-04-16 11:29:14 +02003606 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607
Takashi Iwai0ba21762007-04-16 11:29:14 +02003608 list_for_each_entry(codec, &bus->codec_list, list) {
Maxim Levitskyd804ad92007-09-03 15:28:04 +02003609 if (snd_hda_codec_needs_resume(codec))
3610 hda_call_codec_resume(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 return 0;
3613}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003614EXPORT_SYMBOL_HDA(snd_hda_resume);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003615#endif /* CONFIG_PM */
Takashi Iwaib2e18592008-07-30 15:01:44 +02003616
3617/*
3618 * generic arrays
3619 */
3620
3621/* get a new element from the given array
3622 * if it exceeds the pre-allocated array size, re-allocate the array
3623 */
3624void *snd_array_new(struct snd_array *array)
3625{
3626 if (array->used >= array->alloced) {
3627 int num = array->alloced + array->alloc_align;
Takashi Iwaib910d9a2008-11-07 00:26:52 +01003628 void *nlist;
3629 if (snd_BUG_ON(num >= 4096))
3630 return NULL;
3631 nlist = kcalloc(num + 1, array->elem_size, GFP_KERNEL);
Takashi Iwaib2e18592008-07-30 15:01:44 +02003632 if (!nlist)
3633 return NULL;
3634 if (array->list) {
3635 memcpy(nlist, array->list,
3636 array->elem_size * array->alloced);
3637 kfree(array->list);
3638 }
3639 array->list = nlist;
3640 array->alloced = num;
3641 }
Takashi Iwaif43aa022008-11-10 16:24:26 +01003642 return snd_array_elem(array, array->used++);
Takashi Iwaib2e18592008-07-30 15:01:44 +02003643}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003644EXPORT_SYMBOL_HDA(snd_array_new);
Takashi Iwaib2e18592008-07-30 15:01:44 +02003645
3646/* free the given array elements */
3647void snd_array_free(struct snd_array *array)
3648{
3649 kfree(array->list);
3650 array->used = 0;
3651 array->alloced = 0;
3652 array->list = NULL;
3653}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003654EXPORT_SYMBOL_HDA(snd_array_free);
Takashi Iwaib2022262008-11-21 21:24:03 +01003655
3656/*
3657 * used by hda_proc.c and hda_eld.c
3658 */
3659void snd_print_pcm_rates(int pcm, char *buf, int buflen)
3660{
3661 static unsigned int rates[] = {
3662 8000, 11025, 16000, 22050, 32000, 44100, 48000, 88200,
3663 96000, 176400, 192000, 384000
3664 };
3665 int i, j;
3666
3667 for (i = 0, j = 0; i < ARRAY_SIZE(rates); i++)
3668 if (pcm & (1 << i))
3669 j += snprintf(buf + j, buflen - j, " %d", rates[i]);
3670
3671 buf[j] = '\0'; /* necessary when j == 0 */
3672}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003673EXPORT_SYMBOL_HDA(snd_print_pcm_rates);
Takashi Iwaib2022262008-11-21 21:24:03 +01003674
3675void snd_print_pcm_bits(int pcm, char *buf, int buflen)
3676{
3677 static unsigned int bits[] = { 8, 16, 20, 24, 32 };
3678 int i, j;
3679
3680 for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++)
3681 if (pcm & (AC_SUPPCM_BITS_8 << i))
3682 j += snprintf(buf + j, buflen - j, " %d", bits[i]);
3683
3684 buf[j] = '\0'; /* necessary when j == 0 */
3685}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003686EXPORT_SYMBOL_HDA(snd_print_pcm_bits);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003687
3688MODULE_DESCRIPTION("HDA codec core");
3689MODULE_LICENSE("GPL");