blob: 1be34ed9c0ebbd3b5824d140e8bed76fe093a394 [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;
Takashi Iwai5e7b8e02009-02-23 09:45:59 +0100742 unsigned int oldcfg;
Takashi Iwai3be14142009-02-20 14:11:16 +0100743
Takashi Iwai5e7b8e02009-02-23 09:45:59 +0100744 oldcfg = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwai3be14142009-02-20 14:11:16 +0100745 pin = look_up_pincfg(codec, list, nid);
746 if (!pin) {
747 pin = snd_array_new(list);
748 if (!pin)
749 return -ENOMEM;
750 pin->nid = nid;
751 }
752 pin->cfg = cfg;
Takashi Iwai5e7b8e02009-02-23 09:45:59 +0100753
754 /* change only when needed; e.g. if the pincfg is already present
755 * in user_pins[], don't write it
756 */
757 cfg = snd_hda_codec_get_pincfg(codec, nid);
758 if (oldcfg != cfg)
759 set_pincfg(codec, nid, cfg);
Takashi Iwai3be14142009-02-20 14:11:16 +0100760 return 0;
761}
762
763int snd_hda_codec_set_pincfg(struct hda_codec *codec,
764 hda_nid_t nid, unsigned int cfg)
765{
Takashi Iwai346ff702009-02-23 09:42:57 +0100766 return snd_hda_add_pincfg(codec, &codec->driver_pins, nid, cfg);
Takashi Iwai3be14142009-02-20 14:11:16 +0100767}
768EXPORT_SYMBOL_HDA(snd_hda_codec_set_pincfg);
769
770/* get the current pin config value of the given pin NID */
771unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid)
772{
773 struct hda_pincfg *pin;
774
Takashi Iwai3be14142009-02-20 14:11:16 +0100775#ifdef CONFIG_SND_HDA_HWDEP
Takashi Iwai346ff702009-02-23 09:42:57 +0100776 pin = look_up_pincfg(codec, &codec->user_pins, nid);
Takashi Iwai3be14142009-02-20 14:11:16 +0100777 if (pin)
778 return pin->cfg;
779#endif
Takashi Iwai5e7b8e02009-02-23 09:45:59 +0100780 pin = look_up_pincfg(codec, &codec->driver_pins, nid);
781 if (pin)
782 return pin->cfg;
Takashi Iwai3be14142009-02-20 14:11:16 +0100783 pin = look_up_pincfg(codec, &codec->init_pins, nid);
784 if (pin)
785 return pin->cfg;
786 return 0;
787}
788EXPORT_SYMBOL_HDA(snd_hda_codec_get_pincfg);
789
790/* restore all current pin configs */
791static void restore_pincfgs(struct hda_codec *codec)
792{
793 int i;
794 for (i = 0; i < codec->init_pins.used; i++) {
795 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
796 set_pincfg(codec, pin->nid,
797 snd_hda_codec_get_pincfg(codec, pin->nid));
798 }
799}
Takashi Iwai54d17402005-11-21 16:33:22 +0100800
Takashi Iwai01751f52007-08-10 16:59:39 +0200801static void init_hda_cache(struct hda_cache_rec *cache,
802 unsigned int record_size);
Takashi Iwai1fcaee62007-08-23 00:01:09 +0200803static void free_hda_cache(struct hda_cache_rec *cache);
Takashi Iwai01751f52007-08-10 16:59:39 +0200804
Takashi Iwai3be14142009-02-20 14:11:16 +0100805/* restore the initial pin cfgs and release all pincfg lists */
806static void restore_init_pincfgs(struct hda_codec *codec)
807{
Takashi Iwai346ff702009-02-23 09:42:57 +0100808 /* first free driver_pins and user_pins, then call restore_pincfg
Takashi Iwai3be14142009-02-20 14:11:16 +0100809 * so that only the values in init_pins are restored
810 */
Takashi Iwai346ff702009-02-23 09:42:57 +0100811 snd_array_free(&codec->driver_pins);
Takashi Iwai3be14142009-02-20 14:11:16 +0100812#ifdef CONFIG_SND_HDA_HWDEP
Takashi Iwai346ff702009-02-23 09:42:57 +0100813 snd_array_free(&codec->user_pins);
Takashi Iwai3be14142009-02-20 14:11:16 +0100814#endif
815 restore_pincfgs(codec);
816 snd_array_free(&codec->init_pins);
817}
818
Takashi Iwai54d17402005-11-21 16:33:22 +0100819/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 * codec destructor
821 */
822static void snd_hda_codec_free(struct hda_codec *codec)
823{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200824 if (!codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 return;
Takashi Iwai3be14142009-02-20 14:11:16 +0100826 restore_init_pincfgs(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200827#ifdef CONFIG_SND_HDA_POWER_SAVE
828 cancel_delayed_work(&codec->power_work);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100829 flush_workqueue(codec->bus->workq);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200830#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 list_del(&codec->list);
Takashi Iwaid13bd412008-07-30 15:01:45 +0200832 snd_array_free(&codec->mixers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 codec->bus->caddr_tbl[codec->addr] = NULL;
834 if (codec->patch_ops.free)
835 codec->patch_ops.free(codec);
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100836 module_put(codec->owner);
Takashi Iwai01751f52007-08-10 16:59:39 +0200837 free_hda_cache(&codec->amp_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200838 free_hda_cache(&codec->cmd_cache);
Takashi Iwaif44ac832008-07-30 15:01:45 +0200839 kfree(codec->name);
840 kfree(codec->modelname);
Takashi Iwai54d17402005-11-21 16:33:22 +0100841 kfree(codec->wcaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 kfree(codec);
843}
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845/**
846 * snd_hda_codec_new - create a HDA codec
847 * @bus: the bus to assign
848 * @codec_addr: the codec address
849 * @codecp: the pointer to store the generated codec
850 *
851 * Returns 0 if successful, or a negative error code.
852 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100853int /*__devinit*/ snd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr,
Takashi Iwaid4d9cd032008-12-19 15:19:11 +0100854 int do_init, struct hda_codec **codecp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
856 struct hda_codec *codec;
Jaroslav Kyselaba443682008-08-13 20:55:32 +0200857 char component[31];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 int err;
859
Takashi Iwaida3cec32008-08-08 17:12:14 +0200860 if (snd_BUG_ON(!bus))
861 return -EINVAL;
862 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
863 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 if (bus->caddr_tbl[codec_addr]) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200866 snd_printk(KERN_ERR "hda_codec: "
867 "address 0x%x is already occupied\n", codec_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return -EBUSY;
869 }
870
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200871 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 if (codec == NULL) {
873 snd_printk(KERN_ERR "can't allocate struct hda_codec\n");
874 return -ENOMEM;
875 }
876
877 codec->bus = bus;
878 codec->addr = codec_addr;
Ingo Molnar62932df2006-01-16 16:34:20 +0100879 mutex_init(&codec->spdif_mutex);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +0800880 mutex_init(&codec->control_mutex);
Takashi Iwai01751f52007-08-10 16:59:39 +0200881 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200882 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Takashi Iwaid13bd412008-07-30 15:01:45 +0200883 snd_array_init(&codec->mixers, sizeof(struct snd_kcontrol *), 32);
Takashi Iwai3be14142009-02-20 14:11:16 +0100884 snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwai346ff702009-02-23 09:42:57 +0100885 snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200886 if (codec->bus->modelname) {
887 codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL);
888 if (!codec->modelname) {
889 snd_hda_codec_free(codec);
890 return -ENODEV;
891 }
892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Takashi Iwaicb53c622007-08-10 17:21:45 +0200894#ifdef CONFIG_SND_HDA_POWER_SAVE
895 INIT_DELAYED_WORK(&codec->power_work, hda_power_work);
896 /* snd_hda_codec_new() marks the codec as power-up, and leave it as is.
897 * the caller has to power down appropriatley after initialization
898 * phase.
899 */
900 hda_keep_power_on(codec);
901#endif
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 list_add_tail(&codec->list, &bus->codec_list);
904 bus->caddr_tbl[codec_addr] = codec;
905
Takashi Iwai0ba21762007-04-16 11:29:14 +0200906 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
907 AC_PAR_VENDOR_ID);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100908 if (codec->vendor_id == -1)
909 /* read again, hopefully the access method was corrected
910 * in the last read...
911 */
912 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
913 AC_PAR_VENDOR_ID);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200914 codec->subsystem_id = snd_hda_param_read(codec, AC_NODE_ROOT,
915 AC_PAR_SUBSYSTEM_ID);
916 codec->revision_id = snd_hda_param_read(codec, AC_NODE_ROOT,
917 AC_PAR_REV_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200919 setup_fg_nodes(codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200920 if (!codec->afg && !codec->mfg) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200921 snd_printdd("hda_codec: no AFG or MFG node found\n");
Takashi Iwai3be14142009-02-20 14:11:16 +0100922 err = -ENODEV;
923 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
925
Takashi Iwai3be14142009-02-20 14:11:16 +0100926 err = read_widget_caps(codec, codec->afg ? codec->afg : codec->mfg);
927 if (err < 0) {
Takashi Iwai54d17402005-11-21 16:33:22 +0100928 snd_printk(KERN_ERR "hda_codec: cannot malloc\n");
Takashi Iwai3be14142009-02-20 14:11:16 +0100929 goto error;
Takashi Iwai54d17402005-11-21 16:33:22 +0100930 }
Takashi Iwai3be14142009-02-20 14:11:16 +0100931 err = read_pin_defaults(codec);
932 if (err < 0)
933 goto error;
Takashi Iwai54d17402005-11-21 16:33:22 +0100934
Takashi Iwai0ba21762007-04-16 11:29:14 +0200935 if (!codec->subsystem_id) {
Takashi Iwai86284e42005-10-11 15:05:54 +0200936 hda_nid_t nid = codec->afg ? codec->afg : codec->mfg;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200937 codec->subsystem_id =
938 snd_hda_codec_read(codec, nid, 0,
939 AC_VERB_GET_SUBSYSTEM_ID, 0);
Takashi Iwai86284e42005-10-11 15:05:54 +0200940 }
Takashi Iwaif44ac832008-07-30 15:01:45 +0200941 if (bus->modelname)
942 codec->modelname = kstrdup(bus->modelname, GFP_KERNEL);
Takashi Iwai86284e42005-10-11 15:05:54 +0200943
Takashi Iwaid4d9cd032008-12-19 15:19:11 +0100944 if (do_init) {
945 err = snd_hda_codec_configure(codec);
Takashi Iwai3be14142009-02-20 14:11:16 +0100946 if (err < 0)
947 goto error;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200948 }
949 snd_hda_codec_proc_new(codec);
950
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200951 snd_hda_create_hwdep(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200952
953 sprintf(component, "HDA:%08x,%08x,%08x", codec->vendor_id,
954 codec->subsystem_id, codec->revision_id);
955 snd_component_add(codec->bus->card, component);
956
957 if (codecp)
958 *codecp = codec;
959 return 0;
Takashi Iwai3be14142009-02-20 14:11:16 +0100960
961 error:
962 snd_hda_codec_free(codec);
963 return err;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200964}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100965EXPORT_SYMBOL_HDA(snd_hda_codec_new);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200966
967int snd_hda_codec_configure(struct hda_codec *codec)
968{
969 int err;
970
Takashi Iwaid5ad6302007-03-07 15:55:59 +0100971 codec->preset = find_codec_preset(codec);
Takashi Iwaif44ac832008-07-30 15:01:45 +0200972 if (!codec->name) {
973 err = get_codec_name(codec);
974 if (err < 0)
975 return err;
976 }
Takashi Iwai43ea1d42007-04-26 19:12:08 +0200977 /* audio codec should override the mixer name */
Takashi Iwaif44ac832008-07-30 15:01:45 +0200978 if (codec->afg || !*codec->bus->card->mixername)
979 strlcpy(codec->bus->card->mixername, codec->name,
980 sizeof(codec->bus->card->mixername));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Takashi Iwai82467612007-07-27 19:15:54 +0200982 if (is_generic_config(codec)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 err = snd_hda_parse_generic_codec(codec);
Takashi Iwai82467612007-07-27 19:15:54 +0200984 goto patched;
985 }
Takashi Iwai82467612007-07-27 19:15:54 +0200986 if (codec->preset && codec->preset->patch) {
987 err = codec->preset->patch(codec);
988 goto patched;
989 }
990
991 /* call the default parser */
Takashi Iwai82467612007-07-27 19:15:54 +0200992 err = snd_hda_parse_generic_codec(codec);
Takashi Iwai35a1e0c2007-10-19 08:13:40 +0200993 if (err < 0)
994 printk(KERN_ERR "hda-codec: No codec parser is available\n");
Takashi Iwai82467612007-07-27 19:15:54 +0200995
996 patched:
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200997 if (!err && codec->patch_ops.unsol_event)
998 err = init_unsol_queue(codec->bus);
999 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}
1001
1002/**
1003 * snd_hda_codec_setup_stream - set up the codec for streaming
1004 * @codec: the CODEC to set up
1005 * @nid: the NID to set up
1006 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
1007 * @channel_id: channel id to pass, zero based.
1008 * @format: stream format.
1009 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001010void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
1011 u32 stream_tag,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 int channel_id, int format)
1013{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001014 if (!nid)
Takashi Iwaid21b37e2005-04-20 13:45:55 +02001015 return;
1016
Takashi Iwai0ba21762007-04-16 11:29:14 +02001017 snd_printdd("hda_codec_setup_stream: "
1018 "NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 nid, stream_tag, channel_id, format);
1020 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID,
1021 (stream_tag << 4) | channel_id);
1022 msleep(1);
1023 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, format);
1024}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001025EXPORT_SYMBOL_HDA(snd_hda_codec_setup_stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Takashi Iwai888afa12008-03-18 09:57:50 +01001027void snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid)
1028{
1029 if (!nid)
1030 return;
1031
1032 snd_printdd("hda_codec_cleanup_stream: NID=0x%x\n", nid);
1033 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
1034#if 0 /* keep the format */
1035 msleep(1);
1036 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0);
1037#endif
1038}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001039EXPORT_SYMBOL_HDA(snd_hda_codec_cleanup_stream);
Takashi Iwai888afa12008-03-18 09:57:50 +01001040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041/*
1042 * amp access functions
1043 */
1044
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001045/* FIXME: more better hash key? */
1046#define HDA_HASH_KEY(nid,dir,idx) (u32)((nid) + ((idx) << 16) + ((dir) << 24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047#define INFO_AMP_CAPS (1<<0)
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001048#define INFO_AMP_VOL(ch) (1 << (1 + (ch)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050/* initialize the hash table */
Takashi Iwai1289e9e2008-11-27 15:47:11 +01001051static void /*__devinit*/ init_hda_cache(struct hda_cache_rec *cache,
Takashi Iwai01751f52007-08-10 16:59:39 +02001052 unsigned int record_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
Takashi Iwai01751f52007-08-10 16:59:39 +02001054 memset(cache, 0, sizeof(*cache));
1055 memset(cache->hash, 0xff, sizeof(cache->hash));
Takashi Iwai603c4012008-07-30 15:01:44 +02001056 snd_array_init(&cache->buf, record_size, 64);
Takashi Iwai01751f52007-08-10 16:59:39 +02001057}
1058
Takashi Iwai1fcaee62007-08-23 00:01:09 +02001059static void free_hda_cache(struct hda_cache_rec *cache)
Takashi Iwai01751f52007-08-10 16:59:39 +02001060{
Takashi Iwai603c4012008-07-30 15:01:44 +02001061 snd_array_free(&cache->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062}
1063
1064/* query the hash. allocate an entry if not found. */
Takashi Iwai01751f52007-08-10 16:59:39 +02001065static struct hda_cache_head *get_alloc_hash(struct hda_cache_rec *cache,
1066 u32 key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Takashi Iwai01751f52007-08-10 16:59:39 +02001068 u16 idx = key % (u16)ARRAY_SIZE(cache->hash);
1069 u16 cur = cache->hash[idx];
1070 struct hda_cache_head *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 while (cur != 0xffff) {
Takashi Iwaif43aa022008-11-10 16:24:26 +01001073 info = snd_array_elem(&cache->buf, cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 if (info->key == key)
1075 return info;
1076 cur = info->next;
1077 }
1078
1079 /* add a new hash entry */
Takashi Iwai603c4012008-07-30 15:01:44 +02001080 info = snd_array_new(&cache->buf);
Takashi Iwaic2174292008-11-07 00:23:30 +01001081 if (!info)
1082 return NULL;
Takashi Iwaif43aa022008-11-10 16:24:26 +01001083 cur = snd_array_index(&cache->buf, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 info->key = key;
Takashi Iwai01751f52007-08-10 16:59:39 +02001085 info->val = 0;
1086 info->next = cache->hash[idx];
1087 cache->hash[idx] = cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
1089 return info;
1090}
1091
Takashi Iwai01751f52007-08-10 16:59:39 +02001092/* query and allocate an amp hash entry */
1093static inline struct hda_amp_info *
1094get_alloc_amp_hash(struct hda_codec *codec, u32 key)
1095{
1096 return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key);
1097}
1098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099/*
1100 * query AMP capabilities for the given widget and direction
1101 */
Matthew Ranostay09a99952008-01-24 11:49:21 +01001102u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001104 struct hda_amp_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Takashi Iwai0ba21762007-04-16 11:29:14 +02001106 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, 0));
1107 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 return 0;
Takashi Iwai01751f52007-08-10 16:59:39 +02001109 if (!(info->head.val & INFO_AMP_CAPS)) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001110 if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 nid = codec->afg;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001112 info->amp_caps = snd_hda_param_read(codec, nid,
1113 direction == HDA_OUTPUT ?
1114 AC_PAR_AMP_OUT_CAP :
1115 AC_PAR_AMP_IN_CAP);
Takashi Iwaib75e53f2007-05-10 16:56:09 +02001116 if (info->amp_caps)
Takashi Iwai01751f52007-08-10 16:59:39 +02001117 info->head.val |= INFO_AMP_CAPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
1119 return info->amp_caps;
1120}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001121EXPORT_SYMBOL_HDA(query_amp_caps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Takashi Iwai897cc182007-05-29 19:01:37 +02001123int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
1124 unsigned int caps)
1125{
1126 struct hda_amp_info *info;
1127
1128 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, dir, 0));
1129 if (!info)
1130 return -EINVAL;
1131 info->amp_caps = caps;
Takashi Iwai01751f52007-08-10 16:59:39 +02001132 info->head.val |= INFO_AMP_CAPS;
Takashi Iwai897cc182007-05-29 19:01:37 +02001133 return 0;
1134}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001135EXPORT_SYMBOL_HDA(snd_hda_override_amp_caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137/*
1138 * read the current volume to info
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001139 * if the cache exists, read the cache value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001141static unsigned int get_vol_mute(struct hda_codec *codec,
1142 struct hda_amp_info *info, hda_nid_t nid,
1143 int ch, int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
1145 u32 val, parm;
1146
Takashi Iwai01751f52007-08-10 16:59:39 +02001147 if (info->head.val & INFO_AMP_VOL(ch))
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001148 return info->vol[ch];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
1150 parm = ch ? AC_AMP_GET_RIGHT : AC_AMP_GET_LEFT;
1151 parm |= direction == HDA_OUTPUT ? AC_AMP_GET_OUTPUT : AC_AMP_GET_INPUT;
1152 parm |= index;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001153 val = snd_hda_codec_read(codec, nid, 0,
1154 AC_VERB_GET_AMP_GAIN_MUTE, parm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 info->vol[ch] = val & 0xff;
Takashi Iwai01751f52007-08-10 16:59:39 +02001156 info->head.val |= INFO_AMP_VOL(ch);
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001157 return info->vol[ch];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158}
1159
1160/*
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001161 * write the current volume in info to the h/w and update the cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 */
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001163static void put_vol_mute(struct hda_codec *codec, struct hda_amp_info *info,
Takashi Iwai0ba21762007-04-16 11:29:14 +02001164 hda_nid_t nid, int ch, int direction, int index,
1165 int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166{
1167 u32 parm;
1168
1169 parm = ch ? AC_AMP_SET_RIGHT : AC_AMP_SET_LEFT;
1170 parm |= direction == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT;
1171 parm |= index << AC_AMP_SET_INDEX_SHIFT;
1172 parm |= val;
1173 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, parm);
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001174 info->vol[ch] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175}
1176
1177/*
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001178 * read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 */
Takashi Iwai834be882006-03-01 14:16:17 +01001180int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch,
1181 int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001183 struct hda_amp_info *info;
1184 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, index));
1185 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001187 return get_vol_mute(codec, info, nid, ch, direction, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001189EXPORT_SYMBOL_HDA(snd_hda_codec_amp_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001191/*
1192 * update the AMP value, mask = bit mask to set, val = the value
1193 */
Takashi Iwai834be882006-03-01 14:16:17 +01001194int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch,
1195 int direction, int idx, int mask, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001197 struct hda_amp_info *info;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001198
Takashi Iwai0ba21762007-04-16 11:29:14 +02001199 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, idx));
1200 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001202 val &= mask;
1203 val |= get_vol_mute(codec, info, nid, ch, direction, idx) & ~mask;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001204 if (info->vol[ch] == val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001206 put_vol_mute(codec, info, nid, ch, direction, idx, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 return 1;
1208}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001209EXPORT_SYMBOL_HDA(snd_hda_codec_amp_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Takashi Iwai47fd8302007-08-10 17:11:07 +02001211/*
1212 * update the AMP stereo with the same mask and value
1213 */
1214int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
1215 int direction, int idx, int mask, int val)
1216{
1217 int ch, ret = 0;
1218 for (ch = 0; ch < 2; ch++)
1219 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
1220 idx, mask, val);
1221 return ret;
1222}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001223EXPORT_SYMBOL_HDA(snd_hda_codec_amp_stereo);
Takashi Iwai47fd8302007-08-10 17:11:07 +02001224
Takashi Iwaicb53c622007-08-10 17:21:45 +02001225#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001226/* resume the all amp commands from the cache */
1227void snd_hda_codec_resume_amp(struct hda_codec *codec)
1228{
Takashi Iwai603c4012008-07-30 15:01:44 +02001229 struct hda_amp_info *buffer = codec->amp_cache.buf.list;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001230 int i;
1231
Takashi Iwai603c4012008-07-30 15:01:44 +02001232 for (i = 0; i < codec->amp_cache.buf.used; i++, buffer++) {
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001233 u32 key = buffer->head.key;
1234 hda_nid_t nid;
1235 unsigned int idx, dir, ch;
1236 if (!key)
1237 continue;
1238 nid = key & 0xff;
1239 idx = (key >> 16) & 0xff;
1240 dir = (key >> 24) & 0xff;
1241 for (ch = 0; ch < 2; ch++) {
1242 if (!(buffer->head.val & INFO_AMP_VOL(ch)))
1243 continue;
1244 put_vol_mute(codec, buffer, nid, ch, dir, idx,
1245 buffer->vol[ch]);
1246 }
1247 }
1248}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001249EXPORT_SYMBOL_HDA(snd_hda_codec_resume_amp);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001250#endif /* SND_HDA_NEEDS_RESUME */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252/* volume */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001253int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
1254 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
1256 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1257 u16 nid = get_amp_nid(kcontrol);
1258 u8 chs = get_amp_channels(kcontrol);
1259 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001260 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 u32 caps;
1262
1263 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001264 /* num steps */
1265 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1266 if (!caps) {
1267 printk(KERN_WARNING "hda_codec: "
Takashi Iwai9c8f2ab2008-01-11 16:12:23 +01001268 "num_steps = 0 for NID=0x%x (ctl = %s)\n", nid,
1269 kcontrol->id.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 return -EINVAL;
1271 }
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001272 if (ofs < caps)
1273 caps -= ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1275 uinfo->count = chs == 3 ? 2 : 1;
1276 uinfo->value.integer.min = 0;
1277 uinfo->value.integer.max = caps;
1278 return 0;
1279}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001280EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001282
1283static inline unsigned int
1284read_amp_value(struct hda_codec *codec, hda_nid_t nid,
1285 int ch, int dir, int idx, unsigned int ofs)
1286{
1287 unsigned int val;
1288 val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx);
1289 val &= HDA_AMP_VOLMASK;
1290 if (val >= ofs)
1291 val -= ofs;
1292 else
1293 val = 0;
1294 return val;
1295}
1296
1297static inline int
1298update_amp_value(struct hda_codec *codec, hda_nid_t nid,
1299 int ch, int dir, int idx, unsigned int ofs,
1300 unsigned int val)
1301{
1302 if (val > 0)
1303 val += ofs;
1304 return snd_hda_codec_amp_update(codec, nid, ch, dir, idx,
1305 HDA_AMP_VOLMASK, val);
1306}
1307
Takashi Iwai0ba21762007-04-16 11:29:14 +02001308int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
1309 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310{
1311 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1312 hda_nid_t nid = get_amp_nid(kcontrol);
1313 int chs = get_amp_channels(kcontrol);
1314 int dir = get_amp_direction(kcontrol);
1315 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001316 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 long *valp = ucontrol->value.integer.value;
1318
1319 if (chs & 1)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001320 *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001322 *valp = read_amp_value(codec, nid, 1, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 return 0;
1324}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001325EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Takashi Iwai0ba21762007-04-16 11:29:14 +02001327int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
1328 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329{
1330 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1331 hda_nid_t nid = get_amp_nid(kcontrol);
1332 int chs = get_amp_channels(kcontrol);
1333 int dir = get_amp_direction(kcontrol);
1334 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001335 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 long *valp = ucontrol->value.integer.value;
1337 int change = 0;
1338
Takashi Iwaicb53c622007-08-10 17:21:45 +02001339 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001340 if (chs & 1) {
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001341 change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001342 valp++;
1343 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001344 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001345 change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001346 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 return change;
1348}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001349EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001351int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1352 unsigned int size, unsigned int __user *_tlv)
1353{
1354 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1355 hda_nid_t nid = get_amp_nid(kcontrol);
1356 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001357 unsigned int ofs = get_amp_offset(kcontrol);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001358 u32 caps, val1, val2;
1359
1360 if (size < 4 * sizeof(unsigned int))
1361 return -ENOMEM;
1362 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001363 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1364 val2 = (val2 + 1) * 25;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001365 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001366 val1 += ofs;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001367 val1 = ((int)val1) * ((int)val2);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001368 if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv))
1369 return -EFAULT;
1370 if (put_user(2 * sizeof(unsigned int), _tlv + 1))
1371 return -EFAULT;
1372 if (put_user(val1, _tlv + 2))
1373 return -EFAULT;
1374 if (put_user(val2, _tlv + 3))
1375 return -EFAULT;
1376 return 0;
1377}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001378EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_tlv);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001379
Takashi Iwai2134ea42008-01-10 16:53:55 +01001380/*
1381 * set (static) TLV for virtual master volume; recalculated as max 0dB
1382 */
1383void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
1384 unsigned int *tlv)
1385{
1386 u32 caps;
1387 int nums, step;
1388
1389 caps = query_amp_caps(codec, nid, dir);
1390 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1391 step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1392 step = (step + 1) * 25;
1393 tlv[0] = SNDRV_CTL_TLVT_DB_SCALE;
1394 tlv[1] = 2 * sizeof(unsigned int);
1395 tlv[2] = -nums * step;
1396 tlv[3] = step;
1397}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001398EXPORT_SYMBOL_HDA(snd_hda_set_vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001399
1400/* find a mixer control element with the given name */
Takashi Iwai09f99702008-02-04 12:31:13 +01001401static struct snd_kcontrol *
1402_snd_hda_find_mixer_ctl(struct hda_codec *codec,
1403 const char *name, int idx)
Takashi Iwai2134ea42008-01-10 16:53:55 +01001404{
1405 struct snd_ctl_elem_id id;
1406 memset(&id, 0, sizeof(id));
1407 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Takashi Iwai09f99702008-02-04 12:31:13 +01001408 id.index = idx;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001409 strcpy(id.name, name);
1410 return snd_ctl_find_id(codec->bus->card, &id);
1411}
1412
Takashi Iwai09f99702008-02-04 12:31:13 +01001413struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
1414 const char *name)
1415{
1416 return _snd_hda_find_mixer_ctl(codec, name, 0);
1417}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001418EXPORT_SYMBOL_HDA(snd_hda_find_mixer_ctl);
Takashi Iwai09f99702008-02-04 12:31:13 +01001419
Takashi Iwaid13bd412008-07-30 15:01:45 +02001420/* Add a control element and assign to the codec */
1421int snd_hda_ctl_add(struct hda_codec *codec, struct snd_kcontrol *kctl)
1422{
1423 int err;
1424 struct snd_kcontrol **knewp;
1425
1426 err = snd_ctl_add(codec->bus->card, kctl);
1427 if (err < 0)
1428 return err;
1429 knewp = snd_array_new(&codec->mixers);
1430 if (!knewp)
1431 return -ENOMEM;
1432 *knewp = kctl;
1433 return 0;
1434}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001435EXPORT_SYMBOL_HDA(snd_hda_ctl_add);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001436
1437/* Clear all controls assigned to the given codec */
1438void snd_hda_ctls_clear(struct hda_codec *codec)
1439{
1440 int i;
1441 struct snd_kcontrol **kctls = codec->mixers.list;
1442 for (i = 0; i < codec->mixers.used; i++)
1443 snd_ctl_remove(codec->bus->card, kctls[i]);
1444 snd_array_free(&codec->mixers);
1445}
1446
Takashi Iwaia65d6292009-02-23 16:57:04 +01001447/* pseudo device locking
1448 * toggle card->shutdown to allow/disallow the device access (as a hack)
1449 */
1450static int hda_lock_devices(struct snd_card *card)
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001451{
Takashi Iwaia65d6292009-02-23 16:57:04 +01001452 spin_lock(&card->files_lock);
1453 if (card->shutdown) {
1454 spin_unlock(&card->files_lock);
1455 return -EINVAL;
1456 }
1457 card->shutdown = 1;
1458 spin_unlock(&card->files_lock);
1459 return 0;
1460}
1461
1462static void hda_unlock_devices(struct snd_card *card)
1463{
1464 spin_lock(&card->files_lock);
1465 card->shutdown = 0;
1466 spin_unlock(&card->files_lock);
1467}
1468
1469int snd_hda_codec_reset(struct hda_codec *codec)
1470{
1471 struct snd_card *card = codec->bus->card;
1472 int i, pcm;
1473
1474 if (hda_lock_devices(card) < 0)
1475 return -EBUSY;
1476 /* check whether the codec isn't used by any mixer or PCM streams */
1477 if (!list_empty(&card->ctl_files)) {
1478 hda_unlock_devices(card);
1479 return -EBUSY;
1480 }
1481 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
1482 struct hda_pcm *cpcm = &codec->pcm_info[pcm];
1483 if (!cpcm->pcm)
1484 continue;
1485 if (cpcm->pcm->streams[0].substream_opened ||
1486 cpcm->pcm->streams[1].substream_opened) {
1487 hda_unlock_devices(card);
1488 return -EBUSY;
1489 }
1490 }
1491
1492 /* OK, let it free */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001493
1494#ifdef CONFIG_SND_HDA_POWER_SAVE
1495 cancel_delayed_work(&codec->power_work);
Takashi Iwai6acaed32009-01-12 10:09:24 +01001496 flush_workqueue(codec->bus->workq);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001497#endif
1498 snd_hda_ctls_clear(codec);
1499 /* relase PCMs */
1500 for (i = 0; i < codec->num_pcms; i++) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001501 if (codec->pcm_info[i].pcm) {
Takashi Iwaia65d6292009-02-23 16:57:04 +01001502 snd_device_free(card, codec->pcm_info[i].pcm);
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001503 clear_bit(codec->pcm_info[i].device,
1504 codec->bus->pcm_dev_bits);
1505 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001506 }
1507 if (codec->patch_ops.free)
1508 codec->patch_ops.free(codec);
Takashi Iwai56d17712008-11-28 14:36:23 +01001509 codec->proc_widget_hook = NULL;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001510 codec->spec = NULL;
1511 free_hda_cache(&codec->amp_cache);
1512 free_hda_cache(&codec->cmd_cache);
Takashi Iwai827057f2008-12-19 10:12:02 +01001513 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
1514 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Takashi Iwai346ff702009-02-23 09:42:57 +01001515 /* free only driver_pins so that init_pins + user_pins are restored */
1516 snd_array_free(&codec->driver_pins);
Takashi Iwai3be14142009-02-20 14:11:16 +01001517 restore_pincfgs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001518 codec->num_pcms = 0;
1519 codec->pcm_info = NULL;
1520 codec->preset = NULL;
Takashi Iwaid1f1af22009-03-02 10:35:29 +01001521 memset(&codec->patch_ops, 0, sizeof(codec->patch_ops));
1522 codec->slave_dig_outs = NULL;
1523 codec->spdif_status_reset = 0;
Takashi Iwai1289e9e2008-11-27 15:47:11 +01001524 module_put(codec->owner);
1525 codec->owner = NULL;
Takashi Iwaia65d6292009-02-23 16:57:04 +01001526
1527 /* allow device access again */
1528 hda_unlock_devices(card);
1529 return 0;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001530}
1531
Takashi Iwai2134ea42008-01-10 16:53:55 +01001532/* create a virtual master control and add slaves */
1533int snd_hda_add_vmaster(struct hda_codec *codec, char *name,
1534 unsigned int *tlv, const char **slaves)
1535{
1536 struct snd_kcontrol *kctl;
1537 const char **s;
1538 int err;
1539
Takashi Iwai2f085542008-02-22 18:43:50 +01001540 for (s = slaves; *s && !snd_hda_find_mixer_ctl(codec, *s); s++)
1541 ;
1542 if (!*s) {
1543 snd_printdd("No slave found for %s\n", name);
1544 return 0;
1545 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001546 kctl = snd_ctl_make_virtual_master(name, tlv);
1547 if (!kctl)
1548 return -ENOMEM;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001549 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001550 if (err < 0)
1551 return err;
1552
1553 for (s = slaves; *s; s++) {
1554 struct snd_kcontrol *sctl;
1555
1556 sctl = snd_hda_find_mixer_ctl(codec, *s);
1557 if (!sctl) {
1558 snd_printdd("Cannot find slave %s, skipped\n", *s);
1559 continue;
1560 }
1561 err = snd_ctl_add_slave(kctl, sctl);
1562 if (err < 0)
1563 return err;
1564 }
1565 return 0;
1566}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001567EXPORT_SYMBOL_HDA(snd_hda_add_vmaster);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569/* switch */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001570int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
1571 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
1573 int chs = get_amp_channels(kcontrol);
1574
1575 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1576 uinfo->count = chs == 3 ? 2 : 1;
1577 uinfo->value.integer.min = 0;
1578 uinfo->value.integer.max = 1;
1579 return 0;
1580}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001581EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
Takashi Iwai0ba21762007-04-16 11:29:14 +02001583int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
1584 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585{
1586 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1587 hda_nid_t nid = get_amp_nid(kcontrol);
1588 int chs = get_amp_channels(kcontrol);
1589 int dir = get_amp_direction(kcontrol);
1590 int idx = get_amp_index(kcontrol);
1591 long *valp = ucontrol->value.integer.value;
1592
1593 if (chs & 1)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001594 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02001595 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 if (chs & 2)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001597 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02001598 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 return 0;
1600}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001601EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Takashi Iwai0ba21762007-04-16 11:29:14 +02001603int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
1604 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
1606 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1607 hda_nid_t nid = get_amp_nid(kcontrol);
1608 int chs = get_amp_channels(kcontrol);
1609 int dir = get_amp_direction(kcontrol);
1610 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 long *valp = ucontrol->value.integer.value;
1612 int change = 0;
1613
Takashi Iwaicb53c622007-08-10 17:21:45 +02001614 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001615 if (chs & 1) {
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001616 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001617 HDA_AMP_MUTE,
1618 *valp ? 0 : HDA_AMP_MUTE);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001619 valp++;
1620 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001621 if (chs & 2)
1622 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001623 HDA_AMP_MUTE,
1624 *valp ? 0 : HDA_AMP_MUTE);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001625#ifdef CONFIG_SND_HDA_POWER_SAVE
1626 if (codec->patch_ops.check_power_status)
1627 codec->patch_ops.check_power_status(codec, nid);
1628#endif
1629 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 return change;
1631}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001632EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634/*
Takashi Iwai985be542005-11-02 18:26:49 +01001635 * bound volume controls
1636 *
1637 * bind multiple volumes (# indices, from 0)
1638 */
1639
1640#define AMP_VAL_IDX_SHIFT 19
1641#define AMP_VAL_IDX_MASK (0x0f<<19)
1642
Takashi Iwai0ba21762007-04-16 11:29:14 +02001643int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol,
1644 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01001645{
1646 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1647 unsigned long pval;
1648 int err;
1649
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001650 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001651 pval = kcontrol->private_value;
1652 kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */
1653 err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
1654 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001655 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001656 return err;
1657}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001658EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_get);
Takashi Iwai985be542005-11-02 18:26:49 +01001659
Takashi Iwai0ba21762007-04-16 11:29:14 +02001660int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol,
1661 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01001662{
1663 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1664 unsigned long pval;
1665 int i, indices, err = 0, change = 0;
1666
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001667 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001668 pval = kcontrol->private_value;
1669 indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT;
1670 for (i = 0; i < indices; i++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001671 kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) |
1672 (i << AMP_VAL_IDX_SHIFT);
Takashi Iwai985be542005-11-02 18:26:49 +01001673 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
1674 if (err < 0)
1675 break;
1676 change |= err;
1677 }
1678 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001679 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001680 return err < 0 ? err : change;
1681}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001682EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_put);
Takashi Iwai985be542005-11-02 18:26:49 +01001683
1684/*
Takashi Iwai532d5382007-07-27 19:02:40 +02001685 * generic bound volume/swtich controls
1686 */
1687int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol,
1688 struct snd_ctl_elem_info *uinfo)
1689{
1690 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1691 struct hda_bind_ctls *c;
1692 int err;
1693
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001694 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001695 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001696 kcontrol->private_value = *c->values;
1697 err = c->ops->info(kcontrol, uinfo);
1698 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001699 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001700 return err;
1701}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001702EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_info);
Takashi Iwai532d5382007-07-27 19:02:40 +02001703
1704int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol,
1705 struct snd_ctl_elem_value *ucontrol)
1706{
1707 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1708 struct hda_bind_ctls *c;
1709 int err;
1710
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001711 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001712 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001713 kcontrol->private_value = *c->values;
1714 err = c->ops->get(kcontrol, ucontrol);
1715 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001716 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001717 return err;
1718}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001719EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_get);
Takashi Iwai532d5382007-07-27 19:02:40 +02001720
1721int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol,
1722 struct snd_ctl_elem_value *ucontrol)
1723{
1724 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1725 struct hda_bind_ctls *c;
1726 unsigned long *vals;
1727 int err = 0, change = 0;
1728
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001729 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001730 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001731 for (vals = c->values; *vals; vals++) {
1732 kcontrol->private_value = *vals;
1733 err = c->ops->put(kcontrol, ucontrol);
1734 if (err < 0)
1735 break;
1736 change |= err;
1737 }
1738 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001739 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001740 return err < 0 ? err : change;
1741}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001742EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_put);
Takashi Iwai532d5382007-07-27 19:02:40 +02001743
1744int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1745 unsigned int size, unsigned int __user *tlv)
1746{
1747 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1748 struct hda_bind_ctls *c;
1749 int err;
1750
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001751 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001752 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001753 kcontrol->private_value = *c->values;
1754 err = c->ops->tlv(kcontrol, op_flag, size, tlv);
1755 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001756 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001757 return err;
1758}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001759EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_tlv);
Takashi Iwai532d5382007-07-27 19:02:40 +02001760
1761struct hda_ctl_ops snd_hda_bind_vol = {
1762 .info = snd_hda_mixer_amp_volume_info,
1763 .get = snd_hda_mixer_amp_volume_get,
1764 .put = snd_hda_mixer_amp_volume_put,
1765 .tlv = snd_hda_mixer_amp_tlv
1766};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001767EXPORT_SYMBOL_HDA(snd_hda_bind_vol);
Takashi Iwai532d5382007-07-27 19:02:40 +02001768
1769struct hda_ctl_ops snd_hda_bind_sw = {
1770 .info = snd_hda_mixer_amp_switch_info,
1771 .get = snd_hda_mixer_amp_switch_get,
1772 .put = snd_hda_mixer_amp_switch_put,
1773 .tlv = snd_hda_mixer_amp_tlv
1774};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001775EXPORT_SYMBOL_HDA(snd_hda_bind_sw);
Takashi Iwai532d5382007-07-27 19:02:40 +02001776
1777/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 * SPDIF out controls
1779 */
1780
Takashi Iwai0ba21762007-04-16 11:29:14 +02001781static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
1782 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783{
1784 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1785 uinfo->count = 1;
1786 return 0;
1787}
1788
Takashi Iwai0ba21762007-04-16 11:29:14 +02001789static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
1790 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791{
1792 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1793 IEC958_AES0_NONAUDIO |
1794 IEC958_AES0_CON_EMPHASIS_5015 |
1795 IEC958_AES0_CON_NOT_COPYRIGHT;
1796 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
1797 IEC958_AES1_CON_ORIGINAL;
1798 return 0;
1799}
1800
Takashi Iwai0ba21762007-04-16 11:29:14 +02001801static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
1802 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803{
1804 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1805 IEC958_AES0_NONAUDIO |
1806 IEC958_AES0_PRO_EMPHASIS_5015;
1807 return 0;
1808}
1809
Takashi Iwai0ba21762007-04-16 11:29:14 +02001810static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
1811 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
1813 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1814
1815 ucontrol->value.iec958.status[0] = codec->spdif_status & 0xff;
1816 ucontrol->value.iec958.status[1] = (codec->spdif_status >> 8) & 0xff;
1817 ucontrol->value.iec958.status[2] = (codec->spdif_status >> 16) & 0xff;
1818 ucontrol->value.iec958.status[3] = (codec->spdif_status >> 24) & 0xff;
1819
1820 return 0;
1821}
1822
1823/* convert from SPDIF status bits to HDA SPDIF bits
1824 * bit 0 (DigEn) is always set zero (to be filled later)
1825 */
1826static unsigned short convert_from_spdif_status(unsigned int sbits)
1827{
1828 unsigned short val = 0;
1829
1830 if (sbits & IEC958_AES0_PROFESSIONAL)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001831 val |= AC_DIG1_PROFESSIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 if (sbits & IEC958_AES0_NONAUDIO)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001833 val |= AC_DIG1_NONAUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001835 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
1836 IEC958_AES0_PRO_EMPHASIS_5015)
1837 val |= AC_DIG1_EMPHASIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001839 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
1840 IEC958_AES0_CON_EMPHASIS_5015)
1841 val |= AC_DIG1_EMPHASIS;
1842 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
1843 val |= AC_DIG1_COPYRIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
Takashi Iwai0ba21762007-04-16 11:29:14 +02001845 val |= AC_DIG1_LEVEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
1847 }
1848 return val;
1849}
1850
1851/* convert to SPDIF status bits from HDA SPDIF bits
1852 */
1853static unsigned int convert_to_spdif_status(unsigned short val)
1854{
1855 unsigned int sbits = 0;
1856
Takashi Iwai0ba21762007-04-16 11:29:14 +02001857 if (val & AC_DIG1_NONAUDIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 sbits |= IEC958_AES0_NONAUDIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001859 if (val & AC_DIG1_PROFESSIONAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 sbits |= IEC958_AES0_PROFESSIONAL;
1861 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001862 if (sbits & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
1864 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001865 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001867 if (!(val & AC_DIG1_COPYRIGHT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001869 if (val & AC_DIG1_LEVEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
1871 sbits |= val & (0x7f << 8);
1872 }
1873 return sbits;
1874}
1875
Takashi Iwai2f728532008-09-25 16:32:41 +02001876/* set digital convert verbs both for the given NID and its slaves */
1877static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
1878 int verb, int val)
1879{
1880 hda_nid_t *d;
1881
Takashi Iwai9e976972008-11-25 08:17:20 +01001882 snd_hda_codec_write_cache(codec, nid, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02001883 d = codec->slave_dig_outs;
1884 if (!d)
1885 return;
1886 for (; *d; d++)
Takashi Iwai9e976972008-11-25 08:17:20 +01001887 snd_hda_codec_write_cache(codec, *d, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02001888}
1889
1890static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,
1891 int dig1, int dig2)
1892{
1893 if (dig1 != -1)
1894 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_1, dig1);
1895 if (dig2 != -1)
1896 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_2, dig2);
1897}
1898
Takashi Iwai0ba21762007-04-16 11:29:14 +02001899static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
1900 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901{
1902 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1903 hda_nid_t nid = kcontrol->private_value;
1904 unsigned short val;
1905 int change;
1906
Ingo Molnar62932df2006-01-16 16:34:20 +01001907 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 codec->spdif_status = ucontrol->value.iec958.status[0] |
1909 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
1910 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
1911 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
1912 val = convert_from_spdif_status(codec->spdif_status);
1913 val |= codec->spdif_ctls & 1;
1914 change = codec->spdif_ctls != val;
1915 codec->spdif_ctls = val;
1916
Takashi Iwai2f728532008-09-25 16:32:41 +02001917 if (change)
1918 set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Ingo Molnar62932df2006-01-16 16:34:20 +01001920 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 return change;
1922}
1923
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001924#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
Takashi Iwai0ba21762007-04-16 11:29:14 +02001926static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
1927 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928{
1929 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1930
Takashi Iwai0ba21762007-04-16 11:29:14 +02001931 ucontrol->value.integer.value[0] = codec->spdif_ctls & AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 return 0;
1933}
1934
Takashi Iwai0ba21762007-04-16 11:29:14 +02001935static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
1936 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937{
1938 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1939 hda_nid_t nid = kcontrol->private_value;
1940 unsigned short val;
1941 int change;
1942
Ingo Molnar62932df2006-01-16 16:34:20 +01001943 mutex_lock(&codec->spdif_mutex);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001944 val = codec->spdif_ctls & ~AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 if (ucontrol->value.integer.value[0])
Takashi Iwai0ba21762007-04-16 11:29:14 +02001946 val |= AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 change = codec->spdif_ctls != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001948 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 codec->spdif_ctls = val;
Takashi Iwai2f728532008-09-25 16:32:41 +02001950 set_dig_out_convert(codec, nid, val & 0xff, -1);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001951 /* unmute amp switch (if any) */
1952 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
Takashi Iwai47fd8302007-08-10 17:11:07 +02001953 (val & AC_DIG1_ENABLE))
1954 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
1955 HDA_AMP_MUTE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001957 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 return change;
1959}
1960
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001961static struct snd_kcontrol_new dig_mixes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 {
1963 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1964 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1965 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK),
1966 .info = snd_hda_spdif_mask_info,
1967 .get = snd_hda_spdif_cmask_get,
1968 },
1969 {
1970 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1971 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1972 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PRO_MASK),
1973 .info = snd_hda_spdif_mask_info,
1974 .get = snd_hda_spdif_pmask_get,
1975 },
1976 {
1977 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1978 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
1979 .info = snd_hda_spdif_mask_info,
1980 .get = snd_hda_spdif_default_get,
1981 .put = snd_hda_spdif_default_put,
1982 },
1983 {
1984 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1985 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH),
1986 .info = snd_hda_spdif_out_switch_info,
1987 .get = snd_hda_spdif_out_switch_get,
1988 .put = snd_hda_spdif_out_switch_put,
1989 },
1990 { } /* end */
1991};
1992
Takashi Iwai09f99702008-02-04 12:31:13 +01001993#define SPDIF_MAX_IDX 4 /* 4 instances should be enough to probe */
1994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995/**
1996 * snd_hda_create_spdif_out_ctls - create Output SPDIF-related controls
1997 * @codec: the HDA codec
1998 * @nid: audio out widget NID
1999 *
2000 * Creates controls related with the SPDIF output.
2001 * Called from each patch supporting the SPDIF out.
2002 *
2003 * Returns 0 if successful, or a negative error code.
2004 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002005int snd_hda_create_spdif_out_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006{
2007 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002008 struct snd_kcontrol *kctl;
2009 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01002010 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011
Takashi Iwai09f99702008-02-04 12:31:13 +01002012 for (idx = 0; idx < SPDIF_MAX_IDX; idx++) {
2013 if (!_snd_hda_find_mixer_ctl(codec, "IEC958 Playback Switch",
2014 idx))
2015 break;
2016 }
2017 if (idx >= SPDIF_MAX_IDX) {
2018 printk(KERN_ERR "hda_codec: too many IEC958 outputs\n");
2019 return -EBUSY;
2020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
2022 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaib91f0802008-11-04 08:43:08 +01002023 if (!kctl)
2024 return -ENOMEM;
Takashi Iwai09f99702008-02-04 12:31:13 +01002025 kctl->id.index = idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 kctl->private_value = nid;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002027 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002028 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 return err;
2030 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002031 codec->spdif_ctls =
Andrew Paprocki3982d172007-12-19 12:13:44 +01002032 snd_hda_codec_read(codec, nid, 0,
2033 AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 codec->spdif_status = convert_to_spdif_status(codec->spdif_ctls);
2035 return 0;
2036}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002037EXPORT_SYMBOL_HDA(snd_hda_create_spdif_out_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
2039/*
Takashi Iwai9a081602008-02-12 18:37:26 +01002040 * SPDIF sharing with analog output
2041 */
2042static int spdif_share_sw_get(struct snd_kcontrol *kcontrol,
2043 struct snd_ctl_elem_value *ucontrol)
2044{
2045 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2046 ucontrol->value.integer.value[0] = mout->share_spdif;
2047 return 0;
2048}
2049
2050static int spdif_share_sw_put(struct snd_kcontrol *kcontrol,
2051 struct snd_ctl_elem_value *ucontrol)
2052{
2053 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2054 mout->share_spdif = !!ucontrol->value.integer.value[0];
2055 return 0;
2056}
2057
2058static struct snd_kcontrol_new spdif_share_sw = {
2059 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2060 .name = "IEC958 Default PCM Playback Switch",
2061 .info = snd_ctl_boolean_mono_info,
2062 .get = spdif_share_sw_get,
2063 .put = spdif_share_sw_put,
2064};
2065
2066int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
2067 struct hda_multi_out *mout)
2068{
2069 if (!mout->dig_out_nid)
2070 return 0;
2071 /* ATTENTION: here mout is passed as private_data, instead of codec */
Takashi Iwaid13bd412008-07-30 15:01:45 +02002072 return snd_hda_ctl_add(codec,
Takashi Iwai9a081602008-02-12 18:37:26 +01002073 snd_ctl_new1(&spdif_share_sw, mout));
2074}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002075EXPORT_SYMBOL_HDA(snd_hda_create_spdif_share_sw);
Takashi Iwai9a081602008-02-12 18:37:26 +01002076
2077/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 * SPDIF input
2079 */
2080
2081#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
2082
Takashi Iwai0ba21762007-04-16 11:29:14 +02002083static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
2084 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085{
2086 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2087
2088 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
2089 return 0;
2090}
2091
Takashi Iwai0ba21762007-04-16 11:29:14 +02002092static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
2093 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094{
2095 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2096 hda_nid_t nid = kcontrol->private_value;
2097 unsigned int val = !!ucontrol->value.integer.value[0];
2098 int change;
2099
Ingo Molnar62932df2006-01-16 16:34:20 +01002100 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002102 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 codec->spdif_in_enable = val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002104 snd_hda_codec_write_cache(codec, nid, 0,
2105 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 }
Ingo Molnar62932df2006-01-16 16:34:20 +01002107 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 return change;
2109}
2110
Takashi Iwai0ba21762007-04-16 11:29:14 +02002111static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
2112 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113{
2114 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2115 hda_nid_t nid = kcontrol->private_value;
2116 unsigned short val;
2117 unsigned int sbits;
2118
Andrew Paprocki3982d172007-12-19 12:13:44 +01002119 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 sbits = convert_to_spdif_status(val);
2121 ucontrol->value.iec958.status[0] = sbits;
2122 ucontrol->value.iec958.status[1] = sbits >> 8;
2123 ucontrol->value.iec958.status[2] = sbits >> 16;
2124 ucontrol->value.iec958.status[3] = sbits >> 24;
2125 return 0;
2126}
2127
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002128static struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 {
2130 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2131 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH),
2132 .info = snd_hda_spdif_in_switch_info,
2133 .get = snd_hda_spdif_in_switch_get,
2134 .put = snd_hda_spdif_in_switch_put,
2135 },
2136 {
2137 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2138 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2139 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,DEFAULT),
2140 .info = snd_hda_spdif_mask_info,
2141 .get = snd_hda_spdif_in_status_get,
2142 },
2143 { } /* end */
2144};
2145
2146/**
2147 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
2148 * @codec: the HDA codec
2149 * @nid: audio in widget NID
2150 *
2151 * Creates controls related with the SPDIF input.
2152 * Called from each patch supporting the SPDIF in.
2153 *
2154 * Returns 0 if successful, or a negative error code.
2155 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002156int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157{
2158 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002159 struct snd_kcontrol *kctl;
2160 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01002161 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162
Takashi Iwai09f99702008-02-04 12:31:13 +01002163 for (idx = 0; idx < SPDIF_MAX_IDX; idx++) {
2164 if (!_snd_hda_find_mixer_ctl(codec, "IEC958 Capture Switch",
2165 idx))
2166 break;
2167 }
2168 if (idx >= SPDIF_MAX_IDX) {
2169 printk(KERN_ERR "hda_codec: too many IEC958 inputs\n");
2170 return -EBUSY;
2171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
2173 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaic8dcdf82009-02-06 16:21:20 +01002174 if (!kctl)
2175 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 kctl->private_value = nid;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002177 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002178 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 return err;
2180 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002181 codec->spdif_in_enable =
Andrew Paprocki3982d172007-12-19 12:13:44 +01002182 snd_hda_codec_read(codec, nid, 0,
2183 AC_VERB_GET_DIGI_CONVERT_1, 0) &
Takashi Iwai0ba21762007-04-16 11:29:14 +02002184 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 return 0;
2186}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002187EXPORT_SYMBOL_HDA(snd_hda_create_spdif_in_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
Takashi Iwaicb53c622007-08-10 17:21:45 +02002189#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002190/*
2191 * command cache
2192 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002194/* build a 32bit cache key with the widget id and the command parameter */
2195#define build_cmd_cache_key(nid, verb) ((verb << 8) | nid)
2196#define get_cmd_cache_nid(key) ((key) & 0xff)
2197#define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff)
2198
2199/**
2200 * snd_hda_codec_write_cache - send a single command with caching
2201 * @codec: the HDA codec
2202 * @nid: NID to send the command
2203 * @direct: direct flag
2204 * @verb: the verb to send
2205 * @parm: the parameter for the verb
2206 *
2207 * Send a single command without waiting for response.
2208 *
2209 * Returns 0 if successful, or a negative error code.
2210 */
2211int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid,
2212 int direct, unsigned int verb, unsigned int parm)
2213{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002214 struct hda_bus *bus = codec->bus;
2215 unsigned int res;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002216 int err;
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002217
2218 res = make_codec_cmd(codec, nid, direct, verb, parm);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002219 snd_hda_power_up(codec);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002220 mutex_lock(&bus->cmd_mutex);
2221 err = bus->ops.command(bus, res);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002222 if (!err) {
2223 struct hda_cache_head *c;
2224 u32 key = build_cmd_cache_key(nid, verb);
2225 c = get_alloc_hash(&codec->cmd_cache, key);
2226 if (c)
2227 c->val = parm;
2228 }
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002229 mutex_unlock(&bus->cmd_mutex);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002230 snd_hda_power_down(codec);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002231 return err;
2232}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002233EXPORT_SYMBOL_HDA(snd_hda_codec_write_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002234
2235/* resume the all commands from the cache */
2236void snd_hda_codec_resume_cache(struct hda_codec *codec)
2237{
Takashi Iwai603c4012008-07-30 15:01:44 +02002238 struct hda_cache_head *buffer = codec->cmd_cache.buf.list;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002239 int i;
2240
Takashi Iwai603c4012008-07-30 15:01:44 +02002241 for (i = 0; i < codec->cmd_cache.buf.used; i++, buffer++) {
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002242 u32 key = buffer->key;
2243 if (!key)
2244 continue;
2245 snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0,
2246 get_cmd_cache_cmd(key), buffer->val);
2247 }
2248}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002249EXPORT_SYMBOL_HDA(snd_hda_codec_resume_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002250
2251/**
2252 * snd_hda_sequence_write_cache - sequence writes with caching
2253 * @codec: the HDA codec
2254 * @seq: VERB array to send
2255 *
2256 * Send the commands sequentially from the given array.
2257 * Thte commands are recorded on cache for power-save and resume.
2258 * The array must be terminated with NID=0.
2259 */
2260void snd_hda_sequence_write_cache(struct hda_codec *codec,
2261 const struct hda_verb *seq)
2262{
2263 for (; seq->nid; seq++)
2264 snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb,
2265 seq->param);
2266}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002267EXPORT_SYMBOL_HDA(snd_hda_sequence_write_cache);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002268#endif /* SND_HDA_NEEDS_RESUME */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002269
Takashi Iwai54d17402005-11-21 16:33:22 +01002270/*
2271 * set power state of the codec
2272 */
2273static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2274 unsigned int power_state)
2275{
Takashi Iwaicb53c622007-08-10 17:21:45 +02002276 hda_nid_t nid;
2277 int i;
Takashi Iwai54d17402005-11-21 16:33:22 +01002278
2279 snd_hda_codec_write(codec, fg, 0, AC_VERB_SET_POWER_STATE,
2280 power_state);
Marc Boucherd2595d82008-01-22 15:23:30 +01002281 msleep(10); /* partial workaround for "azx_get_response timeout" */
Takashi Iwai54d17402005-11-21 16:33:22 +01002282
Takashi Iwaicb53c622007-08-10 17:21:45 +02002283 nid = codec->start_nid;
2284 for (i = 0; i < codec->num_nodes; i++, nid++) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01002285 unsigned int wcaps = get_wcaps(codec, nid);
2286 if (wcaps & AC_WCAP_POWER) {
2287 unsigned int wid_type = (wcaps & AC_WCAP_TYPE) >>
2288 AC_WCAP_TYPE_SHIFT;
2289 if (wid_type == AC_WID_PIN) {
2290 unsigned int pincap;
2291 /*
2292 * don't power down the widget if it controls
2293 * eapd and EAPD_BTLENABLE is set.
2294 */
2295 pincap = snd_hda_param_read(codec, nid,
2296 AC_PAR_PIN_CAP);
2297 if (pincap & AC_PINCAP_EAPD) {
2298 int eapd = snd_hda_codec_read(codec,
2299 nid, 0,
2300 AC_VERB_GET_EAPD_BTLENABLE, 0);
2301 eapd &= 0x02;
2302 if (power_state == AC_PWRST_D3 && eapd)
2303 continue;
2304 }
Takashi Iwai1194b5b2007-10-10 10:04:26 +02002305 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002306 snd_hda_codec_write(codec, nid, 0,
2307 AC_VERB_SET_POWER_STATE,
2308 power_state);
Takashi Iwai1194b5b2007-10-10 10:04:26 +02002309 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002310 }
2311
Takashi Iwaicb53c622007-08-10 17:21:45 +02002312 if (power_state == AC_PWRST_D0) {
2313 unsigned long end_time;
2314 int state;
Takashi Iwai54d17402005-11-21 16:33:22 +01002315 msleep(10);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002316 /* wait until the codec reachs to D0 */
2317 end_time = jiffies + msecs_to_jiffies(500);
2318 do {
2319 state = snd_hda_codec_read(codec, fg, 0,
2320 AC_VERB_GET_POWER_STATE, 0);
2321 if (state == power_state)
2322 break;
2323 msleep(1);
2324 } while (time_after_eq(end_time, jiffies));
2325 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002326}
2327
Takashi Iwai11aeff02008-07-30 15:01:46 +02002328#ifdef CONFIG_SND_HDA_HWDEP
2329/* execute additional init verbs */
2330static void hda_exec_init_verbs(struct hda_codec *codec)
2331{
2332 if (codec->init_verbs.list)
2333 snd_hda_sequence_write(codec, codec->init_verbs.list);
2334}
2335#else
2336static inline void hda_exec_init_verbs(struct hda_codec *codec) {}
2337#endif
2338
Takashi Iwaicb53c622007-08-10 17:21:45 +02002339#ifdef SND_HDA_NEEDS_RESUME
2340/*
2341 * call suspend and power-down; used both from PM and power-save
2342 */
2343static void hda_call_codec_suspend(struct hda_codec *codec)
2344{
2345 if (codec->patch_ops.suspend)
2346 codec->patch_ops.suspend(codec, PMSG_SUSPEND);
2347 hda_set_power_state(codec,
2348 codec->afg ? codec->afg : codec->mfg,
2349 AC_PWRST_D3);
2350#ifdef CONFIG_SND_HDA_POWER_SAVE
2351 cancel_delayed_work(&codec->power_work);
Takashi Iwai95e99fd2007-08-13 15:29:04 +02002352 codec->power_on = 0;
Takashi Iwaia221e282007-08-16 16:35:33 +02002353 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002354#endif
2355}
2356
2357/*
2358 * kick up codec; used both from PM and power-save
2359 */
2360static void hda_call_codec_resume(struct hda_codec *codec)
2361{
2362 hda_set_power_state(codec,
2363 codec->afg ? codec->afg : codec->mfg,
2364 AC_PWRST_D0);
Takashi Iwai3be14142009-02-20 14:11:16 +01002365 restore_pincfgs(codec); /* restore all current pin configs */
Takashi Iwai11aeff02008-07-30 15:01:46 +02002366 hda_exec_init_verbs(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002367 if (codec->patch_ops.resume)
2368 codec->patch_ops.resume(codec);
2369 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02002370 if (codec->patch_ops.init)
2371 codec->patch_ops.init(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002372 snd_hda_codec_resume_amp(codec);
2373 snd_hda_codec_resume_cache(codec);
2374 }
2375}
2376#endif /* SND_HDA_NEEDS_RESUME */
2377
Takashi Iwai54d17402005-11-21 16:33:22 +01002378
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379/**
2380 * snd_hda_build_controls - build mixer controls
2381 * @bus: the BUS
2382 *
2383 * Creates mixer controls for each codec included in the bus.
2384 *
2385 * Returns 0 if successful, otherwise a negative error code.
2386 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +01002387int /*__devinit*/ snd_hda_build_controls(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002389 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Takashi Iwai0ba21762007-04-16 11:29:14 +02002391 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002392 int err = snd_hda_codec_build_controls(codec);
Takashi Iwaif93d4612009-03-02 10:44:15 +01002393 if (err < 0) {
2394 printk(KERN_ERR "hda_codec: cannot build controls"
2395 "for #%d (error %d)\n", codec->addr, err);
2396 err = snd_hda_codec_reset(codec);
2397 if (err < 0) {
2398 printk(KERN_ERR
2399 "hda_codec: cannot revert codec\n");
2400 return err;
2401 }
2402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002404 return 0;
2405}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002406EXPORT_SYMBOL_HDA(snd_hda_build_controls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002408int snd_hda_codec_build_controls(struct hda_codec *codec)
2409{
2410 int err = 0;
2411 /* fake as if already powered-on */
2412 hda_keep_power_on(codec);
2413 /* then fire up */
2414 hda_set_power_state(codec,
2415 codec->afg ? codec->afg : codec->mfg,
2416 AC_PWRST_D0);
Takashi Iwai11aeff02008-07-30 15:01:46 +02002417 hda_exec_init_verbs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002418 /* continue to initialize... */
2419 if (codec->patch_ops.init)
2420 err = codec->patch_ops.init(codec);
2421 if (!err && codec->patch_ops.build_controls)
2422 err = codec->patch_ops.build_controls(codec);
2423 snd_hda_power_down(codec);
2424 if (err < 0)
2425 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 return 0;
2427}
2428
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429/*
2430 * stream formats
2431 */
Takashi Iwaibefdf312005-08-22 13:57:55 +02002432struct hda_rate_tbl {
2433 unsigned int hz;
2434 unsigned int alsa_bits;
2435 unsigned int hda_fmt;
2436};
2437
2438static struct hda_rate_tbl rate_bits[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 /* rate in Hz, ALSA rate bitmask, HDA format value */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02002440
2441 /* autodetected value used in snd_hda_query_supported_pcm */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 { 8000, SNDRV_PCM_RATE_8000, 0x0500 }, /* 1/6 x 48 */
2443 { 11025, SNDRV_PCM_RATE_11025, 0x4300 }, /* 1/4 x 44 */
2444 { 16000, SNDRV_PCM_RATE_16000, 0x0200 }, /* 1/3 x 48 */
2445 { 22050, SNDRV_PCM_RATE_22050, 0x4100 }, /* 1/2 x 44 */
2446 { 32000, SNDRV_PCM_RATE_32000, 0x0a00 }, /* 2/3 x 48 */
2447 { 44100, SNDRV_PCM_RATE_44100, 0x4000 }, /* 44 */
2448 { 48000, SNDRV_PCM_RATE_48000, 0x0000 }, /* 48 */
2449 { 88200, SNDRV_PCM_RATE_88200, 0x4800 }, /* 2 x 44 */
2450 { 96000, SNDRV_PCM_RATE_96000, 0x0800 }, /* 2 x 48 */
2451 { 176400, SNDRV_PCM_RATE_176400, 0x5800 },/* 4 x 44 */
2452 { 192000, SNDRV_PCM_RATE_192000, 0x1800 }, /* 4 x 48 */
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002453#define AC_PAR_PCM_RATE_BITS 11
2454 /* up to bits 10, 384kHZ isn't supported properly */
2455
2456 /* not autodetected value */
2457 { 9600, SNDRV_PCM_RATE_KNOT, 0x0400 }, /* 1/5 x 48 */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02002458
Takashi Iwaibefdf312005-08-22 13:57:55 +02002459 { 0 } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460};
2461
2462/**
2463 * snd_hda_calc_stream_format - calculate format bitset
2464 * @rate: the sample rate
2465 * @channels: the number of channels
2466 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
2467 * @maxbps: the max. bps
2468 *
2469 * Calculate the format bitset from the given rate, channels and th PCM format.
2470 *
2471 * Return zero if invalid.
2472 */
2473unsigned int snd_hda_calc_stream_format(unsigned int rate,
2474 unsigned int channels,
2475 unsigned int format,
2476 unsigned int maxbps)
2477{
2478 int i;
2479 unsigned int val = 0;
2480
Takashi Iwaibefdf312005-08-22 13:57:55 +02002481 for (i = 0; rate_bits[i].hz; i++)
2482 if (rate_bits[i].hz == rate) {
2483 val = rate_bits[i].hda_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 break;
2485 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002486 if (!rate_bits[i].hz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 snd_printdd("invalid rate %d\n", rate);
2488 return 0;
2489 }
2490
2491 if (channels == 0 || channels > 8) {
2492 snd_printdd("invalid channels %d\n", channels);
2493 return 0;
2494 }
2495 val |= channels - 1;
2496
2497 switch (snd_pcm_format_width(format)) {
2498 case 8: val |= 0x00; break;
2499 case 16: val |= 0x10; break;
2500 case 20:
2501 case 24:
2502 case 32:
2503 if (maxbps >= 32)
2504 val |= 0x40;
2505 else if (maxbps >= 24)
2506 val |= 0x30;
2507 else
2508 val |= 0x20;
2509 break;
2510 default:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002511 snd_printdd("invalid format width %d\n",
2512 snd_pcm_format_width(format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 return 0;
2514 }
2515
2516 return val;
2517}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002518EXPORT_SYMBOL_HDA(snd_hda_calc_stream_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
2520/**
2521 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
2522 * @codec: the HDA codec
2523 * @nid: NID to query
2524 * @ratesp: the pointer to store the detected rate bitflags
2525 * @formatsp: the pointer to store the detected formats
2526 * @bpsp: the pointer to store the detected format widths
2527 *
2528 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
2529 * or @bsps argument is ignored.
2530 *
2531 * Returns 0 if successful, otherwise a negative error code.
2532 */
Takashi Iwai986862bd2008-11-27 12:40:13 +01002533static int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 u32 *ratesp, u64 *formatsp, unsigned int *bpsp)
2535{
2536 int i;
2537 unsigned int val, streams;
2538
2539 val = 0;
2540 if (nid != codec->afg &&
Takashi Iwai54d17402005-11-21 16:33:22 +01002541 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
2543 if (val == -1)
2544 return -EIO;
2545 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002546 if (!val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
2548
2549 if (ratesp) {
2550 u32 rates = 0;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002551 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 if (val & (1 << i))
Takashi Iwaibefdf312005-08-22 13:57:55 +02002553 rates |= rate_bits[i].alsa_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 }
2555 *ratesp = rates;
2556 }
2557
2558 if (formatsp || bpsp) {
2559 u64 formats = 0;
2560 unsigned int bps;
2561 unsigned int wcaps;
2562
Takashi Iwai54d17402005-11-21 16:33:22 +01002563 wcaps = get_wcaps(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
2565 if (streams == -1)
2566 return -EIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002567 if (!streams) {
2568 streams = snd_hda_param_read(codec, codec->afg,
2569 AC_PAR_STREAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 if (streams == -1)
2571 return -EIO;
2572 }
2573
2574 bps = 0;
2575 if (streams & AC_SUPFMT_PCM) {
2576 if (val & AC_SUPPCM_BITS_8) {
2577 formats |= SNDRV_PCM_FMTBIT_U8;
2578 bps = 8;
2579 }
2580 if (val & AC_SUPPCM_BITS_16) {
2581 formats |= SNDRV_PCM_FMTBIT_S16_LE;
2582 bps = 16;
2583 }
2584 if (wcaps & AC_WCAP_DIGITAL) {
2585 if (val & AC_SUPPCM_BITS_32)
2586 formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
2587 if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24))
2588 formats |= SNDRV_PCM_FMTBIT_S32_LE;
2589 if (val & AC_SUPPCM_BITS_24)
2590 bps = 24;
2591 else if (val & AC_SUPPCM_BITS_20)
2592 bps = 20;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002593 } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24|
2594 AC_SUPPCM_BITS_32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 formats |= SNDRV_PCM_FMTBIT_S32_LE;
2596 if (val & AC_SUPPCM_BITS_32)
2597 bps = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 else if (val & AC_SUPPCM_BITS_24)
2599 bps = 24;
Nicolas Graziano33ef76512006-09-19 14:23:14 +02002600 else if (val & AC_SUPPCM_BITS_20)
2601 bps = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 }
2603 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002604 else if (streams == AC_SUPFMT_FLOAT32) {
2605 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
2607 bps = 32;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002608 } else if (streams == AC_SUPFMT_AC3) {
2609 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 /* temporary hack: we have still no proper support
2611 * for the direct AC3 stream...
2612 */
2613 formats |= SNDRV_PCM_FMTBIT_U8;
2614 bps = 8;
2615 }
2616 if (formatsp)
2617 *formatsp = formats;
2618 if (bpsp)
2619 *bpsp = bps;
2620 }
2621
2622 return 0;
2623}
2624
2625/**
Takashi Iwai0ba21762007-04-16 11:29:14 +02002626 * snd_hda_is_supported_format - check whether the given node supports
2627 * the format val
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 *
2629 * Returns 1 if supported, 0 if not.
2630 */
2631int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
2632 unsigned int format)
2633{
2634 int i;
2635 unsigned int val = 0, rate, stream;
2636
2637 if (nid != codec->afg &&
Takashi Iwai54d17402005-11-21 16:33:22 +01002638 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
2640 if (val == -1)
2641 return 0;
2642 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002643 if (!val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
2645 if (val == -1)
2646 return 0;
2647 }
2648
2649 rate = format & 0xff00;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002650 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++)
Takashi Iwaibefdf312005-08-22 13:57:55 +02002651 if (rate_bits[i].hda_fmt == rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 if (val & (1 << i))
2653 break;
2654 return 0;
2655 }
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002656 if (i >= AC_PAR_PCM_RATE_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 return 0;
2658
2659 stream = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
2660 if (stream == -1)
2661 return 0;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002662 if (!stream && nid != codec->afg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 stream = snd_hda_param_read(codec, codec->afg, AC_PAR_STREAM);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002664 if (!stream || stream == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 return 0;
2666
2667 if (stream & AC_SUPFMT_PCM) {
2668 switch (format & 0xf0) {
2669 case 0x00:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002670 if (!(val & AC_SUPPCM_BITS_8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 return 0;
2672 break;
2673 case 0x10:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002674 if (!(val & AC_SUPPCM_BITS_16))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 return 0;
2676 break;
2677 case 0x20:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002678 if (!(val & AC_SUPPCM_BITS_20))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 return 0;
2680 break;
2681 case 0x30:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002682 if (!(val & AC_SUPPCM_BITS_24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 return 0;
2684 break;
2685 case 0x40:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002686 if (!(val & AC_SUPPCM_BITS_32))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 return 0;
2688 break;
2689 default:
2690 return 0;
2691 }
2692 } else {
2693 /* FIXME: check for float32 and AC3? */
2694 }
2695
2696 return 1;
2697}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002698EXPORT_SYMBOL_HDA(snd_hda_is_supported_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
2700/*
2701 * PCM stuff
2702 */
2703static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
2704 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002705 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706{
2707 return 0;
2708}
2709
2710static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
2711 struct hda_codec *codec,
2712 unsigned int stream_tag,
2713 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002714 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715{
2716 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
2717 return 0;
2718}
2719
2720static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
2721 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002722 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723{
Takashi Iwai888afa12008-03-18 09:57:50 +01002724 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 return 0;
2726}
2727
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002728static int set_pcm_default_values(struct hda_codec *codec,
2729 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002731 /* query support PCM information from the given NID */
2732 if (info->nid && (!info->rates || !info->formats)) {
2733 snd_hda_query_supported_pcm(codec, info->nid,
2734 info->rates ? NULL : &info->rates,
2735 info->formats ? NULL : &info->formats,
2736 info->maxbps ? NULL : &info->maxbps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 }
2738 if (info->ops.open == NULL)
2739 info->ops.open = hda_pcm_default_open_close;
2740 if (info->ops.close == NULL)
2741 info->ops.close = hda_pcm_default_open_close;
2742 if (info->ops.prepare == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02002743 if (snd_BUG_ON(!info->nid))
2744 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 info->ops.prepare = hda_pcm_default_prepare;
2746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 if (info->ops.cleanup == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02002748 if (snd_BUG_ON(!info->nid))
2749 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 info->ops.cleanup = hda_pcm_default_cleanup;
2751 }
2752 return 0;
2753}
2754
Takashi Iwai176d5332008-07-30 15:01:44 +02002755/*
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002756 * get the empty PCM device number to assign
2757 */
2758static int get_empty_pcm_device(struct hda_bus *bus, int type)
2759{
2760 static const char *dev_name[HDA_PCM_NTYPES] = {
2761 "Audio", "SPDIF", "HDMI", "Modem"
2762 };
2763 /* starting device index for each PCM type */
2764 static int dev_idx[HDA_PCM_NTYPES] = {
2765 [HDA_PCM_TYPE_AUDIO] = 0,
2766 [HDA_PCM_TYPE_SPDIF] = 1,
2767 [HDA_PCM_TYPE_HDMI] = 3,
2768 [HDA_PCM_TYPE_MODEM] = 6
2769 };
2770 /* normal audio device indices; not linear to keep compatibility */
2771 static int audio_idx[4] = { 0, 2, 4, 5 };
2772 int i, dev;
2773
2774 switch (type) {
2775 case HDA_PCM_TYPE_AUDIO:
2776 for (i = 0; i < ARRAY_SIZE(audio_idx); i++) {
2777 dev = audio_idx[i];
2778 if (!test_bit(dev, bus->pcm_dev_bits))
2779 break;
2780 }
2781 if (i >= ARRAY_SIZE(audio_idx)) {
2782 snd_printk(KERN_WARNING "Too many audio devices\n");
2783 return -EAGAIN;
2784 }
2785 break;
2786 case HDA_PCM_TYPE_SPDIF:
2787 case HDA_PCM_TYPE_HDMI:
2788 case HDA_PCM_TYPE_MODEM:
2789 dev = dev_idx[type];
2790 if (test_bit(dev, bus->pcm_dev_bits)) {
2791 snd_printk(KERN_WARNING "%s already defined\n",
2792 dev_name[type]);
2793 return -EAGAIN;
2794 }
2795 break;
2796 default:
2797 snd_printk(KERN_WARNING "Invalid PCM type %d\n", type);
2798 return -EINVAL;
2799 }
2800 set_bit(dev, bus->pcm_dev_bits);
2801 return dev;
2802}
2803
2804/*
Takashi Iwai176d5332008-07-30 15:01:44 +02002805 * attach a new PCM stream
2806 */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002807static int snd_hda_attach_pcm(struct hda_codec *codec, struct hda_pcm *pcm)
Takashi Iwai176d5332008-07-30 15:01:44 +02002808{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002809 struct hda_bus *bus = codec->bus;
Takashi Iwai176d5332008-07-30 15:01:44 +02002810 struct hda_pcm_stream *info;
2811 int stream, err;
2812
Takashi Iwaib91f0802008-11-04 08:43:08 +01002813 if (snd_BUG_ON(!pcm->name))
Takashi Iwai176d5332008-07-30 15:01:44 +02002814 return -EINVAL;
2815 for (stream = 0; stream < 2; stream++) {
2816 info = &pcm->stream[stream];
2817 if (info->substreams) {
2818 err = set_pcm_default_values(codec, info);
2819 if (err < 0)
2820 return err;
2821 }
2822 }
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002823 return bus->ops.attach_pcm(bus, codec, pcm);
Takashi Iwai176d5332008-07-30 15:01:44 +02002824}
2825
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002826/* assign all PCMs of the given codec */
2827int snd_hda_codec_build_pcms(struct hda_codec *codec)
2828{
2829 unsigned int pcm;
2830 int err;
2831
2832 if (!codec->num_pcms) {
2833 if (!codec->patch_ops.build_pcms)
2834 return 0;
2835 err = codec->patch_ops.build_pcms(codec);
2836 if (err < 0)
2837 return err;
2838 }
2839 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
2840 struct hda_pcm *cpcm = &codec->pcm_info[pcm];
2841 int dev;
2842
2843 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
Takashi Iwai41b5b012009-01-20 18:21:23 +01002844 continue; /* no substreams assigned */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002845
2846 if (!cpcm->pcm) {
2847 dev = get_empty_pcm_device(codec->bus, cpcm->pcm_type);
2848 if (dev < 0)
2849 return 0;
2850 cpcm->device = dev;
2851 err = snd_hda_attach_pcm(codec, cpcm);
2852 if (err < 0)
2853 return err;
2854 }
2855 }
2856 return 0;
2857}
2858
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859/**
2860 * snd_hda_build_pcms - build PCM information
2861 * @bus: the BUS
2862 *
2863 * Create PCM information for each codec included in the bus.
2864 *
2865 * The build_pcms codec patch is requested to set up codec->num_pcms and
2866 * codec->pcm_info properly. The array is referred by the top-level driver
2867 * to create its PCM instances.
2868 * The allocated codec->pcm_info should be released in codec->patch_ops.free
2869 * callback.
2870 *
2871 * At least, substreams, channels_min and channels_max must be filled for
2872 * each stream. substreams = 0 indicates that the stream doesn't exist.
2873 * When rates and/or formats are zero, the supported values are queried
2874 * from the given nid. The nid is used also by the default ops.prepare
2875 * and ops.cleanup callbacks.
2876 *
2877 * The driver needs to call ops.open in its open callback. Similarly,
2878 * ops.close is supposed to be called in the close callback.
2879 * ops.prepare should be called in the prepare or hw_params callback
2880 * with the proper parameters for set up.
2881 * ops.cleanup should be called in hw_free for clean up of streams.
2882 *
2883 * This function returns 0 if successfull, or a negative error code.
2884 */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002885int __devinit snd_hda_build_pcms(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002887 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888
Takashi Iwai0ba21762007-04-16 11:29:14 +02002889 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002890 int err = snd_hda_codec_build_pcms(codec);
2891 if (err < 0)
2892 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 }
2894 return 0;
2895}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002896EXPORT_SYMBOL_HDA(snd_hda_build_pcms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898/**
2899 * snd_hda_check_board_config - compare the current codec with the config table
2900 * @codec: the HDA codec
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002901 * @num_configs: number of config enums
2902 * @models: array of model name strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 * @tbl: configuration table, terminated by null entries
2904 *
2905 * Compares the modelname or PCI subsystem id of the current codec with the
2906 * given configuration table. If a matching entry is found, returns its
2907 * config value (supposed to be 0 or positive).
2908 *
2909 * If no entries are matching, the function returns a negative value.
2910 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002911int snd_hda_check_board_config(struct hda_codec *codec,
2912 int num_configs, const char **models,
2913 const struct snd_pci_quirk *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914{
Takashi Iwaif44ac832008-07-30 15:01:45 +02002915 if (codec->modelname && models) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002916 int i;
2917 for (i = 0; i < num_configs; i++) {
2918 if (models[i] &&
Takashi Iwaif44ac832008-07-30 15:01:45 +02002919 !strcmp(codec->modelname, models[i])) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002920 snd_printd(KERN_INFO "hda_codec: model '%s' is "
2921 "selected\n", models[i]);
2922 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 }
2924 }
2925 }
2926
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002927 if (!codec->bus->pci || !tbl)
2928 return -1;
2929
2930 tbl = snd_pci_quirk_lookup(codec->bus->pci, tbl);
2931 if (!tbl)
2932 return -1;
2933 if (tbl->value >= 0 && tbl->value < num_configs) {
Takashi Iwai62cf8722008-05-20 12:15:15 +02002934#ifdef CONFIG_SND_DEBUG_VERBOSE
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002935 char tmp[10];
2936 const char *model = NULL;
2937 if (models)
2938 model = models[tbl->value];
2939 if (!model) {
2940 sprintf(tmp, "#%d", tbl->value);
2941 model = tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 }
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002943 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
2944 "for config %x:%x (%s)\n",
2945 model, tbl->subvendor, tbl->subdevice,
2946 (tbl->name ? tbl->name : "Unknown device"));
2947#endif
2948 return tbl->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 }
2950 return -1;
2951}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002952EXPORT_SYMBOL_HDA(snd_hda_check_board_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953
2954/**
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02002955 * snd_hda_check_board_codec_sid_config - compare the current codec
2956 subsystem ID with the
2957 config table
2958
2959 This is important for Gateway notebooks with SB450 HDA Audio
2960 where the vendor ID of the PCI device is:
2961 ATI Technologies Inc SB450 HDA Audio [1002:437b]
2962 and the vendor/subvendor are found only at the codec.
2963
2964 * @codec: the HDA codec
2965 * @num_configs: number of config enums
2966 * @models: array of model name strings
2967 * @tbl: configuration table, terminated by null entries
2968 *
2969 * Compares the modelname or PCI subsystem id of the current codec with the
2970 * given configuration table. If a matching entry is found, returns its
2971 * config value (supposed to be 0 or positive).
2972 *
2973 * If no entries are matching, the function returns a negative value.
2974 */
2975int snd_hda_check_board_codec_sid_config(struct hda_codec *codec,
2976 int num_configs, const char **models,
2977 const struct snd_pci_quirk *tbl)
2978{
2979 const struct snd_pci_quirk *q;
2980
2981 /* Search for codec ID */
2982 for (q = tbl; q->subvendor; q++) {
2983 unsigned long vendorid = (q->subdevice) | (q->subvendor << 16);
2984
2985 if (vendorid == codec->subsystem_id)
2986 break;
2987 }
2988
2989 if (!q->subvendor)
2990 return -1;
2991
2992 tbl = q;
2993
2994 if (tbl->value >= 0 && tbl->value < num_configs) {
2995#ifdef CONFIG_SND_DEBUG_DETECT
2996 char tmp[10];
2997 const char *model = NULL;
2998 if (models)
2999 model = models[tbl->value];
3000 if (!model) {
3001 sprintf(tmp, "#%d", tbl->value);
3002 model = tmp;
3003 }
3004 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
3005 "for config %x:%x (%s)\n",
3006 model, tbl->subvendor, tbl->subdevice,
3007 (tbl->name ? tbl->name : "Unknown device"));
3008#endif
3009 return tbl->value;
3010 }
3011 return -1;
3012}
3013EXPORT_SYMBOL_HDA(snd_hda_check_board_codec_sid_config);
3014
3015/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 * snd_hda_add_new_ctls - create controls from the array
3017 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003018 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 *
3020 * This helper function creates and add new controls in the given array.
3021 * The array must be terminated with an empty entry as terminator.
3022 *
3023 * Returns 0 if successful, or a negative error code.
3024 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02003025int snd_hda_add_new_ctls(struct hda_codec *codec, struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026{
Takashi Iwaicb53c622007-08-10 17:21:45 +02003027 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028
3029 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01003030 struct snd_kcontrol *kctl;
3031 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003032 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01003033 return -ENOMEM;
Takashi Iwaid13bd412008-07-30 15:01:45 +02003034 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai54d17402005-11-21 16:33:22 +01003035 if (err < 0) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003036 if (!codec->addr)
Takashi Iwai54d17402005-11-21 16:33:22 +01003037 return err;
3038 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003039 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01003040 return -ENOMEM;
3041 kctl->id.device = codec->addr;
Takashi Iwaid13bd412008-07-30 15:01:45 +02003042 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003043 if (err < 0)
Takashi Iwai54d17402005-11-21 16:33:22 +01003044 return err;
3045 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 }
3047 return 0;
3048}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003049EXPORT_SYMBOL_HDA(snd_hda_add_new_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
Takashi Iwaicb53c622007-08-10 17:21:45 +02003051#ifdef CONFIG_SND_HDA_POWER_SAVE
3052static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
3053 unsigned int power_state);
3054
3055static void hda_power_work(struct work_struct *work)
3056{
3057 struct hda_codec *codec =
3058 container_of(work, struct hda_codec, power_work.work);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003059 struct hda_bus *bus = codec->bus;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003060
Maxim Levitsky2e492462007-09-03 15:26:57 +02003061 if (!codec->power_on || codec->power_count) {
3062 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003063 return;
Maxim Levitsky2e492462007-09-03 15:26:57 +02003064 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02003065
3066 hda_call_codec_suspend(codec);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003067 if (bus->ops.pm_notify)
3068 bus->ops.pm_notify(bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003069}
3070
3071static void hda_keep_power_on(struct hda_codec *codec)
3072{
3073 codec->power_count++;
3074 codec->power_on = 1;
3075}
3076
3077void snd_hda_power_up(struct hda_codec *codec)
3078{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003079 struct hda_bus *bus = codec->bus;
3080
Takashi Iwaicb53c622007-08-10 17:21:45 +02003081 codec->power_count++;
Takashi Iwaia221e282007-08-16 16:35:33 +02003082 if (codec->power_on || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02003083 return;
3084
3085 codec->power_on = 1;
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003086 if (bus->ops.pm_notify)
3087 bus->ops.pm_notify(bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003088 hda_call_codec_resume(codec);
3089 cancel_delayed_work(&codec->power_work);
Takashi Iwaia221e282007-08-16 16:35:33 +02003090 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003091}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003092EXPORT_SYMBOL_HDA(snd_hda_power_up);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003093
3094#define power_save(codec) \
3095 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0)
Takashi Iwaicb53c622007-08-10 17:21:45 +02003096
Takashi Iwaifee2fba2008-11-27 12:43:28 +01003097#define power_save(codec) \
3098 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0)
3099
Takashi Iwaicb53c622007-08-10 17:21:45 +02003100void snd_hda_power_down(struct hda_codec *codec)
3101{
3102 --codec->power_count;
Takashi Iwaia221e282007-08-16 16:35:33 +02003103 if (!codec->power_on || codec->power_count || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02003104 return;
Takashi Iwaifee2fba2008-11-27 12:43:28 +01003105 if (power_save(codec)) {
Takashi Iwaia221e282007-08-16 16:35:33 +02003106 codec->power_transition = 1; /* avoid reentrance */
Takashi Iwaic107b412009-01-13 17:46:37 +01003107 queue_delayed_work(codec->bus->workq, &codec->power_work,
Takashi Iwaifee2fba2008-11-27 12:43:28 +01003108 msecs_to_jiffies(power_save(codec) * 1000));
Takashi Iwaia221e282007-08-16 16:35:33 +02003109 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02003110}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003111EXPORT_SYMBOL_HDA(snd_hda_power_down);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003112
3113int snd_hda_check_amp_list_power(struct hda_codec *codec,
3114 struct hda_loopback_check *check,
3115 hda_nid_t nid)
3116{
3117 struct hda_amp_list *p;
3118 int ch, v;
3119
3120 if (!check->amplist)
3121 return 0;
3122 for (p = check->amplist; p->nid; p++) {
3123 if (p->nid == nid)
3124 break;
3125 }
3126 if (!p->nid)
3127 return 0; /* nothing changed */
3128
3129 for (p = check->amplist; p->nid; p++) {
3130 for (ch = 0; ch < 2; ch++) {
3131 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
3132 p->idx);
3133 if (!(v & HDA_AMP_MUTE) && v > 0) {
3134 if (!check->power_on) {
3135 check->power_on = 1;
3136 snd_hda_power_up(codec);
3137 }
3138 return 1;
3139 }
3140 }
3141 }
3142 if (check->power_on) {
3143 check->power_on = 0;
3144 snd_hda_power_down(codec);
3145 }
3146 return 0;
3147}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003148EXPORT_SYMBOL_HDA(snd_hda_check_amp_list_power);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003149#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003151/*
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003152 * Channel mode helper
3153 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003154int snd_hda_ch_mode_info(struct hda_codec *codec,
3155 struct snd_ctl_elem_info *uinfo,
3156 const struct hda_channel_mode *chmode,
3157 int num_chmodes)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003158{
3159 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3160 uinfo->count = 1;
3161 uinfo->value.enumerated.items = num_chmodes;
3162 if (uinfo->value.enumerated.item >= num_chmodes)
3163 uinfo->value.enumerated.item = num_chmodes - 1;
3164 sprintf(uinfo->value.enumerated.name, "%dch",
3165 chmode[uinfo->value.enumerated.item].channels);
3166 return 0;
3167}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003168EXPORT_SYMBOL_HDA(snd_hda_ch_mode_info);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003169
Takashi Iwai0ba21762007-04-16 11:29:14 +02003170int snd_hda_ch_mode_get(struct hda_codec *codec,
3171 struct snd_ctl_elem_value *ucontrol,
3172 const struct hda_channel_mode *chmode,
3173 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003174 int max_channels)
3175{
3176 int i;
3177
3178 for (i = 0; i < num_chmodes; i++) {
3179 if (max_channels == chmode[i].channels) {
3180 ucontrol->value.enumerated.item[0] = i;
3181 break;
3182 }
3183 }
3184 return 0;
3185}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003186EXPORT_SYMBOL_HDA(snd_hda_ch_mode_get);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003187
Takashi Iwai0ba21762007-04-16 11:29:14 +02003188int snd_hda_ch_mode_put(struct hda_codec *codec,
3189 struct snd_ctl_elem_value *ucontrol,
3190 const struct hda_channel_mode *chmode,
3191 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003192 int *max_channelsp)
3193{
3194 unsigned int mode;
3195
3196 mode = ucontrol->value.enumerated.item[0];
Takashi Iwai68ea7b22007-11-15 15:54:38 +01003197 if (mode >= num_chmodes)
3198 return -EINVAL;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003199 if (*max_channelsp == chmode[mode].channels)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003200 return 0;
3201 /* change the current channel setting */
3202 *max_channelsp = chmode[mode].channels;
3203 if (chmode[mode].sequence)
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003204 snd_hda_sequence_write_cache(codec, chmode[mode].sequence);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003205 return 1;
3206}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003207EXPORT_SYMBOL_HDA(snd_hda_ch_mode_put);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003208
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209/*
3210 * input MUX helper
3211 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003212int snd_hda_input_mux_info(const struct hda_input_mux *imux,
3213 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214{
3215 unsigned int index;
3216
3217 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3218 uinfo->count = 1;
3219 uinfo->value.enumerated.items = imux->num_items;
Takashi Iwai5513b0c2007-10-09 11:58:41 +02003220 if (!imux->num_items)
3221 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 index = uinfo->value.enumerated.item;
3223 if (index >= imux->num_items)
3224 index = imux->num_items - 1;
3225 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
3226 return 0;
3227}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003228EXPORT_SYMBOL_HDA(snd_hda_input_mux_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229
Takashi Iwai0ba21762007-04-16 11:29:14 +02003230int snd_hda_input_mux_put(struct hda_codec *codec,
3231 const struct hda_input_mux *imux,
3232 struct snd_ctl_elem_value *ucontrol,
3233 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 unsigned int *cur_val)
3235{
3236 unsigned int idx;
3237
Takashi Iwai5513b0c2007-10-09 11:58:41 +02003238 if (!imux->num_items)
3239 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 idx = ucontrol->value.enumerated.item[0];
3241 if (idx >= imux->num_items)
3242 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003243 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003245 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
3246 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 *cur_val = idx;
3248 return 1;
3249}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003250EXPORT_SYMBOL_HDA(snd_hda_input_mux_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251
3252
3253/*
3254 * Multi-channel / digital-out PCM helper functions
3255 */
3256
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003257/* setup SPDIF output stream */
3258static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
3259 unsigned int stream_tag, unsigned int format)
3260{
3261 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
Takashi Iwai2f728532008-09-25 16:32:41 +02003262 if (codec->spdif_status_reset && (codec->spdif_ctls & AC_DIG1_ENABLE))
3263 set_dig_out_convert(codec, nid,
3264 codec->spdif_ctls & ~AC_DIG1_ENABLE & 0xff,
3265 -1);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003266 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Takashi Iwai2f728532008-09-25 16:32:41 +02003267 if (codec->slave_dig_outs) {
3268 hda_nid_t *d;
3269 for (d = codec->slave_dig_outs; *d; d++)
3270 snd_hda_codec_setup_stream(codec, *d, stream_tag, 0,
3271 format);
Matthew Ranostayde51ca12008-09-07 14:31:40 -04003272 }
Takashi Iwai2f728532008-09-25 16:32:41 +02003273 /* turn on again (if needed) */
3274 if (codec->spdif_status_reset && (codec->spdif_ctls & AC_DIG1_ENABLE))
3275 set_dig_out_convert(codec, nid,
3276 codec->spdif_ctls & 0xff, -1);
3277}
Matthew Ranostayde51ca12008-09-07 14:31:40 -04003278
Takashi Iwai2f728532008-09-25 16:32:41 +02003279static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid)
3280{
3281 snd_hda_codec_cleanup_stream(codec, nid);
3282 if (codec->slave_dig_outs) {
3283 hda_nid_t *d;
3284 for (d = codec->slave_dig_outs; *d; d++)
3285 snd_hda_codec_cleanup_stream(codec, *d);
3286 }
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003287}
3288
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289/*
3290 * open the digital out in the exclusive mode
3291 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003292int snd_hda_multi_out_dig_open(struct hda_codec *codec,
3293 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294{
Ingo Molnar62932df2006-01-16 16:34:20 +01003295 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02003296 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
3297 /* already opened as analog dup; reset it once */
Takashi Iwai2f728532008-09-25 16:32:41 +02003298 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01003300 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 return 0;
3302}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003303EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003305int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
3306 struct hda_multi_out *mout,
3307 unsigned int stream_tag,
3308 unsigned int format,
3309 struct snd_pcm_substream *substream)
3310{
3311 mutex_lock(&codec->spdif_mutex);
3312 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
3313 mutex_unlock(&codec->spdif_mutex);
3314 return 0;
3315}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003316EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_prepare);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003317
Takashi Iwai9411e212009-02-13 11:32:28 +01003318int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
3319 struct hda_multi_out *mout)
3320{
3321 mutex_lock(&codec->spdif_mutex);
3322 cleanup_dig_out_stream(codec, mout->dig_out_nid);
3323 mutex_unlock(&codec->spdif_mutex);
3324 return 0;
3325}
3326EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_cleanup);
3327
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328/*
3329 * release the digital out
3330 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003331int snd_hda_multi_out_dig_close(struct hda_codec *codec,
3332 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333{
Ingo Molnar62932df2006-01-16 16:34:20 +01003334 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01003336 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 return 0;
3338}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003339EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340
3341/*
3342 * set up more restrictions for analog out
3343 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003344int snd_hda_multi_out_analog_open(struct hda_codec *codec,
3345 struct hda_multi_out *mout,
Takashi Iwai9a081602008-02-12 18:37:26 +01003346 struct snd_pcm_substream *substream,
3347 struct hda_pcm_stream *hinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348{
Takashi Iwai9a081602008-02-12 18:37:26 +01003349 struct snd_pcm_runtime *runtime = substream->runtime;
3350 runtime->hw.channels_max = mout->max_channels;
3351 if (mout->dig_out_nid) {
3352 if (!mout->analog_rates) {
3353 mout->analog_rates = hinfo->rates;
3354 mout->analog_formats = hinfo->formats;
3355 mout->analog_maxbps = hinfo->maxbps;
3356 } else {
3357 runtime->hw.rates = mout->analog_rates;
3358 runtime->hw.formats = mout->analog_formats;
3359 hinfo->maxbps = mout->analog_maxbps;
3360 }
3361 if (!mout->spdif_rates) {
3362 snd_hda_query_supported_pcm(codec, mout->dig_out_nid,
3363 &mout->spdif_rates,
3364 &mout->spdif_formats,
3365 &mout->spdif_maxbps);
3366 }
3367 mutex_lock(&codec->spdif_mutex);
3368 if (mout->share_spdif) {
3369 runtime->hw.rates &= mout->spdif_rates;
3370 runtime->hw.formats &= mout->spdif_formats;
3371 if (mout->spdif_maxbps < hinfo->maxbps)
3372 hinfo->maxbps = mout->spdif_maxbps;
3373 }
Frederik Deweerdteaa99852008-04-14 13:11:44 +02003374 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01003375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 return snd_pcm_hw_constraint_step(substream->runtime, 0,
3377 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
3378}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003379EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380
3381/*
3382 * set up the i/o for analog out
3383 * when the digital out is available, copy the front out to digital out, too.
3384 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003385int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
3386 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 unsigned int stream_tag,
3388 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003389 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390{
3391 hda_nid_t *nids = mout->dac_nids;
3392 int chs = substream->runtime->channels;
3393 int i;
3394
Ingo Molnar62932df2006-01-16 16:34:20 +01003395 mutex_lock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01003396 if (mout->dig_out_nid && mout->share_spdif &&
3397 mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 if (chs == 2 &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02003399 snd_hda_is_supported_format(codec, mout->dig_out_nid,
3400 format) &&
3401 !(codec->spdif_status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003403 setup_dig_out_stream(codec, mout->dig_out_nid,
3404 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 } else {
3406 mout->dig_out_used = 0;
Takashi Iwai2f728532008-09-25 16:32:41 +02003407 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 }
3409 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003410 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411
3412 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003413 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
3414 0, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02003415 if (!mout->no_share_stream &&
3416 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003418 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
3419 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003420 /* extra outputs copied from front */
3421 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
Takashi Iwaid29240c2007-10-26 12:35:56 +02003422 if (!mout->no_share_stream && mout->extra_out_nid[i])
Takashi Iwai82bc9552006-03-21 11:24:42 +01003423 snd_hda_codec_setup_stream(codec,
3424 mout->extra_out_nid[i],
3425 stream_tag, 0, format);
3426
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 /* surrounds */
3428 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02003429 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003430 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3431 i * 2, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02003432 else if (!mout->no_share_stream) /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003433 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3434 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 }
3436 return 0;
3437}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003438EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439
3440/*
3441 * clean up the setting for analog out
3442 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003443int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
3444 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445{
3446 hda_nid_t *nids = mout->dac_nids;
3447 int i;
3448
3449 for (i = 0; i < mout->num_dacs; i++)
Takashi Iwai888afa12008-03-18 09:57:50 +01003450 snd_hda_codec_cleanup_stream(codec, nids[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 if (mout->hp_nid)
Takashi Iwai888afa12008-03-18 09:57:50 +01003452 snd_hda_codec_cleanup_stream(codec, mout->hp_nid);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003453 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
3454 if (mout->extra_out_nid[i])
Takashi Iwai888afa12008-03-18 09:57:50 +01003455 snd_hda_codec_cleanup_stream(codec,
3456 mout->extra_out_nid[i]);
Ingo Molnar62932df2006-01-16 16:34:20 +01003457 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
Takashi Iwai2f728532008-09-25 16:32:41 +02003459 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 mout->dig_out_used = 0;
3461 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003462 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 return 0;
3464}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003465EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003467/*
Wu Fengguang6b345002008-10-07 14:21:41 +08003468 * Helper for automatic pin configuration
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003469 */
Kailang Yangdf694da2005-12-05 19:42:22 +01003470
Takashi Iwai12f288b2007-08-02 15:51:59 +02003471static int is_in_nid_list(hda_nid_t nid, hda_nid_t *list)
Kailang Yangdf694da2005-12-05 19:42:22 +01003472{
3473 for (; *list; list++)
3474 if (*list == nid)
3475 return 1;
3476 return 0;
3477}
3478
Steve Longerbeam81937d32007-05-08 15:33:03 +02003479
3480/*
3481 * Sort an associated group of pins according to their sequence numbers.
3482 */
3483static void sort_pins_by_sequence(hda_nid_t * pins, short * sequences,
3484 int num_pins)
3485{
3486 int i, j;
3487 short seq;
3488 hda_nid_t nid;
3489
3490 for (i = 0; i < num_pins; i++) {
3491 for (j = i + 1; j < num_pins; j++) {
3492 if (sequences[i] > sequences[j]) {
3493 seq = sequences[i];
3494 sequences[i] = sequences[j];
3495 sequences[j] = seq;
3496 nid = pins[i];
3497 pins[i] = pins[j];
3498 pins[j] = nid;
3499 }
3500 }
3501 }
3502}
3503
3504
Takashi Iwai82bc9552006-03-21 11:24:42 +01003505/*
3506 * Parse all pin widgets and store the useful pin nids to cfg
3507 *
3508 * The number of line-outs or any primary output is stored in line_outs,
3509 * and the corresponding output pins are assigned to line_out_pins[],
3510 * in the order of front, rear, CLFE, side, ...
3511 *
3512 * If more extra outputs (speaker and headphone) are found, the pins are
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003513 * assisnged to hp_pins[] and speaker_pins[], respectively. If no line-out jack
Takashi Iwai82bc9552006-03-21 11:24:42 +01003514 * is detected, one of speaker of HP pins is assigned as the primary
3515 * output, i.e. to line_out_pins[0]. So, line_outs is always positive
3516 * if any analog output exists.
3517 *
3518 * The analog input pins are assigned to input_pins array.
3519 * The digital input/output pins are assigned to dig_in_pin and dig_out_pin,
3520 * respectively.
3521 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02003522int snd_hda_parse_pin_def_config(struct hda_codec *codec,
3523 struct auto_pin_cfg *cfg,
3524 hda_nid_t *ignore_nids)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003525{
Takashi Iwai0ef6ce72008-01-22 15:35:37 +01003526 hda_nid_t nid, end_nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02003527 short seq, assoc_line_out, assoc_speaker;
3528 short sequences_line_out[ARRAY_SIZE(cfg->line_out_pins)];
3529 short sequences_speaker[ARRAY_SIZE(cfg->speaker_pins)];
Takashi Iwaif889fa92007-10-31 15:49:32 +01003530 short sequences_hp[ARRAY_SIZE(cfg->hp_pins)];
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003531
3532 memset(cfg, 0, sizeof(*cfg));
3533
Steve Longerbeam81937d32007-05-08 15:33:03 +02003534 memset(sequences_line_out, 0, sizeof(sequences_line_out));
3535 memset(sequences_speaker, 0, sizeof(sequences_speaker));
Takashi Iwaif889fa92007-10-31 15:49:32 +01003536 memset(sequences_hp, 0, sizeof(sequences_hp));
Steve Longerbeam81937d32007-05-08 15:33:03 +02003537 assoc_line_out = assoc_speaker = 0;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003538
Takashi Iwai0ef6ce72008-01-22 15:35:37 +01003539 end_nid = codec->start_nid + codec->num_nodes;
3540 for (nid = codec->start_nid; nid < end_nid; nid++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01003541 unsigned int wid_caps = get_wcaps(codec, nid);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003542 unsigned int wid_type =
3543 (wid_caps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003544 unsigned int def_conf;
3545 short assoc, loc;
3546
3547 /* read all default configuration for pin complex */
3548 if (wid_type != AC_WID_PIN)
3549 continue;
Kailang Yangdf694da2005-12-05 19:42:22 +01003550 /* ignore the given nids (e.g. pc-beep returns error) */
3551 if (ignore_nids && is_in_nid_list(nid, ignore_nids))
3552 continue;
3553
Takashi Iwaic17a1ab2009-02-23 09:28:12 +01003554 def_conf = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003555 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
3556 continue;
3557 loc = get_defcfg_location(def_conf);
3558 switch (get_defcfg_device(def_conf)) {
3559 case AC_JACK_LINE_OUT:
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003560 seq = get_defcfg_sequence(def_conf);
3561 assoc = get_defcfg_association(def_conf);
Matthew Ranostay90da78b2008-01-24 11:48:01 +01003562
3563 if (!(wid_caps & AC_WCAP_STEREO))
3564 if (!cfg->mono_out_pin)
3565 cfg->mono_out_pin = nid;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003566 if (!assoc)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003567 continue;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003568 if (!assoc_line_out)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003569 assoc_line_out = assoc;
3570 else if (assoc_line_out != assoc)
3571 continue;
3572 if (cfg->line_outs >= ARRAY_SIZE(cfg->line_out_pins))
3573 continue;
3574 cfg->line_out_pins[cfg->line_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02003575 sequences_line_out[cfg->line_outs] = seq;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003576 cfg->line_outs++;
3577 break;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003578 case AC_JACK_SPEAKER:
Steve Longerbeam81937d32007-05-08 15:33:03 +02003579 seq = get_defcfg_sequence(def_conf);
3580 assoc = get_defcfg_association(def_conf);
3581 if (! assoc)
3582 continue;
3583 if (! assoc_speaker)
3584 assoc_speaker = assoc;
3585 else if (assoc_speaker != assoc)
3586 continue;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003587 if (cfg->speaker_outs >= ARRAY_SIZE(cfg->speaker_pins))
3588 continue;
3589 cfg->speaker_pins[cfg->speaker_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02003590 sequences_speaker[cfg->speaker_outs] = seq;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003591 cfg->speaker_outs++;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003592 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003593 case AC_JACK_HP_OUT:
Takashi Iwaif889fa92007-10-31 15:49:32 +01003594 seq = get_defcfg_sequence(def_conf);
3595 assoc = get_defcfg_association(def_conf);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003596 if (cfg->hp_outs >= ARRAY_SIZE(cfg->hp_pins))
3597 continue;
3598 cfg->hp_pins[cfg->hp_outs] = nid;
Takashi Iwaif889fa92007-10-31 15:49:32 +01003599 sequences_hp[cfg->hp_outs] = (assoc << 4) | seq;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003600 cfg->hp_outs++;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003601 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02003602 case AC_JACK_MIC_IN: {
3603 int preferred, alt;
3604 if (loc == AC_JACK_LOC_FRONT) {
3605 preferred = AUTO_PIN_FRONT_MIC;
3606 alt = AUTO_PIN_MIC;
3607 } else {
3608 preferred = AUTO_PIN_MIC;
3609 alt = AUTO_PIN_FRONT_MIC;
3610 }
3611 if (!cfg->input_pins[preferred])
3612 cfg->input_pins[preferred] = nid;
3613 else if (!cfg->input_pins[alt])
3614 cfg->input_pins[alt] = nid;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003615 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02003616 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003617 case AC_JACK_LINE_IN:
3618 if (loc == AC_JACK_LOC_FRONT)
3619 cfg->input_pins[AUTO_PIN_FRONT_LINE] = nid;
3620 else
3621 cfg->input_pins[AUTO_PIN_LINE] = nid;
3622 break;
3623 case AC_JACK_CD:
3624 cfg->input_pins[AUTO_PIN_CD] = nid;
3625 break;
3626 case AC_JACK_AUX:
3627 cfg->input_pins[AUTO_PIN_AUX] = nid;
3628 break;
3629 case AC_JACK_SPDIF_OUT:
Takashi Iwai1b52ae72009-01-20 17:17:29 +01003630 case AC_JACK_DIG_OTHER_OUT:
Takashi Iwai0852d7a2009-02-11 11:35:15 +01003631 if (cfg->dig_outs >= ARRAY_SIZE(cfg->dig_out_pins))
3632 continue;
3633 cfg->dig_out_pins[cfg->dig_outs] = nid;
3634 cfg->dig_out_type[cfg->dig_outs] =
3635 (loc == AC_JACK_LOC_HDMI) ?
3636 HDA_PCM_TYPE_HDMI : HDA_PCM_TYPE_SPDIF;
3637 cfg->dig_outs++;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003638 break;
3639 case AC_JACK_SPDIF_IN:
Takashi Iwai1b52ae72009-01-20 17:17:29 +01003640 case AC_JACK_DIG_OTHER_IN:
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003641 cfg->dig_in_pin = nid;
Takashi Iwai2297bd62009-01-20 18:24:13 +01003642 if (loc == AC_JACK_LOC_HDMI)
3643 cfg->dig_in_type = HDA_PCM_TYPE_HDMI;
3644 else
3645 cfg->dig_in_type = HDA_PCM_TYPE_SPDIF;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003646 break;
3647 }
3648 }
3649
Takashi Iwai5832fcf2008-02-12 18:30:12 +01003650 /* FIX-UP:
3651 * If no line-out is defined but multiple HPs are found,
3652 * some of them might be the real line-outs.
3653 */
3654 if (!cfg->line_outs && cfg->hp_outs > 1) {
3655 int i = 0;
3656 while (i < cfg->hp_outs) {
3657 /* The real HPs should have the sequence 0x0f */
3658 if ((sequences_hp[i] & 0x0f) == 0x0f) {
3659 i++;
3660 continue;
3661 }
3662 /* Move it to the line-out table */
3663 cfg->line_out_pins[cfg->line_outs] = cfg->hp_pins[i];
3664 sequences_line_out[cfg->line_outs] = sequences_hp[i];
3665 cfg->line_outs++;
3666 cfg->hp_outs--;
3667 memmove(cfg->hp_pins + i, cfg->hp_pins + i + 1,
3668 sizeof(cfg->hp_pins[0]) * (cfg->hp_outs - i));
3669 memmove(sequences_hp + i - 1, sequences_hp + i,
3670 sizeof(sequences_hp[0]) * (cfg->hp_outs - i));
3671 }
3672 }
3673
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003674 /* sort by sequence */
Steve Longerbeam81937d32007-05-08 15:33:03 +02003675 sort_pins_by_sequence(cfg->line_out_pins, sequences_line_out,
3676 cfg->line_outs);
3677 sort_pins_by_sequence(cfg->speaker_pins, sequences_speaker,
3678 cfg->speaker_outs);
Takashi Iwaif889fa92007-10-31 15:49:32 +01003679 sort_pins_by_sequence(cfg->hp_pins, sequences_hp,
3680 cfg->hp_outs);
Steve Longerbeam81937d32007-05-08 15:33:03 +02003681
Takashi Iwaif889fa92007-10-31 15:49:32 +01003682 /* if we have only one mic, make it AUTO_PIN_MIC */
3683 if (!cfg->input_pins[AUTO_PIN_MIC] &&
3684 cfg->input_pins[AUTO_PIN_FRONT_MIC]) {
3685 cfg->input_pins[AUTO_PIN_MIC] =
3686 cfg->input_pins[AUTO_PIN_FRONT_MIC];
3687 cfg->input_pins[AUTO_PIN_FRONT_MIC] = 0;
3688 }
3689 /* ditto for line-in */
3690 if (!cfg->input_pins[AUTO_PIN_LINE] &&
3691 cfg->input_pins[AUTO_PIN_FRONT_LINE]) {
3692 cfg->input_pins[AUTO_PIN_LINE] =
3693 cfg->input_pins[AUTO_PIN_FRONT_LINE];
3694 cfg->input_pins[AUTO_PIN_FRONT_LINE] = 0;
3695 }
3696
Steve Longerbeam81937d32007-05-08 15:33:03 +02003697 /*
3698 * FIX-UP: if no line-outs are detected, try to use speaker or HP pin
3699 * as a primary output
3700 */
3701 if (!cfg->line_outs) {
3702 if (cfg->speaker_outs) {
3703 cfg->line_outs = cfg->speaker_outs;
3704 memcpy(cfg->line_out_pins, cfg->speaker_pins,
3705 sizeof(cfg->speaker_pins));
3706 cfg->speaker_outs = 0;
3707 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
3708 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
3709 } else if (cfg->hp_outs) {
3710 cfg->line_outs = cfg->hp_outs;
3711 memcpy(cfg->line_out_pins, cfg->hp_pins,
3712 sizeof(cfg->hp_pins));
3713 cfg->hp_outs = 0;
3714 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
3715 cfg->line_out_type = AUTO_PIN_HP_OUT;
3716 }
3717 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003718
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003719 /* Reorder the surround channels
3720 * ALSA sequence is front/surr/clfe/side
3721 * HDA sequence is:
3722 * 4-ch: front/surr => OK as it is
3723 * 6-ch: front/clfe/surr
Takashi Iwai9422db42007-04-20 16:11:43 +02003724 * 8-ch: front/clfe/rear/side|fc
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003725 */
3726 switch (cfg->line_outs) {
3727 case 3:
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003728 case 4:
3729 nid = cfg->line_out_pins[1];
Takashi Iwai9422db42007-04-20 16:11:43 +02003730 cfg->line_out_pins[1] = cfg->line_out_pins[2];
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003731 cfg->line_out_pins[2] = nid;
3732 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003733 }
3734
Takashi Iwai82bc9552006-03-21 11:24:42 +01003735 /*
3736 * debug prints of the parsed results
3737 */
3738 snd_printd("autoconfig: line_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3739 cfg->line_outs, cfg->line_out_pins[0], cfg->line_out_pins[1],
3740 cfg->line_out_pins[2], cfg->line_out_pins[3],
3741 cfg->line_out_pins[4]);
3742 snd_printd(" speaker_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3743 cfg->speaker_outs, cfg->speaker_pins[0],
3744 cfg->speaker_pins[1], cfg->speaker_pins[2],
3745 cfg->speaker_pins[3], cfg->speaker_pins[4]);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003746 snd_printd(" hp_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3747 cfg->hp_outs, cfg->hp_pins[0],
3748 cfg->hp_pins[1], cfg->hp_pins[2],
3749 cfg->hp_pins[3], cfg->hp_pins[4]);
Matthew Ranostay90da78b2008-01-24 11:48:01 +01003750 snd_printd(" mono: mono_out=0x%x\n", cfg->mono_out_pin);
Takashi Iwai0852d7a2009-02-11 11:35:15 +01003751 if (cfg->dig_outs)
3752 snd_printd(" dig-out=0x%x/0x%x\n",
3753 cfg->dig_out_pins[0], cfg->dig_out_pins[1]);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003754 snd_printd(" inputs: mic=0x%x, fmic=0x%x, line=0x%x, fline=0x%x,"
3755 " cd=0x%x, aux=0x%x\n",
3756 cfg->input_pins[AUTO_PIN_MIC],
3757 cfg->input_pins[AUTO_PIN_FRONT_MIC],
3758 cfg->input_pins[AUTO_PIN_LINE],
3759 cfg->input_pins[AUTO_PIN_FRONT_LINE],
3760 cfg->input_pins[AUTO_PIN_CD],
3761 cfg->input_pins[AUTO_PIN_AUX]);
Takashi Iwai32d2c7f2009-02-11 11:33:13 +01003762 if (cfg->dig_in_pin)
Takashi Iwai89ce9e82009-01-20 17:15:57 +01003763 snd_printd(" dig-in=0x%x\n", cfg->dig_in_pin);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003764
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003765 return 0;
3766}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003767EXPORT_SYMBOL_HDA(snd_hda_parse_pin_def_config);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003768
Takashi Iwai4a471b72005-12-07 13:56:29 +01003769/* labels for input pins */
3770const char *auto_pin_cfg_labels[AUTO_PIN_LAST] = {
3771 "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux"
3772};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003773EXPORT_SYMBOL_HDA(auto_pin_cfg_labels);
Takashi Iwai4a471b72005-12-07 13:56:29 +01003774
3775
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776#ifdef CONFIG_PM
3777/*
3778 * power management
3779 */
3780
3781/**
3782 * snd_hda_suspend - suspend the codecs
3783 * @bus: the HDA bus
3784 * @state: suspsend state
3785 *
3786 * Returns 0 if successful.
3787 */
3788int snd_hda_suspend(struct hda_bus *bus, pm_message_t state)
3789{
Takashi Iwai0ba21762007-04-16 11:29:14 +02003790 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791
Takashi Iwai0ba21762007-04-16 11:29:14 +02003792 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai0b7a2e92007-08-14 15:18:26 +02003793#ifdef CONFIG_SND_HDA_POWER_SAVE
3794 if (!codec->power_on)
3795 continue;
3796#endif
Takashi Iwaicb53c622007-08-10 17:21:45 +02003797 hda_call_codec_suspend(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798 }
3799 return 0;
3800}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003801EXPORT_SYMBOL_HDA(snd_hda_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802
3803/**
3804 * snd_hda_resume - resume the codecs
3805 * @bus: the HDA bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 *
3807 * Returns 0 if successful.
Takashi Iwaicb53c622007-08-10 17:21:45 +02003808 *
3809 * This fucntion is defined only when POWER_SAVE isn't set.
3810 * In the power-save mode, the codec is resumed dynamically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 */
3812int snd_hda_resume(struct hda_bus *bus)
3813{
Takashi Iwai0ba21762007-04-16 11:29:14 +02003814 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815
Takashi Iwai0ba21762007-04-16 11:29:14 +02003816 list_for_each_entry(codec, &bus->codec_list, list) {
Maxim Levitskyd804ad92007-09-03 15:28:04 +02003817 if (snd_hda_codec_needs_resume(codec))
3818 hda_call_codec_resume(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820 return 0;
3821}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003822EXPORT_SYMBOL_HDA(snd_hda_resume);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003823#endif /* CONFIG_PM */
Takashi Iwaib2e18592008-07-30 15:01:44 +02003824
3825/*
3826 * generic arrays
3827 */
3828
3829/* get a new element from the given array
3830 * if it exceeds the pre-allocated array size, re-allocate the array
3831 */
3832void *snd_array_new(struct snd_array *array)
3833{
3834 if (array->used >= array->alloced) {
3835 int num = array->alloced + array->alloc_align;
Takashi Iwaib910d9a2008-11-07 00:26:52 +01003836 void *nlist;
3837 if (snd_BUG_ON(num >= 4096))
3838 return NULL;
3839 nlist = kcalloc(num + 1, array->elem_size, GFP_KERNEL);
Takashi Iwaib2e18592008-07-30 15:01:44 +02003840 if (!nlist)
3841 return NULL;
3842 if (array->list) {
3843 memcpy(nlist, array->list,
3844 array->elem_size * array->alloced);
3845 kfree(array->list);
3846 }
3847 array->list = nlist;
3848 array->alloced = num;
3849 }
Takashi Iwaif43aa022008-11-10 16:24:26 +01003850 return snd_array_elem(array, array->used++);
Takashi Iwaib2e18592008-07-30 15:01:44 +02003851}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003852EXPORT_SYMBOL_HDA(snd_array_new);
Takashi Iwaib2e18592008-07-30 15:01:44 +02003853
3854/* free the given array elements */
3855void snd_array_free(struct snd_array *array)
3856{
3857 kfree(array->list);
3858 array->used = 0;
3859 array->alloced = 0;
3860 array->list = NULL;
3861}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003862EXPORT_SYMBOL_HDA(snd_array_free);
Takashi Iwaib2022262008-11-21 21:24:03 +01003863
3864/*
3865 * used by hda_proc.c and hda_eld.c
3866 */
3867void snd_print_pcm_rates(int pcm, char *buf, int buflen)
3868{
3869 static unsigned int rates[] = {
3870 8000, 11025, 16000, 22050, 32000, 44100, 48000, 88200,
3871 96000, 176400, 192000, 384000
3872 };
3873 int i, j;
3874
3875 for (i = 0, j = 0; i < ARRAY_SIZE(rates); i++)
3876 if (pcm & (1 << i))
3877 j += snprintf(buf + j, buflen - j, " %d", rates[i]);
3878
3879 buf[j] = '\0'; /* necessary when j == 0 */
3880}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003881EXPORT_SYMBOL_HDA(snd_print_pcm_rates);
Takashi Iwaib2022262008-11-21 21:24:03 +01003882
3883void snd_print_pcm_bits(int pcm, char *buf, int buflen)
3884{
3885 static unsigned int bits[] = { 8, 16, 20, 24, 32 };
3886 int i, j;
3887
3888 for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++)
3889 if (pcm & (AC_SUPPCM_BITS_8 << i))
3890 j += snprintf(buf + j, buflen - j, " %d", bits[i]);
3891
3892 buf[j] = '\0'; /* necessary when j == 0 */
3893}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003894EXPORT_SYMBOL_HDA(snd_print_pcm_bits);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003895
3896MODULE_DESCRIPTION("HDA codec core");
3897MODULE_LICENSE("GPL");