blob: 8459d6ba2055689b92cd58f3fea0cca13fb3379e [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 Iwaie250af22006-12-19 17:08:52 +0100376 schedule_work(&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;
440 if (bus->unsol) {
Takashi Iwaie250af22006-12-19 17:08:52 +0100441 flush_scheduled_work();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 kfree(bus->unsol);
443 }
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);
449 kfree(bus);
450 return 0;
451}
452
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100453static int snd_hda_bus_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 struct hda_bus *bus = device->device_data;
Takashi Iwaib94d35392008-11-21 09:08:06 +0100456 bus->shutdown = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return snd_hda_bus_free(bus);
458}
459
Takashi Iwaid7ffba12008-07-30 15:01:46 +0200460#ifdef CONFIG_SND_HDA_HWDEP
461static int snd_hda_bus_dev_register(struct snd_device *device)
462{
463 struct hda_bus *bus = device->device_data;
464 struct hda_codec *codec;
465 list_for_each_entry(codec, &bus->codec_list, list) {
466 snd_hda_hwdep_add_sysfs(codec);
467 }
468 return 0;
469}
470#else
471#define snd_hda_bus_dev_register NULL
472#endif
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474/**
475 * snd_hda_bus_new - create a HDA bus
476 * @card: the card entry
477 * @temp: the template for hda_bus information
478 * @busp: the pointer to store the created bus instance
479 *
480 * Returns 0 if successful, or a negative error code.
481 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100482int /*__devinit*/ snd_hda_bus_new(struct snd_card *card,
Takashi Iwai756e2b02007-04-16 11:27:07 +0200483 const struct hda_bus_template *temp,
484 struct hda_bus **busp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
486 struct hda_bus *bus;
487 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100488 static struct snd_device_ops dev_ops = {
Takashi Iwaid7ffba12008-07-30 15:01:46 +0200489 .dev_register = snd_hda_bus_dev_register,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 .dev_free = snd_hda_bus_dev_free,
491 };
492
Takashi Iwaida3cec32008-08-08 17:12:14 +0200493 if (snd_BUG_ON(!temp))
494 return -EINVAL;
495 if (snd_BUG_ON(!temp->ops.command || !temp->ops.get_response))
496 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 if (busp)
499 *busp = NULL;
500
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200501 bus = kzalloc(sizeof(*bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (bus == NULL) {
503 snd_printk(KERN_ERR "can't allocate struct hda_bus\n");
504 return -ENOMEM;
505 }
506
507 bus->card = card;
508 bus->private_data = temp->private_data;
509 bus->pci = temp->pci;
510 bus->modelname = temp->modelname;
Takashi Iwaifee2fba2008-11-27 12:43:28 +0100511 bus->power_save = temp->power_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 bus->ops = temp->ops;
513
Ingo Molnar62932df2006-01-16 16:34:20 +0100514 mutex_init(&bus->cmd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 INIT_LIST_HEAD(&bus->codec_list);
516
Takashi Iwai0ba21762007-04-16 11:29:14 +0200517 err = snd_device_new(card, SNDRV_DEV_BUS, bus, &dev_ops);
518 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 snd_hda_bus_free(bus);
520 return err;
521 }
522 if (busp)
523 *busp = bus;
524 return 0;
525}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100526EXPORT_SYMBOL_HDA(snd_hda_bus_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Takashi Iwai82467612007-07-27 19:15:54 +0200528#ifdef CONFIG_SND_HDA_GENERIC
529#define is_generic_config(codec) \
Takashi Iwaif44ac832008-07-30 15:01:45 +0200530 (codec->modelname && !strcmp(codec->modelname, "generic"))
Takashi Iwai82467612007-07-27 19:15:54 +0200531#else
532#define is_generic_config(codec) 0
533#endif
534
Takashi Iwai645f10c2008-11-28 15:07:37 +0100535#ifdef MODULE
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100536#define HDA_MODREQ_MAX_COUNT 2 /* two request_modules()'s */
537#else
Takashi Iwai645f10c2008-11-28 15:07:37 +0100538#define HDA_MODREQ_MAX_COUNT 0 /* all presets are statically linked */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100539#endif
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541/*
542 * find a matching codec preset
543 */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200544static const struct hda_codec_preset *
Takashi Iwai756e2b02007-04-16 11:27:07 +0200545find_codec_preset(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100547 struct hda_codec_preset_list *tbl;
548 const struct hda_codec_preset *preset;
549 int mod_requested = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Takashi Iwai82467612007-07-27 19:15:54 +0200551 if (is_generic_config(codec))
Takashi Iwaid5ad6302007-03-07 15:55:59 +0100552 return NULL; /* use the generic parser */
553
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100554 again:
555 mutex_lock(&preset_mutex);
556 list_for_each_entry(tbl, &hda_preset_tables, list) {
557 if (!try_module_get(tbl->owner)) {
558 snd_printk(KERN_ERR "hda_codec: cannot module_get\n");
559 continue;
560 }
561 for (preset = tbl->preset; preset->id; preset++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 u32 mask = preset->mask;
Marc Boucherca7cfae2008-01-22 15:32:25 +0100563 if (preset->afg && preset->afg != codec->afg)
564 continue;
565 if (preset->mfg && preset->mfg != codec->mfg)
566 continue;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200567 if (!mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 mask = ~0;
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200569 if (preset->id == (codec->vendor_id & mask) &&
Takashi Iwai0ba21762007-04-16 11:29:14 +0200570 (!preset->rev ||
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100571 preset->rev == codec->revision_id)) {
572 mutex_unlock(&preset_mutex);
573 codec->owner = tbl->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 return preset;
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 }
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100577 module_put(tbl->owner);
578 }
579 mutex_unlock(&preset_mutex);
580
581 if (mod_requested < HDA_MODREQ_MAX_COUNT) {
582 char name[32];
583 if (!mod_requested)
584 snprintf(name, sizeof(name), "snd-hda-codec-id:%08x",
585 codec->vendor_id);
586 else
587 snprintf(name, sizeof(name), "snd-hda-codec-id:%04x*",
588 (codec->vendor_id >> 16) & 0xffff);
589 request_module(name);
590 mod_requested++;
591 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 }
593 return NULL;
594}
595
596/*
Takashi Iwaif44ac832008-07-30 15:01:45 +0200597 * get_codec_name - store the codec name
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 */
Takashi Iwaif44ac832008-07-30 15:01:45 +0200599static int get_codec_name(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
601 const struct hda_vendor_id *c;
602 const char *vendor = NULL;
603 u16 vendor_id = codec->vendor_id >> 16;
Takashi Iwaif44ac832008-07-30 15:01:45 +0200604 char tmp[16], name[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 for (c = hda_vendor_ids; c->id; c++) {
607 if (c->id == vendor_id) {
608 vendor = c->name;
609 break;
610 }
611 }
Takashi Iwai0ba21762007-04-16 11:29:14 +0200612 if (!vendor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 sprintf(tmp, "Generic %04x", vendor_id);
614 vendor = tmp;
615 }
616 if (codec->preset && codec->preset->name)
Takashi Iwaif44ac832008-07-30 15:01:45 +0200617 snprintf(name, sizeof(name), "%s %s", vendor,
618 codec->preset->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 else
Takashi Iwaif44ac832008-07-30 15:01:45 +0200620 snprintf(name, sizeof(name), "%s ID %x", vendor,
Takashi Iwai0ba21762007-04-16 11:29:14 +0200621 codec->vendor_id & 0xffff);
Takashi Iwaif44ac832008-07-30 15:01:45 +0200622 codec->name = kstrdup(name, GFP_KERNEL);
623 if (!codec->name)
624 return -ENOMEM;
625 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
628/*
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200629 * look for an AFG and MFG nodes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100631static void /*__devinit*/ setup_fg_nodes(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
633 int i, total_nodes;
634 hda_nid_t nid;
635
636 total_nodes = snd_hda_get_sub_nodes(codec, AC_NODE_ROOT, &nid);
637 for (i = 0; i < total_nodes; i++, nid++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200638 unsigned int func;
639 func = snd_hda_param_read(codec, nid, AC_PAR_FUNCTION_TYPE);
640 switch (func & 0xff) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200641 case AC_GRP_AUDIO_FUNCTION:
642 codec->afg = nid;
643 break;
644 case AC_GRP_MODEM_FUNCTION:
645 codec->mfg = nid;
646 break;
647 default:
648 break;
649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652
653/*
Takashi Iwai54d17402005-11-21 16:33:22 +0100654 * read widget caps for each widget and store in cache
655 */
656static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node)
657{
658 int i;
659 hda_nid_t nid;
660
661 codec->num_nodes = snd_hda_get_sub_nodes(codec, fg_node,
662 &codec->start_nid);
663 codec->wcaps = kmalloc(codec->num_nodes * 4, GFP_KERNEL);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200664 if (!codec->wcaps)
Takashi Iwai54d17402005-11-21 16:33:22 +0100665 return -ENOMEM;
666 nid = codec->start_nid;
667 for (i = 0; i < codec->num_nodes; i++, nid++)
668 codec->wcaps[i] = snd_hda_param_read(codec, nid,
669 AC_PAR_AUDIO_WIDGET_CAP);
670 return 0;
671}
672
673
Takashi Iwai01751f52007-08-10 16:59:39 +0200674static void init_hda_cache(struct hda_cache_rec *cache,
675 unsigned int record_size);
Takashi Iwai1fcaee62007-08-23 00:01:09 +0200676static void free_hda_cache(struct hda_cache_rec *cache);
Takashi Iwai01751f52007-08-10 16:59:39 +0200677
Takashi Iwai54d17402005-11-21 16:33:22 +0100678/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 * codec destructor
680 */
681static void snd_hda_codec_free(struct hda_codec *codec)
682{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200683 if (!codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200685#ifdef CONFIG_SND_HDA_POWER_SAVE
686 cancel_delayed_work(&codec->power_work);
Takashi Iwai2525fdc2007-08-15 22:18:22 +0200687 flush_scheduled_work();
Takashi Iwaicb53c622007-08-10 17:21:45 +0200688#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 list_del(&codec->list);
Takashi Iwaid13bd412008-07-30 15:01:45 +0200690 snd_array_free(&codec->mixers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 codec->bus->caddr_tbl[codec->addr] = NULL;
692 if (codec->patch_ops.free)
693 codec->patch_ops.free(codec);
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100694 module_put(codec->owner);
Takashi Iwai01751f52007-08-10 16:59:39 +0200695 free_hda_cache(&codec->amp_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200696 free_hda_cache(&codec->cmd_cache);
Takashi Iwaif44ac832008-07-30 15:01:45 +0200697 kfree(codec->name);
698 kfree(codec->modelname);
Takashi Iwai54d17402005-11-21 16:33:22 +0100699 kfree(codec->wcaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 kfree(codec);
701}
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703/**
704 * snd_hda_codec_new - create a HDA codec
705 * @bus: the bus to assign
706 * @codec_addr: the codec address
707 * @codecp: the pointer to store the generated codec
708 *
709 * Returns 0 if successful, or a negative error code.
710 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100711int /*__devinit*/ snd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr,
Takashi Iwai756e2b02007-04-16 11:27:07 +0200712 struct hda_codec **codecp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
714 struct hda_codec *codec;
Jaroslav Kyselaba443682008-08-13 20:55:32 +0200715 char component[31];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 int err;
717
Takashi Iwaida3cec32008-08-08 17:12:14 +0200718 if (snd_BUG_ON(!bus))
719 return -EINVAL;
720 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
721 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 if (bus->caddr_tbl[codec_addr]) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200724 snd_printk(KERN_ERR "hda_codec: "
725 "address 0x%x is already occupied\n", codec_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 return -EBUSY;
727 }
728
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200729 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (codec == NULL) {
731 snd_printk(KERN_ERR "can't allocate struct hda_codec\n");
732 return -ENOMEM;
733 }
734
735 codec->bus = bus;
736 codec->addr = codec_addr;
Ingo Molnar62932df2006-01-16 16:34:20 +0100737 mutex_init(&codec->spdif_mutex);
Takashi Iwai01751f52007-08-10 16:59:39 +0200738 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200739 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Takashi Iwaid13bd412008-07-30 15:01:45 +0200740 snd_array_init(&codec->mixers, sizeof(struct snd_kcontrol *), 32);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200741 if (codec->bus->modelname) {
742 codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL);
743 if (!codec->modelname) {
744 snd_hda_codec_free(codec);
745 return -ENODEV;
746 }
747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Takashi Iwaicb53c622007-08-10 17:21:45 +0200749#ifdef CONFIG_SND_HDA_POWER_SAVE
750 INIT_DELAYED_WORK(&codec->power_work, hda_power_work);
751 /* snd_hda_codec_new() marks the codec as power-up, and leave it as is.
752 * the caller has to power down appropriatley after initialization
753 * phase.
754 */
755 hda_keep_power_on(codec);
756#endif
757
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 list_add_tail(&codec->list, &bus->codec_list);
759 bus->caddr_tbl[codec_addr] = codec;
760
Takashi Iwai0ba21762007-04-16 11:29:14 +0200761 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
762 AC_PAR_VENDOR_ID);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100763 if (codec->vendor_id == -1)
764 /* read again, hopefully the access method was corrected
765 * in the last read...
766 */
767 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
768 AC_PAR_VENDOR_ID);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200769 codec->subsystem_id = snd_hda_param_read(codec, AC_NODE_ROOT,
770 AC_PAR_SUBSYSTEM_ID);
771 codec->revision_id = snd_hda_param_read(codec, AC_NODE_ROOT,
772 AC_PAR_REV_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200774 setup_fg_nodes(codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200775 if (!codec->afg && !codec->mfg) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200776 snd_printdd("hda_codec: no AFG or MFG node found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 snd_hda_codec_free(codec);
778 return -ENODEV;
779 }
780
Takashi Iwai54d17402005-11-21 16:33:22 +0100781 if (read_widget_caps(codec, codec->afg ? codec->afg : codec->mfg) < 0) {
782 snd_printk(KERN_ERR "hda_codec: cannot malloc\n");
783 snd_hda_codec_free(codec);
784 return -ENOMEM;
785 }
786
Takashi Iwai0ba21762007-04-16 11:29:14 +0200787 if (!codec->subsystem_id) {
Takashi Iwai86284e42005-10-11 15:05:54 +0200788 hda_nid_t nid = codec->afg ? codec->afg : codec->mfg;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200789 codec->subsystem_id =
790 snd_hda_codec_read(codec, nid, 0,
791 AC_VERB_GET_SUBSYSTEM_ID, 0);
Takashi Iwai86284e42005-10-11 15:05:54 +0200792 }
Takashi Iwaif44ac832008-07-30 15:01:45 +0200793 if (bus->modelname)
794 codec->modelname = kstrdup(bus->modelname, GFP_KERNEL);
Takashi Iwai86284e42005-10-11 15:05:54 +0200795
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200796 err = snd_hda_codec_configure(codec);
797 if (err < 0) {
798 snd_hda_codec_free(codec);
799 return err;
800 }
801 snd_hda_codec_proc_new(codec);
802
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200803 snd_hda_create_hwdep(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200804
805 sprintf(component, "HDA:%08x,%08x,%08x", codec->vendor_id,
806 codec->subsystem_id, codec->revision_id);
807 snd_component_add(codec->bus->card, component);
808
809 if (codecp)
810 *codecp = codec;
811 return 0;
812}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100813EXPORT_SYMBOL_HDA(snd_hda_codec_new);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200814
815int snd_hda_codec_configure(struct hda_codec *codec)
816{
817 int err;
818
Takashi Iwaid5ad6302007-03-07 15:55:59 +0100819 codec->preset = find_codec_preset(codec);
Takashi Iwaif44ac832008-07-30 15:01:45 +0200820 if (!codec->name) {
821 err = get_codec_name(codec);
822 if (err < 0)
823 return err;
824 }
Takashi Iwai43ea1d42007-04-26 19:12:08 +0200825 /* audio codec should override the mixer name */
Takashi Iwaif44ac832008-07-30 15:01:45 +0200826 if (codec->afg || !*codec->bus->card->mixername)
827 strlcpy(codec->bus->card->mixername, codec->name,
828 sizeof(codec->bus->card->mixername));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Takashi Iwai82467612007-07-27 19:15:54 +0200830 if (is_generic_config(codec)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 err = snd_hda_parse_generic_codec(codec);
Takashi Iwai82467612007-07-27 19:15:54 +0200832 goto patched;
833 }
Takashi Iwai82467612007-07-27 19:15:54 +0200834 if (codec->preset && codec->preset->patch) {
835 err = codec->preset->patch(codec);
836 goto patched;
837 }
838
839 /* call the default parser */
Takashi Iwai82467612007-07-27 19:15:54 +0200840 err = snd_hda_parse_generic_codec(codec);
Takashi Iwai35a1e0c2007-10-19 08:13:40 +0200841 if (err < 0)
842 printk(KERN_ERR "hda-codec: No codec parser is available\n");
Takashi Iwai82467612007-07-27 19:15:54 +0200843
844 patched:
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200845 if (!err && codec->patch_ops.unsol_event)
846 err = init_unsol_queue(codec->bus);
847 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848}
849
850/**
851 * snd_hda_codec_setup_stream - set up the codec for streaming
852 * @codec: the CODEC to set up
853 * @nid: the NID to set up
854 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
855 * @channel_id: channel id to pass, zero based.
856 * @format: stream format.
857 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200858void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
859 u32 stream_tag,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 int channel_id, int format)
861{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200862 if (!nid)
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200863 return;
864
Takashi Iwai0ba21762007-04-16 11:29:14 +0200865 snd_printdd("hda_codec_setup_stream: "
866 "NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 nid, stream_tag, channel_id, format);
868 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID,
869 (stream_tag << 4) | channel_id);
870 msleep(1);
871 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, format);
872}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100873EXPORT_SYMBOL_HDA(snd_hda_codec_setup_stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Takashi Iwai888afa12008-03-18 09:57:50 +0100875void snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid)
876{
877 if (!nid)
878 return;
879
880 snd_printdd("hda_codec_cleanup_stream: NID=0x%x\n", nid);
881 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
882#if 0 /* keep the format */
883 msleep(1);
884 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0);
885#endif
886}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100887EXPORT_SYMBOL_HDA(snd_hda_codec_cleanup_stream);
Takashi Iwai888afa12008-03-18 09:57:50 +0100888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889/*
890 * amp access functions
891 */
892
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200893/* FIXME: more better hash key? */
894#define HDA_HASH_KEY(nid,dir,idx) (u32)((nid) + ((idx) << 16) + ((dir) << 24))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895#define INFO_AMP_CAPS (1<<0)
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200896#define INFO_AMP_VOL(ch) (1 << (1 + (ch)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
898/* initialize the hash table */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100899static void /*__devinit*/ init_hda_cache(struct hda_cache_rec *cache,
Takashi Iwai01751f52007-08-10 16:59:39 +0200900 unsigned int record_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
Takashi Iwai01751f52007-08-10 16:59:39 +0200902 memset(cache, 0, sizeof(*cache));
903 memset(cache->hash, 0xff, sizeof(cache->hash));
Takashi Iwai603c4012008-07-30 15:01:44 +0200904 snd_array_init(&cache->buf, record_size, 64);
Takashi Iwai01751f52007-08-10 16:59:39 +0200905}
906
Takashi Iwai1fcaee62007-08-23 00:01:09 +0200907static void free_hda_cache(struct hda_cache_rec *cache)
Takashi Iwai01751f52007-08-10 16:59:39 +0200908{
Takashi Iwai603c4012008-07-30 15:01:44 +0200909 snd_array_free(&cache->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910}
911
912/* query the hash. allocate an entry if not found. */
Takashi Iwai01751f52007-08-10 16:59:39 +0200913static struct hda_cache_head *get_alloc_hash(struct hda_cache_rec *cache,
914 u32 key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
Takashi Iwai01751f52007-08-10 16:59:39 +0200916 u16 idx = key % (u16)ARRAY_SIZE(cache->hash);
917 u16 cur = cache->hash[idx];
918 struct hda_cache_head *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 while (cur != 0xffff) {
Takashi Iwaif43aa022008-11-10 16:24:26 +0100921 info = snd_array_elem(&cache->buf, cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 if (info->key == key)
923 return info;
924 cur = info->next;
925 }
926
927 /* add a new hash entry */
Takashi Iwai603c4012008-07-30 15:01:44 +0200928 info = snd_array_new(&cache->buf);
Takashi Iwaic2174292008-11-07 00:23:30 +0100929 if (!info)
930 return NULL;
Takashi Iwaif43aa022008-11-10 16:24:26 +0100931 cur = snd_array_index(&cache->buf, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 info->key = key;
Takashi Iwai01751f52007-08-10 16:59:39 +0200933 info->val = 0;
934 info->next = cache->hash[idx];
935 cache->hash[idx] = cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 return info;
938}
939
Takashi Iwai01751f52007-08-10 16:59:39 +0200940/* query and allocate an amp hash entry */
941static inline struct hda_amp_info *
942get_alloc_amp_hash(struct hda_codec *codec, u32 key)
943{
944 return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key);
945}
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947/*
948 * query AMP capabilities for the given widget and direction
949 */
Matthew Ranostay09a99952008-01-24 11:49:21 +0100950u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200952 struct hda_amp_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
Takashi Iwai0ba21762007-04-16 11:29:14 +0200954 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, 0));
955 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 return 0;
Takashi Iwai01751f52007-08-10 16:59:39 +0200957 if (!(info->head.val & INFO_AMP_CAPS)) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200958 if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 nid = codec->afg;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200960 info->amp_caps = snd_hda_param_read(codec, nid,
961 direction == HDA_OUTPUT ?
962 AC_PAR_AMP_OUT_CAP :
963 AC_PAR_AMP_IN_CAP);
Takashi Iwaib75e53f2007-05-10 16:56:09 +0200964 if (info->amp_caps)
Takashi Iwai01751f52007-08-10 16:59:39 +0200965 info->head.val |= INFO_AMP_CAPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
967 return info->amp_caps;
968}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100969EXPORT_SYMBOL_HDA(query_amp_caps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Takashi Iwai897cc182007-05-29 19:01:37 +0200971int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
972 unsigned int caps)
973{
974 struct hda_amp_info *info;
975
976 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, dir, 0));
977 if (!info)
978 return -EINVAL;
979 info->amp_caps = caps;
Takashi Iwai01751f52007-08-10 16:59:39 +0200980 info->head.val |= INFO_AMP_CAPS;
Takashi Iwai897cc182007-05-29 19:01:37 +0200981 return 0;
982}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100983EXPORT_SYMBOL_HDA(snd_hda_override_amp_caps);
Takashi Iwai897cc182007-05-29 19:01:37 +0200984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985/*
986 * read the current volume to info
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200987 * if the cache exists, read the cache value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200989static unsigned int get_vol_mute(struct hda_codec *codec,
990 struct hda_amp_info *info, hda_nid_t nid,
991 int ch, int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
993 u32 val, parm;
994
Takashi Iwai01751f52007-08-10 16:59:39 +0200995 if (info->head.val & INFO_AMP_VOL(ch))
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200996 return info->vol[ch];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 parm = ch ? AC_AMP_GET_RIGHT : AC_AMP_GET_LEFT;
999 parm |= direction == HDA_OUTPUT ? AC_AMP_GET_OUTPUT : AC_AMP_GET_INPUT;
1000 parm |= index;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001001 val = snd_hda_codec_read(codec, nid, 0,
1002 AC_VERB_GET_AMP_GAIN_MUTE, parm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 info->vol[ch] = val & 0xff;
Takashi Iwai01751f52007-08-10 16:59:39 +02001004 info->head.val |= INFO_AMP_VOL(ch);
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001005 return info->vol[ch];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006}
1007
1008/*
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001009 * write the current volume in info to the h/w and update the cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 */
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001011static void put_vol_mute(struct hda_codec *codec, struct hda_amp_info *info,
Takashi Iwai0ba21762007-04-16 11:29:14 +02001012 hda_nid_t nid, int ch, int direction, int index,
1013 int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014{
1015 u32 parm;
1016
1017 parm = ch ? AC_AMP_SET_RIGHT : AC_AMP_SET_LEFT;
1018 parm |= direction == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT;
1019 parm |= index << AC_AMP_SET_INDEX_SHIFT;
1020 parm |= val;
1021 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, parm);
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001022 info->vol[ch] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023}
1024
1025/*
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001026 * read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 */
Takashi Iwai834be882006-03-01 14:16:17 +01001028int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch,
1029 int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001031 struct hda_amp_info *info;
1032 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, index));
1033 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001035 return get_vol_mute(codec, info, nid, ch, direction, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001037EXPORT_SYMBOL_HDA(snd_hda_codec_amp_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001039/*
1040 * update the AMP value, mask = bit mask to set, val = the value
1041 */
Takashi Iwai834be882006-03-01 14:16:17 +01001042int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch,
1043 int direction, int idx, int mask, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001045 struct hda_amp_info *info;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001046
Takashi Iwai0ba21762007-04-16 11:29:14 +02001047 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, idx));
1048 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001050 val &= mask;
1051 val |= get_vol_mute(codec, info, nid, ch, direction, idx) & ~mask;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001052 if (info->vol[ch] == val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001054 put_vol_mute(codec, info, nid, ch, direction, idx, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 return 1;
1056}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001057EXPORT_SYMBOL_HDA(snd_hda_codec_amp_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Takashi Iwai47fd8302007-08-10 17:11:07 +02001059/*
1060 * update the AMP stereo with the same mask and value
1061 */
1062int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
1063 int direction, int idx, int mask, int val)
1064{
1065 int ch, ret = 0;
1066 for (ch = 0; ch < 2; ch++)
1067 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
1068 idx, mask, val);
1069 return ret;
1070}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001071EXPORT_SYMBOL_HDA(snd_hda_codec_amp_stereo);
Takashi Iwai47fd8302007-08-10 17:11:07 +02001072
Takashi Iwaicb53c622007-08-10 17:21:45 +02001073#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001074/* resume the all amp commands from the cache */
1075void snd_hda_codec_resume_amp(struct hda_codec *codec)
1076{
Takashi Iwai603c4012008-07-30 15:01:44 +02001077 struct hda_amp_info *buffer = codec->amp_cache.buf.list;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001078 int i;
1079
Takashi Iwai603c4012008-07-30 15:01:44 +02001080 for (i = 0; i < codec->amp_cache.buf.used; i++, buffer++) {
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001081 u32 key = buffer->head.key;
1082 hda_nid_t nid;
1083 unsigned int idx, dir, ch;
1084 if (!key)
1085 continue;
1086 nid = key & 0xff;
1087 idx = (key >> 16) & 0xff;
1088 dir = (key >> 24) & 0xff;
1089 for (ch = 0; ch < 2; ch++) {
1090 if (!(buffer->head.val & INFO_AMP_VOL(ch)))
1091 continue;
1092 put_vol_mute(codec, buffer, nid, ch, dir, idx,
1093 buffer->vol[ch]);
1094 }
1095 }
1096}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001097EXPORT_SYMBOL_HDA(snd_hda_codec_resume_amp);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001098#endif /* SND_HDA_NEEDS_RESUME */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100/* volume */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001101int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
1102 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
1104 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1105 u16 nid = get_amp_nid(kcontrol);
1106 u8 chs = get_amp_channels(kcontrol);
1107 int dir = get_amp_direction(kcontrol);
1108 u32 caps;
1109
1110 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001111 /* num steps */
1112 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1113 if (!caps) {
1114 printk(KERN_WARNING "hda_codec: "
Takashi Iwai9c8f2ab2008-01-11 16:12:23 +01001115 "num_steps = 0 for NID=0x%x (ctl = %s)\n", nid,
1116 kcontrol->id.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 return -EINVAL;
1118 }
1119 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1120 uinfo->count = chs == 3 ? 2 : 1;
1121 uinfo->value.integer.min = 0;
1122 uinfo->value.integer.max = caps;
1123 return 0;
1124}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001125EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Takashi Iwai0ba21762007-04-16 11:29:14 +02001127int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
1128 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129{
1130 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1131 hda_nid_t nid = get_amp_nid(kcontrol);
1132 int chs = get_amp_channels(kcontrol);
1133 int dir = get_amp_direction(kcontrol);
1134 int idx = get_amp_index(kcontrol);
1135 long *valp = ucontrol->value.integer.value;
1136
1137 if (chs & 1)
Takashi Iwai47fd8302007-08-10 17:11:07 +02001138 *valp++ = snd_hda_codec_amp_read(codec, nid, 0, dir, idx)
1139 & HDA_AMP_VOLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 if (chs & 2)
Takashi Iwai47fd8302007-08-10 17:11:07 +02001141 *valp = snd_hda_codec_amp_read(codec, nid, 1, dir, idx)
1142 & HDA_AMP_VOLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 return 0;
1144}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001145EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Takashi Iwai0ba21762007-04-16 11:29:14 +02001147int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
1148 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149{
1150 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1151 hda_nid_t nid = get_amp_nid(kcontrol);
1152 int chs = get_amp_channels(kcontrol);
1153 int dir = get_amp_direction(kcontrol);
1154 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 long *valp = ucontrol->value.integer.value;
1156 int change = 0;
1157
Takashi Iwaicb53c622007-08-10 17:21:45 +02001158 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001159 if (chs & 1) {
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001160 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
1161 0x7f, *valp);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001162 valp++;
1163 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001164 if (chs & 2)
1165 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001166 0x7f, *valp);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001167 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 return change;
1169}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001170EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001172int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1173 unsigned int size, unsigned int __user *_tlv)
1174{
1175 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1176 hda_nid_t nid = get_amp_nid(kcontrol);
1177 int dir = get_amp_direction(kcontrol);
1178 u32 caps, val1, val2;
1179
1180 if (size < 4 * sizeof(unsigned int))
1181 return -ENOMEM;
1182 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001183 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1184 val2 = (val2 + 1) * 25;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001185 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
1186 val1 = ((int)val1) * ((int)val2);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001187 if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv))
1188 return -EFAULT;
1189 if (put_user(2 * sizeof(unsigned int), _tlv + 1))
1190 return -EFAULT;
1191 if (put_user(val1, _tlv + 2))
1192 return -EFAULT;
1193 if (put_user(val2, _tlv + 3))
1194 return -EFAULT;
1195 return 0;
1196}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001197EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_tlv);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001198
Takashi Iwai2134ea42008-01-10 16:53:55 +01001199/*
1200 * set (static) TLV for virtual master volume; recalculated as max 0dB
1201 */
1202void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
1203 unsigned int *tlv)
1204{
1205 u32 caps;
1206 int nums, step;
1207
1208 caps = query_amp_caps(codec, nid, dir);
1209 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1210 step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1211 step = (step + 1) * 25;
1212 tlv[0] = SNDRV_CTL_TLVT_DB_SCALE;
1213 tlv[1] = 2 * sizeof(unsigned int);
1214 tlv[2] = -nums * step;
1215 tlv[3] = step;
1216}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001217EXPORT_SYMBOL_HDA(snd_hda_set_vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001218
1219/* find a mixer control element with the given name */
Takashi Iwai09f99702008-02-04 12:31:13 +01001220static struct snd_kcontrol *
1221_snd_hda_find_mixer_ctl(struct hda_codec *codec,
1222 const char *name, int idx)
Takashi Iwai2134ea42008-01-10 16:53:55 +01001223{
1224 struct snd_ctl_elem_id id;
1225 memset(&id, 0, sizeof(id));
1226 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Takashi Iwai09f99702008-02-04 12:31:13 +01001227 id.index = idx;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001228 strcpy(id.name, name);
1229 return snd_ctl_find_id(codec->bus->card, &id);
1230}
1231
Takashi Iwai09f99702008-02-04 12:31:13 +01001232struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
1233 const char *name)
1234{
1235 return _snd_hda_find_mixer_ctl(codec, name, 0);
1236}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001237EXPORT_SYMBOL_HDA(snd_hda_find_mixer_ctl);
Takashi Iwai09f99702008-02-04 12:31:13 +01001238
Takashi Iwaid13bd412008-07-30 15:01:45 +02001239/* Add a control element and assign to the codec */
1240int snd_hda_ctl_add(struct hda_codec *codec, struct snd_kcontrol *kctl)
1241{
1242 int err;
1243 struct snd_kcontrol **knewp;
1244
1245 err = snd_ctl_add(codec->bus->card, kctl);
1246 if (err < 0)
1247 return err;
1248 knewp = snd_array_new(&codec->mixers);
1249 if (!knewp)
1250 return -ENOMEM;
1251 *knewp = kctl;
1252 return 0;
1253}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001254EXPORT_SYMBOL_HDA(snd_hda_ctl_add);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001255
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001256#ifdef CONFIG_SND_HDA_RECONFIG
Takashi Iwaid13bd412008-07-30 15:01:45 +02001257/* Clear all controls assigned to the given codec */
1258void snd_hda_ctls_clear(struct hda_codec *codec)
1259{
1260 int i;
1261 struct snd_kcontrol **kctls = codec->mixers.list;
1262 for (i = 0; i < codec->mixers.used; i++)
1263 snd_ctl_remove(codec->bus->card, kctls[i]);
1264 snd_array_free(&codec->mixers);
1265}
1266
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001267void snd_hda_codec_reset(struct hda_codec *codec)
1268{
1269 int i;
1270
1271#ifdef CONFIG_SND_HDA_POWER_SAVE
1272 cancel_delayed_work(&codec->power_work);
1273 flush_scheduled_work();
1274#endif
1275 snd_hda_ctls_clear(codec);
1276 /* relase PCMs */
1277 for (i = 0; i < codec->num_pcms; i++) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001278 if (codec->pcm_info[i].pcm) {
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001279 snd_device_free(codec->bus->card,
1280 codec->pcm_info[i].pcm);
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001281 clear_bit(codec->pcm_info[i].device,
1282 codec->bus->pcm_dev_bits);
1283 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001284 }
1285 if (codec->patch_ops.free)
1286 codec->patch_ops.free(codec);
Takashi Iwai56d17712008-11-28 14:36:23 +01001287 codec->proc_widget_hook = NULL;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001288 codec->spec = NULL;
1289 free_hda_cache(&codec->amp_cache);
1290 free_hda_cache(&codec->cmd_cache);
1291 codec->num_pcms = 0;
1292 codec->pcm_info = NULL;
1293 codec->preset = NULL;
Takashi Iwai1289e9e2008-11-27 15:47:11 +01001294 module_put(codec->owner);
1295 codec->owner = NULL;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001296}
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001297#endif /* CONFIG_SND_HDA_RECONFIG */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001298
Takashi Iwai2134ea42008-01-10 16:53:55 +01001299/* create a virtual master control and add slaves */
1300int snd_hda_add_vmaster(struct hda_codec *codec, char *name,
1301 unsigned int *tlv, const char **slaves)
1302{
1303 struct snd_kcontrol *kctl;
1304 const char **s;
1305 int err;
1306
Takashi Iwai2f085542008-02-22 18:43:50 +01001307 for (s = slaves; *s && !snd_hda_find_mixer_ctl(codec, *s); s++)
1308 ;
1309 if (!*s) {
1310 snd_printdd("No slave found for %s\n", name);
1311 return 0;
1312 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001313 kctl = snd_ctl_make_virtual_master(name, tlv);
1314 if (!kctl)
1315 return -ENOMEM;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001316 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001317 if (err < 0)
1318 return err;
1319
1320 for (s = slaves; *s; s++) {
1321 struct snd_kcontrol *sctl;
1322
1323 sctl = snd_hda_find_mixer_ctl(codec, *s);
1324 if (!sctl) {
1325 snd_printdd("Cannot find slave %s, skipped\n", *s);
1326 continue;
1327 }
1328 err = snd_ctl_add_slave(kctl, sctl);
1329 if (err < 0)
1330 return err;
1331 }
1332 return 0;
1333}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001334EXPORT_SYMBOL_HDA(snd_hda_add_vmaster);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001335
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336/* switch */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001337int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
1338 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339{
1340 int chs = get_amp_channels(kcontrol);
1341
1342 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1343 uinfo->count = chs == 3 ? 2 : 1;
1344 uinfo->value.integer.min = 0;
1345 uinfo->value.integer.max = 1;
1346 return 0;
1347}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001348EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Takashi Iwai0ba21762007-04-16 11:29:14 +02001350int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
1351 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
1353 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1354 hda_nid_t nid = get_amp_nid(kcontrol);
1355 int chs = get_amp_channels(kcontrol);
1356 int dir = get_amp_direction(kcontrol);
1357 int idx = get_amp_index(kcontrol);
1358 long *valp = ucontrol->value.integer.value;
1359
1360 if (chs & 1)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001361 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02001362 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 if (chs & 2)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001364 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02001365 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return 0;
1367}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001368EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
Takashi Iwai0ba21762007-04-16 11:29:14 +02001370int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
1371 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372{
1373 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1374 hda_nid_t nid = get_amp_nid(kcontrol);
1375 int chs = get_amp_channels(kcontrol);
1376 int dir = get_amp_direction(kcontrol);
1377 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 long *valp = ucontrol->value.integer.value;
1379 int change = 0;
1380
Takashi Iwaicb53c622007-08-10 17:21:45 +02001381 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001382 if (chs & 1) {
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001383 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001384 HDA_AMP_MUTE,
1385 *valp ? 0 : HDA_AMP_MUTE);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001386 valp++;
1387 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001388 if (chs & 2)
1389 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001390 HDA_AMP_MUTE,
1391 *valp ? 0 : HDA_AMP_MUTE);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001392#ifdef CONFIG_SND_HDA_POWER_SAVE
1393 if (codec->patch_ops.check_power_status)
1394 codec->patch_ops.check_power_status(codec, nid);
1395#endif
1396 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 return change;
1398}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001399EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401/*
Takashi Iwai985be542005-11-02 18:26:49 +01001402 * bound volume controls
1403 *
1404 * bind multiple volumes (# indices, from 0)
1405 */
1406
1407#define AMP_VAL_IDX_SHIFT 19
1408#define AMP_VAL_IDX_MASK (0x0f<<19)
1409
Takashi Iwai0ba21762007-04-16 11:29:14 +02001410int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol,
1411 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01001412{
1413 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1414 unsigned long pval;
1415 int err;
1416
Ingo Molnar62932df2006-01-16 16:34:20 +01001417 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
Takashi Iwai985be542005-11-02 18:26:49 +01001418 pval = kcontrol->private_value;
1419 kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */
1420 err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
1421 kcontrol->private_value = pval;
Ingo Molnar62932df2006-01-16 16:34:20 +01001422 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001423 return err;
1424}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001425EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_get);
Takashi Iwai985be542005-11-02 18:26:49 +01001426
Takashi Iwai0ba21762007-04-16 11:29:14 +02001427int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol,
1428 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01001429{
1430 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1431 unsigned long pval;
1432 int i, indices, err = 0, change = 0;
1433
Ingo Molnar62932df2006-01-16 16:34:20 +01001434 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
Takashi Iwai985be542005-11-02 18:26:49 +01001435 pval = kcontrol->private_value;
1436 indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT;
1437 for (i = 0; i < indices; i++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001438 kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) |
1439 (i << AMP_VAL_IDX_SHIFT);
Takashi Iwai985be542005-11-02 18:26:49 +01001440 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
1441 if (err < 0)
1442 break;
1443 change |= err;
1444 }
1445 kcontrol->private_value = pval;
Ingo Molnar62932df2006-01-16 16:34:20 +01001446 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001447 return err < 0 ? err : change;
1448}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001449EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_put);
Takashi Iwai985be542005-11-02 18:26:49 +01001450
1451/*
Takashi Iwai532d5382007-07-27 19:02:40 +02001452 * generic bound volume/swtich controls
1453 */
1454int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol,
1455 struct snd_ctl_elem_info *uinfo)
1456{
1457 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1458 struct hda_bind_ctls *c;
1459 int err;
1460
Takashi Iwai532d5382007-07-27 19:02:40 +02001461 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001462 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001463 kcontrol->private_value = *c->values;
1464 err = c->ops->info(kcontrol, uinfo);
1465 kcontrol->private_value = (long)c;
1466 mutex_unlock(&codec->spdif_mutex);
1467 return err;
1468}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001469EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_info);
Takashi Iwai532d5382007-07-27 19:02:40 +02001470
1471int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol,
1472 struct snd_ctl_elem_value *ucontrol)
1473{
1474 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1475 struct hda_bind_ctls *c;
1476 int err;
1477
Takashi Iwai532d5382007-07-27 19:02:40 +02001478 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001479 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001480 kcontrol->private_value = *c->values;
1481 err = c->ops->get(kcontrol, ucontrol);
1482 kcontrol->private_value = (long)c;
1483 mutex_unlock(&codec->spdif_mutex);
1484 return err;
1485}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001486EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_get);
Takashi Iwai532d5382007-07-27 19:02:40 +02001487
1488int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol,
1489 struct snd_ctl_elem_value *ucontrol)
1490{
1491 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1492 struct hda_bind_ctls *c;
1493 unsigned long *vals;
1494 int err = 0, change = 0;
1495
Takashi Iwai532d5382007-07-27 19:02:40 +02001496 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001497 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001498 for (vals = c->values; *vals; vals++) {
1499 kcontrol->private_value = *vals;
1500 err = c->ops->put(kcontrol, ucontrol);
1501 if (err < 0)
1502 break;
1503 change |= err;
1504 }
1505 kcontrol->private_value = (long)c;
1506 mutex_unlock(&codec->spdif_mutex);
1507 return err < 0 ? err : change;
1508}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001509EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_put);
Takashi Iwai532d5382007-07-27 19:02:40 +02001510
1511int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1512 unsigned int size, unsigned int __user *tlv)
1513{
1514 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1515 struct hda_bind_ctls *c;
1516 int err;
1517
Takashi Iwai532d5382007-07-27 19:02:40 +02001518 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001519 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001520 kcontrol->private_value = *c->values;
1521 err = c->ops->tlv(kcontrol, op_flag, size, tlv);
1522 kcontrol->private_value = (long)c;
1523 mutex_unlock(&codec->spdif_mutex);
1524 return err;
1525}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001526EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_tlv);
Takashi Iwai532d5382007-07-27 19:02:40 +02001527
1528struct hda_ctl_ops snd_hda_bind_vol = {
1529 .info = snd_hda_mixer_amp_volume_info,
1530 .get = snd_hda_mixer_amp_volume_get,
1531 .put = snd_hda_mixer_amp_volume_put,
1532 .tlv = snd_hda_mixer_amp_tlv
1533};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001534EXPORT_SYMBOL_HDA(snd_hda_bind_vol);
Takashi Iwai532d5382007-07-27 19:02:40 +02001535
1536struct hda_ctl_ops snd_hda_bind_sw = {
1537 .info = snd_hda_mixer_amp_switch_info,
1538 .get = snd_hda_mixer_amp_switch_get,
1539 .put = snd_hda_mixer_amp_switch_put,
1540 .tlv = snd_hda_mixer_amp_tlv
1541};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001542EXPORT_SYMBOL_HDA(snd_hda_bind_sw);
Takashi Iwai532d5382007-07-27 19:02:40 +02001543
1544/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 * SPDIF out controls
1546 */
1547
Takashi Iwai0ba21762007-04-16 11:29:14 +02001548static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
1549 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
1551 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1552 uinfo->count = 1;
1553 return 0;
1554}
1555
Takashi Iwai0ba21762007-04-16 11:29:14 +02001556static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
1557 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
1559 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1560 IEC958_AES0_NONAUDIO |
1561 IEC958_AES0_CON_EMPHASIS_5015 |
1562 IEC958_AES0_CON_NOT_COPYRIGHT;
1563 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
1564 IEC958_AES1_CON_ORIGINAL;
1565 return 0;
1566}
1567
Takashi Iwai0ba21762007-04-16 11:29:14 +02001568static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
1569 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
1571 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1572 IEC958_AES0_NONAUDIO |
1573 IEC958_AES0_PRO_EMPHASIS_5015;
1574 return 0;
1575}
1576
Takashi Iwai0ba21762007-04-16 11:29:14 +02001577static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
1578 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579{
1580 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1581
1582 ucontrol->value.iec958.status[0] = codec->spdif_status & 0xff;
1583 ucontrol->value.iec958.status[1] = (codec->spdif_status >> 8) & 0xff;
1584 ucontrol->value.iec958.status[2] = (codec->spdif_status >> 16) & 0xff;
1585 ucontrol->value.iec958.status[3] = (codec->spdif_status >> 24) & 0xff;
1586
1587 return 0;
1588}
1589
1590/* convert from SPDIF status bits to HDA SPDIF bits
1591 * bit 0 (DigEn) is always set zero (to be filled later)
1592 */
1593static unsigned short convert_from_spdif_status(unsigned int sbits)
1594{
1595 unsigned short val = 0;
1596
1597 if (sbits & IEC958_AES0_PROFESSIONAL)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001598 val |= AC_DIG1_PROFESSIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 if (sbits & IEC958_AES0_NONAUDIO)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001600 val |= AC_DIG1_NONAUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001602 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
1603 IEC958_AES0_PRO_EMPHASIS_5015)
1604 val |= AC_DIG1_EMPHASIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001606 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
1607 IEC958_AES0_CON_EMPHASIS_5015)
1608 val |= AC_DIG1_EMPHASIS;
1609 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
1610 val |= AC_DIG1_COPYRIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
Takashi Iwai0ba21762007-04-16 11:29:14 +02001612 val |= AC_DIG1_LEVEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
1614 }
1615 return val;
1616}
1617
1618/* convert to SPDIF status bits from HDA SPDIF bits
1619 */
1620static unsigned int convert_to_spdif_status(unsigned short val)
1621{
1622 unsigned int sbits = 0;
1623
Takashi Iwai0ba21762007-04-16 11:29:14 +02001624 if (val & AC_DIG1_NONAUDIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 sbits |= IEC958_AES0_NONAUDIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001626 if (val & AC_DIG1_PROFESSIONAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 sbits |= IEC958_AES0_PROFESSIONAL;
1628 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001629 if (sbits & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
1631 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001632 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001634 if (!(val & AC_DIG1_COPYRIGHT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001636 if (val & AC_DIG1_LEVEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
1638 sbits |= val & (0x7f << 8);
1639 }
1640 return sbits;
1641}
1642
Takashi Iwai2f728532008-09-25 16:32:41 +02001643/* set digital convert verbs both for the given NID and its slaves */
1644static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
1645 int verb, int val)
1646{
1647 hda_nid_t *d;
1648
Takashi Iwai9e976972008-11-25 08:17:20 +01001649 snd_hda_codec_write_cache(codec, nid, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02001650 d = codec->slave_dig_outs;
1651 if (!d)
1652 return;
1653 for (; *d; d++)
Takashi Iwai9e976972008-11-25 08:17:20 +01001654 snd_hda_codec_write_cache(codec, *d, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02001655}
1656
1657static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,
1658 int dig1, int dig2)
1659{
1660 if (dig1 != -1)
1661 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_1, dig1);
1662 if (dig2 != -1)
1663 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_2, dig2);
1664}
1665
Takashi Iwai0ba21762007-04-16 11:29:14 +02001666static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
1667 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668{
1669 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1670 hda_nid_t nid = kcontrol->private_value;
1671 unsigned short val;
1672 int change;
1673
Ingo Molnar62932df2006-01-16 16:34:20 +01001674 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 codec->spdif_status = ucontrol->value.iec958.status[0] |
1676 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
1677 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
1678 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
1679 val = convert_from_spdif_status(codec->spdif_status);
1680 val |= codec->spdif_ctls & 1;
1681 change = codec->spdif_ctls != val;
1682 codec->spdif_ctls = val;
1683
Takashi Iwai2f728532008-09-25 16:32:41 +02001684 if (change)
1685 set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Ingo Molnar62932df2006-01-16 16:34:20 +01001687 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 return change;
1689}
1690
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001691#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Takashi Iwai0ba21762007-04-16 11:29:14 +02001693static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
1694 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695{
1696 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1697
Takashi Iwai0ba21762007-04-16 11:29:14 +02001698 ucontrol->value.integer.value[0] = codec->spdif_ctls & AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 return 0;
1700}
1701
Takashi Iwai0ba21762007-04-16 11:29:14 +02001702static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
1703 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
1705 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1706 hda_nid_t nid = kcontrol->private_value;
1707 unsigned short val;
1708 int change;
1709
Ingo Molnar62932df2006-01-16 16:34:20 +01001710 mutex_lock(&codec->spdif_mutex);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001711 val = codec->spdif_ctls & ~AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 if (ucontrol->value.integer.value[0])
Takashi Iwai0ba21762007-04-16 11:29:14 +02001713 val |= AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 change = codec->spdif_ctls != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001715 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 codec->spdif_ctls = val;
Takashi Iwai2f728532008-09-25 16:32:41 +02001717 set_dig_out_convert(codec, nid, val & 0xff, -1);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001718 /* unmute amp switch (if any) */
1719 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
Takashi Iwai47fd8302007-08-10 17:11:07 +02001720 (val & AC_DIG1_ENABLE))
1721 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
1722 HDA_AMP_MUTE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001724 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 return change;
1726}
1727
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001728static struct snd_kcontrol_new dig_mixes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 {
1730 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1731 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1732 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK),
1733 .info = snd_hda_spdif_mask_info,
1734 .get = snd_hda_spdif_cmask_get,
1735 },
1736 {
1737 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1738 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1739 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PRO_MASK),
1740 .info = snd_hda_spdif_mask_info,
1741 .get = snd_hda_spdif_pmask_get,
1742 },
1743 {
1744 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1745 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
1746 .info = snd_hda_spdif_mask_info,
1747 .get = snd_hda_spdif_default_get,
1748 .put = snd_hda_spdif_default_put,
1749 },
1750 {
1751 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1752 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH),
1753 .info = snd_hda_spdif_out_switch_info,
1754 .get = snd_hda_spdif_out_switch_get,
1755 .put = snd_hda_spdif_out_switch_put,
1756 },
1757 { } /* end */
1758};
1759
Takashi Iwai09f99702008-02-04 12:31:13 +01001760#define SPDIF_MAX_IDX 4 /* 4 instances should be enough to probe */
1761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762/**
1763 * snd_hda_create_spdif_out_ctls - create Output SPDIF-related controls
1764 * @codec: the HDA codec
1765 * @nid: audio out widget NID
1766 *
1767 * Creates controls related with the SPDIF output.
1768 * Called from each patch supporting the SPDIF out.
1769 *
1770 * Returns 0 if successful, or a negative error code.
1771 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02001772int snd_hda_create_spdif_out_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773{
1774 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001775 struct snd_kcontrol *kctl;
1776 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01001777 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Takashi Iwai09f99702008-02-04 12:31:13 +01001779 for (idx = 0; idx < SPDIF_MAX_IDX; idx++) {
1780 if (!_snd_hda_find_mixer_ctl(codec, "IEC958 Playback Switch",
1781 idx))
1782 break;
1783 }
1784 if (idx >= SPDIF_MAX_IDX) {
1785 printk(KERN_ERR "hda_codec: too many IEC958 outputs\n");
1786 return -EBUSY;
1787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
1789 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaib91f0802008-11-04 08:43:08 +01001790 if (!kctl)
1791 return -ENOMEM;
Takashi Iwai09f99702008-02-04 12:31:13 +01001792 kctl->id.index = idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 kctl->private_value = nid;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001794 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001795 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 return err;
1797 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001798 codec->spdif_ctls =
Andrew Paprocki3982d172007-12-19 12:13:44 +01001799 snd_hda_codec_read(codec, nid, 0,
1800 AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 codec->spdif_status = convert_to_spdif_status(codec->spdif_ctls);
1802 return 0;
1803}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001804EXPORT_SYMBOL_HDA(snd_hda_create_spdif_out_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
1806/*
Takashi Iwai9a081602008-02-12 18:37:26 +01001807 * SPDIF sharing with analog output
1808 */
1809static int spdif_share_sw_get(struct snd_kcontrol *kcontrol,
1810 struct snd_ctl_elem_value *ucontrol)
1811{
1812 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
1813 ucontrol->value.integer.value[0] = mout->share_spdif;
1814 return 0;
1815}
1816
1817static int spdif_share_sw_put(struct snd_kcontrol *kcontrol,
1818 struct snd_ctl_elem_value *ucontrol)
1819{
1820 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
1821 mout->share_spdif = !!ucontrol->value.integer.value[0];
1822 return 0;
1823}
1824
1825static struct snd_kcontrol_new spdif_share_sw = {
1826 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1827 .name = "IEC958 Default PCM Playback Switch",
1828 .info = snd_ctl_boolean_mono_info,
1829 .get = spdif_share_sw_get,
1830 .put = spdif_share_sw_put,
1831};
1832
1833int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
1834 struct hda_multi_out *mout)
1835{
1836 if (!mout->dig_out_nid)
1837 return 0;
1838 /* ATTENTION: here mout is passed as private_data, instead of codec */
Takashi Iwaid13bd412008-07-30 15:01:45 +02001839 return snd_hda_ctl_add(codec,
Takashi Iwai9a081602008-02-12 18:37:26 +01001840 snd_ctl_new1(&spdif_share_sw, mout));
1841}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001842EXPORT_SYMBOL_HDA(snd_hda_create_spdif_share_sw);
Takashi Iwai9a081602008-02-12 18:37:26 +01001843
1844/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 * SPDIF input
1846 */
1847
1848#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
1849
Takashi Iwai0ba21762007-04-16 11:29:14 +02001850static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
1851 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852{
1853 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1854
1855 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
1856 return 0;
1857}
1858
Takashi Iwai0ba21762007-04-16 11:29:14 +02001859static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
1860 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861{
1862 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1863 hda_nid_t nid = kcontrol->private_value;
1864 unsigned int val = !!ucontrol->value.integer.value[0];
1865 int change;
1866
Ingo Molnar62932df2006-01-16 16:34:20 +01001867 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001869 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 codec->spdif_in_enable = val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001871 snd_hda_codec_write_cache(codec, nid, 0,
1872 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001874 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 return change;
1876}
1877
Takashi Iwai0ba21762007-04-16 11:29:14 +02001878static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
1879 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880{
1881 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1882 hda_nid_t nid = kcontrol->private_value;
1883 unsigned short val;
1884 unsigned int sbits;
1885
Andrew Paprocki3982d172007-12-19 12:13:44 +01001886 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 sbits = convert_to_spdif_status(val);
1888 ucontrol->value.iec958.status[0] = sbits;
1889 ucontrol->value.iec958.status[1] = sbits >> 8;
1890 ucontrol->value.iec958.status[2] = sbits >> 16;
1891 ucontrol->value.iec958.status[3] = sbits >> 24;
1892 return 0;
1893}
1894
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001895static struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 {
1897 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1898 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH),
1899 .info = snd_hda_spdif_in_switch_info,
1900 .get = snd_hda_spdif_in_switch_get,
1901 .put = snd_hda_spdif_in_switch_put,
1902 },
1903 {
1904 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1905 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1906 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,DEFAULT),
1907 .info = snd_hda_spdif_mask_info,
1908 .get = snd_hda_spdif_in_status_get,
1909 },
1910 { } /* end */
1911};
1912
1913/**
1914 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
1915 * @codec: the HDA codec
1916 * @nid: audio in widget NID
1917 *
1918 * Creates controls related with the SPDIF input.
1919 * Called from each patch supporting the SPDIF in.
1920 *
1921 * Returns 0 if successful, or a negative error code.
1922 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02001923int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924{
1925 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001926 struct snd_kcontrol *kctl;
1927 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01001928 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
Takashi Iwai09f99702008-02-04 12:31:13 +01001930 for (idx = 0; idx < SPDIF_MAX_IDX; idx++) {
1931 if (!_snd_hda_find_mixer_ctl(codec, "IEC958 Capture Switch",
1932 idx))
1933 break;
1934 }
1935 if (idx >= SPDIF_MAX_IDX) {
1936 printk(KERN_ERR "hda_codec: too many IEC958 inputs\n");
1937 return -EBUSY;
1938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
1940 kctl = snd_ctl_new1(dig_mix, codec);
1941 kctl->private_value = nid;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001942 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001943 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 return err;
1945 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001946 codec->spdif_in_enable =
Andrew Paprocki3982d172007-12-19 12:13:44 +01001947 snd_hda_codec_read(codec, nid, 0,
1948 AC_VERB_GET_DIGI_CONVERT_1, 0) &
Takashi Iwai0ba21762007-04-16 11:29:14 +02001949 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 return 0;
1951}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001952EXPORT_SYMBOL_HDA(snd_hda_create_spdif_in_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
Takashi Iwaicb53c622007-08-10 17:21:45 +02001954#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001955/*
1956 * command cache
1957 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001959/* build a 32bit cache key with the widget id and the command parameter */
1960#define build_cmd_cache_key(nid, verb) ((verb << 8) | nid)
1961#define get_cmd_cache_nid(key) ((key) & 0xff)
1962#define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff)
1963
1964/**
1965 * snd_hda_codec_write_cache - send a single command with caching
1966 * @codec: the HDA codec
1967 * @nid: NID to send the command
1968 * @direct: direct flag
1969 * @verb: the verb to send
1970 * @parm: the parameter for the verb
1971 *
1972 * Send a single command without waiting for response.
1973 *
1974 * Returns 0 if successful, or a negative error code.
1975 */
1976int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid,
1977 int direct, unsigned int verb, unsigned int parm)
1978{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01001979 struct hda_bus *bus = codec->bus;
1980 unsigned int res;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001981 int err;
Takashi Iwai33fa35e2008-11-06 16:50:40 +01001982
1983 res = make_codec_cmd(codec, nid, direct, verb, parm);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001984 snd_hda_power_up(codec);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01001985 mutex_lock(&bus->cmd_mutex);
1986 err = bus->ops.command(bus, res);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001987 if (!err) {
1988 struct hda_cache_head *c;
1989 u32 key = build_cmd_cache_key(nid, verb);
1990 c = get_alloc_hash(&codec->cmd_cache, key);
1991 if (c)
1992 c->val = parm;
1993 }
Takashi Iwai33fa35e2008-11-06 16:50:40 +01001994 mutex_unlock(&bus->cmd_mutex);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001995 snd_hda_power_down(codec);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001996 return err;
1997}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001998EXPORT_SYMBOL_HDA(snd_hda_codec_write_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001999
2000/* resume the all commands from the cache */
2001void snd_hda_codec_resume_cache(struct hda_codec *codec)
2002{
Takashi Iwai603c4012008-07-30 15:01:44 +02002003 struct hda_cache_head *buffer = codec->cmd_cache.buf.list;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002004 int i;
2005
Takashi Iwai603c4012008-07-30 15:01:44 +02002006 for (i = 0; i < codec->cmd_cache.buf.used; i++, buffer++) {
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002007 u32 key = buffer->key;
2008 if (!key)
2009 continue;
2010 snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0,
2011 get_cmd_cache_cmd(key), buffer->val);
2012 }
2013}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002014EXPORT_SYMBOL_HDA(snd_hda_codec_resume_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002015
2016/**
2017 * snd_hda_sequence_write_cache - sequence writes with caching
2018 * @codec: the HDA codec
2019 * @seq: VERB array to send
2020 *
2021 * Send the commands sequentially from the given array.
2022 * Thte commands are recorded on cache for power-save and resume.
2023 * The array must be terminated with NID=0.
2024 */
2025void snd_hda_sequence_write_cache(struct hda_codec *codec,
2026 const struct hda_verb *seq)
2027{
2028 for (; seq->nid; seq++)
2029 snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb,
2030 seq->param);
2031}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002032EXPORT_SYMBOL_HDA(snd_hda_sequence_write_cache);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002033#endif /* SND_HDA_NEEDS_RESUME */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002034
Takashi Iwai54d17402005-11-21 16:33:22 +01002035/*
2036 * set power state of the codec
2037 */
2038static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2039 unsigned int power_state)
2040{
Takashi Iwaicb53c622007-08-10 17:21:45 +02002041 hda_nid_t nid;
2042 int i;
Takashi Iwai54d17402005-11-21 16:33:22 +01002043
2044 snd_hda_codec_write(codec, fg, 0, AC_VERB_SET_POWER_STATE,
2045 power_state);
Marc Boucherd2595d82008-01-22 15:23:30 +01002046 msleep(10); /* partial workaround for "azx_get_response timeout" */
Takashi Iwai54d17402005-11-21 16:33:22 +01002047
Takashi Iwaicb53c622007-08-10 17:21:45 +02002048 nid = codec->start_nid;
2049 for (i = 0; i < codec->num_nodes; i++, nid++) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01002050 unsigned int wcaps = get_wcaps(codec, nid);
2051 if (wcaps & AC_WCAP_POWER) {
2052 unsigned int wid_type = (wcaps & AC_WCAP_TYPE) >>
2053 AC_WCAP_TYPE_SHIFT;
2054 if (wid_type == AC_WID_PIN) {
2055 unsigned int pincap;
2056 /*
2057 * don't power down the widget if it controls
2058 * eapd and EAPD_BTLENABLE is set.
2059 */
2060 pincap = snd_hda_param_read(codec, nid,
2061 AC_PAR_PIN_CAP);
2062 if (pincap & AC_PINCAP_EAPD) {
2063 int eapd = snd_hda_codec_read(codec,
2064 nid, 0,
2065 AC_VERB_GET_EAPD_BTLENABLE, 0);
2066 eapd &= 0x02;
2067 if (power_state == AC_PWRST_D3 && eapd)
2068 continue;
2069 }
Takashi Iwai1194b5b2007-10-10 10:04:26 +02002070 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002071 snd_hda_codec_write(codec, nid, 0,
2072 AC_VERB_SET_POWER_STATE,
2073 power_state);
Takashi Iwai1194b5b2007-10-10 10:04:26 +02002074 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002075 }
2076
Takashi Iwaicb53c622007-08-10 17:21:45 +02002077 if (power_state == AC_PWRST_D0) {
2078 unsigned long end_time;
2079 int state;
Takashi Iwai54d17402005-11-21 16:33:22 +01002080 msleep(10);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002081 /* wait until the codec reachs to D0 */
2082 end_time = jiffies + msecs_to_jiffies(500);
2083 do {
2084 state = snd_hda_codec_read(codec, fg, 0,
2085 AC_VERB_GET_POWER_STATE, 0);
2086 if (state == power_state)
2087 break;
2088 msleep(1);
2089 } while (time_after_eq(end_time, jiffies));
2090 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002091}
2092
Takashi Iwai11aeff02008-07-30 15:01:46 +02002093#ifdef CONFIG_SND_HDA_HWDEP
2094/* execute additional init verbs */
2095static void hda_exec_init_verbs(struct hda_codec *codec)
2096{
2097 if (codec->init_verbs.list)
2098 snd_hda_sequence_write(codec, codec->init_verbs.list);
2099}
2100#else
2101static inline void hda_exec_init_verbs(struct hda_codec *codec) {}
2102#endif
2103
Takashi Iwaicb53c622007-08-10 17:21:45 +02002104#ifdef SND_HDA_NEEDS_RESUME
2105/*
2106 * call suspend and power-down; used both from PM and power-save
2107 */
2108static void hda_call_codec_suspend(struct hda_codec *codec)
2109{
2110 if (codec->patch_ops.suspend)
2111 codec->patch_ops.suspend(codec, PMSG_SUSPEND);
2112 hda_set_power_state(codec,
2113 codec->afg ? codec->afg : codec->mfg,
2114 AC_PWRST_D3);
2115#ifdef CONFIG_SND_HDA_POWER_SAVE
2116 cancel_delayed_work(&codec->power_work);
Takashi Iwai95e99fd2007-08-13 15:29:04 +02002117 codec->power_on = 0;
Takashi Iwaia221e282007-08-16 16:35:33 +02002118 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002119#endif
2120}
2121
2122/*
2123 * kick up codec; used both from PM and power-save
2124 */
2125static void hda_call_codec_resume(struct hda_codec *codec)
2126{
2127 hda_set_power_state(codec,
2128 codec->afg ? codec->afg : codec->mfg,
2129 AC_PWRST_D0);
Takashi Iwai11aeff02008-07-30 15:01:46 +02002130 hda_exec_init_verbs(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002131 if (codec->patch_ops.resume)
2132 codec->patch_ops.resume(codec);
2133 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02002134 if (codec->patch_ops.init)
2135 codec->patch_ops.init(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002136 snd_hda_codec_resume_amp(codec);
2137 snd_hda_codec_resume_cache(codec);
2138 }
2139}
2140#endif /* SND_HDA_NEEDS_RESUME */
2141
Takashi Iwai54d17402005-11-21 16:33:22 +01002142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143/**
2144 * snd_hda_build_controls - build mixer controls
2145 * @bus: the BUS
2146 *
2147 * Creates mixer controls for each codec included in the bus.
2148 *
2149 * Returns 0 if successful, otherwise a negative error code.
2150 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +01002151int /*__devinit*/ snd_hda_build_controls(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002153 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Takashi Iwai0ba21762007-04-16 11:29:14 +02002155 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002156 int err = snd_hda_codec_build_controls(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 if (err < 0)
2158 return err;
2159 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002160 return 0;
2161}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002162EXPORT_SYMBOL_HDA(snd_hda_build_controls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002164int snd_hda_codec_build_controls(struct hda_codec *codec)
2165{
2166 int err = 0;
2167 /* fake as if already powered-on */
2168 hda_keep_power_on(codec);
2169 /* then fire up */
2170 hda_set_power_state(codec,
2171 codec->afg ? codec->afg : codec->mfg,
2172 AC_PWRST_D0);
Takashi Iwai11aeff02008-07-30 15:01:46 +02002173 hda_exec_init_verbs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002174 /* continue to initialize... */
2175 if (codec->patch_ops.init)
2176 err = codec->patch_ops.init(codec);
2177 if (!err && codec->patch_ops.build_controls)
2178 err = codec->patch_ops.build_controls(codec);
2179 snd_hda_power_down(codec);
2180 if (err < 0)
2181 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 return 0;
2183}
2184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185/*
2186 * stream formats
2187 */
Takashi Iwaibefdf312005-08-22 13:57:55 +02002188struct hda_rate_tbl {
2189 unsigned int hz;
2190 unsigned int alsa_bits;
2191 unsigned int hda_fmt;
2192};
2193
2194static struct hda_rate_tbl rate_bits[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 /* rate in Hz, ALSA rate bitmask, HDA format value */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02002196
2197 /* autodetected value used in snd_hda_query_supported_pcm */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 { 8000, SNDRV_PCM_RATE_8000, 0x0500 }, /* 1/6 x 48 */
2199 { 11025, SNDRV_PCM_RATE_11025, 0x4300 }, /* 1/4 x 44 */
2200 { 16000, SNDRV_PCM_RATE_16000, 0x0200 }, /* 1/3 x 48 */
2201 { 22050, SNDRV_PCM_RATE_22050, 0x4100 }, /* 1/2 x 44 */
2202 { 32000, SNDRV_PCM_RATE_32000, 0x0a00 }, /* 2/3 x 48 */
2203 { 44100, SNDRV_PCM_RATE_44100, 0x4000 }, /* 44 */
2204 { 48000, SNDRV_PCM_RATE_48000, 0x0000 }, /* 48 */
2205 { 88200, SNDRV_PCM_RATE_88200, 0x4800 }, /* 2 x 44 */
2206 { 96000, SNDRV_PCM_RATE_96000, 0x0800 }, /* 2 x 48 */
2207 { 176400, SNDRV_PCM_RATE_176400, 0x5800 },/* 4 x 44 */
2208 { 192000, SNDRV_PCM_RATE_192000, 0x1800 }, /* 4 x 48 */
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002209#define AC_PAR_PCM_RATE_BITS 11
2210 /* up to bits 10, 384kHZ isn't supported properly */
2211
2212 /* not autodetected value */
2213 { 9600, SNDRV_PCM_RATE_KNOT, 0x0400 }, /* 1/5 x 48 */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02002214
Takashi Iwaibefdf312005-08-22 13:57:55 +02002215 { 0 } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216};
2217
2218/**
2219 * snd_hda_calc_stream_format - calculate format bitset
2220 * @rate: the sample rate
2221 * @channels: the number of channels
2222 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
2223 * @maxbps: the max. bps
2224 *
2225 * Calculate the format bitset from the given rate, channels and th PCM format.
2226 *
2227 * Return zero if invalid.
2228 */
2229unsigned int snd_hda_calc_stream_format(unsigned int rate,
2230 unsigned int channels,
2231 unsigned int format,
2232 unsigned int maxbps)
2233{
2234 int i;
2235 unsigned int val = 0;
2236
Takashi Iwaibefdf312005-08-22 13:57:55 +02002237 for (i = 0; rate_bits[i].hz; i++)
2238 if (rate_bits[i].hz == rate) {
2239 val = rate_bits[i].hda_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 break;
2241 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002242 if (!rate_bits[i].hz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 snd_printdd("invalid rate %d\n", rate);
2244 return 0;
2245 }
2246
2247 if (channels == 0 || channels > 8) {
2248 snd_printdd("invalid channels %d\n", channels);
2249 return 0;
2250 }
2251 val |= channels - 1;
2252
2253 switch (snd_pcm_format_width(format)) {
2254 case 8: val |= 0x00; break;
2255 case 16: val |= 0x10; break;
2256 case 20:
2257 case 24:
2258 case 32:
2259 if (maxbps >= 32)
2260 val |= 0x40;
2261 else if (maxbps >= 24)
2262 val |= 0x30;
2263 else
2264 val |= 0x20;
2265 break;
2266 default:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002267 snd_printdd("invalid format width %d\n",
2268 snd_pcm_format_width(format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 return 0;
2270 }
2271
2272 return val;
2273}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002274EXPORT_SYMBOL_HDA(snd_hda_calc_stream_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
2276/**
2277 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
2278 * @codec: the HDA codec
2279 * @nid: NID to query
2280 * @ratesp: the pointer to store the detected rate bitflags
2281 * @formatsp: the pointer to store the detected formats
2282 * @bpsp: the pointer to store the detected format widths
2283 *
2284 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
2285 * or @bsps argument is ignored.
2286 *
2287 * Returns 0 if successful, otherwise a negative error code.
2288 */
Takashi Iwai986862bd2008-11-27 12:40:13 +01002289static int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 u32 *ratesp, u64 *formatsp, unsigned int *bpsp)
2291{
2292 int i;
2293 unsigned int val, streams;
2294
2295 val = 0;
2296 if (nid != codec->afg &&
Takashi Iwai54d17402005-11-21 16:33:22 +01002297 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
2299 if (val == -1)
2300 return -EIO;
2301 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002302 if (!val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
2304
2305 if (ratesp) {
2306 u32 rates = 0;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002307 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 if (val & (1 << i))
Takashi Iwaibefdf312005-08-22 13:57:55 +02002309 rates |= rate_bits[i].alsa_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 }
2311 *ratesp = rates;
2312 }
2313
2314 if (formatsp || bpsp) {
2315 u64 formats = 0;
2316 unsigned int bps;
2317 unsigned int wcaps;
2318
Takashi Iwai54d17402005-11-21 16:33:22 +01002319 wcaps = get_wcaps(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
2321 if (streams == -1)
2322 return -EIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002323 if (!streams) {
2324 streams = snd_hda_param_read(codec, codec->afg,
2325 AC_PAR_STREAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 if (streams == -1)
2327 return -EIO;
2328 }
2329
2330 bps = 0;
2331 if (streams & AC_SUPFMT_PCM) {
2332 if (val & AC_SUPPCM_BITS_8) {
2333 formats |= SNDRV_PCM_FMTBIT_U8;
2334 bps = 8;
2335 }
2336 if (val & AC_SUPPCM_BITS_16) {
2337 formats |= SNDRV_PCM_FMTBIT_S16_LE;
2338 bps = 16;
2339 }
2340 if (wcaps & AC_WCAP_DIGITAL) {
2341 if (val & AC_SUPPCM_BITS_32)
2342 formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
2343 if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24))
2344 formats |= SNDRV_PCM_FMTBIT_S32_LE;
2345 if (val & AC_SUPPCM_BITS_24)
2346 bps = 24;
2347 else if (val & AC_SUPPCM_BITS_20)
2348 bps = 20;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002349 } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24|
2350 AC_SUPPCM_BITS_32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 formats |= SNDRV_PCM_FMTBIT_S32_LE;
2352 if (val & AC_SUPPCM_BITS_32)
2353 bps = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 else if (val & AC_SUPPCM_BITS_24)
2355 bps = 24;
Nicolas Graziano33ef76512006-09-19 14:23:14 +02002356 else if (val & AC_SUPPCM_BITS_20)
2357 bps = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 }
2359 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002360 else if (streams == AC_SUPFMT_FLOAT32) {
2361 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
2363 bps = 32;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002364 } else if (streams == AC_SUPFMT_AC3) {
2365 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 /* temporary hack: we have still no proper support
2367 * for the direct AC3 stream...
2368 */
2369 formats |= SNDRV_PCM_FMTBIT_U8;
2370 bps = 8;
2371 }
2372 if (formatsp)
2373 *formatsp = formats;
2374 if (bpsp)
2375 *bpsp = bps;
2376 }
2377
2378 return 0;
2379}
2380
2381/**
Takashi Iwai0ba21762007-04-16 11:29:14 +02002382 * snd_hda_is_supported_format - check whether the given node supports
2383 * the format val
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 *
2385 * Returns 1 if supported, 0 if not.
2386 */
2387int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
2388 unsigned int format)
2389{
2390 int i;
2391 unsigned int val = 0, rate, stream;
2392
2393 if (nid != codec->afg &&
Takashi Iwai54d17402005-11-21 16:33:22 +01002394 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
2396 if (val == -1)
2397 return 0;
2398 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002399 if (!val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
2401 if (val == -1)
2402 return 0;
2403 }
2404
2405 rate = format & 0xff00;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002406 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++)
Takashi Iwaibefdf312005-08-22 13:57:55 +02002407 if (rate_bits[i].hda_fmt == rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 if (val & (1 << i))
2409 break;
2410 return 0;
2411 }
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002412 if (i >= AC_PAR_PCM_RATE_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 return 0;
2414
2415 stream = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
2416 if (stream == -1)
2417 return 0;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002418 if (!stream && nid != codec->afg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 stream = snd_hda_param_read(codec, codec->afg, AC_PAR_STREAM);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002420 if (!stream || stream == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 return 0;
2422
2423 if (stream & AC_SUPFMT_PCM) {
2424 switch (format & 0xf0) {
2425 case 0x00:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002426 if (!(val & AC_SUPPCM_BITS_8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 return 0;
2428 break;
2429 case 0x10:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002430 if (!(val & AC_SUPPCM_BITS_16))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 return 0;
2432 break;
2433 case 0x20:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002434 if (!(val & AC_SUPPCM_BITS_20))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 return 0;
2436 break;
2437 case 0x30:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002438 if (!(val & AC_SUPPCM_BITS_24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 return 0;
2440 break;
2441 case 0x40:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002442 if (!(val & AC_SUPPCM_BITS_32))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 return 0;
2444 break;
2445 default:
2446 return 0;
2447 }
2448 } else {
2449 /* FIXME: check for float32 and AC3? */
2450 }
2451
2452 return 1;
2453}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002454EXPORT_SYMBOL_HDA(snd_hda_is_supported_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
2456/*
2457 * PCM stuff
2458 */
2459static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
2460 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002461 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462{
2463 return 0;
2464}
2465
2466static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
2467 struct hda_codec *codec,
2468 unsigned int stream_tag,
2469 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002470 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471{
2472 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
2473 return 0;
2474}
2475
2476static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
2477 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002478 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479{
Takashi Iwai888afa12008-03-18 09:57:50 +01002480 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 return 0;
2482}
2483
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002484static int set_pcm_default_values(struct hda_codec *codec,
2485 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002487 /* query support PCM information from the given NID */
2488 if (info->nid && (!info->rates || !info->formats)) {
2489 snd_hda_query_supported_pcm(codec, info->nid,
2490 info->rates ? NULL : &info->rates,
2491 info->formats ? NULL : &info->formats,
2492 info->maxbps ? NULL : &info->maxbps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 }
2494 if (info->ops.open == NULL)
2495 info->ops.open = hda_pcm_default_open_close;
2496 if (info->ops.close == NULL)
2497 info->ops.close = hda_pcm_default_open_close;
2498 if (info->ops.prepare == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02002499 if (snd_BUG_ON(!info->nid))
2500 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 info->ops.prepare = hda_pcm_default_prepare;
2502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 if (info->ops.cleanup == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02002504 if (snd_BUG_ON(!info->nid))
2505 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 info->ops.cleanup = hda_pcm_default_cleanup;
2507 }
2508 return 0;
2509}
2510
Takashi Iwai176d5332008-07-30 15:01:44 +02002511/*
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002512 * get the empty PCM device number to assign
2513 */
2514static int get_empty_pcm_device(struct hda_bus *bus, int type)
2515{
2516 static const char *dev_name[HDA_PCM_NTYPES] = {
2517 "Audio", "SPDIF", "HDMI", "Modem"
2518 };
2519 /* starting device index for each PCM type */
2520 static int dev_idx[HDA_PCM_NTYPES] = {
2521 [HDA_PCM_TYPE_AUDIO] = 0,
2522 [HDA_PCM_TYPE_SPDIF] = 1,
2523 [HDA_PCM_TYPE_HDMI] = 3,
2524 [HDA_PCM_TYPE_MODEM] = 6
2525 };
2526 /* normal audio device indices; not linear to keep compatibility */
2527 static int audio_idx[4] = { 0, 2, 4, 5 };
2528 int i, dev;
2529
2530 switch (type) {
2531 case HDA_PCM_TYPE_AUDIO:
2532 for (i = 0; i < ARRAY_SIZE(audio_idx); i++) {
2533 dev = audio_idx[i];
2534 if (!test_bit(dev, bus->pcm_dev_bits))
2535 break;
2536 }
2537 if (i >= ARRAY_SIZE(audio_idx)) {
2538 snd_printk(KERN_WARNING "Too many audio devices\n");
2539 return -EAGAIN;
2540 }
2541 break;
2542 case HDA_PCM_TYPE_SPDIF:
2543 case HDA_PCM_TYPE_HDMI:
2544 case HDA_PCM_TYPE_MODEM:
2545 dev = dev_idx[type];
2546 if (test_bit(dev, bus->pcm_dev_bits)) {
2547 snd_printk(KERN_WARNING "%s already defined\n",
2548 dev_name[type]);
2549 return -EAGAIN;
2550 }
2551 break;
2552 default:
2553 snd_printk(KERN_WARNING "Invalid PCM type %d\n", type);
2554 return -EINVAL;
2555 }
2556 set_bit(dev, bus->pcm_dev_bits);
2557 return dev;
2558}
2559
2560/*
Takashi Iwai176d5332008-07-30 15:01:44 +02002561 * attach a new PCM stream
2562 */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002563static int snd_hda_attach_pcm(struct hda_codec *codec, struct hda_pcm *pcm)
Takashi Iwai176d5332008-07-30 15:01:44 +02002564{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002565 struct hda_bus *bus = codec->bus;
Takashi Iwai176d5332008-07-30 15:01:44 +02002566 struct hda_pcm_stream *info;
2567 int stream, err;
2568
Takashi Iwaib91f0802008-11-04 08:43:08 +01002569 if (snd_BUG_ON(!pcm->name))
Takashi Iwai176d5332008-07-30 15:01:44 +02002570 return -EINVAL;
2571 for (stream = 0; stream < 2; stream++) {
2572 info = &pcm->stream[stream];
2573 if (info->substreams) {
2574 err = set_pcm_default_values(codec, info);
2575 if (err < 0)
2576 return err;
2577 }
2578 }
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002579 return bus->ops.attach_pcm(bus, codec, pcm);
Takashi Iwai176d5332008-07-30 15:01:44 +02002580}
2581
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002582/* assign all PCMs of the given codec */
2583int snd_hda_codec_build_pcms(struct hda_codec *codec)
2584{
2585 unsigned int pcm;
2586 int err;
2587
2588 if (!codec->num_pcms) {
2589 if (!codec->patch_ops.build_pcms)
2590 return 0;
2591 err = codec->patch_ops.build_pcms(codec);
2592 if (err < 0)
2593 return err;
2594 }
2595 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
2596 struct hda_pcm *cpcm = &codec->pcm_info[pcm];
2597 int dev;
2598
2599 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
2600 return 0; /* no substreams assigned */
2601
2602 if (!cpcm->pcm) {
2603 dev = get_empty_pcm_device(codec->bus, cpcm->pcm_type);
2604 if (dev < 0)
2605 return 0;
2606 cpcm->device = dev;
2607 err = snd_hda_attach_pcm(codec, cpcm);
2608 if (err < 0)
2609 return err;
2610 }
2611 }
2612 return 0;
2613}
2614
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615/**
2616 * snd_hda_build_pcms - build PCM information
2617 * @bus: the BUS
2618 *
2619 * Create PCM information for each codec included in the bus.
2620 *
2621 * The build_pcms codec patch is requested to set up codec->num_pcms and
2622 * codec->pcm_info properly. The array is referred by the top-level driver
2623 * to create its PCM instances.
2624 * The allocated codec->pcm_info should be released in codec->patch_ops.free
2625 * callback.
2626 *
2627 * At least, substreams, channels_min and channels_max must be filled for
2628 * each stream. substreams = 0 indicates that the stream doesn't exist.
2629 * When rates and/or formats are zero, the supported values are queried
2630 * from the given nid. The nid is used also by the default ops.prepare
2631 * and ops.cleanup callbacks.
2632 *
2633 * The driver needs to call ops.open in its open callback. Similarly,
2634 * ops.close is supposed to be called in the close callback.
2635 * ops.prepare should be called in the prepare or hw_params callback
2636 * with the proper parameters for set up.
2637 * ops.cleanup should be called in hw_free for clean up of streams.
2638 *
2639 * This function returns 0 if successfull, or a negative error code.
2640 */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002641int __devinit snd_hda_build_pcms(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002643 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Takashi Iwai0ba21762007-04-16 11:29:14 +02002645 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002646 int err = snd_hda_codec_build_pcms(codec);
2647 if (err < 0)
2648 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 }
2650 return 0;
2651}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002652EXPORT_SYMBOL_HDA(snd_hda_build_pcms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654/**
2655 * snd_hda_check_board_config - compare the current codec with the config table
2656 * @codec: the HDA codec
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002657 * @num_configs: number of config enums
2658 * @models: array of model name strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 * @tbl: configuration table, terminated by null entries
2660 *
2661 * Compares the modelname or PCI subsystem id of the current codec with the
2662 * given configuration table. If a matching entry is found, returns its
2663 * config value (supposed to be 0 or positive).
2664 *
2665 * If no entries are matching, the function returns a negative value.
2666 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002667int snd_hda_check_board_config(struct hda_codec *codec,
2668 int num_configs, const char **models,
2669 const struct snd_pci_quirk *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670{
Takashi Iwaif44ac832008-07-30 15:01:45 +02002671 if (codec->modelname && models) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002672 int i;
2673 for (i = 0; i < num_configs; i++) {
2674 if (models[i] &&
Takashi Iwaif44ac832008-07-30 15:01:45 +02002675 !strcmp(codec->modelname, models[i])) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002676 snd_printd(KERN_INFO "hda_codec: model '%s' is "
2677 "selected\n", models[i]);
2678 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 }
2680 }
2681 }
2682
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002683 if (!codec->bus->pci || !tbl)
2684 return -1;
2685
2686 tbl = snd_pci_quirk_lookup(codec->bus->pci, tbl);
2687 if (!tbl)
2688 return -1;
2689 if (tbl->value >= 0 && tbl->value < num_configs) {
Takashi Iwai62cf8722008-05-20 12:15:15 +02002690#ifdef CONFIG_SND_DEBUG_VERBOSE
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002691 char tmp[10];
2692 const char *model = NULL;
2693 if (models)
2694 model = models[tbl->value];
2695 if (!model) {
2696 sprintf(tmp, "#%d", tbl->value);
2697 model = tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 }
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002699 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
2700 "for config %x:%x (%s)\n",
2701 model, tbl->subvendor, tbl->subdevice,
2702 (tbl->name ? tbl->name : "Unknown device"));
2703#endif
2704 return tbl->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 }
2706 return -1;
2707}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002708EXPORT_SYMBOL_HDA(snd_hda_check_board_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
2710/**
2711 * snd_hda_add_new_ctls - create controls from the array
2712 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002713 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 *
2715 * This helper function creates and add new controls in the given array.
2716 * The array must be terminated with an empty entry as terminator.
2717 *
2718 * Returns 0 if successful, or a negative error code.
2719 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002720int snd_hda_add_new_ctls(struct hda_codec *codec, struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721{
Takashi Iwaicb53c622007-08-10 17:21:45 +02002722 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
2724 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01002725 struct snd_kcontrol *kctl;
2726 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002727 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01002728 return -ENOMEM;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002729 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai54d17402005-11-21 16:33:22 +01002730 if (err < 0) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002731 if (!codec->addr)
Takashi Iwai54d17402005-11-21 16:33:22 +01002732 return err;
2733 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002734 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01002735 return -ENOMEM;
2736 kctl->id.device = codec->addr;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002737 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002738 if (err < 0)
Takashi Iwai54d17402005-11-21 16:33:22 +01002739 return err;
2740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 }
2742 return 0;
2743}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002744EXPORT_SYMBOL_HDA(snd_hda_add_new_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745
Takashi Iwaicb53c622007-08-10 17:21:45 +02002746#ifdef CONFIG_SND_HDA_POWER_SAVE
2747static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2748 unsigned int power_state);
2749
2750static void hda_power_work(struct work_struct *work)
2751{
2752 struct hda_codec *codec =
2753 container_of(work, struct hda_codec, power_work.work);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002754 struct hda_bus *bus = codec->bus;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002755
Maxim Levitsky2e492462007-09-03 15:26:57 +02002756 if (!codec->power_on || codec->power_count) {
2757 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002758 return;
Maxim Levitsky2e492462007-09-03 15:26:57 +02002759 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02002760
2761 hda_call_codec_suspend(codec);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002762 if (bus->ops.pm_notify)
2763 bus->ops.pm_notify(bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002764}
2765
2766static void hda_keep_power_on(struct hda_codec *codec)
2767{
2768 codec->power_count++;
2769 codec->power_on = 1;
2770}
2771
2772void snd_hda_power_up(struct hda_codec *codec)
2773{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002774 struct hda_bus *bus = codec->bus;
2775
Takashi Iwaicb53c622007-08-10 17:21:45 +02002776 codec->power_count++;
Takashi Iwaia221e282007-08-16 16:35:33 +02002777 if (codec->power_on || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002778 return;
2779
2780 codec->power_on = 1;
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002781 if (bus->ops.pm_notify)
2782 bus->ops.pm_notify(bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002783 hda_call_codec_resume(codec);
2784 cancel_delayed_work(&codec->power_work);
Takashi Iwaia221e282007-08-16 16:35:33 +02002785 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002786}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002787EXPORT_SYMBOL_HDA(snd_hda_power_up);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01002788
2789#define power_save(codec) \
2790 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002791
Takashi Iwaifee2fba2008-11-27 12:43:28 +01002792#define power_save(codec) \
2793 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0)
2794
Takashi Iwaicb53c622007-08-10 17:21:45 +02002795void snd_hda_power_down(struct hda_codec *codec)
2796{
2797 --codec->power_count;
Takashi Iwaia221e282007-08-16 16:35:33 +02002798 if (!codec->power_on || codec->power_count || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002799 return;
Takashi Iwaifee2fba2008-11-27 12:43:28 +01002800 if (power_save(codec)) {
Takashi Iwaia221e282007-08-16 16:35:33 +02002801 codec->power_transition = 1; /* avoid reentrance */
Takashi Iwaicb53c622007-08-10 17:21:45 +02002802 schedule_delayed_work(&codec->power_work,
Takashi Iwaifee2fba2008-11-27 12:43:28 +01002803 msecs_to_jiffies(power_save(codec) * 1000));
Takashi Iwaia221e282007-08-16 16:35:33 +02002804 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02002805}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002806EXPORT_SYMBOL_HDA(snd_hda_power_down);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002807
2808int snd_hda_check_amp_list_power(struct hda_codec *codec,
2809 struct hda_loopback_check *check,
2810 hda_nid_t nid)
2811{
2812 struct hda_amp_list *p;
2813 int ch, v;
2814
2815 if (!check->amplist)
2816 return 0;
2817 for (p = check->amplist; p->nid; p++) {
2818 if (p->nid == nid)
2819 break;
2820 }
2821 if (!p->nid)
2822 return 0; /* nothing changed */
2823
2824 for (p = check->amplist; p->nid; p++) {
2825 for (ch = 0; ch < 2; ch++) {
2826 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
2827 p->idx);
2828 if (!(v & HDA_AMP_MUTE) && v > 0) {
2829 if (!check->power_on) {
2830 check->power_on = 1;
2831 snd_hda_power_up(codec);
2832 }
2833 return 1;
2834 }
2835 }
2836 }
2837 if (check->power_on) {
2838 check->power_on = 0;
2839 snd_hda_power_down(codec);
2840 }
2841 return 0;
2842}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002843EXPORT_SYMBOL_HDA(snd_hda_check_amp_list_power);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002844#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002846/*
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002847 * Channel mode helper
2848 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002849int snd_hda_ch_mode_info(struct hda_codec *codec,
2850 struct snd_ctl_elem_info *uinfo,
2851 const struct hda_channel_mode *chmode,
2852 int num_chmodes)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002853{
2854 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2855 uinfo->count = 1;
2856 uinfo->value.enumerated.items = num_chmodes;
2857 if (uinfo->value.enumerated.item >= num_chmodes)
2858 uinfo->value.enumerated.item = num_chmodes - 1;
2859 sprintf(uinfo->value.enumerated.name, "%dch",
2860 chmode[uinfo->value.enumerated.item].channels);
2861 return 0;
2862}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002863EXPORT_SYMBOL_HDA(snd_hda_ch_mode_info);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002864
Takashi Iwai0ba21762007-04-16 11:29:14 +02002865int snd_hda_ch_mode_get(struct hda_codec *codec,
2866 struct snd_ctl_elem_value *ucontrol,
2867 const struct hda_channel_mode *chmode,
2868 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002869 int max_channels)
2870{
2871 int i;
2872
2873 for (i = 0; i < num_chmodes; i++) {
2874 if (max_channels == chmode[i].channels) {
2875 ucontrol->value.enumerated.item[0] = i;
2876 break;
2877 }
2878 }
2879 return 0;
2880}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002881EXPORT_SYMBOL_HDA(snd_hda_ch_mode_get);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002882
Takashi Iwai0ba21762007-04-16 11:29:14 +02002883int snd_hda_ch_mode_put(struct hda_codec *codec,
2884 struct snd_ctl_elem_value *ucontrol,
2885 const struct hda_channel_mode *chmode,
2886 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002887 int *max_channelsp)
2888{
2889 unsigned int mode;
2890
2891 mode = ucontrol->value.enumerated.item[0];
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002892 if (mode >= num_chmodes)
2893 return -EINVAL;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002894 if (*max_channelsp == chmode[mode].channels)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002895 return 0;
2896 /* change the current channel setting */
2897 *max_channelsp = chmode[mode].channels;
2898 if (chmode[mode].sequence)
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002899 snd_hda_sequence_write_cache(codec, chmode[mode].sequence);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002900 return 1;
2901}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002902EXPORT_SYMBOL_HDA(snd_hda_ch_mode_put);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002903
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904/*
2905 * input MUX helper
2906 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002907int snd_hda_input_mux_info(const struct hda_input_mux *imux,
2908 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909{
2910 unsigned int index;
2911
2912 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2913 uinfo->count = 1;
2914 uinfo->value.enumerated.items = imux->num_items;
Takashi Iwai5513b0c2007-10-09 11:58:41 +02002915 if (!imux->num_items)
2916 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 index = uinfo->value.enumerated.item;
2918 if (index >= imux->num_items)
2919 index = imux->num_items - 1;
2920 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
2921 return 0;
2922}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002923EXPORT_SYMBOL_HDA(snd_hda_input_mux_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924
Takashi Iwai0ba21762007-04-16 11:29:14 +02002925int snd_hda_input_mux_put(struct hda_codec *codec,
2926 const struct hda_input_mux *imux,
2927 struct snd_ctl_elem_value *ucontrol,
2928 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 unsigned int *cur_val)
2930{
2931 unsigned int idx;
2932
Takashi Iwai5513b0c2007-10-09 11:58:41 +02002933 if (!imux->num_items)
2934 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 idx = ucontrol->value.enumerated.item[0];
2936 if (idx >= imux->num_items)
2937 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002938 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002940 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
2941 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 *cur_val = idx;
2943 return 1;
2944}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002945EXPORT_SYMBOL_HDA(snd_hda_input_mux_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
2947
2948/*
2949 * Multi-channel / digital-out PCM helper functions
2950 */
2951
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002952/* setup SPDIF output stream */
2953static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
2954 unsigned int stream_tag, unsigned int format)
2955{
2956 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
Takashi Iwai2f728532008-09-25 16:32:41 +02002957 if (codec->spdif_status_reset && (codec->spdif_ctls & AC_DIG1_ENABLE))
2958 set_dig_out_convert(codec, nid,
2959 codec->spdif_ctls & ~AC_DIG1_ENABLE & 0xff,
2960 -1);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002961 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Takashi Iwai2f728532008-09-25 16:32:41 +02002962 if (codec->slave_dig_outs) {
2963 hda_nid_t *d;
2964 for (d = codec->slave_dig_outs; *d; d++)
2965 snd_hda_codec_setup_stream(codec, *d, stream_tag, 0,
2966 format);
Matthew Ranostayde51ca12008-09-07 14:31:40 -04002967 }
Takashi Iwai2f728532008-09-25 16:32:41 +02002968 /* turn on again (if needed) */
2969 if (codec->spdif_status_reset && (codec->spdif_ctls & AC_DIG1_ENABLE))
2970 set_dig_out_convert(codec, nid,
2971 codec->spdif_ctls & 0xff, -1);
2972}
Matthew Ranostayde51ca12008-09-07 14:31:40 -04002973
Takashi Iwai2f728532008-09-25 16:32:41 +02002974static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid)
2975{
2976 snd_hda_codec_cleanup_stream(codec, nid);
2977 if (codec->slave_dig_outs) {
2978 hda_nid_t *d;
2979 for (d = codec->slave_dig_outs; *d; d++)
2980 snd_hda_codec_cleanup_stream(codec, *d);
2981 }
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002982}
2983
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984/*
2985 * open the digital out in the exclusive mode
2986 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002987int snd_hda_multi_out_dig_open(struct hda_codec *codec,
2988 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989{
Ingo Molnar62932df2006-01-16 16:34:20 +01002990 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02002991 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
2992 /* already opened as analog dup; reset it once */
Takashi Iwai2f728532008-09-25 16:32:41 +02002993 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01002995 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 return 0;
2997}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002998EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003000int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
3001 struct hda_multi_out *mout,
3002 unsigned int stream_tag,
3003 unsigned int format,
3004 struct snd_pcm_substream *substream)
3005{
3006 mutex_lock(&codec->spdif_mutex);
3007 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
3008 mutex_unlock(&codec->spdif_mutex);
3009 return 0;
3010}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003011EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_prepare);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003012
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013/*
3014 * release the digital out
3015 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003016int snd_hda_multi_out_dig_close(struct hda_codec *codec,
3017 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018{
Ingo Molnar62932df2006-01-16 16:34:20 +01003019 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01003021 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 return 0;
3023}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003024EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
3026/*
3027 * set up more restrictions for analog out
3028 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003029int snd_hda_multi_out_analog_open(struct hda_codec *codec,
3030 struct hda_multi_out *mout,
Takashi Iwai9a081602008-02-12 18:37:26 +01003031 struct snd_pcm_substream *substream,
3032 struct hda_pcm_stream *hinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033{
Takashi Iwai9a081602008-02-12 18:37:26 +01003034 struct snd_pcm_runtime *runtime = substream->runtime;
3035 runtime->hw.channels_max = mout->max_channels;
3036 if (mout->dig_out_nid) {
3037 if (!mout->analog_rates) {
3038 mout->analog_rates = hinfo->rates;
3039 mout->analog_formats = hinfo->formats;
3040 mout->analog_maxbps = hinfo->maxbps;
3041 } else {
3042 runtime->hw.rates = mout->analog_rates;
3043 runtime->hw.formats = mout->analog_formats;
3044 hinfo->maxbps = mout->analog_maxbps;
3045 }
3046 if (!mout->spdif_rates) {
3047 snd_hda_query_supported_pcm(codec, mout->dig_out_nid,
3048 &mout->spdif_rates,
3049 &mout->spdif_formats,
3050 &mout->spdif_maxbps);
3051 }
3052 mutex_lock(&codec->spdif_mutex);
3053 if (mout->share_spdif) {
3054 runtime->hw.rates &= mout->spdif_rates;
3055 runtime->hw.formats &= mout->spdif_formats;
3056 if (mout->spdif_maxbps < hinfo->maxbps)
3057 hinfo->maxbps = mout->spdif_maxbps;
3058 }
Frederik Deweerdteaa99852008-04-14 13:11:44 +02003059 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01003060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 return snd_pcm_hw_constraint_step(substream->runtime, 0,
3062 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
3063}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003064EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
3066/*
3067 * set up the i/o for analog out
3068 * when the digital out is available, copy the front out to digital out, too.
3069 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003070int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
3071 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 unsigned int stream_tag,
3073 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003074 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075{
3076 hda_nid_t *nids = mout->dac_nids;
3077 int chs = substream->runtime->channels;
3078 int i;
3079
Ingo Molnar62932df2006-01-16 16:34:20 +01003080 mutex_lock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01003081 if (mout->dig_out_nid && mout->share_spdif &&
3082 mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 if (chs == 2 &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02003084 snd_hda_is_supported_format(codec, mout->dig_out_nid,
3085 format) &&
3086 !(codec->spdif_status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003088 setup_dig_out_stream(codec, mout->dig_out_nid,
3089 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 } else {
3091 mout->dig_out_used = 0;
Takashi Iwai2f728532008-09-25 16:32:41 +02003092 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 }
3094 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003095 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
3097 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003098 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
3099 0, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02003100 if (!mout->no_share_stream &&
3101 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003103 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
3104 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003105 /* extra outputs copied from front */
3106 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
Takashi Iwaid29240c2007-10-26 12:35:56 +02003107 if (!mout->no_share_stream && mout->extra_out_nid[i])
Takashi Iwai82bc9552006-03-21 11:24:42 +01003108 snd_hda_codec_setup_stream(codec,
3109 mout->extra_out_nid[i],
3110 stream_tag, 0, format);
3111
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 /* surrounds */
3113 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02003114 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003115 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3116 i * 2, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02003117 else if (!mout->no_share_stream) /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003118 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3119 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 }
3121 return 0;
3122}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003123EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
3125/*
3126 * clean up the setting for analog out
3127 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003128int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
3129 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130{
3131 hda_nid_t *nids = mout->dac_nids;
3132 int i;
3133
3134 for (i = 0; i < mout->num_dacs; i++)
Takashi Iwai888afa12008-03-18 09:57:50 +01003135 snd_hda_codec_cleanup_stream(codec, nids[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 if (mout->hp_nid)
Takashi Iwai888afa12008-03-18 09:57:50 +01003137 snd_hda_codec_cleanup_stream(codec, mout->hp_nid);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003138 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
3139 if (mout->extra_out_nid[i])
Takashi Iwai888afa12008-03-18 09:57:50 +01003140 snd_hda_codec_cleanup_stream(codec,
3141 mout->extra_out_nid[i]);
Ingo Molnar62932df2006-01-16 16:34:20 +01003142 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
Takashi Iwai2f728532008-09-25 16:32:41 +02003144 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 mout->dig_out_used = 0;
3146 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003147 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 return 0;
3149}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003150EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003152/*
Wu Fengguang6b345002008-10-07 14:21:41 +08003153 * Helper for automatic pin configuration
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003154 */
Kailang Yangdf694da2005-12-05 19:42:22 +01003155
Takashi Iwai12f288b2007-08-02 15:51:59 +02003156static int is_in_nid_list(hda_nid_t nid, hda_nid_t *list)
Kailang Yangdf694da2005-12-05 19:42:22 +01003157{
3158 for (; *list; list++)
3159 if (*list == nid)
3160 return 1;
3161 return 0;
3162}
3163
Steve Longerbeam81937d32007-05-08 15:33:03 +02003164
3165/*
3166 * Sort an associated group of pins according to their sequence numbers.
3167 */
3168static void sort_pins_by_sequence(hda_nid_t * pins, short * sequences,
3169 int num_pins)
3170{
3171 int i, j;
3172 short seq;
3173 hda_nid_t nid;
3174
3175 for (i = 0; i < num_pins; i++) {
3176 for (j = i + 1; j < num_pins; j++) {
3177 if (sequences[i] > sequences[j]) {
3178 seq = sequences[i];
3179 sequences[i] = sequences[j];
3180 sequences[j] = seq;
3181 nid = pins[i];
3182 pins[i] = pins[j];
3183 pins[j] = nid;
3184 }
3185 }
3186 }
3187}
3188
3189
Takashi Iwai82bc9552006-03-21 11:24:42 +01003190/*
3191 * Parse all pin widgets and store the useful pin nids to cfg
3192 *
3193 * The number of line-outs or any primary output is stored in line_outs,
3194 * and the corresponding output pins are assigned to line_out_pins[],
3195 * in the order of front, rear, CLFE, side, ...
3196 *
3197 * If more extra outputs (speaker and headphone) are found, the pins are
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003198 * assisnged to hp_pins[] and speaker_pins[], respectively. If no line-out jack
Takashi Iwai82bc9552006-03-21 11:24:42 +01003199 * is detected, one of speaker of HP pins is assigned as the primary
3200 * output, i.e. to line_out_pins[0]. So, line_outs is always positive
3201 * if any analog output exists.
3202 *
3203 * The analog input pins are assigned to input_pins array.
3204 * The digital input/output pins are assigned to dig_in_pin and dig_out_pin,
3205 * respectively.
3206 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02003207int snd_hda_parse_pin_def_config(struct hda_codec *codec,
3208 struct auto_pin_cfg *cfg,
3209 hda_nid_t *ignore_nids)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003210{
Takashi Iwai0ef6ce72008-01-22 15:35:37 +01003211 hda_nid_t nid, end_nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02003212 short seq, assoc_line_out, assoc_speaker;
3213 short sequences_line_out[ARRAY_SIZE(cfg->line_out_pins)];
3214 short sequences_speaker[ARRAY_SIZE(cfg->speaker_pins)];
Takashi Iwaif889fa92007-10-31 15:49:32 +01003215 short sequences_hp[ARRAY_SIZE(cfg->hp_pins)];
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003216
3217 memset(cfg, 0, sizeof(*cfg));
3218
Steve Longerbeam81937d32007-05-08 15:33:03 +02003219 memset(sequences_line_out, 0, sizeof(sequences_line_out));
3220 memset(sequences_speaker, 0, sizeof(sequences_speaker));
Takashi Iwaif889fa92007-10-31 15:49:32 +01003221 memset(sequences_hp, 0, sizeof(sequences_hp));
Steve Longerbeam81937d32007-05-08 15:33:03 +02003222 assoc_line_out = assoc_speaker = 0;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003223
Takashi Iwai0ef6ce72008-01-22 15:35:37 +01003224 end_nid = codec->start_nid + codec->num_nodes;
3225 for (nid = codec->start_nid; nid < end_nid; nid++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01003226 unsigned int wid_caps = get_wcaps(codec, nid);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003227 unsigned int wid_type =
3228 (wid_caps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003229 unsigned int def_conf;
3230 short assoc, loc;
3231
3232 /* read all default configuration for pin complex */
3233 if (wid_type != AC_WID_PIN)
3234 continue;
Kailang Yangdf694da2005-12-05 19:42:22 +01003235 /* ignore the given nids (e.g. pc-beep returns error) */
3236 if (ignore_nids && is_in_nid_list(nid, ignore_nids))
3237 continue;
3238
Takashi Iwai0ba21762007-04-16 11:29:14 +02003239 def_conf = snd_hda_codec_read(codec, nid, 0,
3240 AC_VERB_GET_CONFIG_DEFAULT, 0);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003241 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
3242 continue;
3243 loc = get_defcfg_location(def_conf);
3244 switch (get_defcfg_device(def_conf)) {
3245 case AC_JACK_LINE_OUT:
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003246 seq = get_defcfg_sequence(def_conf);
3247 assoc = get_defcfg_association(def_conf);
Matthew Ranostay90da78b2008-01-24 11:48:01 +01003248
3249 if (!(wid_caps & AC_WCAP_STEREO))
3250 if (!cfg->mono_out_pin)
3251 cfg->mono_out_pin = nid;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003252 if (!assoc)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003253 continue;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003254 if (!assoc_line_out)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003255 assoc_line_out = assoc;
3256 else if (assoc_line_out != assoc)
3257 continue;
3258 if (cfg->line_outs >= ARRAY_SIZE(cfg->line_out_pins))
3259 continue;
3260 cfg->line_out_pins[cfg->line_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02003261 sequences_line_out[cfg->line_outs] = seq;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003262 cfg->line_outs++;
3263 break;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003264 case AC_JACK_SPEAKER:
Steve Longerbeam81937d32007-05-08 15:33:03 +02003265 seq = get_defcfg_sequence(def_conf);
3266 assoc = get_defcfg_association(def_conf);
3267 if (! assoc)
3268 continue;
3269 if (! assoc_speaker)
3270 assoc_speaker = assoc;
3271 else if (assoc_speaker != assoc)
3272 continue;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003273 if (cfg->speaker_outs >= ARRAY_SIZE(cfg->speaker_pins))
3274 continue;
3275 cfg->speaker_pins[cfg->speaker_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02003276 sequences_speaker[cfg->speaker_outs] = seq;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003277 cfg->speaker_outs++;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003278 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003279 case AC_JACK_HP_OUT:
Takashi Iwaif889fa92007-10-31 15:49:32 +01003280 seq = get_defcfg_sequence(def_conf);
3281 assoc = get_defcfg_association(def_conf);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003282 if (cfg->hp_outs >= ARRAY_SIZE(cfg->hp_pins))
3283 continue;
3284 cfg->hp_pins[cfg->hp_outs] = nid;
Takashi Iwaif889fa92007-10-31 15:49:32 +01003285 sequences_hp[cfg->hp_outs] = (assoc << 4) | seq;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003286 cfg->hp_outs++;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003287 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02003288 case AC_JACK_MIC_IN: {
3289 int preferred, alt;
3290 if (loc == AC_JACK_LOC_FRONT) {
3291 preferred = AUTO_PIN_FRONT_MIC;
3292 alt = AUTO_PIN_MIC;
3293 } else {
3294 preferred = AUTO_PIN_MIC;
3295 alt = AUTO_PIN_FRONT_MIC;
3296 }
3297 if (!cfg->input_pins[preferred])
3298 cfg->input_pins[preferred] = nid;
3299 else if (!cfg->input_pins[alt])
3300 cfg->input_pins[alt] = nid;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003301 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02003302 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003303 case AC_JACK_LINE_IN:
3304 if (loc == AC_JACK_LOC_FRONT)
3305 cfg->input_pins[AUTO_PIN_FRONT_LINE] = nid;
3306 else
3307 cfg->input_pins[AUTO_PIN_LINE] = nid;
3308 break;
3309 case AC_JACK_CD:
3310 cfg->input_pins[AUTO_PIN_CD] = nid;
3311 break;
3312 case AC_JACK_AUX:
3313 cfg->input_pins[AUTO_PIN_AUX] = nid;
3314 break;
3315 case AC_JACK_SPDIF_OUT:
3316 cfg->dig_out_pin = nid;
3317 break;
3318 case AC_JACK_SPDIF_IN:
3319 cfg->dig_in_pin = nid;
3320 break;
3321 }
3322 }
3323
Takashi Iwai5832fcf2008-02-12 18:30:12 +01003324 /* FIX-UP:
3325 * If no line-out is defined but multiple HPs are found,
3326 * some of them might be the real line-outs.
3327 */
3328 if (!cfg->line_outs && cfg->hp_outs > 1) {
3329 int i = 0;
3330 while (i < cfg->hp_outs) {
3331 /* The real HPs should have the sequence 0x0f */
3332 if ((sequences_hp[i] & 0x0f) == 0x0f) {
3333 i++;
3334 continue;
3335 }
3336 /* Move it to the line-out table */
3337 cfg->line_out_pins[cfg->line_outs] = cfg->hp_pins[i];
3338 sequences_line_out[cfg->line_outs] = sequences_hp[i];
3339 cfg->line_outs++;
3340 cfg->hp_outs--;
3341 memmove(cfg->hp_pins + i, cfg->hp_pins + i + 1,
3342 sizeof(cfg->hp_pins[0]) * (cfg->hp_outs - i));
3343 memmove(sequences_hp + i - 1, sequences_hp + i,
3344 sizeof(sequences_hp[0]) * (cfg->hp_outs - i));
3345 }
3346 }
3347
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003348 /* sort by sequence */
Steve Longerbeam81937d32007-05-08 15:33:03 +02003349 sort_pins_by_sequence(cfg->line_out_pins, sequences_line_out,
3350 cfg->line_outs);
3351 sort_pins_by_sequence(cfg->speaker_pins, sequences_speaker,
3352 cfg->speaker_outs);
Takashi Iwaif889fa92007-10-31 15:49:32 +01003353 sort_pins_by_sequence(cfg->hp_pins, sequences_hp,
3354 cfg->hp_outs);
Steve Longerbeam81937d32007-05-08 15:33:03 +02003355
Takashi Iwaif889fa92007-10-31 15:49:32 +01003356 /* if we have only one mic, make it AUTO_PIN_MIC */
3357 if (!cfg->input_pins[AUTO_PIN_MIC] &&
3358 cfg->input_pins[AUTO_PIN_FRONT_MIC]) {
3359 cfg->input_pins[AUTO_PIN_MIC] =
3360 cfg->input_pins[AUTO_PIN_FRONT_MIC];
3361 cfg->input_pins[AUTO_PIN_FRONT_MIC] = 0;
3362 }
3363 /* ditto for line-in */
3364 if (!cfg->input_pins[AUTO_PIN_LINE] &&
3365 cfg->input_pins[AUTO_PIN_FRONT_LINE]) {
3366 cfg->input_pins[AUTO_PIN_LINE] =
3367 cfg->input_pins[AUTO_PIN_FRONT_LINE];
3368 cfg->input_pins[AUTO_PIN_FRONT_LINE] = 0;
3369 }
3370
Steve Longerbeam81937d32007-05-08 15:33:03 +02003371 /*
3372 * FIX-UP: if no line-outs are detected, try to use speaker or HP pin
3373 * as a primary output
3374 */
3375 if (!cfg->line_outs) {
3376 if (cfg->speaker_outs) {
3377 cfg->line_outs = cfg->speaker_outs;
3378 memcpy(cfg->line_out_pins, cfg->speaker_pins,
3379 sizeof(cfg->speaker_pins));
3380 cfg->speaker_outs = 0;
3381 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
3382 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
3383 } else if (cfg->hp_outs) {
3384 cfg->line_outs = cfg->hp_outs;
3385 memcpy(cfg->line_out_pins, cfg->hp_pins,
3386 sizeof(cfg->hp_pins));
3387 cfg->hp_outs = 0;
3388 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
3389 cfg->line_out_type = AUTO_PIN_HP_OUT;
3390 }
3391 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003392
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003393 /* Reorder the surround channels
3394 * ALSA sequence is front/surr/clfe/side
3395 * HDA sequence is:
3396 * 4-ch: front/surr => OK as it is
3397 * 6-ch: front/clfe/surr
Takashi Iwai9422db42007-04-20 16:11:43 +02003398 * 8-ch: front/clfe/rear/side|fc
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003399 */
3400 switch (cfg->line_outs) {
3401 case 3:
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003402 case 4:
3403 nid = cfg->line_out_pins[1];
Takashi Iwai9422db42007-04-20 16:11:43 +02003404 cfg->line_out_pins[1] = cfg->line_out_pins[2];
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003405 cfg->line_out_pins[2] = nid;
3406 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003407 }
3408
Takashi Iwai82bc9552006-03-21 11:24:42 +01003409 /*
3410 * debug prints of the parsed results
3411 */
3412 snd_printd("autoconfig: line_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3413 cfg->line_outs, cfg->line_out_pins[0], cfg->line_out_pins[1],
3414 cfg->line_out_pins[2], cfg->line_out_pins[3],
3415 cfg->line_out_pins[4]);
3416 snd_printd(" speaker_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3417 cfg->speaker_outs, cfg->speaker_pins[0],
3418 cfg->speaker_pins[1], cfg->speaker_pins[2],
3419 cfg->speaker_pins[3], cfg->speaker_pins[4]);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003420 snd_printd(" hp_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3421 cfg->hp_outs, cfg->hp_pins[0],
3422 cfg->hp_pins[1], cfg->hp_pins[2],
3423 cfg->hp_pins[3], cfg->hp_pins[4]);
Matthew Ranostay90da78b2008-01-24 11:48:01 +01003424 snd_printd(" mono: mono_out=0x%x\n", cfg->mono_out_pin);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003425 snd_printd(" inputs: mic=0x%x, fmic=0x%x, line=0x%x, fline=0x%x,"
3426 " cd=0x%x, aux=0x%x\n",
3427 cfg->input_pins[AUTO_PIN_MIC],
3428 cfg->input_pins[AUTO_PIN_FRONT_MIC],
3429 cfg->input_pins[AUTO_PIN_LINE],
3430 cfg->input_pins[AUTO_PIN_FRONT_LINE],
3431 cfg->input_pins[AUTO_PIN_CD],
3432 cfg->input_pins[AUTO_PIN_AUX]);
3433
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003434 return 0;
3435}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003436EXPORT_SYMBOL_HDA(snd_hda_parse_pin_def_config);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003437
Takashi Iwai4a471b72005-12-07 13:56:29 +01003438/* labels for input pins */
3439const char *auto_pin_cfg_labels[AUTO_PIN_LAST] = {
3440 "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux"
3441};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003442EXPORT_SYMBOL_HDA(auto_pin_cfg_labels);
Takashi Iwai4a471b72005-12-07 13:56:29 +01003443
3444
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445#ifdef CONFIG_PM
3446/*
3447 * power management
3448 */
3449
3450/**
3451 * snd_hda_suspend - suspend the codecs
3452 * @bus: the HDA bus
3453 * @state: suspsend state
3454 *
3455 * Returns 0 if successful.
3456 */
3457int snd_hda_suspend(struct hda_bus *bus, pm_message_t state)
3458{
Takashi Iwai0ba21762007-04-16 11:29:14 +02003459 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460
Takashi Iwai0ba21762007-04-16 11:29:14 +02003461 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai0b7a2e92007-08-14 15:18:26 +02003462#ifdef CONFIG_SND_HDA_POWER_SAVE
3463 if (!codec->power_on)
3464 continue;
3465#endif
Takashi Iwaicb53c622007-08-10 17:21:45 +02003466 hda_call_codec_suspend(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 }
3468 return 0;
3469}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003470EXPORT_SYMBOL_HDA(snd_hda_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471
3472/**
3473 * snd_hda_resume - resume the codecs
3474 * @bus: the HDA bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 *
3476 * Returns 0 if successful.
Takashi Iwaicb53c622007-08-10 17:21:45 +02003477 *
3478 * This fucntion is defined only when POWER_SAVE isn't set.
3479 * In the power-save mode, the codec is resumed dynamically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 */
3481int snd_hda_resume(struct hda_bus *bus)
3482{
Takashi Iwai0ba21762007-04-16 11:29:14 +02003483 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484
Takashi Iwai0ba21762007-04-16 11:29:14 +02003485 list_for_each_entry(codec, &bus->codec_list, list) {
Maxim Levitskyd804ad92007-09-03 15:28:04 +02003486 if (snd_hda_codec_needs_resume(codec))
3487 hda_call_codec_resume(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 return 0;
3490}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003491EXPORT_SYMBOL_HDA(snd_hda_resume);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003492#endif /* CONFIG_PM */
Takashi Iwaib2e18592008-07-30 15:01:44 +02003493
3494/*
3495 * generic arrays
3496 */
3497
3498/* get a new element from the given array
3499 * if it exceeds the pre-allocated array size, re-allocate the array
3500 */
3501void *snd_array_new(struct snd_array *array)
3502{
3503 if (array->used >= array->alloced) {
3504 int num = array->alloced + array->alloc_align;
Takashi Iwaib910d9a2008-11-07 00:26:52 +01003505 void *nlist;
3506 if (snd_BUG_ON(num >= 4096))
3507 return NULL;
3508 nlist = kcalloc(num + 1, array->elem_size, GFP_KERNEL);
Takashi Iwaib2e18592008-07-30 15:01:44 +02003509 if (!nlist)
3510 return NULL;
3511 if (array->list) {
3512 memcpy(nlist, array->list,
3513 array->elem_size * array->alloced);
3514 kfree(array->list);
3515 }
3516 array->list = nlist;
3517 array->alloced = num;
3518 }
Takashi Iwaif43aa022008-11-10 16:24:26 +01003519 return snd_array_elem(array, array->used++);
Takashi Iwaib2e18592008-07-30 15:01:44 +02003520}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003521EXPORT_SYMBOL_HDA(snd_array_new);
Takashi Iwaib2e18592008-07-30 15:01:44 +02003522
3523/* free the given array elements */
3524void snd_array_free(struct snd_array *array)
3525{
3526 kfree(array->list);
3527 array->used = 0;
3528 array->alloced = 0;
3529 array->list = NULL;
3530}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003531EXPORT_SYMBOL_HDA(snd_array_free);
Takashi Iwaib2022262008-11-21 21:24:03 +01003532
3533/*
3534 * used by hda_proc.c and hda_eld.c
3535 */
3536void snd_print_pcm_rates(int pcm, char *buf, int buflen)
3537{
3538 static unsigned int rates[] = {
3539 8000, 11025, 16000, 22050, 32000, 44100, 48000, 88200,
3540 96000, 176400, 192000, 384000
3541 };
3542 int i, j;
3543
3544 for (i = 0, j = 0; i < ARRAY_SIZE(rates); i++)
3545 if (pcm & (1 << i))
3546 j += snprintf(buf + j, buflen - j, " %d", rates[i]);
3547
3548 buf[j] = '\0'; /* necessary when j == 0 */
3549}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003550EXPORT_SYMBOL_HDA(snd_print_pcm_rates);
Takashi Iwaib2022262008-11-21 21:24:03 +01003551
3552void snd_print_pcm_bits(int pcm, char *buf, int buflen)
3553{
3554 static unsigned int bits[] = { 8, 16, 20, 24, 32 };
3555 int i, j;
3556
3557 for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++)
3558 if (pcm & (AC_SUPPCM_BITS_8 << i))
3559 j += snprintf(buf + j, buflen - j, " %d", bits[i]);
3560
3561 buf[j] = '\0'; /* necessary when j == 0 */
3562}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003563EXPORT_SYMBOL_HDA(snd_print_pcm_bits);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003564
3565MODULE_DESCRIPTION("HDA codec core");
3566MODULE_LICENSE("GPL");