blob: 6fa871f66a72bf5afdd13cbc8de10ad413abcd5e [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
Takashi Iwai3be14142009-02-20 14:11:16 +0100685/* read all pin default configurations and save codec->init_pins */
686static int read_pin_defaults(struct hda_codec *codec)
687{
688 int i;
689 hda_nid_t nid = codec->start_nid;
690
691 for (i = 0; i < codec->num_nodes; i++, nid++) {
692 struct hda_pincfg *pin;
693 unsigned int wcaps = get_wcaps(codec, nid);
694 unsigned int wid_type = (wcaps & AC_WCAP_TYPE) >>
695 AC_WCAP_TYPE_SHIFT;
696 if (wid_type != AC_WID_PIN)
697 continue;
698 pin = snd_array_new(&codec->init_pins);
699 if (!pin)
700 return -ENOMEM;
701 pin->nid = nid;
702 pin->cfg = snd_hda_codec_read(codec, nid, 0,
703 AC_VERB_GET_CONFIG_DEFAULT, 0);
704 }
705 return 0;
706}
707
708/* look up the given pin config list and return the item matching with NID */
709static struct hda_pincfg *look_up_pincfg(struct hda_codec *codec,
710 struct snd_array *array,
711 hda_nid_t nid)
712{
713 int i;
714 for (i = 0; i < array->used; i++) {
715 struct hda_pincfg *pin = snd_array_elem(array, i);
716 if (pin->nid == nid)
717 return pin;
718 }
719 return NULL;
720}
721
722/* write a config value for the given NID */
723static void set_pincfg(struct hda_codec *codec, hda_nid_t nid,
724 unsigned int cfg)
725{
726 int i;
727 for (i = 0; i < 4; i++) {
728 snd_hda_codec_write(codec, nid, 0,
729 AC_VERB_SET_CONFIG_DEFAULT_BYTES_0 + i,
730 cfg & 0xff);
731 cfg >>= 8;
732 }
733}
734
735/* set the current pin config value for the given NID.
736 * the value is cached, and read via snd_hda_codec_get_pincfg()
737 */
738int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list,
739 hda_nid_t nid, unsigned int cfg)
740{
741 struct hda_pincfg *pin;
742
743 pin = look_up_pincfg(codec, list, nid);
744 if (!pin) {
745 pin = snd_array_new(list);
746 if (!pin)
747 return -ENOMEM;
748 pin->nid = nid;
749 }
750 pin->cfg = cfg;
751 set_pincfg(codec, nid, cfg);
752 return 0;
753}
754
755int snd_hda_codec_set_pincfg(struct hda_codec *codec,
756 hda_nid_t nid, unsigned int cfg)
757{
758 return snd_hda_add_pincfg(codec, &codec->cur_pins, nid, cfg);
759}
760EXPORT_SYMBOL_HDA(snd_hda_codec_set_pincfg);
761
762/* get the current pin config value of the given pin NID */
763unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid)
764{
765 struct hda_pincfg *pin;
766
767 pin = look_up_pincfg(codec, &codec->cur_pins, nid);
768 if (pin)
769 return pin->cfg;
770#ifdef CONFIG_SND_HDA_HWDEP
771 pin = look_up_pincfg(codec, &codec->override_pins, nid);
772 if (pin)
773 return pin->cfg;
774#endif
775 pin = look_up_pincfg(codec, &codec->init_pins, nid);
776 if (pin)
777 return pin->cfg;
778 return 0;
779}
780EXPORT_SYMBOL_HDA(snd_hda_codec_get_pincfg);
781
782/* restore all current pin configs */
783static void restore_pincfgs(struct hda_codec *codec)
784{
785 int i;
786 for (i = 0; i < codec->init_pins.used; i++) {
787 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
788 set_pincfg(codec, pin->nid,
789 snd_hda_codec_get_pincfg(codec, pin->nid));
790 }
791}
Takashi Iwai54d17402005-11-21 16:33:22 +0100792
Takashi Iwai01751f52007-08-10 16:59:39 +0200793static void init_hda_cache(struct hda_cache_rec *cache,
794 unsigned int record_size);
Takashi Iwai1fcaee62007-08-23 00:01:09 +0200795static void free_hda_cache(struct hda_cache_rec *cache);
Takashi Iwai01751f52007-08-10 16:59:39 +0200796
Takashi Iwai3be14142009-02-20 14:11:16 +0100797/* restore the initial pin cfgs and release all pincfg lists */
798static void restore_init_pincfgs(struct hda_codec *codec)
799{
800 /* first free cur_pins and override_pins, then call restore_pincfg
801 * so that only the values in init_pins are restored
802 */
803 snd_array_free(&codec->cur_pins);
804#ifdef CONFIG_SND_HDA_HWDEP
805 snd_array_free(&codec->override_pins);
806#endif
807 restore_pincfgs(codec);
808 snd_array_free(&codec->init_pins);
809}
810
Takashi Iwai54d17402005-11-21 16:33:22 +0100811/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 * codec destructor
813 */
814static void snd_hda_codec_free(struct hda_codec *codec)
815{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200816 if (!codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 return;
Takashi Iwai3be14142009-02-20 14:11:16 +0100818 restore_init_pincfgs(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200819#ifdef CONFIG_SND_HDA_POWER_SAVE
820 cancel_delayed_work(&codec->power_work);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100821 flush_workqueue(codec->bus->workq);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200822#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 list_del(&codec->list);
Takashi Iwaid13bd412008-07-30 15:01:45 +0200824 snd_array_free(&codec->mixers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 codec->bus->caddr_tbl[codec->addr] = NULL;
826 if (codec->patch_ops.free)
827 codec->patch_ops.free(codec);
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100828 module_put(codec->owner);
Takashi Iwai01751f52007-08-10 16:59:39 +0200829 free_hda_cache(&codec->amp_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200830 free_hda_cache(&codec->cmd_cache);
Takashi Iwaif44ac832008-07-30 15:01:45 +0200831 kfree(codec->name);
832 kfree(codec->modelname);
Takashi Iwai54d17402005-11-21 16:33:22 +0100833 kfree(codec->wcaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 kfree(codec);
835}
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837/**
838 * snd_hda_codec_new - create a HDA codec
839 * @bus: the bus to assign
840 * @codec_addr: the codec address
841 * @codecp: the pointer to store the generated codec
842 *
843 * Returns 0 if successful, or a negative error code.
844 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100845int /*__devinit*/ snd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr,
Takashi Iwaid4d9cd032008-12-19 15:19:11 +0100846 int do_init, struct hda_codec **codecp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
848 struct hda_codec *codec;
Jaroslav Kyselaba443682008-08-13 20:55:32 +0200849 char component[31];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 int err;
851
Takashi Iwaida3cec32008-08-08 17:12:14 +0200852 if (snd_BUG_ON(!bus))
853 return -EINVAL;
854 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
855 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857 if (bus->caddr_tbl[codec_addr]) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200858 snd_printk(KERN_ERR "hda_codec: "
859 "address 0x%x is already occupied\n", codec_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 return -EBUSY;
861 }
862
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200863 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 if (codec == NULL) {
865 snd_printk(KERN_ERR "can't allocate struct hda_codec\n");
866 return -ENOMEM;
867 }
868
869 codec->bus = bus;
870 codec->addr = codec_addr;
Ingo Molnar62932df2006-01-16 16:34:20 +0100871 mutex_init(&codec->spdif_mutex);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +0800872 mutex_init(&codec->control_mutex);
Takashi Iwai01751f52007-08-10 16:59:39 +0200873 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200874 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Takashi Iwaid13bd412008-07-30 15:01:45 +0200875 snd_array_init(&codec->mixers, sizeof(struct snd_kcontrol *), 32);
Takashi Iwai3be14142009-02-20 14:11:16 +0100876 snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16);
877 snd_array_init(&codec->cur_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200878 if (codec->bus->modelname) {
879 codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL);
880 if (!codec->modelname) {
881 snd_hda_codec_free(codec);
882 return -ENODEV;
883 }
884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Takashi Iwaicb53c622007-08-10 17:21:45 +0200886#ifdef CONFIG_SND_HDA_POWER_SAVE
887 INIT_DELAYED_WORK(&codec->power_work, hda_power_work);
888 /* snd_hda_codec_new() marks the codec as power-up, and leave it as is.
889 * the caller has to power down appropriatley after initialization
890 * phase.
891 */
892 hda_keep_power_on(codec);
893#endif
894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 list_add_tail(&codec->list, &bus->codec_list);
896 bus->caddr_tbl[codec_addr] = codec;
897
Takashi Iwai0ba21762007-04-16 11:29:14 +0200898 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
899 AC_PAR_VENDOR_ID);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100900 if (codec->vendor_id == -1)
901 /* read again, hopefully the access method was corrected
902 * in the last read...
903 */
904 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
905 AC_PAR_VENDOR_ID);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200906 codec->subsystem_id = snd_hda_param_read(codec, AC_NODE_ROOT,
907 AC_PAR_SUBSYSTEM_ID);
908 codec->revision_id = snd_hda_param_read(codec, AC_NODE_ROOT,
909 AC_PAR_REV_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200911 setup_fg_nodes(codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200912 if (!codec->afg && !codec->mfg) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200913 snd_printdd("hda_codec: no AFG or MFG node found\n");
Takashi Iwai3be14142009-02-20 14:11:16 +0100914 err = -ENODEV;
915 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 }
917
Takashi Iwai3be14142009-02-20 14:11:16 +0100918 err = read_widget_caps(codec, codec->afg ? codec->afg : codec->mfg);
919 if (err < 0) {
Takashi Iwai54d17402005-11-21 16:33:22 +0100920 snd_printk(KERN_ERR "hda_codec: cannot malloc\n");
Takashi Iwai3be14142009-02-20 14:11:16 +0100921 goto error;
Takashi Iwai54d17402005-11-21 16:33:22 +0100922 }
Takashi Iwai3be14142009-02-20 14:11:16 +0100923 err = read_pin_defaults(codec);
924 if (err < 0)
925 goto error;
Takashi Iwai54d17402005-11-21 16:33:22 +0100926
Takashi Iwai0ba21762007-04-16 11:29:14 +0200927 if (!codec->subsystem_id) {
Takashi Iwai86284e42005-10-11 15:05:54 +0200928 hda_nid_t nid = codec->afg ? codec->afg : codec->mfg;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200929 codec->subsystem_id =
930 snd_hda_codec_read(codec, nid, 0,
931 AC_VERB_GET_SUBSYSTEM_ID, 0);
Takashi Iwai86284e42005-10-11 15:05:54 +0200932 }
Takashi Iwaif44ac832008-07-30 15:01:45 +0200933 if (bus->modelname)
934 codec->modelname = kstrdup(bus->modelname, GFP_KERNEL);
Takashi Iwai86284e42005-10-11 15:05:54 +0200935
Takashi Iwaid4d9cd032008-12-19 15:19:11 +0100936 if (do_init) {
937 err = snd_hda_codec_configure(codec);
Takashi Iwai3be14142009-02-20 14:11:16 +0100938 if (err < 0)
939 goto error;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200940 }
941 snd_hda_codec_proc_new(codec);
942
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200943 snd_hda_create_hwdep(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200944
945 sprintf(component, "HDA:%08x,%08x,%08x", codec->vendor_id,
946 codec->subsystem_id, codec->revision_id);
947 snd_component_add(codec->bus->card, component);
948
949 if (codecp)
950 *codecp = codec;
951 return 0;
Takashi Iwai3be14142009-02-20 14:11:16 +0100952
953 error:
954 snd_hda_codec_free(codec);
955 return err;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200956}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100957EXPORT_SYMBOL_HDA(snd_hda_codec_new);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200958
959int snd_hda_codec_configure(struct hda_codec *codec)
960{
961 int err;
962
Takashi Iwaid5ad6302007-03-07 15:55:59 +0100963 codec->preset = find_codec_preset(codec);
Takashi Iwaif44ac832008-07-30 15:01:45 +0200964 if (!codec->name) {
965 err = get_codec_name(codec);
966 if (err < 0)
967 return err;
968 }
Takashi Iwai43ea1d42007-04-26 19:12:08 +0200969 /* audio codec should override the mixer name */
Takashi Iwaif44ac832008-07-30 15:01:45 +0200970 if (codec->afg || !*codec->bus->card->mixername)
971 strlcpy(codec->bus->card->mixername, codec->name,
972 sizeof(codec->bus->card->mixername));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Takashi Iwai82467612007-07-27 19:15:54 +0200974 if (is_generic_config(codec)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 err = snd_hda_parse_generic_codec(codec);
Takashi Iwai82467612007-07-27 19:15:54 +0200976 goto patched;
977 }
Takashi Iwai82467612007-07-27 19:15:54 +0200978 if (codec->preset && codec->preset->patch) {
979 err = codec->preset->patch(codec);
980 goto patched;
981 }
982
983 /* call the default parser */
Takashi Iwai82467612007-07-27 19:15:54 +0200984 err = snd_hda_parse_generic_codec(codec);
Takashi Iwai35a1e0c2007-10-19 08:13:40 +0200985 if (err < 0)
986 printk(KERN_ERR "hda-codec: No codec parser is available\n");
Takashi Iwai82467612007-07-27 19:15:54 +0200987
988 patched:
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200989 if (!err && codec->patch_ops.unsol_event)
990 err = init_unsol_queue(codec->bus);
991 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
993
994/**
995 * snd_hda_codec_setup_stream - set up the codec for streaming
996 * @codec: the CODEC to set up
997 * @nid: the NID to set up
998 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
999 * @channel_id: channel id to pass, zero based.
1000 * @format: stream format.
1001 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001002void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
1003 u32 stream_tag,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 int channel_id, int format)
1005{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001006 if (!nid)
Takashi Iwaid21b37e2005-04-20 13:45:55 +02001007 return;
1008
Takashi Iwai0ba21762007-04-16 11:29:14 +02001009 snd_printdd("hda_codec_setup_stream: "
1010 "NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 nid, stream_tag, channel_id, format);
1012 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID,
1013 (stream_tag << 4) | channel_id);
1014 msleep(1);
1015 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, format);
1016}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001017EXPORT_SYMBOL_HDA(snd_hda_codec_setup_stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Takashi Iwai888afa12008-03-18 09:57:50 +01001019void snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid)
1020{
1021 if (!nid)
1022 return;
1023
1024 snd_printdd("hda_codec_cleanup_stream: NID=0x%x\n", nid);
1025 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
1026#if 0 /* keep the format */
1027 msleep(1);
1028 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0);
1029#endif
1030}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001031EXPORT_SYMBOL_HDA(snd_hda_codec_cleanup_stream);
Takashi Iwai888afa12008-03-18 09:57:50 +01001032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033/*
1034 * amp access functions
1035 */
1036
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001037/* FIXME: more better hash key? */
1038#define HDA_HASH_KEY(nid,dir,idx) (u32)((nid) + ((idx) << 16) + ((dir) << 24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039#define INFO_AMP_CAPS (1<<0)
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001040#define INFO_AMP_VOL(ch) (1 << (1 + (ch)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
1042/* initialize the hash table */
Takashi Iwai1289e9e2008-11-27 15:47:11 +01001043static void /*__devinit*/ init_hda_cache(struct hda_cache_rec *cache,
Takashi Iwai01751f52007-08-10 16:59:39 +02001044 unsigned int record_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Takashi Iwai01751f52007-08-10 16:59:39 +02001046 memset(cache, 0, sizeof(*cache));
1047 memset(cache->hash, 0xff, sizeof(cache->hash));
Takashi Iwai603c4012008-07-30 15:01:44 +02001048 snd_array_init(&cache->buf, record_size, 64);
Takashi Iwai01751f52007-08-10 16:59:39 +02001049}
1050
Takashi Iwai1fcaee62007-08-23 00:01:09 +02001051static void free_hda_cache(struct hda_cache_rec *cache)
Takashi Iwai01751f52007-08-10 16:59:39 +02001052{
Takashi Iwai603c4012008-07-30 15:01:44 +02001053 snd_array_free(&cache->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055
1056/* query the hash. allocate an entry if not found. */
Takashi Iwai01751f52007-08-10 16:59:39 +02001057static struct hda_cache_head *get_alloc_hash(struct hda_cache_rec *cache,
1058 u32 key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Takashi Iwai01751f52007-08-10 16:59:39 +02001060 u16 idx = key % (u16)ARRAY_SIZE(cache->hash);
1061 u16 cur = cache->hash[idx];
1062 struct hda_cache_head *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 while (cur != 0xffff) {
Takashi Iwaif43aa022008-11-10 16:24:26 +01001065 info = snd_array_elem(&cache->buf, cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (info->key == key)
1067 return info;
1068 cur = info->next;
1069 }
1070
1071 /* add a new hash entry */
Takashi Iwai603c4012008-07-30 15:01:44 +02001072 info = snd_array_new(&cache->buf);
Takashi Iwaic2174292008-11-07 00:23:30 +01001073 if (!info)
1074 return NULL;
Takashi Iwaif43aa022008-11-10 16:24:26 +01001075 cur = snd_array_index(&cache->buf, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 info->key = key;
Takashi Iwai01751f52007-08-10 16:59:39 +02001077 info->val = 0;
1078 info->next = cache->hash[idx];
1079 cache->hash[idx] = cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 return info;
1082}
1083
Takashi Iwai01751f52007-08-10 16:59:39 +02001084/* query and allocate an amp hash entry */
1085static inline struct hda_amp_info *
1086get_alloc_amp_hash(struct hda_codec *codec, u32 key)
1087{
1088 return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key);
1089}
1090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091/*
1092 * query AMP capabilities for the given widget and direction
1093 */
Matthew Ranostay09a99952008-01-24 11:49:21 +01001094u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001096 struct hda_amp_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Takashi Iwai0ba21762007-04-16 11:29:14 +02001098 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, 0));
1099 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 return 0;
Takashi Iwai01751f52007-08-10 16:59:39 +02001101 if (!(info->head.val & INFO_AMP_CAPS)) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001102 if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 nid = codec->afg;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001104 info->amp_caps = snd_hda_param_read(codec, nid,
1105 direction == HDA_OUTPUT ?
1106 AC_PAR_AMP_OUT_CAP :
1107 AC_PAR_AMP_IN_CAP);
Takashi Iwaib75e53f2007-05-10 16:56:09 +02001108 if (info->amp_caps)
Takashi Iwai01751f52007-08-10 16:59:39 +02001109 info->head.val |= INFO_AMP_CAPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 }
1111 return info->amp_caps;
1112}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001113EXPORT_SYMBOL_HDA(query_amp_caps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Takashi Iwai897cc182007-05-29 19:01:37 +02001115int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
1116 unsigned int caps)
1117{
1118 struct hda_amp_info *info;
1119
1120 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, dir, 0));
1121 if (!info)
1122 return -EINVAL;
1123 info->amp_caps = caps;
Takashi Iwai01751f52007-08-10 16:59:39 +02001124 info->head.val |= INFO_AMP_CAPS;
Takashi Iwai897cc182007-05-29 19:01:37 +02001125 return 0;
1126}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001127EXPORT_SYMBOL_HDA(snd_hda_override_amp_caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129/*
1130 * read the current volume to info
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001131 * if the cache exists, read the cache value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001133static unsigned int get_vol_mute(struct hda_codec *codec,
1134 struct hda_amp_info *info, hda_nid_t nid,
1135 int ch, int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
1137 u32 val, parm;
1138
Takashi Iwai01751f52007-08-10 16:59:39 +02001139 if (info->head.val & INFO_AMP_VOL(ch))
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001140 return info->vol[ch];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
1142 parm = ch ? AC_AMP_GET_RIGHT : AC_AMP_GET_LEFT;
1143 parm |= direction == HDA_OUTPUT ? AC_AMP_GET_OUTPUT : AC_AMP_GET_INPUT;
1144 parm |= index;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001145 val = snd_hda_codec_read(codec, nid, 0,
1146 AC_VERB_GET_AMP_GAIN_MUTE, parm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 info->vol[ch] = val & 0xff;
Takashi Iwai01751f52007-08-10 16:59:39 +02001148 info->head.val |= INFO_AMP_VOL(ch);
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001149 return info->vol[ch];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150}
1151
1152/*
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001153 * write the current volume in info to the h/w and update the cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 */
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001155static void put_vol_mute(struct hda_codec *codec, struct hda_amp_info *info,
Takashi Iwai0ba21762007-04-16 11:29:14 +02001156 hda_nid_t nid, int ch, int direction, int index,
1157 int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158{
1159 u32 parm;
1160
1161 parm = ch ? AC_AMP_SET_RIGHT : AC_AMP_SET_LEFT;
1162 parm |= direction == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT;
1163 parm |= index << AC_AMP_SET_INDEX_SHIFT;
1164 parm |= val;
1165 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, parm);
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001166 info->vol[ch] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167}
1168
1169/*
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001170 * read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 */
Takashi Iwai834be882006-03-01 14:16:17 +01001172int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch,
1173 int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001175 struct hda_amp_info *info;
1176 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, index));
1177 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001179 return get_vol_mute(codec, info, nid, ch, direction, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001181EXPORT_SYMBOL_HDA(snd_hda_codec_amp_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001183/*
1184 * update the AMP value, mask = bit mask to set, val = the value
1185 */
Takashi Iwai834be882006-03-01 14:16:17 +01001186int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch,
1187 int direction, int idx, int mask, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001189 struct hda_amp_info *info;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001190
Takashi Iwai0ba21762007-04-16 11:29:14 +02001191 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, idx));
1192 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001194 val &= mask;
1195 val |= get_vol_mute(codec, info, nid, ch, direction, idx) & ~mask;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001196 if (info->vol[ch] == val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001198 put_vol_mute(codec, info, nid, ch, direction, idx, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 return 1;
1200}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001201EXPORT_SYMBOL_HDA(snd_hda_codec_amp_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Takashi Iwai47fd8302007-08-10 17:11:07 +02001203/*
1204 * update the AMP stereo with the same mask and value
1205 */
1206int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
1207 int direction, int idx, int mask, int val)
1208{
1209 int ch, ret = 0;
1210 for (ch = 0; ch < 2; ch++)
1211 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
1212 idx, mask, val);
1213 return ret;
1214}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001215EXPORT_SYMBOL_HDA(snd_hda_codec_amp_stereo);
Takashi Iwai47fd8302007-08-10 17:11:07 +02001216
Takashi Iwaicb53c622007-08-10 17:21:45 +02001217#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001218/* resume the all amp commands from the cache */
1219void snd_hda_codec_resume_amp(struct hda_codec *codec)
1220{
Takashi Iwai603c4012008-07-30 15:01:44 +02001221 struct hda_amp_info *buffer = codec->amp_cache.buf.list;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001222 int i;
1223
Takashi Iwai603c4012008-07-30 15:01:44 +02001224 for (i = 0; i < codec->amp_cache.buf.used; i++, buffer++) {
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001225 u32 key = buffer->head.key;
1226 hda_nid_t nid;
1227 unsigned int idx, dir, ch;
1228 if (!key)
1229 continue;
1230 nid = key & 0xff;
1231 idx = (key >> 16) & 0xff;
1232 dir = (key >> 24) & 0xff;
1233 for (ch = 0; ch < 2; ch++) {
1234 if (!(buffer->head.val & INFO_AMP_VOL(ch)))
1235 continue;
1236 put_vol_mute(codec, buffer, nid, ch, dir, idx,
1237 buffer->vol[ch]);
1238 }
1239 }
1240}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001241EXPORT_SYMBOL_HDA(snd_hda_codec_resume_amp);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001242#endif /* SND_HDA_NEEDS_RESUME */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244/* volume */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001245int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
1246 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
1248 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1249 u16 nid = get_amp_nid(kcontrol);
1250 u8 chs = get_amp_channels(kcontrol);
1251 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001252 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 u32 caps;
1254
1255 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001256 /* num steps */
1257 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1258 if (!caps) {
1259 printk(KERN_WARNING "hda_codec: "
Takashi Iwai9c8f2ab2008-01-11 16:12:23 +01001260 "num_steps = 0 for NID=0x%x (ctl = %s)\n", nid,
1261 kcontrol->id.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 return -EINVAL;
1263 }
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001264 if (ofs < caps)
1265 caps -= ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1267 uinfo->count = chs == 3 ? 2 : 1;
1268 uinfo->value.integer.min = 0;
1269 uinfo->value.integer.max = caps;
1270 return 0;
1271}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001272EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001274
1275static inline unsigned int
1276read_amp_value(struct hda_codec *codec, hda_nid_t nid,
1277 int ch, int dir, int idx, unsigned int ofs)
1278{
1279 unsigned int val;
1280 val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx);
1281 val &= HDA_AMP_VOLMASK;
1282 if (val >= ofs)
1283 val -= ofs;
1284 else
1285 val = 0;
1286 return val;
1287}
1288
1289static inline int
1290update_amp_value(struct hda_codec *codec, hda_nid_t nid,
1291 int ch, int dir, int idx, unsigned int ofs,
1292 unsigned int val)
1293{
1294 if (val > 0)
1295 val += ofs;
1296 return snd_hda_codec_amp_update(codec, nid, ch, dir, idx,
1297 HDA_AMP_VOLMASK, val);
1298}
1299
Takashi Iwai0ba21762007-04-16 11:29:14 +02001300int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
1301 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
1303 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1304 hda_nid_t nid = get_amp_nid(kcontrol);
1305 int chs = get_amp_channels(kcontrol);
1306 int dir = get_amp_direction(kcontrol);
1307 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001308 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 long *valp = ucontrol->value.integer.value;
1310
1311 if (chs & 1)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001312 *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001314 *valp = read_amp_value(codec, nid, 1, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 return 0;
1316}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001317EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Takashi Iwai0ba21762007-04-16 11:29:14 +02001319int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
1320 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
1322 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1323 hda_nid_t nid = get_amp_nid(kcontrol);
1324 int chs = get_amp_channels(kcontrol);
1325 int dir = get_amp_direction(kcontrol);
1326 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001327 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 long *valp = ucontrol->value.integer.value;
1329 int change = 0;
1330
Takashi Iwaicb53c622007-08-10 17:21:45 +02001331 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001332 if (chs & 1) {
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001333 change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001334 valp++;
1335 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001336 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001337 change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001338 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 return change;
1340}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001341EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001343int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1344 unsigned int size, unsigned int __user *_tlv)
1345{
1346 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1347 hda_nid_t nid = get_amp_nid(kcontrol);
1348 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001349 unsigned int ofs = get_amp_offset(kcontrol);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001350 u32 caps, val1, val2;
1351
1352 if (size < 4 * sizeof(unsigned int))
1353 return -ENOMEM;
1354 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001355 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1356 val2 = (val2 + 1) * 25;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001357 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001358 val1 += ofs;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001359 val1 = ((int)val1) * ((int)val2);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001360 if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv))
1361 return -EFAULT;
1362 if (put_user(2 * sizeof(unsigned int), _tlv + 1))
1363 return -EFAULT;
1364 if (put_user(val1, _tlv + 2))
1365 return -EFAULT;
1366 if (put_user(val2, _tlv + 3))
1367 return -EFAULT;
1368 return 0;
1369}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001370EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_tlv);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001371
Takashi Iwai2134ea42008-01-10 16:53:55 +01001372/*
1373 * set (static) TLV for virtual master volume; recalculated as max 0dB
1374 */
1375void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
1376 unsigned int *tlv)
1377{
1378 u32 caps;
1379 int nums, step;
1380
1381 caps = query_amp_caps(codec, nid, dir);
1382 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1383 step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1384 step = (step + 1) * 25;
1385 tlv[0] = SNDRV_CTL_TLVT_DB_SCALE;
1386 tlv[1] = 2 * sizeof(unsigned int);
1387 tlv[2] = -nums * step;
1388 tlv[3] = step;
1389}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001390EXPORT_SYMBOL_HDA(snd_hda_set_vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001391
1392/* find a mixer control element with the given name */
Takashi Iwai09f99702008-02-04 12:31:13 +01001393static struct snd_kcontrol *
1394_snd_hda_find_mixer_ctl(struct hda_codec *codec,
1395 const char *name, int idx)
Takashi Iwai2134ea42008-01-10 16:53:55 +01001396{
1397 struct snd_ctl_elem_id id;
1398 memset(&id, 0, sizeof(id));
1399 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Takashi Iwai09f99702008-02-04 12:31:13 +01001400 id.index = idx;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001401 strcpy(id.name, name);
1402 return snd_ctl_find_id(codec->bus->card, &id);
1403}
1404
Takashi Iwai09f99702008-02-04 12:31:13 +01001405struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
1406 const char *name)
1407{
1408 return _snd_hda_find_mixer_ctl(codec, name, 0);
1409}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001410EXPORT_SYMBOL_HDA(snd_hda_find_mixer_ctl);
Takashi Iwai09f99702008-02-04 12:31:13 +01001411
Takashi Iwaid13bd412008-07-30 15:01:45 +02001412/* Add a control element and assign to the codec */
1413int snd_hda_ctl_add(struct hda_codec *codec, struct snd_kcontrol *kctl)
1414{
1415 int err;
1416 struct snd_kcontrol **knewp;
1417
1418 err = snd_ctl_add(codec->bus->card, kctl);
1419 if (err < 0)
1420 return err;
1421 knewp = snd_array_new(&codec->mixers);
1422 if (!knewp)
1423 return -ENOMEM;
1424 *knewp = kctl;
1425 return 0;
1426}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001427EXPORT_SYMBOL_HDA(snd_hda_ctl_add);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001428
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001429#ifdef CONFIG_SND_HDA_RECONFIG
Takashi Iwaid13bd412008-07-30 15:01:45 +02001430/* Clear all controls assigned to the given codec */
1431void snd_hda_ctls_clear(struct hda_codec *codec)
1432{
1433 int i;
1434 struct snd_kcontrol **kctls = codec->mixers.list;
1435 for (i = 0; i < codec->mixers.used; i++)
1436 snd_ctl_remove(codec->bus->card, kctls[i]);
1437 snd_array_free(&codec->mixers);
1438}
1439
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001440void snd_hda_codec_reset(struct hda_codec *codec)
1441{
1442 int i;
1443
1444#ifdef CONFIG_SND_HDA_POWER_SAVE
1445 cancel_delayed_work(&codec->power_work);
Takashi Iwai6acaed32009-01-12 10:09:24 +01001446 flush_workqueue(codec->bus->workq);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001447#endif
1448 snd_hda_ctls_clear(codec);
1449 /* relase PCMs */
1450 for (i = 0; i < codec->num_pcms; i++) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001451 if (codec->pcm_info[i].pcm) {
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001452 snd_device_free(codec->bus->card,
1453 codec->pcm_info[i].pcm);
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001454 clear_bit(codec->pcm_info[i].device,
1455 codec->bus->pcm_dev_bits);
1456 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001457 }
1458 if (codec->patch_ops.free)
1459 codec->patch_ops.free(codec);
Takashi Iwai56d17712008-11-28 14:36:23 +01001460 codec->proc_widget_hook = NULL;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001461 codec->spec = NULL;
1462 free_hda_cache(&codec->amp_cache);
1463 free_hda_cache(&codec->cmd_cache);
Takashi Iwai827057f2008-12-19 10:12:02 +01001464 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
1465 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Takashi Iwai3be14142009-02-20 14:11:16 +01001466 /* free only cur_pins so that init_pins + override_pins are restored */
1467 snd_array_free(&codec->cur_pins);
1468 restore_pincfgs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001469 codec->num_pcms = 0;
1470 codec->pcm_info = NULL;
1471 codec->preset = NULL;
Takashi Iwai1289e9e2008-11-27 15:47:11 +01001472 module_put(codec->owner);
1473 codec->owner = NULL;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001474}
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001475#endif /* CONFIG_SND_HDA_RECONFIG */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001476
Takashi Iwai2134ea42008-01-10 16:53:55 +01001477/* create a virtual master control and add slaves */
1478int snd_hda_add_vmaster(struct hda_codec *codec, char *name,
1479 unsigned int *tlv, const char **slaves)
1480{
1481 struct snd_kcontrol *kctl;
1482 const char **s;
1483 int err;
1484
Takashi Iwai2f085542008-02-22 18:43:50 +01001485 for (s = slaves; *s && !snd_hda_find_mixer_ctl(codec, *s); s++)
1486 ;
1487 if (!*s) {
1488 snd_printdd("No slave found for %s\n", name);
1489 return 0;
1490 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001491 kctl = snd_ctl_make_virtual_master(name, tlv);
1492 if (!kctl)
1493 return -ENOMEM;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001494 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001495 if (err < 0)
1496 return err;
1497
1498 for (s = slaves; *s; s++) {
1499 struct snd_kcontrol *sctl;
1500
1501 sctl = snd_hda_find_mixer_ctl(codec, *s);
1502 if (!sctl) {
1503 snd_printdd("Cannot find slave %s, skipped\n", *s);
1504 continue;
1505 }
1506 err = snd_ctl_add_slave(kctl, sctl);
1507 if (err < 0)
1508 return err;
1509 }
1510 return 0;
1511}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001512EXPORT_SYMBOL_HDA(snd_hda_add_vmaster);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514/* switch */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001515int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
1516 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517{
1518 int chs = get_amp_channels(kcontrol);
1519
1520 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1521 uinfo->count = chs == 3 ? 2 : 1;
1522 uinfo->value.integer.min = 0;
1523 uinfo->value.integer.max = 1;
1524 return 0;
1525}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001526EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Takashi Iwai0ba21762007-04-16 11:29:14 +02001528int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
1529 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530{
1531 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1532 hda_nid_t nid = get_amp_nid(kcontrol);
1533 int chs = get_amp_channels(kcontrol);
1534 int dir = get_amp_direction(kcontrol);
1535 int idx = get_amp_index(kcontrol);
1536 long *valp = ucontrol->value.integer.value;
1537
1538 if (chs & 1)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001539 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02001540 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 if (chs & 2)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001542 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02001543 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 return 0;
1545}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001546EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
Takashi Iwai0ba21762007-04-16 11:29:14 +02001548int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
1549 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
1551 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1552 hda_nid_t nid = get_amp_nid(kcontrol);
1553 int chs = get_amp_channels(kcontrol);
1554 int dir = get_amp_direction(kcontrol);
1555 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 long *valp = ucontrol->value.integer.value;
1557 int change = 0;
1558
Takashi Iwaicb53c622007-08-10 17:21:45 +02001559 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001560 if (chs & 1) {
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001561 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001562 HDA_AMP_MUTE,
1563 *valp ? 0 : HDA_AMP_MUTE);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001564 valp++;
1565 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001566 if (chs & 2)
1567 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001568 HDA_AMP_MUTE,
1569 *valp ? 0 : HDA_AMP_MUTE);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001570#ifdef CONFIG_SND_HDA_POWER_SAVE
1571 if (codec->patch_ops.check_power_status)
1572 codec->patch_ops.check_power_status(codec, nid);
1573#endif
1574 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 return change;
1576}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001577EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578
1579/*
Takashi Iwai985be542005-11-02 18:26:49 +01001580 * bound volume controls
1581 *
1582 * bind multiple volumes (# indices, from 0)
1583 */
1584
1585#define AMP_VAL_IDX_SHIFT 19
1586#define AMP_VAL_IDX_MASK (0x0f<<19)
1587
Takashi Iwai0ba21762007-04-16 11:29:14 +02001588int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol,
1589 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01001590{
1591 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1592 unsigned long pval;
1593 int err;
1594
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001595 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001596 pval = kcontrol->private_value;
1597 kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */
1598 err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
1599 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001600 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001601 return err;
1602}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001603EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_get);
Takashi Iwai985be542005-11-02 18:26:49 +01001604
Takashi Iwai0ba21762007-04-16 11:29:14 +02001605int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol,
1606 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01001607{
1608 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1609 unsigned long pval;
1610 int i, indices, err = 0, change = 0;
1611
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001612 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001613 pval = kcontrol->private_value;
1614 indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT;
1615 for (i = 0; i < indices; i++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001616 kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) |
1617 (i << AMP_VAL_IDX_SHIFT);
Takashi Iwai985be542005-11-02 18:26:49 +01001618 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
1619 if (err < 0)
1620 break;
1621 change |= err;
1622 }
1623 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001624 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001625 return err < 0 ? err : change;
1626}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001627EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_put);
Takashi Iwai985be542005-11-02 18:26:49 +01001628
1629/*
Takashi Iwai532d5382007-07-27 19:02:40 +02001630 * generic bound volume/swtich controls
1631 */
1632int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol,
1633 struct snd_ctl_elem_info *uinfo)
1634{
1635 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1636 struct hda_bind_ctls *c;
1637 int err;
1638
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001639 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001640 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001641 kcontrol->private_value = *c->values;
1642 err = c->ops->info(kcontrol, uinfo);
1643 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001644 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001645 return err;
1646}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001647EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_info);
Takashi Iwai532d5382007-07-27 19:02:40 +02001648
1649int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol,
1650 struct snd_ctl_elem_value *ucontrol)
1651{
1652 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1653 struct hda_bind_ctls *c;
1654 int err;
1655
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001656 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001657 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001658 kcontrol->private_value = *c->values;
1659 err = c->ops->get(kcontrol, ucontrol);
1660 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001661 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001662 return err;
1663}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001664EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_get);
Takashi Iwai532d5382007-07-27 19:02:40 +02001665
1666int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol,
1667 struct snd_ctl_elem_value *ucontrol)
1668{
1669 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1670 struct hda_bind_ctls *c;
1671 unsigned long *vals;
1672 int err = 0, change = 0;
1673
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001674 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001675 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001676 for (vals = c->values; *vals; vals++) {
1677 kcontrol->private_value = *vals;
1678 err = c->ops->put(kcontrol, ucontrol);
1679 if (err < 0)
1680 break;
1681 change |= err;
1682 }
1683 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001684 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001685 return err < 0 ? err : change;
1686}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001687EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_put);
Takashi Iwai532d5382007-07-27 19:02:40 +02001688
1689int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1690 unsigned int size, unsigned int __user *tlv)
1691{
1692 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1693 struct hda_bind_ctls *c;
1694 int err;
1695
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001696 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001697 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001698 kcontrol->private_value = *c->values;
1699 err = c->ops->tlv(kcontrol, op_flag, size, tlv);
1700 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001701 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001702 return err;
1703}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001704EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_tlv);
Takashi Iwai532d5382007-07-27 19:02:40 +02001705
1706struct hda_ctl_ops snd_hda_bind_vol = {
1707 .info = snd_hda_mixer_amp_volume_info,
1708 .get = snd_hda_mixer_amp_volume_get,
1709 .put = snd_hda_mixer_amp_volume_put,
1710 .tlv = snd_hda_mixer_amp_tlv
1711};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001712EXPORT_SYMBOL_HDA(snd_hda_bind_vol);
Takashi Iwai532d5382007-07-27 19:02:40 +02001713
1714struct hda_ctl_ops snd_hda_bind_sw = {
1715 .info = snd_hda_mixer_amp_switch_info,
1716 .get = snd_hda_mixer_amp_switch_get,
1717 .put = snd_hda_mixer_amp_switch_put,
1718 .tlv = snd_hda_mixer_amp_tlv
1719};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001720EXPORT_SYMBOL_HDA(snd_hda_bind_sw);
Takashi Iwai532d5382007-07-27 19:02:40 +02001721
1722/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 * SPDIF out controls
1724 */
1725
Takashi Iwai0ba21762007-04-16 11:29:14 +02001726static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
1727 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728{
1729 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1730 uinfo->count = 1;
1731 return 0;
1732}
1733
Takashi Iwai0ba21762007-04-16 11:29:14 +02001734static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
1735 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736{
1737 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1738 IEC958_AES0_NONAUDIO |
1739 IEC958_AES0_CON_EMPHASIS_5015 |
1740 IEC958_AES0_CON_NOT_COPYRIGHT;
1741 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
1742 IEC958_AES1_CON_ORIGINAL;
1743 return 0;
1744}
1745
Takashi Iwai0ba21762007-04-16 11:29:14 +02001746static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
1747 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748{
1749 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1750 IEC958_AES0_NONAUDIO |
1751 IEC958_AES0_PRO_EMPHASIS_5015;
1752 return 0;
1753}
1754
Takashi Iwai0ba21762007-04-16 11:29:14 +02001755static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
1756 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757{
1758 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1759
1760 ucontrol->value.iec958.status[0] = codec->spdif_status & 0xff;
1761 ucontrol->value.iec958.status[1] = (codec->spdif_status >> 8) & 0xff;
1762 ucontrol->value.iec958.status[2] = (codec->spdif_status >> 16) & 0xff;
1763 ucontrol->value.iec958.status[3] = (codec->spdif_status >> 24) & 0xff;
1764
1765 return 0;
1766}
1767
1768/* convert from SPDIF status bits to HDA SPDIF bits
1769 * bit 0 (DigEn) is always set zero (to be filled later)
1770 */
1771static unsigned short convert_from_spdif_status(unsigned int sbits)
1772{
1773 unsigned short val = 0;
1774
1775 if (sbits & IEC958_AES0_PROFESSIONAL)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001776 val |= AC_DIG1_PROFESSIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 if (sbits & IEC958_AES0_NONAUDIO)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001778 val |= AC_DIG1_NONAUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001780 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
1781 IEC958_AES0_PRO_EMPHASIS_5015)
1782 val |= AC_DIG1_EMPHASIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001784 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
1785 IEC958_AES0_CON_EMPHASIS_5015)
1786 val |= AC_DIG1_EMPHASIS;
1787 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
1788 val |= AC_DIG1_COPYRIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
Takashi Iwai0ba21762007-04-16 11:29:14 +02001790 val |= AC_DIG1_LEVEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
1792 }
1793 return val;
1794}
1795
1796/* convert to SPDIF status bits from HDA SPDIF bits
1797 */
1798static unsigned int convert_to_spdif_status(unsigned short val)
1799{
1800 unsigned int sbits = 0;
1801
Takashi Iwai0ba21762007-04-16 11:29:14 +02001802 if (val & AC_DIG1_NONAUDIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 sbits |= IEC958_AES0_NONAUDIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001804 if (val & AC_DIG1_PROFESSIONAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 sbits |= IEC958_AES0_PROFESSIONAL;
1806 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001807 if (sbits & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
1809 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001810 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001812 if (!(val & AC_DIG1_COPYRIGHT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001814 if (val & AC_DIG1_LEVEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
1816 sbits |= val & (0x7f << 8);
1817 }
1818 return sbits;
1819}
1820
Takashi Iwai2f728532008-09-25 16:32:41 +02001821/* set digital convert verbs both for the given NID and its slaves */
1822static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
1823 int verb, int val)
1824{
1825 hda_nid_t *d;
1826
Takashi Iwai9e976972008-11-25 08:17:20 +01001827 snd_hda_codec_write_cache(codec, nid, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02001828 d = codec->slave_dig_outs;
1829 if (!d)
1830 return;
1831 for (; *d; d++)
Takashi Iwai9e976972008-11-25 08:17:20 +01001832 snd_hda_codec_write_cache(codec, *d, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02001833}
1834
1835static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,
1836 int dig1, int dig2)
1837{
1838 if (dig1 != -1)
1839 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_1, dig1);
1840 if (dig2 != -1)
1841 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_2, dig2);
1842}
1843
Takashi Iwai0ba21762007-04-16 11:29:14 +02001844static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
1845 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
1847 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1848 hda_nid_t nid = kcontrol->private_value;
1849 unsigned short val;
1850 int change;
1851
Ingo Molnar62932df2006-01-16 16:34:20 +01001852 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 codec->spdif_status = ucontrol->value.iec958.status[0] |
1854 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
1855 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
1856 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
1857 val = convert_from_spdif_status(codec->spdif_status);
1858 val |= codec->spdif_ctls & 1;
1859 change = codec->spdif_ctls != val;
1860 codec->spdif_ctls = val;
1861
Takashi Iwai2f728532008-09-25 16:32:41 +02001862 if (change)
1863 set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Ingo Molnar62932df2006-01-16 16:34:20 +01001865 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 return change;
1867}
1868
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001869#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Takashi Iwai0ba21762007-04-16 11:29:14 +02001871static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
1872 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873{
1874 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1875
Takashi Iwai0ba21762007-04-16 11:29:14 +02001876 ucontrol->value.integer.value[0] = codec->spdif_ctls & AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 return 0;
1878}
1879
Takashi Iwai0ba21762007-04-16 11:29:14 +02001880static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
1881 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882{
1883 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1884 hda_nid_t nid = kcontrol->private_value;
1885 unsigned short val;
1886 int change;
1887
Ingo Molnar62932df2006-01-16 16:34:20 +01001888 mutex_lock(&codec->spdif_mutex);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001889 val = codec->spdif_ctls & ~AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 if (ucontrol->value.integer.value[0])
Takashi Iwai0ba21762007-04-16 11:29:14 +02001891 val |= AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 change = codec->spdif_ctls != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001893 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 codec->spdif_ctls = val;
Takashi Iwai2f728532008-09-25 16:32:41 +02001895 set_dig_out_convert(codec, nid, val & 0xff, -1);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001896 /* unmute amp switch (if any) */
1897 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
Takashi Iwai47fd8302007-08-10 17:11:07 +02001898 (val & AC_DIG1_ENABLE))
1899 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
1900 HDA_AMP_MUTE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001902 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 return change;
1904}
1905
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001906static struct snd_kcontrol_new dig_mixes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 {
1908 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1909 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1910 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK),
1911 .info = snd_hda_spdif_mask_info,
1912 .get = snd_hda_spdif_cmask_get,
1913 },
1914 {
1915 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1916 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1917 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PRO_MASK),
1918 .info = snd_hda_spdif_mask_info,
1919 .get = snd_hda_spdif_pmask_get,
1920 },
1921 {
1922 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1923 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
1924 .info = snd_hda_spdif_mask_info,
1925 .get = snd_hda_spdif_default_get,
1926 .put = snd_hda_spdif_default_put,
1927 },
1928 {
1929 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1930 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH),
1931 .info = snd_hda_spdif_out_switch_info,
1932 .get = snd_hda_spdif_out_switch_get,
1933 .put = snd_hda_spdif_out_switch_put,
1934 },
1935 { } /* end */
1936};
1937
Takashi Iwai09f99702008-02-04 12:31:13 +01001938#define SPDIF_MAX_IDX 4 /* 4 instances should be enough to probe */
1939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940/**
1941 * snd_hda_create_spdif_out_ctls - create Output SPDIF-related controls
1942 * @codec: the HDA codec
1943 * @nid: audio out widget NID
1944 *
1945 * Creates controls related with the SPDIF output.
1946 * Called from each patch supporting the SPDIF out.
1947 *
1948 * Returns 0 if successful, or a negative error code.
1949 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02001950int snd_hda_create_spdif_out_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951{
1952 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001953 struct snd_kcontrol *kctl;
1954 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01001955 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
Takashi Iwai09f99702008-02-04 12:31:13 +01001957 for (idx = 0; idx < SPDIF_MAX_IDX; idx++) {
1958 if (!_snd_hda_find_mixer_ctl(codec, "IEC958 Playback Switch",
1959 idx))
1960 break;
1961 }
1962 if (idx >= SPDIF_MAX_IDX) {
1963 printk(KERN_ERR "hda_codec: too many IEC958 outputs\n");
1964 return -EBUSY;
1965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
1967 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaib91f0802008-11-04 08:43:08 +01001968 if (!kctl)
1969 return -ENOMEM;
Takashi Iwai09f99702008-02-04 12:31:13 +01001970 kctl->id.index = idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 kctl->private_value = nid;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001972 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001973 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 return err;
1975 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001976 codec->spdif_ctls =
Andrew Paprocki3982d172007-12-19 12:13:44 +01001977 snd_hda_codec_read(codec, nid, 0,
1978 AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 codec->spdif_status = convert_to_spdif_status(codec->spdif_ctls);
1980 return 0;
1981}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001982EXPORT_SYMBOL_HDA(snd_hda_create_spdif_out_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
1984/*
Takashi Iwai9a081602008-02-12 18:37:26 +01001985 * SPDIF sharing with analog output
1986 */
1987static int spdif_share_sw_get(struct snd_kcontrol *kcontrol,
1988 struct snd_ctl_elem_value *ucontrol)
1989{
1990 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
1991 ucontrol->value.integer.value[0] = mout->share_spdif;
1992 return 0;
1993}
1994
1995static int spdif_share_sw_put(struct snd_kcontrol *kcontrol,
1996 struct snd_ctl_elem_value *ucontrol)
1997{
1998 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
1999 mout->share_spdif = !!ucontrol->value.integer.value[0];
2000 return 0;
2001}
2002
2003static struct snd_kcontrol_new spdif_share_sw = {
2004 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2005 .name = "IEC958 Default PCM Playback Switch",
2006 .info = snd_ctl_boolean_mono_info,
2007 .get = spdif_share_sw_get,
2008 .put = spdif_share_sw_put,
2009};
2010
2011int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
2012 struct hda_multi_out *mout)
2013{
2014 if (!mout->dig_out_nid)
2015 return 0;
2016 /* ATTENTION: here mout is passed as private_data, instead of codec */
Takashi Iwaid13bd412008-07-30 15:01:45 +02002017 return snd_hda_ctl_add(codec,
Takashi Iwai9a081602008-02-12 18:37:26 +01002018 snd_ctl_new1(&spdif_share_sw, mout));
2019}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002020EXPORT_SYMBOL_HDA(snd_hda_create_spdif_share_sw);
Takashi Iwai9a081602008-02-12 18:37:26 +01002021
2022/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 * SPDIF input
2024 */
2025
2026#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
2027
Takashi Iwai0ba21762007-04-16 11:29:14 +02002028static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
2029 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030{
2031 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2032
2033 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
2034 return 0;
2035}
2036
Takashi Iwai0ba21762007-04-16 11:29:14 +02002037static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
2038 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039{
2040 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2041 hda_nid_t nid = kcontrol->private_value;
2042 unsigned int val = !!ucontrol->value.integer.value[0];
2043 int change;
2044
Ingo Molnar62932df2006-01-16 16:34:20 +01002045 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002047 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 codec->spdif_in_enable = val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002049 snd_hda_codec_write_cache(codec, nid, 0,
2050 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 }
Ingo Molnar62932df2006-01-16 16:34:20 +01002052 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 return change;
2054}
2055
Takashi Iwai0ba21762007-04-16 11:29:14 +02002056static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
2057 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058{
2059 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2060 hda_nid_t nid = kcontrol->private_value;
2061 unsigned short val;
2062 unsigned int sbits;
2063
Andrew Paprocki3982d172007-12-19 12:13:44 +01002064 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 sbits = convert_to_spdif_status(val);
2066 ucontrol->value.iec958.status[0] = sbits;
2067 ucontrol->value.iec958.status[1] = sbits >> 8;
2068 ucontrol->value.iec958.status[2] = sbits >> 16;
2069 ucontrol->value.iec958.status[3] = sbits >> 24;
2070 return 0;
2071}
2072
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002073static struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 {
2075 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2076 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH),
2077 .info = snd_hda_spdif_in_switch_info,
2078 .get = snd_hda_spdif_in_switch_get,
2079 .put = snd_hda_spdif_in_switch_put,
2080 },
2081 {
2082 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2083 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2084 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,DEFAULT),
2085 .info = snd_hda_spdif_mask_info,
2086 .get = snd_hda_spdif_in_status_get,
2087 },
2088 { } /* end */
2089};
2090
2091/**
2092 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
2093 * @codec: the HDA codec
2094 * @nid: audio in widget NID
2095 *
2096 * Creates controls related with the SPDIF input.
2097 * Called from each patch supporting the SPDIF in.
2098 *
2099 * Returns 0 if successful, or a negative error code.
2100 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002101int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
2103 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002104 struct snd_kcontrol *kctl;
2105 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01002106 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Takashi Iwai09f99702008-02-04 12:31:13 +01002108 for (idx = 0; idx < SPDIF_MAX_IDX; idx++) {
2109 if (!_snd_hda_find_mixer_ctl(codec, "IEC958 Capture Switch",
2110 idx))
2111 break;
2112 }
2113 if (idx >= SPDIF_MAX_IDX) {
2114 printk(KERN_ERR "hda_codec: too many IEC958 inputs\n");
2115 return -EBUSY;
2116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
2118 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaic8dcdf82009-02-06 16:21:20 +01002119 if (!kctl)
2120 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 kctl->private_value = nid;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002122 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002123 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 return err;
2125 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002126 codec->spdif_in_enable =
Andrew Paprocki3982d172007-12-19 12:13:44 +01002127 snd_hda_codec_read(codec, nid, 0,
2128 AC_VERB_GET_DIGI_CONVERT_1, 0) &
Takashi Iwai0ba21762007-04-16 11:29:14 +02002129 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 return 0;
2131}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002132EXPORT_SYMBOL_HDA(snd_hda_create_spdif_in_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
Takashi Iwaicb53c622007-08-10 17:21:45 +02002134#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002135/*
2136 * command cache
2137 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002139/* build a 32bit cache key with the widget id and the command parameter */
2140#define build_cmd_cache_key(nid, verb) ((verb << 8) | nid)
2141#define get_cmd_cache_nid(key) ((key) & 0xff)
2142#define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff)
2143
2144/**
2145 * snd_hda_codec_write_cache - send a single command with caching
2146 * @codec: the HDA codec
2147 * @nid: NID to send the command
2148 * @direct: direct flag
2149 * @verb: the verb to send
2150 * @parm: the parameter for the verb
2151 *
2152 * Send a single command without waiting for response.
2153 *
2154 * Returns 0 if successful, or a negative error code.
2155 */
2156int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid,
2157 int direct, unsigned int verb, unsigned int parm)
2158{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002159 struct hda_bus *bus = codec->bus;
2160 unsigned int res;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002161 int err;
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002162
2163 res = make_codec_cmd(codec, nid, direct, verb, parm);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002164 snd_hda_power_up(codec);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002165 mutex_lock(&bus->cmd_mutex);
2166 err = bus->ops.command(bus, res);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002167 if (!err) {
2168 struct hda_cache_head *c;
2169 u32 key = build_cmd_cache_key(nid, verb);
2170 c = get_alloc_hash(&codec->cmd_cache, key);
2171 if (c)
2172 c->val = parm;
2173 }
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002174 mutex_unlock(&bus->cmd_mutex);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002175 snd_hda_power_down(codec);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002176 return err;
2177}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002178EXPORT_SYMBOL_HDA(snd_hda_codec_write_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002179
2180/* resume the all commands from the cache */
2181void snd_hda_codec_resume_cache(struct hda_codec *codec)
2182{
Takashi Iwai603c4012008-07-30 15:01:44 +02002183 struct hda_cache_head *buffer = codec->cmd_cache.buf.list;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002184 int i;
2185
Takashi Iwai603c4012008-07-30 15:01:44 +02002186 for (i = 0; i < codec->cmd_cache.buf.used; i++, buffer++) {
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002187 u32 key = buffer->key;
2188 if (!key)
2189 continue;
2190 snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0,
2191 get_cmd_cache_cmd(key), buffer->val);
2192 }
2193}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002194EXPORT_SYMBOL_HDA(snd_hda_codec_resume_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002195
2196/**
2197 * snd_hda_sequence_write_cache - sequence writes with caching
2198 * @codec: the HDA codec
2199 * @seq: VERB array to send
2200 *
2201 * Send the commands sequentially from the given array.
2202 * Thte commands are recorded on cache for power-save and resume.
2203 * The array must be terminated with NID=0.
2204 */
2205void snd_hda_sequence_write_cache(struct hda_codec *codec,
2206 const struct hda_verb *seq)
2207{
2208 for (; seq->nid; seq++)
2209 snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb,
2210 seq->param);
2211}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002212EXPORT_SYMBOL_HDA(snd_hda_sequence_write_cache);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002213#endif /* SND_HDA_NEEDS_RESUME */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002214
Takashi Iwai54d17402005-11-21 16:33:22 +01002215/*
2216 * set power state of the codec
2217 */
2218static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2219 unsigned int power_state)
2220{
Takashi Iwaicb53c622007-08-10 17:21:45 +02002221 hda_nid_t nid;
2222 int i;
Takashi Iwai54d17402005-11-21 16:33:22 +01002223
2224 snd_hda_codec_write(codec, fg, 0, AC_VERB_SET_POWER_STATE,
2225 power_state);
Marc Boucherd2595d82008-01-22 15:23:30 +01002226 msleep(10); /* partial workaround for "azx_get_response timeout" */
Takashi Iwai54d17402005-11-21 16:33:22 +01002227
Takashi Iwaicb53c622007-08-10 17:21:45 +02002228 nid = codec->start_nid;
2229 for (i = 0; i < codec->num_nodes; i++, nid++) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01002230 unsigned int wcaps = get_wcaps(codec, nid);
2231 if (wcaps & AC_WCAP_POWER) {
2232 unsigned int wid_type = (wcaps & AC_WCAP_TYPE) >>
2233 AC_WCAP_TYPE_SHIFT;
2234 if (wid_type == AC_WID_PIN) {
2235 unsigned int pincap;
2236 /*
2237 * don't power down the widget if it controls
2238 * eapd and EAPD_BTLENABLE is set.
2239 */
2240 pincap = snd_hda_param_read(codec, nid,
2241 AC_PAR_PIN_CAP);
2242 if (pincap & AC_PINCAP_EAPD) {
2243 int eapd = snd_hda_codec_read(codec,
2244 nid, 0,
2245 AC_VERB_GET_EAPD_BTLENABLE, 0);
2246 eapd &= 0x02;
2247 if (power_state == AC_PWRST_D3 && eapd)
2248 continue;
2249 }
Takashi Iwai1194b5b2007-10-10 10:04:26 +02002250 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002251 snd_hda_codec_write(codec, nid, 0,
2252 AC_VERB_SET_POWER_STATE,
2253 power_state);
Takashi Iwai1194b5b2007-10-10 10:04:26 +02002254 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002255 }
2256
Takashi Iwaicb53c622007-08-10 17:21:45 +02002257 if (power_state == AC_PWRST_D0) {
2258 unsigned long end_time;
2259 int state;
Takashi Iwai54d17402005-11-21 16:33:22 +01002260 msleep(10);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002261 /* wait until the codec reachs to D0 */
2262 end_time = jiffies + msecs_to_jiffies(500);
2263 do {
2264 state = snd_hda_codec_read(codec, fg, 0,
2265 AC_VERB_GET_POWER_STATE, 0);
2266 if (state == power_state)
2267 break;
2268 msleep(1);
2269 } while (time_after_eq(end_time, jiffies));
2270 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002271}
2272
Takashi Iwai11aeff02008-07-30 15:01:46 +02002273#ifdef CONFIG_SND_HDA_HWDEP
2274/* execute additional init verbs */
2275static void hda_exec_init_verbs(struct hda_codec *codec)
2276{
2277 if (codec->init_verbs.list)
2278 snd_hda_sequence_write(codec, codec->init_verbs.list);
2279}
2280#else
2281static inline void hda_exec_init_verbs(struct hda_codec *codec) {}
2282#endif
2283
Takashi Iwaicb53c622007-08-10 17:21:45 +02002284#ifdef SND_HDA_NEEDS_RESUME
2285/*
2286 * call suspend and power-down; used both from PM and power-save
2287 */
2288static void hda_call_codec_suspend(struct hda_codec *codec)
2289{
2290 if (codec->patch_ops.suspend)
2291 codec->patch_ops.suspend(codec, PMSG_SUSPEND);
2292 hda_set_power_state(codec,
2293 codec->afg ? codec->afg : codec->mfg,
2294 AC_PWRST_D3);
2295#ifdef CONFIG_SND_HDA_POWER_SAVE
2296 cancel_delayed_work(&codec->power_work);
Takashi Iwai95e99fd2007-08-13 15:29:04 +02002297 codec->power_on = 0;
Takashi Iwaia221e282007-08-16 16:35:33 +02002298 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002299#endif
2300}
2301
2302/*
2303 * kick up codec; used both from PM and power-save
2304 */
2305static void hda_call_codec_resume(struct hda_codec *codec)
2306{
2307 hda_set_power_state(codec,
2308 codec->afg ? codec->afg : codec->mfg,
2309 AC_PWRST_D0);
Takashi Iwai3be14142009-02-20 14:11:16 +01002310 restore_pincfgs(codec); /* restore all current pin configs */
Takashi Iwai11aeff02008-07-30 15:01:46 +02002311 hda_exec_init_verbs(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002312 if (codec->patch_ops.resume)
2313 codec->patch_ops.resume(codec);
2314 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02002315 if (codec->patch_ops.init)
2316 codec->patch_ops.init(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002317 snd_hda_codec_resume_amp(codec);
2318 snd_hda_codec_resume_cache(codec);
2319 }
2320}
2321#endif /* SND_HDA_NEEDS_RESUME */
2322
Takashi Iwai54d17402005-11-21 16:33:22 +01002323
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324/**
2325 * snd_hda_build_controls - build mixer controls
2326 * @bus: the BUS
2327 *
2328 * Creates mixer controls for each codec included in the bus.
2329 *
2330 * Returns 0 if successful, otherwise a negative error code.
2331 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +01002332int /*__devinit*/ snd_hda_build_controls(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002334 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
Takashi Iwai0ba21762007-04-16 11:29:14 +02002336 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002337 int err = snd_hda_codec_build_controls(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 if (err < 0)
2339 return err;
2340 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002341 return 0;
2342}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002343EXPORT_SYMBOL_HDA(snd_hda_build_controls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002345int snd_hda_codec_build_controls(struct hda_codec *codec)
2346{
2347 int err = 0;
2348 /* fake as if already powered-on */
2349 hda_keep_power_on(codec);
2350 /* then fire up */
2351 hda_set_power_state(codec,
2352 codec->afg ? codec->afg : codec->mfg,
2353 AC_PWRST_D0);
Takashi Iwai11aeff02008-07-30 15:01:46 +02002354 hda_exec_init_verbs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002355 /* continue to initialize... */
2356 if (codec->patch_ops.init)
2357 err = codec->patch_ops.init(codec);
2358 if (!err && codec->patch_ops.build_controls)
2359 err = codec->patch_ops.build_controls(codec);
2360 snd_hda_power_down(codec);
2361 if (err < 0)
2362 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 return 0;
2364}
2365
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366/*
2367 * stream formats
2368 */
Takashi Iwaibefdf312005-08-22 13:57:55 +02002369struct hda_rate_tbl {
2370 unsigned int hz;
2371 unsigned int alsa_bits;
2372 unsigned int hda_fmt;
2373};
2374
2375static struct hda_rate_tbl rate_bits[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 /* rate in Hz, ALSA rate bitmask, HDA format value */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02002377
2378 /* autodetected value used in snd_hda_query_supported_pcm */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 { 8000, SNDRV_PCM_RATE_8000, 0x0500 }, /* 1/6 x 48 */
2380 { 11025, SNDRV_PCM_RATE_11025, 0x4300 }, /* 1/4 x 44 */
2381 { 16000, SNDRV_PCM_RATE_16000, 0x0200 }, /* 1/3 x 48 */
2382 { 22050, SNDRV_PCM_RATE_22050, 0x4100 }, /* 1/2 x 44 */
2383 { 32000, SNDRV_PCM_RATE_32000, 0x0a00 }, /* 2/3 x 48 */
2384 { 44100, SNDRV_PCM_RATE_44100, 0x4000 }, /* 44 */
2385 { 48000, SNDRV_PCM_RATE_48000, 0x0000 }, /* 48 */
2386 { 88200, SNDRV_PCM_RATE_88200, 0x4800 }, /* 2 x 44 */
2387 { 96000, SNDRV_PCM_RATE_96000, 0x0800 }, /* 2 x 48 */
2388 { 176400, SNDRV_PCM_RATE_176400, 0x5800 },/* 4 x 44 */
2389 { 192000, SNDRV_PCM_RATE_192000, 0x1800 }, /* 4 x 48 */
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002390#define AC_PAR_PCM_RATE_BITS 11
2391 /* up to bits 10, 384kHZ isn't supported properly */
2392
2393 /* not autodetected value */
2394 { 9600, SNDRV_PCM_RATE_KNOT, 0x0400 }, /* 1/5 x 48 */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02002395
Takashi Iwaibefdf312005-08-22 13:57:55 +02002396 { 0 } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397};
2398
2399/**
2400 * snd_hda_calc_stream_format - calculate format bitset
2401 * @rate: the sample rate
2402 * @channels: the number of channels
2403 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
2404 * @maxbps: the max. bps
2405 *
2406 * Calculate the format bitset from the given rate, channels and th PCM format.
2407 *
2408 * Return zero if invalid.
2409 */
2410unsigned int snd_hda_calc_stream_format(unsigned int rate,
2411 unsigned int channels,
2412 unsigned int format,
2413 unsigned int maxbps)
2414{
2415 int i;
2416 unsigned int val = 0;
2417
Takashi Iwaibefdf312005-08-22 13:57:55 +02002418 for (i = 0; rate_bits[i].hz; i++)
2419 if (rate_bits[i].hz == rate) {
2420 val = rate_bits[i].hda_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 break;
2422 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002423 if (!rate_bits[i].hz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 snd_printdd("invalid rate %d\n", rate);
2425 return 0;
2426 }
2427
2428 if (channels == 0 || channels > 8) {
2429 snd_printdd("invalid channels %d\n", channels);
2430 return 0;
2431 }
2432 val |= channels - 1;
2433
2434 switch (snd_pcm_format_width(format)) {
2435 case 8: val |= 0x00; break;
2436 case 16: val |= 0x10; break;
2437 case 20:
2438 case 24:
2439 case 32:
2440 if (maxbps >= 32)
2441 val |= 0x40;
2442 else if (maxbps >= 24)
2443 val |= 0x30;
2444 else
2445 val |= 0x20;
2446 break;
2447 default:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002448 snd_printdd("invalid format width %d\n",
2449 snd_pcm_format_width(format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 return 0;
2451 }
2452
2453 return val;
2454}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002455EXPORT_SYMBOL_HDA(snd_hda_calc_stream_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456
2457/**
2458 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
2459 * @codec: the HDA codec
2460 * @nid: NID to query
2461 * @ratesp: the pointer to store the detected rate bitflags
2462 * @formatsp: the pointer to store the detected formats
2463 * @bpsp: the pointer to store the detected format widths
2464 *
2465 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
2466 * or @bsps argument is ignored.
2467 *
2468 * Returns 0 if successful, otherwise a negative error code.
2469 */
Takashi Iwai986862bd2008-11-27 12:40:13 +01002470static int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 u32 *ratesp, u64 *formatsp, unsigned int *bpsp)
2472{
2473 int i;
2474 unsigned int val, streams;
2475
2476 val = 0;
2477 if (nid != codec->afg &&
Takashi Iwai54d17402005-11-21 16:33:22 +01002478 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
2480 if (val == -1)
2481 return -EIO;
2482 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002483 if (!val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
2485
2486 if (ratesp) {
2487 u32 rates = 0;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002488 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 if (val & (1 << i))
Takashi Iwaibefdf312005-08-22 13:57:55 +02002490 rates |= rate_bits[i].alsa_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 }
2492 *ratesp = rates;
2493 }
2494
2495 if (formatsp || bpsp) {
2496 u64 formats = 0;
2497 unsigned int bps;
2498 unsigned int wcaps;
2499
Takashi Iwai54d17402005-11-21 16:33:22 +01002500 wcaps = get_wcaps(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
2502 if (streams == -1)
2503 return -EIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002504 if (!streams) {
2505 streams = snd_hda_param_read(codec, codec->afg,
2506 AC_PAR_STREAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 if (streams == -1)
2508 return -EIO;
2509 }
2510
2511 bps = 0;
2512 if (streams & AC_SUPFMT_PCM) {
2513 if (val & AC_SUPPCM_BITS_8) {
2514 formats |= SNDRV_PCM_FMTBIT_U8;
2515 bps = 8;
2516 }
2517 if (val & AC_SUPPCM_BITS_16) {
2518 formats |= SNDRV_PCM_FMTBIT_S16_LE;
2519 bps = 16;
2520 }
2521 if (wcaps & AC_WCAP_DIGITAL) {
2522 if (val & AC_SUPPCM_BITS_32)
2523 formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
2524 if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24))
2525 formats |= SNDRV_PCM_FMTBIT_S32_LE;
2526 if (val & AC_SUPPCM_BITS_24)
2527 bps = 24;
2528 else if (val & AC_SUPPCM_BITS_20)
2529 bps = 20;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002530 } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24|
2531 AC_SUPPCM_BITS_32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 formats |= SNDRV_PCM_FMTBIT_S32_LE;
2533 if (val & AC_SUPPCM_BITS_32)
2534 bps = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 else if (val & AC_SUPPCM_BITS_24)
2536 bps = 24;
Nicolas Graziano33ef76512006-09-19 14:23:14 +02002537 else if (val & AC_SUPPCM_BITS_20)
2538 bps = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 }
2540 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002541 else if (streams == AC_SUPFMT_FLOAT32) {
2542 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
2544 bps = 32;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002545 } else if (streams == AC_SUPFMT_AC3) {
2546 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 /* temporary hack: we have still no proper support
2548 * for the direct AC3 stream...
2549 */
2550 formats |= SNDRV_PCM_FMTBIT_U8;
2551 bps = 8;
2552 }
2553 if (formatsp)
2554 *formatsp = formats;
2555 if (bpsp)
2556 *bpsp = bps;
2557 }
2558
2559 return 0;
2560}
2561
2562/**
Takashi Iwai0ba21762007-04-16 11:29:14 +02002563 * snd_hda_is_supported_format - check whether the given node supports
2564 * the format val
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 *
2566 * Returns 1 if supported, 0 if not.
2567 */
2568int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
2569 unsigned int format)
2570{
2571 int i;
2572 unsigned int val = 0, rate, stream;
2573
2574 if (nid != codec->afg &&
Takashi Iwai54d17402005-11-21 16:33:22 +01002575 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
2577 if (val == -1)
2578 return 0;
2579 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002580 if (!val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
2582 if (val == -1)
2583 return 0;
2584 }
2585
2586 rate = format & 0xff00;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002587 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++)
Takashi Iwaibefdf312005-08-22 13:57:55 +02002588 if (rate_bits[i].hda_fmt == rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 if (val & (1 << i))
2590 break;
2591 return 0;
2592 }
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002593 if (i >= AC_PAR_PCM_RATE_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 return 0;
2595
2596 stream = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
2597 if (stream == -1)
2598 return 0;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002599 if (!stream && nid != codec->afg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 stream = snd_hda_param_read(codec, codec->afg, AC_PAR_STREAM);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002601 if (!stream || stream == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 return 0;
2603
2604 if (stream & AC_SUPFMT_PCM) {
2605 switch (format & 0xf0) {
2606 case 0x00:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002607 if (!(val & AC_SUPPCM_BITS_8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 return 0;
2609 break;
2610 case 0x10:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002611 if (!(val & AC_SUPPCM_BITS_16))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 return 0;
2613 break;
2614 case 0x20:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002615 if (!(val & AC_SUPPCM_BITS_20))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 return 0;
2617 break;
2618 case 0x30:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002619 if (!(val & AC_SUPPCM_BITS_24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 return 0;
2621 break;
2622 case 0x40:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002623 if (!(val & AC_SUPPCM_BITS_32))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 return 0;
2625 break;
2626 default:
2627 return 0;
2628 }
2629 } else {
2630 /* FIXME: check for float32 and AC3? */
2631 }
2632
2633 return 1;
2634}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002635EXPORT_SYMBOL_HDA(snd_hda_is_supported_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
2637/*
2638 * PCM stuff
2639 */
2640static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
2641 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002642 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643{
2644 return 0;
2645}
2646
2647static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
2648 struct hda_codec *codec,
2649 unsigned int stream_tag,
2650 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002651 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652{
2653 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
2654 return 0;
2655}
2656
2657static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
2658 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002659 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660{
Takashi Iwai888afa12008-03-18 09:57:50 +01002661 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 return 0;
2663}
2664
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002665static int set_pcm_default_values(struct hda_codec *codec,
2666 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002668 /* query support PCM information from the given NID */
2669 if (info->nid && (!info->rates || !info->formats)) {
2670 snd_hda_query_supported_pcm(codec, info->nid,
2671 info->rates ? NULL : &info->rates,
2672 info->formats ? NULL : &info->formats,
2673 info->maxbps ? NULL : &info->maxbps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 }
2675 if (info->ops.open == NULL)
2676 info->ops.open = hda_pcm_default_open_close;
2677 if (info->ops.close == NULL)
2678 info->ops.close = hda_pcm_default_open_close;
2679 if (info->ops.prepare == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02002680 if (snd_BUG_ON(!info->nid))
2681 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 info->ops.prepare = hda_pcm_default_prepare;
2683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 if (info->ops.cleanup == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02002685 if (snd_BUG_ON(!info->nid))
2686 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 info->ops.cleanup = hda_pcm_default_cleanup;
2688 }
2689 return 0;
2690}
2691
Takashi Iwai176d5332008-07-30 15:01:44 +02002692/*
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002693 * get the empty PCM device number to assign
2694 */
2695static int get_empty_pcm_device(struct hda_bus *bus, int type)
2696{
2697 static const char *dev_name[HDA_PCM_NTYPES] = {
2698 "Audio", "SPDIF", "HDMI", "Modem"
2699 };
2700 /* starting device index for each PCM type */
2701 static int dev_idx[HDA_PCM_NTYPES] = {
2702 [HDA_PCM_TYPE_AUDIO] = 0,
2703 [HDA_PCM_TYPE_SPDIF] = 1,
2704 [HDA_PCM_TYPE_HDMI] = 3,
2705 [HDA_PCM_TYPE_MODEM] = 6
2706 };
2707 /* normal audio device indices; not linear to keep compatibility */
2708 static int audio_idx[4] = { 0, 2, 4, 5 };
2709 int i, dev;
2710
2711 switch (type) {
2712 case HDA_PCM_TYPE_AUDIO:
2713 for (i = 0; i < ARRAY_SIZE(audio_idx); i++) {
2714 dev = audio_idx[i];
2715 if (!test_bit(dev, bus->pcm_dev_bits))
2716 break;
2717 }
2718 if (i >= ARRAY_SIZE(audio_idx)) {
2719 snd_printk(KERN_WARNING "Too many audio devices\n");
2720 return -EAGAIN;
2721 }
2722 break;
2723 case HDA_PCM_TYPE_SPDIF:
2724 case HDA_PCM_TYPE_HDMI:
2725 case HDA_PCM_TYPE_MODEM:
2726 dev = dev_idx[type];
2727 if (test_bit(dev, bus->pcm_dev_bits)) {
2728 snd_printk(KERN_WARNING "%s already defined\n",
2729 dev_name[type]);
2730 return -EAGAIN;
2731 }
2732 break;
2733 default:
2734 snd_printk(KERN_WARNING "Invalid PCM type %d\n", type);
2735 return -EINVAL;
2736 }
2737 set_bit(dev, bus->pcm_dev_bits);
2738 return dev;
2739}
2740
2741/*
Takashi Iwai176d5332008-07-30 15:01:44 +02002742 * attach a new PCM stream
2743 */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002744static int snd_hda_attach_pcm(struct hda_codec *codec, struct hda_pcm *pcm)
Takashi Iwai176d5332008-07-30 15:01:44 +02002745{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002746 struct hda_bus *bus = codec->bus;
Takashi Iwai176d5332008-07-30 15:01:44 +02002747 struct hda_pcm_stream *info;
2748 int stream, err;
2749
Takashi Iwaib91f0802008-11-04 08:43:08 +01002750 if (snd_BUG_ON(!pcm->name))
Takashi Iwai176d5332008-07-30 15:01:44 +02002751 return -EINVAL;
2752 for (stream = 0; stream < 2; stream++) {
2753 info = &pcm->stream[stream];
2754 if (info->substreams) {
2755 err = set_pcm_default_values(codec, info);
2756 if (err < 0)
2757 return err;
2758 }
2759 }
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002760 return bus->ops.attach_pcm(bus, codec, pcm);
Takashi Iwai176d5332008-07-30 15:01:44 +02002761}
2762
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002763/* assign all PCMs of the given codec */
2764int snd_hda_codec_build_pcms(struct hda_codec *codec)
2765{
2766 unsigned int pcm;
2767 int err;
2768
2769 if (!codec->num_pcms) {
2770 if (!codec->patch_ops.build_pcms)
2771 return 0;
2772 err = codec->patch_ops.build_pcms(codec);
2773 if (err < 0)
2774 return err;
2775 }
2776 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
2777 struct hda_pcm *cpcm = &codec->pcm_info[pcm];
2778 int dev;
2779
2780 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
Takashi Iwai41b5b012009-01-20 18:21:23 +01002781 continue; /* no substreams assigned */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002782
2783 if (!cpcm->pcm) {
2784 dev = get_empty_pcm_device(codec->bus, cpcm->pcm_type);
2785 if (dev < 0)
2786 return 0;
2787 cpcm->device = dev;
2788 err = snd_hda_attach_pcm(codec, cpcm);
2789 if (err < 0)
2790 return err;
2791 }
2792 }
2793 return 0;
2794}
2795
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796/**
2797 * snd_hda_build_pcms - build PCM information
2798 * @bus: the BUS
2799 *
2800 * Create PCM information for each codec included in the bus.
2801 *
2802 * The build_pcms codec patch is requested to set up codec->num_pcms and
2803 * codec->pcm_info properly. The array is referred by the top-level driver
2804 * to create its PCM instances.
2805 * The allocated codec->pcm_info should be released in codec->patch_ops.free
2806 * callback.
2807 *
2808 * At least, substreams, channels_min and channels_max must be filled for
2809 * each stream. substreams = 0 indicates that the stream doesn't exist.
2810 * When rates and/or formats are zero, the supported values are queried
2811 * from the given nid. The nid is used also by the default ops.prepare
2812 * and ops.cleanup callbacks.
2813 *
2814 * The driver needs to call ops.open in its open callback. Similarly,
2815 * ops.close is supposed to be called in the close callback.
2816 * ops.prepare should be called in the prepare or hw_params callback
2817 * with the proper parameters for set up.
2818 * ops.cleanup should be called in hw_free for clean up of streams.
2819 *
2820 * This function returns 0 if successfull, or a negative error code.
2821 */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002822int __devinit snd_hda_build_pcms(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002824 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
Takashi Iwai0ba21762007-04-16 11:29:14 +02002826 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002827 int err = snd_hda_codec_build_pcms(codec);
2828 if (err < 0)
2829 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 }
2831 return 0;
2832}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002833EXPORT_SYMBOL_HDA(snd_hda_build_pcms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835/**
2836 * snd_hda_check_board_config - compare the current codec with the config table
2837 * @codec: the HDA codec
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002838 * @num_configs: number of config enums
2839 * @models: array of model name strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 * @tbl: configuration table, terminated by null entries
2841 *
2842 * Compares the modelname or PCI subsystem id of the current codec with the
2843 * given configuration table. If a matching entry is found, returns its
2844 * config value (supposed to be 0 or positive).
2845 *
2846 * If no entries are matching, the function returns a negative value.
2847 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002848int snd_hda_check_board_config(struct hda_codec *codec,
2849 int num_configs, const char **models,
2850 const struct snd_pci_quirk *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851{
Takashi Iwaif44ac832008-07-30 15:01:45 +02002852 if (codec->modelname && models) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002853 int i;
2854 for (i = 0; i < num_configs; i++) {
2855 if (models[i] &&
Takashi Iwaif44ac832008-07-30 15:01:45 +02002856 !strcmp(codec->modelname, models[i])) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002857 snd_printd(KERN_INFO "hda_codec: model '%s' is "
2858 "selected\n", models[i]);
2859 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 }
2861 }
2862 }
2863
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002864 if (!codec->bus->pci || !tbl)
2865 return -1;
2866
2867 tbl = snd_pci_quirk_lookup(codec->bus->pci, tbl);
2868 if (!tbl)
2869 return -1;
2870 if (tbl->value >= 0 && tbl->value < num_configs) {
Takashi Iwai62cf8722008-05-20 12:15:15 +02002871#ifdef CONFIG_SND_DEBUG_VERBOSE
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002872 char tmp[10];
2873 const char *model = NULL;
2874 if (models)
2875 model = models[tbl->value];
2876 if (!model) {
2877 sprintf(tmp, "#%d", tbl->value);
2878 model = tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 }
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002880 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
2881 "for config %x:%x (%s)\n",
2882 model, tbl->subvendor, tbl->subdevice,
2883 (tbl->name ? tbl->name : "Unknown device"));
2884#endif
2885 return tbl->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 }
2887 return -1;
2888}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002889EXPORT_SYMBOL_HDA(snd_hda_check_board_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
2891/**
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02002892 * snd_hda_check_board_codec_sid_config - compare the current codec
2893 subsystem ID with the
2894 config table
2895
2896 This is important for Gateway notebooks with SB450 HDA Audio
2897 where the vendor ID of the PCI device is:
2898 ATI Technologies Inc SB450 HDA Audio [1002:437b]
2899 and the vendor/subvendor are found only at the codec.
2900
2901 * @codec: the HDA codec
2902 * @num_configs: number of config enums
2903 * @models: array of model name strings
2904 * @tbl: configuration table, terminated by null entries
2905 *
2906 * Compares the modelname or PCI subsystem id of the current codec with the
2907 * given configuration table. If a matching entry is found, returns its
2908 * config value (supposed to be 0 or positive).
2909 *
2910 * If no entries are matching, the function returns a negative value.
2911 */
2912int snd_hda_check_board_codec_sid_config(struct hda_codec *codec,
2913 int num_configs, const char **models,
2914 const struct snd_pci_quirk *tbl)
2915{
2916 const struct snd_pci_quirk *q;
2917
2918 /* Search for codec ID */
2919 for (q = tbl; q->subvendor; q++) {
2920 unsigned long vendorid = (q->subdevice) | (q->subvendor << 16);
2921
2922 if (vendorid == codec->subsystem_id)
2923 break;
2924 }
2925
2926 if (!q->subvendor)
2927 return -1;
2928
2929 tbl = q;
2930
2931 if (tbl->value >= 0 && tbl->value < num_configs) {
2932#ifdef CONFIG_SND_DEBUG_DETECT
2933 char tmp[10];
2934 const char *model = NULL;
2935 if (models)
2936 model = models[tbl->value];
2937 if (!model) {
2938 sprintf(tmp, "#%d", tbl->value);
2939 model = tmp;
2940 }
2941 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
2942 "for config %x:%x (%s)\n",
2943 model, tbl->subvendor, tbl->subdevice,
2944 (tbl->name ? tbl->name : "Unknown device"));
2945#endif
2946 return tbl->value;
2947 }
2948 return -1;
2949}
2950EXPORT_SYMBOL_HDA(snd_hda_check_board_codec_sid_config);
2951
2952/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 * snd_hda_add_new_ctls - create controls from the array
2954 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002955 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 *
2957 * This helper function creates and add new controls in the given array.
2958 * The array must be terminated with an empty entry as terminator.
2959 *
2960 * Returns 0 if successful, or a negative error code.
2961 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002962int snd_hda_add_new_ctls(struct hda_codec *codec, struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963{
Takashi Iwaicb53c622007-08-10 17:21:45 +02002964 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965
2966 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01002967 struct snd_kcontrol *kctl;
2968 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002969 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01002970 return -ENOMEM;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002971 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai54d17402005-11-21 16:33:22 +01002972 if (err < 0) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002973 if (!codec->addr)
Takashi Iwai54d17402005-11-21 16:33:22 +01002974 return err;
2975 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002976 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01002977 return -ENOMEM;
2978 kctl->id.device = codec->addr;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002979 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002980 if (err < 0)
Takashi Iwai54d17402005-11-21 16:33:22 +01002981 return err;
2982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 }
2984 return 0;
2985}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002986EXPORT_SYMBOL_HDA(snd_hda_add_new_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987
Takashi Iwaicb53c622007-08-10 17:21:45 +02002988#ifdef CONFIG_SND_HDA_POWER_SAVE
2989static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2990 unsigned int power_state);
2991
2992static void hda_power_work(struct work_struct *work)
2993{
2994 struct hda_codec *codec =
2995 container_of(work, struct hda_codec, power_work.work);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002996 struct hda_bus *bus = codec->bus;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002997
Maxim Levitsky2e492462007-09-03 15:26:57 +02002998 if (!codec->power_on || codec->power_count) {
2999 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003000 return;
Maxim Levitsky2e492462007-09-03 15:26:57 +02003001 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02003002
3003 hda_call_codec_suspend(codec);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003004 if (bus->ops.pm_notify)
3005 bus->ops.pm_notify(bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003006}
3007
3008static void hda_keep_power_on(struct hda_codec *codec)
3009{
3010 codec->power_count++;
3011 codec->power_on = 1;
3012}
3013
3014void snd_hda_power_up(struct hda_codec *codec)
3015{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003016 struct hda_bus *bus = codec->bus;
3017
Takashi Iwaicb53c622007-08-10 17:21:45 +02003018 codec->power_count++;
Takashi Iwaia221e282007-08-16 16:35:33 +02003019 if (codec->power_on || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02003020 return;
3021
3022 codec->power_on = 1;
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003023 if (bus->ops.pm_notify)
3024 bus->ops.pm_notify(bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003025 hda_call_codec_resume(codec);
3026 cancel_delayed_work(&codec->power_work);
Takashi Iwaia221e282007-08-16 16:35:33 +02003027 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003028}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003029EXPORT_SYMBOL_HDA(snd_hda_power_up);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003030
3031#define power_save(codec) \
3032 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0)
Takashi Iwaicb53c622007-08-10 17:21:45 +02003033
Takashi Iwaifee2fba2008-11-27 12:43:28 +01003034#define power_save(codec) \
3035 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0)
3036
Takashi Iwaicb53c622007-08-10 17:21:45 +02003037void snd_hda_power_down(struct hda_codec *codec)
3038{
3039 --codec->power_count;
Takashi Iwaia221e282007-08-16 16:35:33 +02003040 if (!codec->power_on || codec->power_count || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02003041 return;
Takashi Iwaifee2fba2008-11-27 12:43:28 +01003042 if (power_save(codec)) {
Takashi Iwaia221e282007-08-16 16:35:33 +02003043 codec->power_transition = 1; /* avoid reentrance */
Takashi Iwaic107b412009-01-13 17:46:37 +01003044 queue_delayed_work(codec->bus->workq, &codec->power_work,
Takashi Iwaifee2fba2008-11-27 12:43:28 +01003045 msecs_to_jiffies(power_save(codec) * 1000));
Takashi Iwaia221e282007-08-16 16:35:33 +02003046 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02003047}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003048EXPORT_SYMBOL_HDA(snd_hda_power_down);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003049
3050int snd_hda_check_amp_list_power(struct hda_codec *codec,
3051 struct hda_loopback_check *check,
3052 hda_nid_t nid)
3053{
3054 struct hda_amp_list *p;
3055 int ch, v;
3056
3057 if (!check->amplist)
3058 return 0;
3059 for (p = check->amplist; p->nid; p++) {
3060 if (p->nid == nid)
3061 break;
3062 }
3063 if (!p->nid)
3064 return 0; /* nothing changed */
3065
3066 for (p = check->amplist; p->nid; p++) {
3067 for (ch = 0; ch < 2; ch++) {
3068 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
3069 p->idx);
3070 if (!(v & HDA_AMP_MUTE) && v > 0) {
3071 if (!check->power_on) {
3072 check->power_on = 1;
3073 snd_hda_power_up(codec);
3074 }
3075 return 1;
3076 }
3077 }
3078 }
3079 if (check->power_on) {
3080 check->power_on = 0;
3081 snd_hda_power_down(codec);
3082 }
3083 return 0;
3084}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003085EXPORT_SYMBOL_HDA(snd_hda_check_amp_list_power);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003086#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003088/*
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003089 * Channel mode helper
3090 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003091int snd_hda_ch_mode_info(struct hda_codec *codec,
3092 struct snd_ctl_elem_info *uinfo,
3093 const struct hda_channel_mode *chmode,
3094 int num_chmodes)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003095{
3096 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3097 uinfo->count = 1;
3098 uinfo->value.enumerated.items = num_chmodes;
3099 if (uinfo->value.enumerated.item >= num_chmodes)
3100 uinfo->value.enumerated.item = num_chmodes - 1;
3101 sprintf(uinfo->value.enumerated.name, "%dch",
3102 chmode[uinfo->value.enumerated.item].channels);
3103 return 0;
3104}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003105EXPORT_SYMBOL_HDA(snd_hda_ch_mode_info);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003106
Takashi Iwai0ba21762007-04-16 11:29:14 +02003107int snd_hda_ch_mode_get(struct hda_codec *codec,
3108 struct snd_ctl_elem_value *ucontrol,
3109 const struct hda_channel_mode *chmode,
3110 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003111 int max_channels)
3112{
3113 int i;
3114
3115 for (i = 0; i < num_chmodes; i++) {
3116 if (max_channels == chmode[i].channels) {
3117 ucontrol->value.enumerated.item[0] = i;
3118 break;
3119 }
3120 }
3121 return 0;
3122}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003123EXPORT_SYMBOL_HDA(snd_hda_ch_mode_get);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003124
Takashi Iwai0ba21762007-04-16 11:29:14 +02003125int snd_hda_ch_mode_put(struct hda_codec *codec,
3126 struct snd_ctl_elem_value *ucontrol,
3127 const struct hda_channel_mode *chmode,
3128 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003129 int *max_channelsp)
3130{
3131 unsigned int mode;
3132
3133 mode = ucontrol->value.enumerated.item[0];
Takashi Iwai68ea7b22007-11-15 15:54:38 +01003134 if (mode >= num_chmodes)
3135 return -EINVAL;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003136 if (*max_channelsp == chmode[mode].channels)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003137 return 0;
3138 /* change the current channel setting */
3139 *max_channelsp = chmode[mode].channels;
3140 if (chmode[mode].sequence)
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003141 snd_hda_sequence_write_cache(codec, chmode[mode].sequence);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003142 return 1;
3143}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003144EXPORT_SYMBOL_HDA(snd_hda_ch_mode_put);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003145
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146/*
3147 * input MUX helper
3148 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003149int snd_hda_input_mux_info(const struct hda_input_mux *imux,
3150 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151{
3152 unsigned int index;
3153
3154 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3155 uinfo->count = 1;
3156 uinfo->value.enumerated.items = imux->num_items;
Takashi Iwai5513b0c2007-10-09 11:58:41 +02003157 if (!imux->num_items)
3158 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 index = uinfo->value.enumerated.item;
3160 if (index >= imux->num_items)
3161 index = imux->num_items - 1;
3162 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
3163 return 0;
3164}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003165EXPORT_SYMBOL_HDA(snd_hda_input_mux_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166
Takashi Iwai0ba21762007-04-16 11:29:14 +02003167int snd_hda_input_mux_put(struct hda_codec *codec,
3168 const struct hda_input_mux *imux,
3169 struct snd_ctl_elem_value *ucontrol,
3170 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 unsigned int *cur_val)
3172{
3173 unsigned int idx;
3174
Takashi Iwai5513b0c2007-10-09 11:58:41 +02003175 if (!imux->num_items)
3176 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 idx = ucontrol->value.enumerated.item[0];
3178 if (idx >= imux->num_items)
3179 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003180 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003182 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
3183 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 *cur_val = idx;
3185 return 1;
3186}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003187EXPORT_SYMBOL_HDA(snd_hda_input_mux_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188
3189
3190/*
3191 * Multi-channel / digital-out PCM helper functions
3192 */
3193
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003194/* setup SPDIF output stream */
3195static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
3196 unsigned int stream_tag, unsigned int format)
3197{
3198 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
Takashi Iwai2f728532008-09-25 16:32:41 +02003199 if (codec->spdif_status_reset && (codec->spdif_ctls & AC_DIG1_ENABLE))
3200 set_dig_out_convert(codec, nid,
3201 codec->spdif_ctls & ~AC_DIG1_ENABLE & 0xff,
3202 -1);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003203 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Takashi Iwai2f728532008-09-25 16:32:41 +02003204 if (codec->slave_dig_outs) {
3205 hda_nid_t *d;
3206 for (d = codec->slave_dig_outs; *d; d++)
3207 snd_hda_codec_setup_stream(codec, *d, stream_tag, 0,
3208 format);
Matthew Ranostayde51ca12008-09-07 14:31:40 -04003209 }
Takashi Iwai2f728532008-09-25 16:32:41 +02003210 /* turn on again (if needed) */
3211 if (codec->spdif_status_reset && (codec->spdif_ctls & AC_DIG1_ENABLE))
3212 set_dig_out_convert(codec, nid,
3213 codec->spdif_ctls & 0xff, -1);
3214}
Matthew Ranostayde51ca12008-09-07 14:31:40 -04003215
Takashi Iwai2f728532008-09-25 16:32:41 +02003216static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid)
3217{
3218 snd_hda_codec_cleanup_stream(codec, nid);
3219 if (codec->slave_dig_outs) {
3220 hda_nid_t *d;
3221 for (d = codec->slave_dig_outs; *d; d++)
3222 snd_hda_codec_cleanup_stream(codec, *d);
3223 }
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003224}
3225
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226/*
3227 * open the digital out in the exclusive mode
3228 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003229int snd_hda_multi_out_dig_open(struct hda_codec *codec,
3230 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231{
Ingo Molnar62932df2006-01-16 16:34:20 +01003232 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02003233 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
3234 /* already opened as analog dup; reset it once */
Takashi Iwai2f728532008-09-25 16:32:41 +02003235 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01003237 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 return 0;
3239}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003240EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003242int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
3243 struct hda_multi_out *mout,
3244 unsigned int stream_tag,
3245 unsigned int format,
3246 struct snd_pcm_substream *substream)
3247{
3248 mutex_lock(&codec->spdif_mutex);
3249 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
3250 mutex_unlock(&codec->spdif_mutex);
3251 return 0;
3252}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003253EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_prepare);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003254
Takashi Iwai9411e212009-02-13 11:32:28 +01003255int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
3256 struct hda_multi_out *mout)
3257{
3258 mutex_lock(&codec->spdif_mutex);
3259 cleanup_dig_out_stream(codec, mout->dig_out_nid);
3260 mutex_unlock(&codec->spdif_mutex);
3261 return 0;
3262}
3263EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_cleanup);
3264
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265/*
3266 * release the digital out
3267 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003268int snd_hda_multi_out_dig_close(struct hda_codec *codec,
3269 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270{
Ingo Molnar62932df2006-01-16 16:34:20 +01003271 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01003273 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274 return 0;
3275}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003276EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
3278/*
3279 * set up more restrictions for analog out
3280 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003281int snd_hda_multi_out_analog_open(struct hda_codec *codec,
3282 struct hda_multi_out *mout,
Takashi Iwai9a081602008-02-12 18:37:26 +01003283 struct snd_pcm_substream *substream,
3284 struct hda_pcm_stream *hinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285{
Takashi Iwai9a081602008-02-12 18:37:26 +01003286 struct snd_pcm_runtime *runtime = substream->runtime;
3287 runtime->hw.channels_max = mout->max_channels;
3288 if (mout->dig_out_nid) {
3289 if (!mout->analog_rates) {
3290 mout->analog_rates = hinfo->rates;
3291 mout->analog_formats = hinfo->formats;
3292 mout->analog_maxbps = hinfo->maxbps;
3293 } else {
3294 runtime->hw.rates = mout->analog_rates;
3295 runtime->hw.formats = mout->analog_formats;
3296 hinfo->maxbps = mout->analog_maxbps;
3297 }
3298 if (!mout->spdif_rates) {
3299 snd_hda_query_supported_pcm(codec, mout->dig_out_nid,
3300 &mout->spdif_rates,
3301 &mout->spdif_formats,
3302 &mout->spdif_maxbps);
3303 }
3304 mutex_lock(&codec->spdif_mutex);
3305 if (mout->share_spdif) {
3306 runtime->hw.rates &= mout->spdif_rates;
3307 runtime->hw.formats &= mout->spdif_formats;
3308 if (mout->spdif_maxbps < hinfo->maxbps)
3309 hinfo->maxbps = mout->spdif_maxbps;
3310 }
Frederik Deweerdteaa99852008-04-14 13:11:44 +02003311 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01003312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 return snd_pcm_hw_constraint_step(substream->runtime, 0,
3314 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
3315}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003316EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317
3318/*
3319 * set up the i/o for analog out
3320 * when the digital out is available, copy the front out to digital out, too.
3321 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003322int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
3323 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 unsigned int stream_tag,
3325 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003326 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327{
3328 hda_nid_t *nids = mout->dac_nids;
3329 int chs = substream->runtime->channels;
3330 int i;
3331
Ingo Molnar62932df2006-01-16 16:34:20 +01003332 mutex_lock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01003333 if (mout->dig_out_nid && mout->share_spdif &&
3334 mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 if (chs == 2 &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02003336 snd_hda_is_supported_format(codec, mout->dig_out_nid,
3337 format) &&
3338 !(codec->spdif_status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003340 setup_dig_out_stream(codec, mout->dig_out_nid,
3341 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 } else {
3343 mout->dig_out_used = 0;
Takashi Iwai2f728532008-09-25 16:32:41 +02003344 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 }
3346 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003347 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348
3349 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003350 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
3351 0, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02003352 if (!mout->no_share_stream &&
3353 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003355 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
3356 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003357 /* extra outputs copied from front */
3358 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
Takashi Iwaid29240c2007-10-26 12:35:56 +02003359 if (!mout->no_share_stream && mout->extra_out_nid[i])
Takashi Iwai82bc9552006-03-21 11:24:42 +01003360 snd_hda_codec_setup_stream(codec,
3361 mout->extra_out_nid[i],
3362 stream_tag, 0, format);
3363
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 /* surrounds */
3365 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02003366 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003367 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3368 i * 2, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02003369 else if (!mout->no_share_stream) /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003370 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3371 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 }
3373 return 0;
3374}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003375EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376
3377/*
3378 * clean up the setting for analog out
3379 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003380int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
3381 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382{
3383 hda_nid_t *nids = mout->dac_nids;
3384 int i;
3385
3386 for (i = 0; i < mout->num_dacs; i++)
Takashi Iwai888afa12008-03-18 09:57:50 +01003387 snd_hda_codec_cleanup_stream(codec, nids[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 if (mout->hp_nid)
Takashi Iwai888afa12008-03-18 09:57:50 +01003389 snd_hda_codec_cleanup_stream(codec, mout->hp_nid);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003390 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
3391 if (mout->extra_out_nid[i])
Takashi Iwai888afa12008-03-18 09:57:50 +01003392 snd_hda_codec_cleanup_stream(codec,
3393 mout->extra_out_nid[i]);
Ingo Molnar62932df2006-01-16 16:34:20 +01003394 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
Takashi Iwai2f728532008-09-25 16:32:41 +02003396 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 mout->dig_out_used = 0;
3398 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003399 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 return 0;
3401}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003402EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003404/*
Wu Fengguang6b345002008-10-07 14:21:41 +08003405 * Helper for automatic pin configuration
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003406 */
Kailang Yangdf694da2005-12-05 19:42:22 +01003407
Takashi Iwai12f288b2007-08-02 15:51:59 +02003408static int is_in_nid_list(hda_nid_t nid, hda_nid_t *list)
Kailang Yangdf694da2005-12-05 19:42:22 +01003409{
3410 for (; *list; list++)
3411 if (*list == nid)
3412 return 1;
3413 return 0;
3414}
3415
Steve Longerbeam81937d32007-05-08 15:33:03 +02003416
3417/*
3418 * Sort an associated group of pins according to their sequence numbers.
3419 */
3420static void sort_pins_by_sequence(hda_nid_t * pins, short * sequences,
3421 int num_pins)
3422{
3423 int i, j;
3424 short seq;
3425 hda_nid_t nid;
3426
3427 for (i = 0; i < num_pins; i++) {
3428 for (j = i + 1; j < num_pins; j++) {
3429 if (sequences[i] > sequences[j]) {
3430 seq = sequences[i];
3431 sequences[i] = sequences[j];
3432 sequences[j] = seq;
3433 nid = pins[i];
3434 pins[i] = pins[j];
3435 pins[j] = nid;
3436 }
3437 }
3438 }
3439}
3440
3441
Takashi Iwai82bc9552006-03-21 11:24:42 +01003442/*
3443 * Parse all pin widgets and store the useful pin nids to cfg
3444 *
3445 * The number of line-outs or any primary output is stored in line_outs,
3446 * and the corresponding output pins are assigned to line_out_pins[],
3447 * in the order of front, rear, CLFE, side, ...
3448 *
3449 * If more extra outputs (speaker and headphone) are found, the pins are
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003450 * assisnged to hp_pins[] and speaker_pins[], respectively. If no line-out jack
Takashi Iwai82bc9552006-03-21 11:24:42 +01003451 * is detected, one of speaker of HP pins is assigned as the primary
3452 * output, i.e. to line_out_pins[0]. So, line_outs is always positive
3453 * if any analog output exists.
3454 *
3455 * The analog input pins are assigned to input_pins array.
3456 * The digital input/output pins are assigned to dig_in_pin and dig_out_pin,
3457 * respectively.
3458 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02003459int snd_hda_parse_pin_def_config(struct hda_codec *codec,
3460 struct auto_pin_cfg *cfg,
3461 hda_nid_t *ignore_nids)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003462{
Takashi Iwai0ef6ce72008-01-22 15:35:37 +01003463 hda_nid_t nid, end_nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02003464 short seq, assoc_line_out, assoc_speaker;
3465 short sequences_line_out[ARRAY_SIZE(cfg->line_out_pins)];
3466 short sequences_speaker[ARRAY_SIZE(cfg->speaker_pins)];
Takashi Iwaif889fa92007-10-31 15:49:32 +01003467 short sequences_hp[ARRAY_SIZE(cfg->hp_pins)];
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003468
3469 memset(cfg, 0, sizeof(*cfg));
3470
Steve Longerbeam81937d32007-05-08 15:33:03 +02003471 memset(sequences_line_out, 0, sizeof(sequences_line_out));
3472 memset(sequences_speaker, 0, sizeof(sequences_speaker));
Takashi Iwaif889fa92007-10-31 15:49:32 +01003473 memset(sequences_hp, 0, sizeof(sequences_hp));
Steve Longerbeam81937d32007-05-08 15:33:03 +02003474 assoc_line_out = assoc_speaker = 0;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003475
Takashi Iwai0ef6ce72008-01-22 15:35:37 +01003476 end_nid = codec->start_nid + codec->num_nodes;
3477 for (nid = codec->start_nid; nid < end_nid; nid++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01003478 unsigned int wid_caps = get_wcaps(codec, nid);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003479 unsigned int wid_type =
3480 (wid_caps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003481 unsigned int def_conf;
3482 short assoc, loc;
3483
3484 /* read all default configuration for pin complex */
3485 if (wid_type != AC_WID_PIN)
3486 continue;
Kailang Yangdf694da2005-12-05 19:42:22 +01003487 /* ignore the given nids (e.g. pc-beep returns error) */
3488 if (ignore_nids && is_in_nid_list(nid, ignore_nids))
3489 continue;
3490
Takashi Iwai0ba21762007-04-16 11:29:14 +02003491 def_conf = snd_hda_codec_read(codec, nid, 0,
3492 AC_VERB_GET_CONFIG_DEFAULT, 0);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003493 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
3494 continue;
3495 loc = get_defcfg_location(def_conf);
3496 switch (get_defcfg_device(def_conf)) {
3497 case AC_JACK_LINE_OUT:
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003498 seq = get_defcfg_sequence(def_conf);
3499 assoc = get_defcfg_association(def_conf);
Matthew Ranostay90da78b2008-01-24 11:48:01 +01003500
3501 if (!(wid_caps & AC_WCAP_STEREO))
3502 if (!cfg->mono_out_pin)
3503 cfg->mono_out_pin = nid;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003504 if (!assoc)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003505 continue;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003506 if (!assoc_line_out)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003507 assoc_line_out = assoc;
3508 else if (assoc_line_out != assoc)
3509 continue;
3510 if (cfg->line_outs >= ARRAY_SIZE(cfg->line_out_pins))
3511 continue;
3512 cfg->line_out_pins[cfg->line_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02003513 sequences_line_out[cfg->line_outs] = seq;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003514 cfg->line_outs++;
3515 break;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003516 case AC_JACK_SPEAKER:
Steve Longerbeam81937d32007-05-08 15:33:03 +02003517 seq = get_defcfg_sequence(def_conf);
3518 assoc = get_defcfg_association(def_conf);
3519 if (! assoc)
3520 continue;
3521 if (! assoc_speaker)
3522 assoc_speaker = assoc;
3523 else if (assoc_speaker != assoc)
3524 continue;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003525 if (cfg->speaker_outs >= ARRAY_SIZE(cfg->speaker_pins))
3526 continue;
3527 cfg->speaker_pins[cfg->speaker_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02003528 sequences_speaker[cfg->speaker_outs] = seq;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003529 cfg->speaker_outs++;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003530 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003531 case AC_JACK_HP_OUT:
Takashi Iwaif889fa92007-10-31 15:49:32 +01003532 seq = get_defcfg_sequence(def_conf);
3533 assoc = get_defcfg_association(def_conf);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003534 if (cfg->hp_outs >= ARRAY_SIZE(cfg->hp_pins))
3535 continue;
3536 cfg->hp_pins[cfg->hp_outs] = nid;
Takashi Iwaif889fa92007-10-31 15:49:32 +01003537 sequences_hp[cfg->hp_outs] = (assoc << 4) | seq;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003538 cfg->hp_outs++;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003539 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02003540 case AC_JACK_MIC_IN: {
3541 int preferred, alt;
3542 if (loc == AC_JACK_LOC_FRONT) {
3543 preferred = AUTO_PIN_FRONT_MIC;
3544 alt = AUTO_PIN_MIC;
3545 } else {
3546 preferred = AUTO_PIN_MIC;
3547 alt = AUTO_PIN_FRONT_MIC;
3548 }
3549 if (!cfg->input_pins[preferred])
3550 cfg->input_pins[preferred] = nid;
3551 else if (!cfg->input_pins[alt])
3552 cfg->input_pins[alt] = nid;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003553 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02003554 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003555 case AC_JACK_LINE_IN:
3556 if (loc == AC_JACK_LOC_FRONT)
3557 cfg->input_pins[AUTO_PIN_FRONT_LINE] = nid;
3558 else
3559 cfg->input_pins[AUTO_PIN_LINE] = nid;
3560 break;
3561 case AC_JACK_CD:
3562 cfg->input_pins[AUTO_PIN_CD] = nid;
3563 break;
3564 case AC_JACK_AUX:
3565 cfg->input_pins[AUTO_PIN_AUX] = nid;
3566 break;
3567 case AC_JACK_SPDIF_OUT:
Takashi Iwai1b52ae72009-01-20 17:17:29 +01003568 case AC_JACK_DIG_OTHER_OUT:
Takashi Iwai0852d7a2009-02-11 11:35:15 +01003569 if (cfg->dig_outs >= ARRAY_SIZE(cfg->dig_out_pins))
3570 continue;
3571 cfg->dig_out_pins[cfg->dig_outs] = nid;
3572 cfg->dig_out_type[cfg->dig_outs] =
3573 (loc == AC_JACK_LOC_HDMI) ?
3574 HDA_PCM_TYPE_HDMI : HDA_PCM_TYPE_SPDIF;
3575 cfg->dig_outs++;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003576 break;
3577 case AC_JACK_SPDIF_IN:
Takashi Iwai1b52ae72009-01-20 17:17:29 +01003578 case AC_JACK_DIG_OTHER_IN:
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003579 cfg->dig_in_pin = nid;
Takashi Iwai2297bd62009-01-20 18:24:13 +01003580 if (loc == AC_JACK_LOC_HDMI)
3581 cfg->dig_in_type = HDA_PCM_TYPE_HDMI;
3582 else
3583 cfg->dig_in_type = HDA_PCM_TYPE_SPDIF;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003584 break;
3585 }
3586 }
3587
Takashi Iwai5832fcf2008-02-12 18:30:12 +01003588 /* FIX-UP:
3589 * If no line-out is defined but multiple HPs are found,
3590 * some of them might be the real line-outs.
3591 */
3592 if (!cfg->line_outs && cfg->hp_outs > 1) {
3593 int i = 0;
3594 while (i < cfg->hp_outs) {
3595 /* The real HPs should have the sequence 0x0f */
3596 if ((sequences_hp[i] & 0x0f) == 0x0f) {
3597 i++;
3598 continue;
3599 }
3600 /* Move it to the line-out table */
3601 cfg->line_out_pins[cfg->line_outs] = cfg->hp_pins[i];
3602 sequences_line_out[cfg->line_outs] = sequences_hp[i];
3603 cfg->line_outs++;
3604 cfg->hp_outs--;
3605 memmove(cfg->hp_pins + i, cfg->hp_pins + i + 1,
3606 sizeof(cfg->hp_pins[0]) * (cfg->hp_outs - i));
3607 memmove(sequences_hp + i - 1, sequences_hp + i,
3608 sizeof(sequences_hp[0]) * (cfg->hp_outs - i));
3609 }
3610 }
3611
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003612 /* sort by sequence */
Steve Longerbeam81937d32007-05-08 15:33:03 +02003613 sort_pins_by_sequence(cfg->line_out_pins, sequences_line_out,
3614 cfg->line_outs);
3615 sort_pins_by_sequence(cfg->speaker_pins, sequences_speaker,
3616 cfg->speaker_outs);
Takashi Iwaif889fa92007-10-31 15:49:32 +01003617 sort_pins_by_sequence(cfg->hp_pins, sequences_hp,
3618 cfg->hp_outs);
Steve Longerbeam81937d32007-05-08 15:33:03 +02003619
Takashi Iwaif889fa92007-10-31 15:49:32 +01003620 /* if we have only one mic, make it AUTO_PIN_MIC */
3621 if (!cfg->input_pins[AUTO_PIN_MIC] &&
3622 cfg->input_pins[AUTO_PIN_FRONT_MIC]) {
3623 cfg->input_pins[AUTO_PIN_MIC] =
3624 cfg->input_pins[AUTO_PIN_FRONT_MIC];
3625 cfg->input_pins[AUTO_PIN_FRONT_MIC] = 0;
3626 }
3627 /* ditto for line-in */
3628 if (!cfg->input_pins[AUTO_PIN_LINE] &&
3629 cfg->input_pins[AUTO_PIN_FRONT_LINE]) {
3630 cfg->input_pins[AUTO_PIN_LINE] =
3631 cfg->input_pins[AUTO_PIN_FRONT_LINE];
3632 cfg->input_pins[AUTO_PIN_FRONT_LINE] = 0;
3633 }
3634
Steve Longerbeam81937d32007-05-08 15:33:03 +02003635 /*
3636 * FIX-UP: if no line-outs are detected, try to use speaker or HP pin
3637 * as a primary output
3638 */
3639 if (!cfg->line_outs) {
3640 if (cfg->speaker_outs) {
3641 cfg->line_outs = cfg->speaker_outs;
3642 memcpy(cfg->line_out_pins, cfg->speaker_pins,
3643 sizeof(cfg->speaker_pins));
3644 cfg->speaker_outs = 0;
3645 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
3646 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
3647 } else if (cfg->hp_outs) {
3648 cfg->line_outs = cfg->hp_outs;
3649 memcpy(cfg->line_out_pins, cfg->hp_pins,
3650 sizeof(cfg->hp_pins));
3651 cfg->hp_outs = 0;
3652 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
3653 cfg->line_out_type = AUTO_PIN_HP_OUT;
3654 }
3655 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003656
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003657 /* Reorder the surround channels
3658 * ALSA sequence is front/surr/clfe/side
3659 * HDA sequence is:
3660 * 4-ch: front/surr => OK as it is
3661 * 6-ch: front/clfe/surr
Takashi Iwai9422db42007-04-20 16:11:43 +02003662 * 8-ch: front/clfe/rear/side|fc
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003663 */
3664 switch (cfg->line_outs) {
3665 case 3:
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003666 case 4:
3667 nid = cfg->line_out_pins[1];
Takashi Iwai9422db42007-04-20 16:11:43 +02003668 cfg->line_out_pins[1] = cfg->line_out_pins[2];
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003669 cfg->line_out_pins[2] = nid;
3670 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003671 }
3672
Takashi Iwai82bc9552006-03-21 11:24:42 +01003673 /*
3674 * debug prints of the parsed results
3675 */
3676 snd_printd("autoconfig: line_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3677 cfg->line_outs, cfg->line_out_pins[0], cfg->line_out_pins[1],
3678 cfg->line_out_pins[2], cfg->line_out_pins[3],
3679 cfg->line_out_pins[4]);
3680 snd_printd(" speaker_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3681 cfg->speaker_outs, cfg->speaker_pins[0],
3682 cfg->speaker_pins[1], cfg->speaker_pins[2],
3683 cfg->speaker_pins[3], cfg->speaker_pins[4]);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003684 snd_printd(" hp_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3685 cfg->hp_outs, cfg->hp_pins[0],
3686 cfg->hp_pins[1], cfg->hp_pins[2],
3687 cfg->hp_pins[3], cfg->hp_pins[4]);
Matthew Ranostay90da78b2008-01-24 11:48:01 +01003688 snd_printd(" mono: mono_out=0x%x\n", cfg->mono_out_pin);
Takashi Iwai0852d7a2009-02-11 11:35:15 +01003689 if (cfg->dig_outs)
3690 snd_printd(" dig-out=0x%x/0x%x\n",
3691 cfg->dig_out_pins[0], cfg->dig_out_pins[1]);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003692 snd_printd(" inputs: mic=0x%x, fmic=0x%x, line=0x%x, fline=0x%x,"
3693 " cd=0x%x, aux=0x%x\n",
3694 cfg->input_pins[AUTO_PIN_MIC],
3695 cfg->input_pins[AUTO_PIN_FRONT_MIC],
3696 cfg->input_pins[AUTO_PIN_LINE],
3697 cfg->input_pins[AUTO_PIN_FRONT_LINE],
3698 cfg->input_pins[AUTO_PIN_CD],
3699 cfg->input_pins[AUTO_PIN_AUX]);
Takashi Iwai32d2c7f2009-02-11 11:33:13 +01003700 if (cfg->dig_in_pin)
Takashi Iwai89ce9e82009-01-20 17:15:57 +01003701 snd_printd(" dig-in=0x%x\n", cfg->dig_in_pin);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003702
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003703 return 0;
3704}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003705EXPORT_SYMBOL_HDA(snd_hda_parse_pin_def_config);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003706
Takashi Iwai4a471b72005-12-07 13:56:29 +01003707/* labels for input pins */
3708const char *auto_pin_cfg_labels[AUTO_PIN_LAST] = {
3709 "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux"
3710};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003711EXPORT_SYMBOL_HDA(auto_pin_cfg_labels);
Takashi Iwai4a471b72005-12-07 13:56:29 +01003712
3713
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714#ifdef CONFIG_PM
3715/*
3716 * power management
3717 */
3718
3719/**
3720 * snd_hda_suspend - suspend the codecs
3721 * @bus: the HDA bus
3722 * @state: suspsend state
3723 *
3724 * Returns 0 if successful.
3725 */
3726int snd_hda_suspend(struct hda_bus *bus, pm_message_t state)
3727{
Takashi Iwai0ba21762007-04-16 11:29:14 +02003728 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729
Takashi Iwai0ba21762007-04-16 11:29:14 +02003730 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai0b7a2e92007-08-14 15:18:26 +02003731#ifdef CONFIG_SND_HDA_POWER_SAVE
3732 if (!codec->power_on)
3733 continue;
3734#endif
Takashi Iwaicb53c622007-08-10 17:21:45 +02003735 hda_call_codec_suspend(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 }
3737 return 0;
3738}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003739EXPORT_SYMBOL_HDA(snd_hda_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740
3741/**
3742 * snd_hda_resume - resume the codecs
3743 * @bus: the HDA bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 *
3745 * Returns 0 if successful.
Takashi Iwaicb53c622007-08-10 17:21:45 +02003746 *
3747 * This fucntion is defined only when POWER_SAVE isn't set.
3748 * In the power-save mode, the codec is resumed dynamically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 */
3750int snd_hda_resume(struct hda_bus *bus)
3751{
Takashi Iwai0ba21762007-04-16 11:29:14 +02003752 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753
Takashi Iwai0ba21762007-04-16 11:29:14 +02003754 list_for_each_entry(codec, &bus->codec_list, list) {
Maxim Levitskyd804ad92007-09-03 15:28:04 +02003755 if (snd_hda_codec_needs_resume(codec))
3756 hda_call_codec_resume(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758 return 0;
3759}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003760EXPORT_SYMBOL_HDA(snd_hda_resume);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003761#endif /* CONFIG_PM */
Takashi Iwaib2e18592008-07-30 15:01:44 +02003762
3763/*
3764 * generic arrays
3765 */
3766
3767/* get a new element from the given array
3768 * if it exceeds the pre-allocated array size, re-allocate the array
3769 */
3770void *snd_array_new(struct snd_array *array)
3771{
3772 if (array->used >= array->alloced) {
3773 int num = array->alloced + array->alloc_align;
Takashi Iwaib910d9a2008-11-07 00:26:52 +01003774 void *nlist;
3775 if (snd_BUG_ON(num >= 4096))
3776 return NULL;
3777 nlist = kcalloc(num + 1, array->elem_size, GFP_KERNEL);
Takashi Iwaib2e18592008-07-30 15:01:44 +02003778 if (!nlist)
3779 return NULL;
3780 if (array->list) {
3781 memcpy(nlist, array->list,
3782 array->elem_size * array->alloced);
3783 kfree(array->list);
3784 }
3785 array->list = nlist;
3786 array->alloced = num;
3787 }
Takashi Iwaif43aa022008-11-10 16:24:26 +01003788 return snd_array_elem(array, array->used++);
Takashi Iwaib2e18592008-07-30 15:01:44 +02003789}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003790EXPORT_SYMBOL_HDA(snd_array_new);
Takashi Iwaib2e18592008-07-30 15:01:44 +02003791
3792/* free the given array elements */
3793void snd_array_free(struct snd_array *array)
3794{
3795 kfree(array->list);
3796 array->used = 0;
3797 array->alloced = 0;
3798 array->list = NULL;
3799}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003800EXPORT_SYMBOL_HDA(snd_array_free);
Takashi Iwaib2022262008-11-21 21:24:03 +01003801
3802/*
3803 * used by hda_proc.c and hda_eld.c
3804 */
3805void snd_print_pcm_rates(int pcm, char *buf, int buflen)
3806{
3807 static unsigned int rates[] = {
3808 8000, 11025, 16000, 22050, 32000, 44100, 48000, 88200,
3809 96000, 176400, 192000, 384000
3810 };
3811 int i, j;
3812
3813 for (i = 0, j = 0; i < ARRAY_SIZE(rates); i++)
3814 if (pcm & (1 << i))
3815 j += snprintf(buf + j, buflen - j, " %d", rates[i]);
3816
3817 buf[j] = '\0'; /* necessary when j == 0 */
3818}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003819EXPORT_SYMBOL_HDA(snd_print_pcm_rates);
Takashi Iwaib2022262008-11-21 21:24:03 +01003820
3821void snd_print_pcm_bits(int pcm, char *buf, int buflen)
3822{
3823 static unsigned int bits[] = { 8, 16, 20, 24, 32 };
3824 int i, j;
3825
3826 for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++)
3827 if (pcm & (AC_SUPPCM_BITS_8 << i))
3828 j += snprintf(buf + j, buflen - j, " %d", bits[i]);
3829
3830 buf[j] = '\0'; /* necessary when j == 0 */
3831}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003832EXPORT_SYMBOL_HDA(snd_print_pcm_bits);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003833
3834MODULE_DESCRIPTION("HDA codec core");
3835MODULE_LICENSE("GPL");