blob: fc1ddf408b9ba7de6d42c56dfa0ffbc74afaeaf8 [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
22#include <sound/driver.h>
23#include <linux/init.h>
24#include <linux/delay.h>
25#include <linux/slab.h>
26#include <linux/pci.h>
Ingo Molnar62932df2006-01-16 16:34:20 +010027#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <sound/core.h>
29#include "hda_codec.h"
30#include <sound/asoundef.h>
Jaroslav Kysela302e9c52006-07-05 17:39:49 +020031#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <sound/initval.h>
33#include "hda_local.h"
Takashi Iwai28073142007-07-27 18:58:06 +020034#include <sound/hda_hwdep.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Takashi Iwaicb53c622007-08-10 17:21:45 +020036#ifdef CONFIG_SND_HDA_POWER_SAVE
37/* define this option here to hide as static */
38static int power_save = 10;
39module_param(power_save, int, 0644);
40MODULE_PARM_DESC(power_save, "Automatic power-saving timeout "
41 "(in second, 0 = disable).");
42#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/*
45 * vendor / preset table
46 */
47
48struct hda_vendor_id {
49 unsigned int id;
50 const char *name;
51};
52
53/* codec vendor labels */
54static struct hda_vendor_id hda_vendor_ids[] = {
55 { 0x10ec, "Realtek" },
Takashi Iwaia9226252006-09-17 22:05:54 +020056 { 0x1057, "Motorola" },
Joseph Chanc577b8a2006-11-29 15:29:40 +010057 { 0x1106, "VIA" },
Takashi Iwai54b903e2005-05-15 14:30:10 +020058 { 0x11d4, "Analog Devices" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 { 0x13f6, "C-Media" },
Takashi Iwaia9226252006-09-17 22:05:54 +020060 { 0x14f1, "Conexant" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 { 0x434d, "C-Media" },
Matt2f2f4252005-04-13 14:45:30 +020062 { 0x8384, "SigmaTel" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 {} /* terminator */
64};
65
66/* codec presets */
67#include "hda_patch.h"
68
69
Takashi Iwaicb53c622007-08-10 17:21:45 +020070#ifdef CONFIG_SND_HDA_POWER_SAVE
71static void hda_power_work(struct work_struct *work);
72static void hda_keep_power_on(struct hda_codec *codec);
73#else
74static inline void hda_keep_power_on(struct hda_codec *codec) {}
75#endif
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/**
78 * snd_hda_codec_read - send a command and get the response
79 * @codec: the HDA codec
80 * @nid: NID to send the command
81 * @direct: direct flag
82 * @verb: the verb to send
83 * @parm: the parameter for the verb
84 *
85 * Send a single command and read the corresponding response.
86 *
87 * Returns the obtained response value, or -1 for an error.
88 */
Takashi Iwai0ba21762007-04-16 11:29:14 +020089unsigned int snd_hda_codec_read(struct hda_codec *codec, hda_nid_t nid,
90 int direct,
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 unsigned int verb, unsigned int parm)
92{
93 unsigned int res;
Takashi Iwaicb53c622007-08-10 17:21:45 +020094 snd_hda_power_up(codec);
Ingo Molnar62932df2006-01-16 16:34:20 +010095 mutex_lock(&codec->bus->cmd_mutex);
Takashi Iwai0ba21762007-04-16 11:29:14 +020096 if (!codec->bus->ops.command(codec, nid, direct, verb, parm))
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 res = codec->bus->ops.get_response(codec);
98 else
99 res = (unsigned int)-1;
Ingo Molnar62932df2006-01-16 16:34:20 +0100100 mutex_unlock(&codec->bus->cmd_mutex);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200101 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 return res;
103}
104
105/**
106 * snd_hda_codec_write - send a single command without waiting for response
107 * @codec: the HDA codec
108 * @nid: NID to send the command
109 * @direct: direct flag
110 * @verb: the verb to send
111 * @parm: the parameter for the verb
112 *
113 * Send a single command without waiting for response.
114 *
115 * Returns 0 if successful, or a negative error code.
116 */
117int snd_hda_codec_write(struct hda_codec *codec, hda_nid_t nid, int direct,
118 unsigned int verb, unsigned int parm)
119{
120 int err;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200121 snd_hda_power_up(codec);
Ingo Molnar62932df2006-01-16 16:34:20 +0100122 mutex_lock(&codec->bus->cmd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 err = codec->bus->ops.command(codec, nid, direct, verb, parm);
Ingo Molnar62932df2006-01-16 16:34:20 +0100124 mutex_unlock(&codec->bus->cmd_mutex);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200125 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 return err;
127}
128
129/**
130 * snd_hda_sequence_write - sequence writes
131 * @codec: the HDA codec
132 * @seq: VERB array to send
133 *
134 * Send the commands sequentially from the given array.
135 * The array must be terminated with NID=0.
136 */
137void snd_hda_sequence_write(struct hda_codec *codec, const struct hda_verb *seq)
138{
139 for (; seq->nid; seq++)
140 snd_hda_codec_write(codec, seq->nid, 0, seq->verb, seq->param);
141}
142
143/**
144 * snd_hda_get_sub_nodes - get the range of sub nodes
145 * @codec: the HDA codec
146 * @nid: NID to parse
147 * @start_id: the pointer to store the start NID
148 *
149 * Parse the NID and store the start NID of its sub-nodes.
150 * Returns the number of sub-nodes.
151 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200152int snd_hda_get_sub_nodes(struct hda_codec *codec, hda_nid_t nid,
153 hda_nid_t *start_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 unsigned int parm;
156
157 parm = snd_hda_param_read(codec, nid, AC_PAR_NODE_COUNT);
158 *start_id = (parm >> 16) & 0x7fff;
159 return (int)(parm & 0x7fff);
160}
161
162/**
163 * snd_hda_get_connections - get connection list
164 * @codec: the HDA codec
165 * @nid: NID to parse
166 * @conn_list: connection list array
167 * @max_conns: max. number of connections to store
168 *
169 * Parses the connection list of the given widget and stores the list
170 * of NIDs.
171 *
172 * Returns the number of connections, or a negative error code.
173 */
174int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid,
175 hda_nid_t *conn_list, int max_conns)
176{
177 unsigned int parm;
Takashi Iwai54d17402005-11-21 16:33:22 +0100178 int i, conn_len, conns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 unsigned int shift, num_elems, mask;
Takashi Iwai54d17402005-11-21 16:33:22 +0100180 hda_nid_t prev_nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 snd_assert(conn_list && max_conns > 0, return -EINVAL);
183
184 parm = snd_hda_param_read(codec, nid, AC_PAR_CONNLIST_LEN);
185 if (parm & AC_CLIST_LONG) {
186 /* long form */
187 shift = 16;
188 num_elems = 2;
189 } else {
190 /* short form */
191 shift = 8;
192 num_elems = 4;
193 }
194 conn_len = parm & AC_CLIST_LENGTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 mask = (1 << (shift-1)) - 1;
196
Takashi Iwai0ba21762007-04-16 11:29:14 +0200197 if (!conn_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return 0; /* no connection */
199
200 if (conn_len == 1) {
201 /* single connection */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200202 parm = snd_hda_codec_read(codec, nid, 0,
203 AC_VERB_GET_CONNECT_LIST, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 conn_list[0] = parm & mask;
205 return 1;
206 }
207
208 /* multi connection */
209 conns = 0;
Takashi Iwai54d17402005-11-21 16:33:22 +0100210 prev_nid = 0;
211 for (i = 0; i < conn_len; i++) {
212 int range_val;
213 hda_nid_t val, n;
214
215 if (i % num_elems == 0)
216 parm = snd_hda_codec_read(codec, nid, 0,
217 AC_VERB_GET_CONNECT_LIST, i);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200218 range_val = !!(parm & (1 << (shift-1))); /* ranges */
Takashi Iwai54d17402005-11-21 16:33:22 +0100219 val = parm & mask;
220 parm >>= shift;
221 if (range_val) {
222 /* ranges between the previous and this one */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200223 if (!prev_nid || prev_nid >= val) {
224 snd_printk(KERN_WARNING "hda_codec: "
225 "invalid dep_range_val %x:%x\n",
226 prev_nid, val);
Takashi Iwai54d17402005-11-21 16:33:22 +0100227 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100229 for (n = prev_nid + 1; n <= val; n++) {
230 if (conns >= max_conns) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200231 snd_printk(KERN_ERR
232 "Too many connections\n");
Takashi Iwai54d17402005-11-21 16:33:22 +0100233 return -EINVAL;
234 }
235 conn_list[conns++] = n;
236 }
237 } else {
238 if (conns >= max_conns) {
239 snd_printk(KERN_ERR "Too many connections\n");
240 return -EINVAL;
241 }
242 conn_list[conns++] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100244 prev_nid = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 }
246 return conns;
247}
248
249
250/**
251 * snd_hda_queue_unsol_event - add an unsolicited event to queue
252 * @bus: the BUS
253 * @res: unsolicited event (lower 32bit of RIRB entry)
254 * @res_ex: codec addr and flags (upper 32bit or RIRB entry)
255 *
256 * Adds the given event to the queue. The events are processed in
257 * the workqueue asynchronously. Call this function in the interrupt
258 * hanlder when RIRB receives an unsolicited event.
259 *
260 * Returns 0 if successful, or a negative error code.
261 */
262int snd_hda_queue_unsol_event(struct hda_bus *bus, u32 res, u32 res_ex)
263{
264 struct hda_bus_unsolicited *unsol;
265 unsigned int wp;
266
Takashi Iwai0ba21762007-04-16 11:29:14 +0200267 unsol = bus->unsol;
268 if (!unsol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return 0;
270
271 wp = (unsol->wp + 1) % HDA_UNSOL_QUEUE_SIZE;
272 unsol->wp = wp;
273
274 wp <<= 1;
275 unsol->queue[wp] = res;
276 unsol->queue[wp + 1] = res_ex;
277
Takashi Iwaie250af22006-12-19 17:08:52 +0100278 schedule_work(&unsol->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 return 0;
281}
282
283/*
284 * process queueud unsolicited events
285 */
David Howellsc4028952006-11-22 14:57:56 +0000286static void process_unsol_events(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
David Howellsc4028952006-11-22 14:57:56 +0000288 struct hda_bus_unsolicited *unsol =
289 container_of(work, struct hda_bus_unsolicited, work);
290 struct hda_bus *bus = unsol->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 struct hda_codec *codec;
292 unsigned int rp, caddr, res;
293
294 while (unsol->rp != unsol->wp) {
295 rp = (unsol->rp + 1) % HDA_UNSOL_QUEUE_SIZE;
296 unsol->rp = rp;
297 rp <<= 1;
298 res = unsol->queue[rp];
299 caddr = unsol->queue[rp + 1];
Takashi Iwai0ba21762007-04-16 11:29:14 +0200300 if (!(caddr & (1 << 4))) /* no unsolicited event? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 continue;
302 codec = bus->caddr_tbl[caddr & 0x0f];
303 if (codec && codec->patch_ops.unsol_event)
304 codec->patch_ops.unsol_event(codec, res);
305 }
306}
307
308/*
309 * initialize unsolicited queue
310 */
Takashi Iwai756e2b02007-04-16 11:27:07 +0200311static int __devinit init_unsol_queue(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
313 struct hda_bus_unsolicited *unsol;
314
Takashi Iwai9f146bb2005-11-17 11:07:49 +0100315 if (bus->unsol) /* already initialized */
316 return 0;
317
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200318 unsol = kzalloc(sizeof(*unsol), GFP_KERNEL);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200319 if (!unsol) {
320 snd_printk(KERN_ERR "hda_codec: "
321 "can't allocate unsolicited queue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 return -ENOMEM;
323 }
David Howellsc4028952006-11-22 14:57:56 +0000324 INIT_WORK(&unsol->work, process_unsol_events);
325 unsol->bus = bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 bus->unsol = unsol;
327 return 0;
328}
329
330/*
331 * destructor
332 */
333static void snd_hda_codec_free(struct hda_codec *codec);
334
335static int snd_hda_bus_free(struct hda_bus *bus)
336{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200337 struct hda_codec *codec, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Takashi Iwai0ba21762007-04-16 11:29:14 +0200339 if (!bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return 0;
341 if (bus->unsol) {
Takashi Iwaie250af22006-12-19 17:08:52 +0100342 flush_scheduled_work();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 kfree(bus->unsol);
344 }
Takashi Iwai0ba21762007-04-16 11:29:14 +0200345 list_for_each_entry_safe(codec, n, &bus->codec_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 snd_hda_codec_free(codec);
347 }
348 if (bus->ops.private_free)
349 bus->ops.private_free(bus);
350 kfree(bus);
351 return 0;
352}
353
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100354static int snd_hda_bus_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
356 struct hda_bus *bus = device->device_data;
357 return snd_hda_bus_free(bus);
358}
359
360/**
361 * snd_hda_bus_new - create a HDA bus
362 * @card: the card entry
363 * @temp: the template for hda_bus information
364 * @busp: the pointer to store the created bus instance
365 *
366 * Returns 0 if successful, or a negative error code.
367 */
Takashi Iwai756e2b02007-04-16 11:27:07 +0200368int __devinit snd_hda_bus_new(struct snd_card *card,
369 const struct hda_bus_template *temp,
370 struct hda_bus **busp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
372 struct hda_bus *bus;
373 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100374 static struct snd_device_ops dev_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 .dev_free = snd_hda_bus_dev_free,
376 };
377
378 snd_assert(temp, return -EINVAL);
379 snd_assert(temp->ops.command && temp->ops.get_response, return -EINVAL);
380
381 if (busp)
382 *busp = NULL;
383
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200384 bus = kzalloc(sizeof(*bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 if (bus == NULL) {
386 snd_printk(KERN_ERR "can't allocate struct hda_bus\n");
387 return -ENOMEM;
388 }
389
390 bus->card = card;
391 bus->private_data = temp->private_data;
392 bus->pci = temp->pci;
393 bus->modelname = temp->modelname;
394 bus->ops = temp->ops;
395
Ingo Molnar62932df2006-01-16 16:34:20 +0100396 mutex_init(&bus->cmd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 INIT_LIST_HEAD(&bus->codec_list);
398
Takashi Iwai0ba21762007-04-16 11:29:14 +0200399 err = snd_device_new(card, SNDRV_DEV_BUS, bus, &dev_ops);
400 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 snd_hda_bus_free(bus);
402 return err;
403 }
404 if (busp)
405 *busp = bus;
406 return 0;
407}
408
Takashi Iwai82467612007-07-27 19:15:54 +0200409#ifdef CONFIG_SND_HDA_GENERIC
410#define is_generic_config(codec) \
411 (codec->bus->modelname && !strcmp(codec->bus->modelname, "generic"))
412#else
413#define is_generic_config(codec) 0
414#endif
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416/*
417 * find a matching codec preset
418 */
Takashi Iwai756e2b02007-04-16 11:27:07 +0200419static const struct hda_codec_preset __devinit *
420find_codec_preset(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
422 const struct hda_codec_preset **tbl, *preset;
423
Takashi Iwai82467612007-07-27 19:15:54 +0200424 if (is_generic_config(codec))
Takashi Iwaid5ad6302007-03-07 15:55:59 +0100425 return NULL; /* use the generic parser */
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 for (tbl = hda_preset_tables; *tbl; tbl++) {
428 for (preset = *tbl; preset->id; preset++) {
429 u32 mask = preset->mask;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200430 if (!mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 mask = ~0;
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200432 if (preset->id == (codec->vendor_id & mask) &&
Takashi Iwai0ba21762007-04-16 11:29:14 +0200433 (!preset->rev ||
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200434 preset->rev == codec->revision_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return preset;
436 }
437 }
438 return NULL;
439}
440
441/*
442 * snd_hda_get_codec_name - store the codec name
443 */
444void snd_hda_get_codec_name(struct hda_codec *codec,
445 char *name, int namelen)
446{
447 const struct hda_vendor_id *c;
448 const char *vendor = NULL;
449 u16 vendor_id = codec->vendor_id >> 16;
450 char tmp[16];
451
452 for (c = hda_vendor_ids; c->id; c++) {
453 if (c->id == vendor_id) {
454 vendor = c->name;
455 break;
456 }
457 }
Takashi Iwai0ba21762007-04-16 11:29:14 +0200458 if (!vendor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 sprintf(tmp, "Generic %04x", vendor_id);
460 vendor = tmp;
461 }
462 if (codec->preset && codec->preset->name)
463 snprintf(name, namelen, "%s %s", vendor, codec->preset->name);
464 else
Takashi Iwai0ba21762007-04-16 11:29:14 +0200465 snprintf(name, namelen, "%s ID %x", vendor,
466 codec->vendor_id & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
469/*
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200470 * look for an AFG and MFG nodes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 */
Takashi Iwai756e2b02007-04-16 11:27:07 +0200472static void __devinit setup_fg_nodes(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
474 int i, total_nodes;
475 hda_nid_t nid;
476
477 total_nodes = snd_hda_get_sub_nodes(codec, AC_NODE_ROOT, &nid);
478 for (i = 0; i < total_nodes; i++, nid++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200479 unsigned int func;
480 func = snd_hda_param_read(codec, nid, AC_PAR_FUNCTION_TYPE);
481 switch (func & 0xff) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200482 case AC_GRP_AUDIO_FUNCTION:
483 codec->afg = nid;
484 break;
485 case AC_GRP_MODEM_FUNCTION:
486 codec->mfg = nid;
487 break;
488 default:
489 break;
490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
494/*
Takashi Iwai54d17402005-11-21 16:33:22 +0100495 * read widget caps for each widget and store in cache
496 */
497static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node)
498{
499 int i;
500 hda_nid_t nid;
501
502 codec->num_nodes = snd_hda_get_sub_nodes(codec, fg_node,
503 &codec->start_nid);
504 codec->wcaps = kmalloc(codec->num_nodes * 4, GFP_KERNEL);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200505 if (!codec->wcaps)
Takashi Iwai54d17402005-11-21 16:33:22 +0100506 return -ENOMEM;
507 nid = codec->start_nid;
508 for (i = 0; i < codec->num_nodes; i++, nid++)
509 codec->wcaps[i] = snd_hda_param_read(codec, nid,
510 AC_PAR_AUDIO_WIDGET_CAP);
511 return 0;
512}
513
514
Takashi Iwai01751f52007-08-10 16:59:39 +0200515static void init_hda_cache(struct hda_cache_rec *cache,
516 unsigned int record_size);
517static inline void free_hda_cache(struct hda_cache_rec *cache);
518
Takashi Iwai54d17402005-11-21 16:33:22 +0100519/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 * codec destructor
521 */
522static void snd_hda_codec_free(struct hda_codec *codec)
523{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200524 if (!codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 return;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200526#ifdef CONFIG_SND_HDA_POWER_SAVE
527 cancel_delayed_work(&codec->power_work);
528#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 list_del(&codec->list);
530 codec->bus->caddr_tbl[codec->addr] = NULL;
531 if (codec->patch_ops.free)
532 codec->patch_ops.free(codec);
Takashi Iwai01751f52007-08-10 16:59:39 +0200533 free_hda_cache(&codec->amp_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200534 free_hda_cache(&codec->cmd_cache);
Takashi Iwai54d17402005-11-21 16:33:22 +0100535 kfree(codec->wcaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 kfree(codec);
537}
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539/**
540 * snd_hda_codec_new - create a HDA codec
541 * @bus: the bus to assign
542 * @codec_addr: the codec address
543 * @codecp: the pointer to store the generated codec
544 *
545 * Returns 0 if successful, or a negative error code.
546 */
Takashi Iwai756e2b02007-04-16 11:27:07 +0200547int __devinit snd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr,
548 struct hda_codec **codecp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549{
550 struct hda_codec *codec;
551 char component[13];
552 int err;
553
554 snd_assert(bus, return -EINVAL);
555 snd_assert(codec_addr <= HDA_MAX_CODEC_ADDRESS, return -EINVAL);
556
557 if (bus->caddr_tbl[codec_addr]) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200558 snd_printk(KERN_ERR "hda_codec: "
559 "address 0x%x is already occupied\n", codec_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 return -EBUSY;
561 }
562
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200563 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (codec == NULL) {
565 snd_printk(KERN_ERR "can't allocate struct hda_codec\n");
566 return -ENOMEM;
567 }
568
569 codec->bus = bus;
570 codec->addr = codec_addr;
Ingo Molnar62932df2006-01-16 16:34:20 +0100571 mutex_init(&codec->spdif_mutex);
Takashi Iwai01751f52007-08-10 16:59:39 +0200572 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200573 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Takashi Iwaicb53c622007-08-10 17:21:45 +0200575#ifdef CONFIG_SND_HDA_POWER_SAVE
576 INIT_DELAYED_WORK(&codec->power_work, hda_power_work);
577 /* snd_hda_codec_new() marks the codec as power-up, and leave it as is.
578 * the caller has to power down appropriatley after initialization
579 * phase.
580 */
581 hda_keep_power_on(codec);
582#endif
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 list_add_tail(&codec->list, &bus->codec_list);
585 bus->caddr_tbl[codec_addr] = codec;
586
Takashi Iwai0ba21762007-04-16 11:29:14 +0200587 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
588 AC_PAR_VENDOR_ID);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100589 if (codec->vendor_id == -1)
590 /* read again, hopefully the access method was corrected
591 * in the last read...
592 */
593 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
594 AC_PAR_VENDOR_ID);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200595 codec->subsystem_id = snd_hda_param_read(codec, AC_NODE_ROOT,
596 AC_PAR_SUBSYSTEM_ID);
597 codec->revision_id = snd_hda_param_read(codec, AC_NODE_ROOT,
598 AC_PAR_REV_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200600 setup_fg_nodes(codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200601 if (!codec->afg && !codec->mfg) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200602 snd_printdd("hda_codec: no AFG or MFG node found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 snd_hda_codec_free(codec);
604 return -ENODEV;
605 }
606
Takashi Iwai54d17402005-11-21 16:33:22 +0100607 if (read_widget_caps(codec, codec->afg ? codec->afg : codec->mfg) < 0) {
608 snd_printk(KERN_ERR "hda_codec: cannot malloc\n");
609 snd_hda_codec_free(codec);
610 return -ENOMEM;
611 }
612
Takashi Iwai0ba21762007-04-16 11:29:14 +0200613 if (!codec->subsystem_id) {
Takashi Iwai86284e42005-10-11 15:05:54 +0200614 hda_nid_t nid = codec->afg ? codec->afg : codec->mfg;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200615 codec->subsystem_id =
616 snd_hda_codec_read(codec, nid, 0,
617 AC_VERB_GET_SUBSYSTEM_ID, 0);
Takashi Iwai86284e42005-10-11 15:05:54 +0200618 }
619
Takashi Iwaid5ad6302007-03-07 15:55:59 +0100620 codec->preset = find_codec_preset(codec);
Takashi Iwai43ea1d42007-04-26 19:12:08 +0200621 /* audio codec should override the mixer name */
622 if (codec->afg || !*bus->card->mixername)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 snd_hda_get_codec_name(codec, bus->card->mixername,
624 sizeof(bus->card->mixername));
625
Takashi Iwai82467612007-07-27 19:15:54 +0200626#ifdef CONFIG_SND_HDA_GENERIC
627 if (is_generic_config(codec)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 err = snd_hda_parse_generic_codec(codec);
Takashi Iwai82467612007-07-27 19:15:54 +0200629 goto patched;
630 }
631#endif
632 if (codec->preset && codec->preset->patch) {
633 err = codec->preset->patch(codec);
634 goto patched;
635 }
636
637 /* call the default parser */
638#ifdef CONFIG_SND_HDA_GENERIC
639 err = snd_hda_parse_generic_codec(codec);
640#else
641 printk(KERN_ERR "hda-codec: No codec parser is available\n");
642 err = -ENODEV;
643#endif
644
645 patched:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 if (err < 0) {
647 snd_hda_codec_free(codec);
648 return err;
649 }
650
Takashi Iwai9f146bb2005-11-17 11:07:49 +0100651 if (codec->patch_ops.unsol_event)
652 init_unsol_queue(bus);
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 snd_hda_codec_proc_new(codec);
Takashi Iwai28073142007-07-27 18:58:06 +0200655#ifdef CONFIG_SND_HDA_HWDEP
656 snd_hda_create_hwdep(codec);
657#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 sprintf(component, "HDA:%08x", codec->vendor_id);
660 snd_component_add(codec->bus->card, component);
661
662 if (codecp)
663 *codecp = codec;
664 return 0;
665}
666
667/**
668 * snd_hda_codec_setup_stream - set up the codec for streaming
669 * @codec: the CODEC to set up
670 * @nid: the NID to set up
671 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
672 * @channel_id: channel id to pass, zero based.
673 * @format: stream format.
674 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200675void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
676 u32 stream_tag,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 int channel_id, int format)
678{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200679 if (!nid)
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200680 return;
681
Takashi Iwai0ba21762007-04-16 11:29:14 +0200682 snd_printdd("hda_codec_setup_stream: "
683 "NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 nid, stream_tag, channel_id, format);
685 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID,
686 (stream_tag << 4) | channel_id);
687 msleep(1);
688 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, format);
689}
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691/*
692 * amp access functions
693 */
694
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200695/* FIXME: more better hash key? */
696#define HDA_HASH_KEY(nid,dir,idx) (u32)((nid) + ((idx) << 16) + ((dir) << 24))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697#define INFO_AMP_CAPS (1<<0)
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200698#define INFO_AMP_VOL(ch) (1 << (1 + (ch)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700/* initialize the hash table */
Takashi Iwai01751f52007-08-10 16:59:39 +0200701static void __devinit init_hda_cache(struct hda_cache_rec *cache,
702 unsigned int record_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
Takashi Iwai01751f52007-08-10 16:59:39 +0200704 memset(cache, 0, sizeof(*cache));
705 memset(cache->hash, 0xff, sizeof(cache->hash));
706 cache->record_size = record_size;
707}
708
709static inline void free_hda_cache(struct hda_cache_rec *cache)
710{
711 kfree(cache->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
713
714/* query the hash. allocate an entry if not found. */
Takashi Iwai01751f52007-08-10 16:59:39 +0200715static struct hda_cache_head *get_alloc_hash(struct hda_cache_rec *cache,
716 u32 key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717{
Takashi Iwai01751f52007-08-10 16:59:39 +0200718 u16 idx = key % (u16)ARRAY_SIZE(cache->hash);
719 u16 cur = cache->hash[idx];
720 struct hda_cache_head *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722 while (cur != 0xffff) {
Takashi Iwai01751f52007-08-10 16:59:39 +0200723 info = (struct hda_cache_head *)(cache->buffer +
724 cur * cache->record_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 if (info->key == key)
726 return info;
727 cur = info->next;
728 }
729
730 /* add a new hash entry */
Takashi Iwai01751f52007-08-10 16:59:39 +0200731 if (cache->num_entries >= cache->size) {
Takashi Iwaid0311662005-11-07 14:38:44 +0100732 /* reallocate the array */
Takashi Iwai01751f52007-08-10 16:59:39 +0200733 unsigned int new_size = cache->size + 64;
734 void *new_buffer;
735 new_buffer = kcalloc(new_size, cache->record_size, GFP_KERNEL);
736 if (!new_buffer) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200737 snd_printk(KERN_ERR "hda_codec: "
738 "can't malloc amp_info\n");
Takashi Iwaid0311662005-11-07 14:38:44 +0100739 return NULL;
740 }
Takashi Iwai01751f52007-08-10 16:59:39 +0200741 if (cache->buffer) {
742 memcpy(new_buffer, cache->buffer,
743 cache->size * cache->record_size);
744 kfree(cache->buffer);
Takashi Iwaid0311662005-11-07 14:38:44 +0100745 }
Takashi Iwai01751f52007-08-10 16:59:39 +0200746 cache->size = new_size;
747 cache->buffer = new_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
Takashi Iwai01751f52007-08-10 16:59:39 +0200749 cur = cache->num_entries++;
750 info = (struct hda_cache_head *)(cache->buffer +
751 cur * cache->record_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 info->key = key;
Takashi Iwai01751f52007-08-10 16:59:39 +0200753 info->val = 0;
754 info->next = cache->hash[idx];
755 cache->hash[idx] = cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 return info;
758}
759
Takashi Iwai01751f52007-08-10 16:59:39 +0200760/* query and allocate an amp hash entry */
761static inline struct hda_amp_info *
762get_alloc_amp_hash(struct hda_codec *codec, u32 key)
763{
764 return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key);
765}
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767/*
768 * query AMP capabilities for the given widget and direction
769 */
770static u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
771{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200772 struct hda_amp_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Takashi Iwai0ba21762007-04-16 11:29:14 +0200774 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, 0));
775 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 return 0;
Takashi Iwai01751f52007-08-10 16:59:39 +0200777 if (!(info->head.val & INFO_AMP_CAPS)) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200778 if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 nid = codec->afg;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200780 info->amp_caps = snd_hda_param_read(codec, nid,
781 direction == HDA_OUTPUT ?
782 AC_PAR_AMP_OUT_CAP :
783 AC_PAR_AMP_IN_CAP);
Takashi Iwaib75e53f2007-05-10 16:56:09 +0200784 if (info->amp_caps)
Takashi Iwai01751f52007-08-10 16:59:39 +0200785 info->head.val |= INFO_AMP_CAPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787 return info->amp_caps;
788}
789
Takashi Iwai897cc182007-05-29 19:01:37 +0200790int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
791 unsigned int caps)
792{
793 struct hda_amp_info *info;
794
795 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, dir, 0));
796 if (!info)
797 return -EINVAL;
798 info->amp_caps = caps;
Takashi Iwai01751f52007-08-10 16:59:39 +0200799 info->head.val |= INFO_AMP_CAPS;
Takashi Iwai897cc182007-05-29 19:01:37 +0200800 return 0;
801}
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803/*
804 * read the current volume to info
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200805 * if the cache exists, read the cache value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200807static unsigned int get_vol_mute(struct hda_codec *codec,
808 struct hda_amp_info *info, hda_nid_t nid,
809 int ch, int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
811 u32 val, parm;
812
Takashi Iwai01751f52007-08-10 16:59:39 +0200813 if (info->head.val & INFO_AMP_VOL(ch))
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200814 return info->vol[ch];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 parm = ch ? AC_AMP_GET_RIGHT : AC_AMP_GET_LEFT;
817 parm |= direction == HDA_OUTPUT ? AC_AMP_GET_OUTPUT : AC_AMP_GET_INPUT;
818 parm |= index;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200819 val = snd_hda_codec_read(codec, nid, 0,
820 AC_VERB_GET_AMP_GAIN_MUTE, parm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 info->vol[ch] = val & 0xff;
Takashi Iwai01751f52007-08-10 16:59:39 +0200822 info->head.val |= INFO_AMP_VOL(ch);
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200823 return info->vol[ch];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824}
825
826/*
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200827 * write the current volume in info to the h/w and update the cache
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 */
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200829static void put_vol_mute(struct hda_codec *codec, struct hda_amp_info *info,
Takashi Iwai0ba21762007-04-16 11:29:14 +0200830 hda_nid_t nid, int ch, int direction, int index,
831 int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832{
833 u32 parm;
834
835 parm = ch ? AC_AMP_SET_RIGHT : AC_AMP_SET_LEFT;
836 parm |= direction == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT;
837 parm |= index << AC_AMP_SET_INDEX_SHIFT;
838 parm |= val;
839 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, parm);
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200840 info->vol[ch] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841}
842
843/*
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200844 * read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 */
Takashi Iwai834be882006-03-01 14:16:17 +0100846int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch,
847 int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200849 struct hda_amp_info *info;
850 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, index));
851 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200853 return get_vol_mute(codec, info, nid, ch, direction, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854}
855
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200856/*
857 * update the AMP value, mask = bit mask to set, val = the value
858 */
Takashi Iwai834be882006-03-01 14:16:17 +0100859int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch,
860 int direction, int idx, int mask, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200862 struct hda_amp_info *info;
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200863
Takashi Iwai0ba21762007-04-16 11:29:14 +0200864 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, idx));
865 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200867 val &= mask;
868 val |= get_vol_mute(codec, info, nid, ch, direction, idx) & ~mask;
Takashi Iwai82beb8f2007-08-10 17:09:26 +0200869 if (info->vol[ch] == val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200871 put_vol_mute(codec, info, nid, ch, direction, idx, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 return 1;
873}
874
Takashi Iwai47fd8302007-08-10 17:11:07 +0200875/*
876 * update the AMP stereo with the same mask and value
877 */
878int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
879 int direction, int idx, int mask, int val)
880{
881 int ch, ret = 0;
882 for (ch = 0; ch < 2; ch++)
883 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
884 idx, mask, val);
885 return ret;
886}
887
Takashi Iwaicb53c622007-08-10 17:21:45 +0200888#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200889/* resume the all amp commands from the cache */
890void snd_hda_codec_resume_amp(struct hda_codec *codec)
891{
892 struct hda_amp_info *buffer = codec->amp_cache.buffer;
893 int i;
894
895 for (i = 0; i < codec->amp_cache.size; i++, buffer++) {
896 u32 key = buffer->head.key;
897 hda_nid_t nid;
898 unsigned int idx, dir, ch;
899 if (!key)
900 continue;
901 nid = key & 0xff;
902 idx = (key >> 16) & 0xff;
903 dir = (key >> 24) & 0xff;
904 for (ch = 0; ch < 2; ch++) {
905 if (!(buffer->head.val & INFO_AMP_VOL(ch)))
906 continue;
907 put_vol_mute(codec, buffer, nid, ch, dir, idx,
908 buffer->vol[ch]);
909 }
910 }
911}
Takashi Iwaicb53c622007-08-10 17:21:45 +0200912#endif /* SND_HDA_NEEDS_RESUME */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914/*
915 * AMP control callbacks
916 */
917/* retrieve parameters from private_value */
918#define get_amp_nid(kc) ((kc)->private_value & 0xffff)
919#define get_amp_channels(kc) (((kc)->private_value >> 16) & 0x3)
920#define get_amp_direction(kc) (((kc)->private_value >> 18) & 0x1)
921#define get_amp_index(kc) (((kc)->private_value >> 19) & 0xf)
922
923/* volume */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200924int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
925 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926{
927 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
928 u16 nid = get_amp_nid(kcontrol);
929 u8 chs = get_amp_channels(kcontrol);
930 int dir = get_amp_direction(kcontrol);
931 u32 caps;
932
933 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200934 /* num steps */
935 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
936 if (!caps) {
937 printk(KERN_WARNING "hda_codec: "
938 "num_steps = 0 for NID=0x%x\n", nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 return -EINVAL;
940 }
941 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
942 uinfo->count = chs == 3 ? 2 : 1;
943 uinfo->value.integer.min = 0;
944 uinfo->value.integer.max = caps;
945 return 0;
946}
947
Takashi Iwai0ba21762007-04-16 11:29:14 +0200948int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
949 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
951 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
952 hda_nid_t nid = get_amp_nid(kcontrol);
953 int chs = get_amp_channels(kcontrol);
954 int dir = get_amp_direction(kcontrol);
955 int idx = get_amp_index(kcontrol);
956 long *valp = ucontrol->value.integer.value;
957
958 if (chs & 1)
Takashi Iwai47fd8302007-08-10 17:11:07 +0200959 *valp++ = snd_hda_codec_amp_read(codec, nid, 0, dir, idx)
960 & HDA_AMP_VOLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 if (chs & 2)
Takashi Iwai47fd8302007-08-10 17:11:07 +0200962 *valp = snd_hda_codec_amp_read(codec, nid, 1, dir, idx)
963 & HDA_AMP_VOLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 return 0;
965}
966
Takashi Iwai0ba21762007-04-16 11:29:14 +0200967int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
968 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
970 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
971 hda_nid_t nid = get_amp_nid(kcontrol);
972 int chs = get_amp_channels(kcontrol);
973 int dir = get_amp_direction(kcontrol);
974 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 long *valp = ucontrol->value.integer.value;
976 int change = 0;
977
Takashi Iwaicb53c622007-08-10 17:21:45 +0200978 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +0200979 if (chs & 1) {
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200980 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
981 0x7f, *valp);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +0200982 valp++;
983 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200984 if (chs & 2)
985 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
Nicolas Grazianob9f5a892005-07-29 12:17:20 +0200986 0x7f, *valp);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200987 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 return change;
989}
990
Jaroslav Kysela302e9c52006-07-05 17:39:49 +0200991int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
992 unsigned int size, unsigned int __user *_tlv)
993{
994 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
995 hda_nid_t nid = get_amp_nid(kcontrol);
996 int dir = get_amp_direction(kcontrol);
997 u32 caps, val1, val2;
998
999 if (size < 4 * sizeof(unsigned int))
1000 return -ENOMEM;
1001 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001002 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1003 val2 = (val2 + 1) * 25;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001004 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
1005 val1 = ((int)val1) * ((int)val2);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001006 if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv))
1007 return -EFAULT;
1008 if (put_user(2 * sizeof(unsigned int), _tlv + 1))
1009 return -EFAULT;
1010 if (put_user(val1, _tlv + 2))
1011 return -EFAULT;
1012 if (put_user(val2, _tlv + 3))
1013 return -EFAULT;
1014 return 0;
1015}
1016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017/* switch */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001018int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
1019 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
1021 int chs = get_amp_channels(kcontrol);
1022
1023 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1024 uinfo->count = chs == 3 ? 2 : 1;
1025 uinfo->value.integer.min = 0;
1026 uinfo->value.integer.max = 1;
1027 return 0;
1028}
1029
Takashi Iwai0ba21762007-04-16 11:29:14 +02001030int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
1031 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
1033 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1034 hda_nid_t nid = get_amp_nid(kcontrol);
1035 int chs = get_amp_channels(kcontrol);
1036 int dir = get_amp_direction(kcontrol);
1037 int idx = get_amp_index(kcontrol);
1038 long *valp = ucontrol->value.integer.value;
1039
1040 if (chs & 1)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001041 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02001042 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 if (chs & 2)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001044 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02001045 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 return 0;
1047}
1048
Takashi Iwai0ba21762007-04-16 11:29:14 +02001049int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
1050 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
1052 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1053 hda_nid_t nid = get_amp_nid(kcontrol);
1054 int chs = get_amp_channels(kcontrol);
1055 int dir = get_amp_direction(kcontrol);
1056 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 long *valp = ucontrol->value.integer.value;
1058 int change = 0;
1059
Takashi Iwaicb53c622007-08-10 17:21:45 +02001060 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001061 if (chs & 1) {
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001062 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001063 HDA_AMP_MUTE,
1064 *valp ? 0 : HDA_AMP_MUTE);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001065 valp++;
1066 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001067 if (chs & 2)
1068 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001069 HDA_AMP_MUTE,
1070 *valp ? 0 : HDA_AMP_MUTE);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001071#ifdef CONFIG_SND_HDA_POWER_SAVE
1072 if (codec->patch_ops.check_power_status)
1073 codec->patch_ops.check_power_status(codec, nid);
1074#endif
1075 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 return change;
1077}
1078
1079/*
Takashi Iwai985be542005-11-02 18:26:49 +01001080 * bound volume controls
1081 *
1082 * bind multiple volumes (# indices, from 0)
1083 */
1084
1085#define AMP_VAL_IDX_SHIFT 19
1086#define AMP_VAL_IDX_MASK (0x0f<<19)
1087
Takashi Iwai0ba21762007-04-16 11:29:14 +02001088int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol,
1089 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01001090{
1091 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1092 unsigned long pval;
1093 int err;
1094
Ingo Molnar62932df2006-01-16 16:34:20 +01001095 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
Takashi Iwai985be542005-11-02 18:26:49 +01001096 pval = kcontrol->private_value;
1097 kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */
1098 err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
1099 kcontrol->private_value = pval;
Ingo Molnar62932df2006-01-16 16:34:20 +01001100 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001101 return err;
1102}
1103
Takashi Iwai0ba21762007-04-16 11:29:14 +02001104int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol,
1105 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01001106{
1107 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1108 unsigned long pval;
1109 int i, indices, err = 0, change = 0;
1110
Ingo Molnar62932df2006-01-16 16:34:20 +01001111 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
Takashi Iwai985be542005-11-02 18:26:49 +01001112 pval = kcontrol->private_value;
1113 indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT;
1114 for (i = 0; i < indices; i++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001115 kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) |
1116 (i << AMP_VAL_IDX_SHIFT);
Takashi Iwai985be542005-11-02 18:26:49 +01001117 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
1118 if (err < 0)
1119 break;
1120 change |= err;
1121 }
1122 kcontrol->private_value = pval;
Ingo Molnar62932df2006-01-16 16:34:20 +01001123 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001124 return err < 0 ? err : change;
1125}
1126
1127/*
Takashi Iwai532d5382007-07-27 19:02:40 +02001128 * generic bound volume/swtich controls
1129 */
1130int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol,
1131 struct snd_ctl_elem_info *uinfo)
1132{
1133 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1134 struct hda_bind_ctls *c;
1135 int err;
1136
1137 c = (struct hda_bind_ctls *)kcontrol->private_value;
1138 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
1139 kcontrol->private_value = *c->values;
1140 err = c->ops->info(kcontrol, uinfo);
1141 kcontrol->private_value = (long)c;
1142 mutex_unlock(&codec->spdif_mutex);
1143 return err;
1144}
1145
1146int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol,
1147 struct snd_ctl_elem_value *ucontrol)
1148{
1149 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1150 struct hda_bind_ctls *c;
1151 int err;
1152
1153 c = (struct hda_bind_ctls *)kcontrol->private_value;
1154 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
1155 kcontrol->private_value = *c->values;
1156 err = c->ops->get(kcontrol, ucontrol);
1157 kcontrol->private_value = (long)c;
1158 mutex_unlock(&codec->spdif_mutex);
1159 return err;
1160}
1161
1162int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol,
1163 struct snd_ctl_elem_value *ucontrol)
1164{
1165 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1166 struct hda_bind_ctls *c;
1167 unsigned long *vals;
1168 int err = 0, change = 0;
1169
1170 c = (struct hda_bind_ctls *)kcontrol->private_value;
1171 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
1172 for (vals = c->values; *vals; vals++) {
1173 kcontrol->private_value = *vals;
1174 err = c->ops->put(kcontrol, ucontrol);
1175 if (err < 0)
1176 break;
1177 change |= err;
1178 }
1179 kcontrol->private_value = (long)c;
1180 mutex_unlock(&codec->spdif_mutex);
1181 return err < 0 ? err : change;
1182}
1183
1184int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1185 unsigned int size, unsigned int __user *tlv)
1186{
1187 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1188 struct hda_bind_ctls *c;
1189 int err;
1190
1191 c = (struct hda_bind_ctls *)kcontrol->private_value;
1192 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
1193 kcontrol->private_value = *c->values;
1194 err = c->ops->tlv(kcontrol, op_flag, size, tlv);
1195 kcontrol->private_value = (long)c;
1196 mutex_unlock(&codec->spdif_mutex);
1197 return err;
1198}
1199
1200struct hda_ctl_ops snd_hda_bind_vol = {
1201 .info = snd_hda_mixer_amp_volume_info,
1202 .get = snd_hda_mixer_amp_volume_get,
1203 .put = snd_hda_mixer_amp_volume_put,
1204 .tlv = snd_hda_mixer_amp_tlv
1205};
1206
1207struct hda_ctl_ops snd_hda_bind_sw = {
1208 .info = snd_hda_mixer_amp_switch_info,
1209 .get = snd_hda_mixer_amp_switch_get,
1210 .put = snd_hda_mixer_amp_switch_put,
1211 .tlv = snd_hda_mixer_amp_tlv
1212};
1213
1214/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 * SPDIF out controls
1216 */
1217
Takashi Iwai0ba21762007-04-16 11:29:14 +02001218static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
1219 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
1221 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1222 uinfo->count = 1;
1223 return 0;
1224}
1225
Takashi Iwai0ba21762007-04-16 11:29:14 +02001226static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
1227 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
1229 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1230 IEC958_AES0_NONAUDIO |
1231 IEC958_AES0_CON_EMPHASIS_5015 |
1232 IEC958_AES0_CON_NOT_COPYRIGHT;
1233 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
1234 IEC958_AES1_CON_ORIGINAL;
1235 return 0;
1236}
1237
Takashi Iwai0ba21762007-04-16 11:29:14 +02001238static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
1239 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
1241 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1242 IEC958_AES0_NONAUDIO |
1243 IEC958_AES0_PRO_EMPHASIS_5015;
1244 return 0;
1245}
1246
Takashi Iwai0ba21762007-04-16 11:29:14 +02001247static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
1248 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249{
1250 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1251
1252 ucontrol->value.iec958.status[0] = codec->spdif_status & 0xff;
1253 ucontrol->value.iec958.status[1] = (codec->spdif_status >> 8) & 0xff;
1254 ucontrol->value.iec958.status[2] = (codec->spdif_status >> 16) & 0xff;
1255 ucontrol->value.iec958.status[3] = (codec->spdif_status >> 24) & 0xff;
1256
1257 return 0;
1258}
1259
1260/* convert from SPDIF status bits to HDA SPDIF bits
1261 * bit 0 (DigEn) is always set zero (to be filled later)
1262 */
1263static unsigned short convert_from_spdif_status(unsigned int sbits)
1264{
1265 unsigned short val = 0;
1266
1267 if (sbits & IEC958_AES0_PROFESSIONAL)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001268 val |= AC_DIG1_PROFESSIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 if (sbits & IEC958_AES0_NONAUDIO)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001270 val |= AC_DIG1_NONAUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001272 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
1273 IEC958_AES0_PRO_EMPHASIS_5015)
1274 val |= AC_DIG1_EMPHASIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001276 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
1277 IEC958_AES0_CON_EMPHASIS_5015)
1278 val |= AC_DIG1_EMPHASIS;
1279 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
1280 val |= AC_DIG1_COPYRIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
Takashi Iwai0ba21762007-04-16 11:29:14 +02001282 val |= AC_DIG1_LEVEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
1284 }
1285 return val;
1286}
1287
1288/* convert to SPDIF status bits from HDA SPDIF bits
1289 */
1290static unsigned int convert_to_spdif_status(unsigned short val)
1291{
1292 unsigned int sbits = 0;
1293
Takashi Iwai0ba21762007-04-16 11:29:14 +02001294 if (val & AC_DIG1_NONAUDIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 sbits |= IEC958_AES0_NONAUDIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001296 if (val & AC_DIG1_PROFESSIONAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 sbits |= IEC958_AES0_PROFESSIONAL;
1298 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001299 if (sbits & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
1301 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001302 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001304 if (!(val & AC_DIG1_COPYRIGHT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001306 if (val & AC_DIG1_LEVEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
1308 sbits |= val & (0x7f << 8);
1309 }
1310 return sbits;
1311}
1312
Takashi Iwai0ba21762007-04-16 11:29:14 +02001313static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
1314 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315{
1316 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1317 hda_nid_t nid = kcontrol->private_value;
1318 unsigned short val;
1319 int change;
1320
Ingo Molnar62932df2006-01-16 16:34:20 +01001321 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 codec->spdif_status = ucontrol->value.iec958.status[0] |
1323 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
1324 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
1325 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
1326 val = convert_from_spdif_status(codec->spdif_status);
1327 val |= codec->spdif_ctls & 1;
1328 change = codec->spdif_ctls != val;
1329 codec->spdif_ctls = val;
1330
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001331 if (change) {
1332 snd_hda_codec_write_cache(codec, nid, 0,
1333 AC_VERB_SET_DIGI_CONVERT_1,
1334 val & 0xff);
1335 snd_hda_codec_write_cache(codec, nid, 0,
1336 AC_VERB_SET_DIGI_CONVERT_2,
1337 val >> 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 }
1339
Ingo Molnar62932df2006-01-16 16:34:20 +01001340 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 return change;
1342}
1343
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001344#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345
Takashi Iwai0ba21762007-04-16 11:29:14 +02001346static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
1347 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
1349 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1350
Takashi Iwai0ba21762007-04-16 11:29:14 +02001351 ucontrol->value.integer.value[0] = codec->spdif_ctls & AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 return 0;
1353}
1354
Takashi Iwai0ba21762007-04-16 11:29:14 +02001355static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
1356 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
1358 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1359 hda_nid_t nid = kcontrol->private_value;
1360 unsigned short val;
1361 int change;
1362
Ingo Molnar62932df2006-01-16 16:34:20 +01001363 mutex_lock(&codec->spdif_mutex);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001364 val = codec->spdif_ctls & ~AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 if (ucontrol->value.integer.value[0])
Takashi Iwai0ba21762007-04-16 11:29:14 +02001366 val |= AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 change = codec->spdif_ctls != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001368 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 codec->spdif_ctls = val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001370 snd_hda_codec_write_cache(codec, nid, 0,
1371 AC_VERB_SET_DIGI_CONVERT_1,
1372 val & 0xff);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001373 /* unmute amp switch (if any) */
1374 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
Takashi Iwai47fd8302007-08-10 17:11:07 +02001375 (val & AC_DIG1_ENABLE))
1376 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
1377 HDA_AMP_MUTE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001379 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 return change;
1381}
1382
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001383static struct snd_kcontrol_new dig_mixes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 {
1385 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1386 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1387 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK),
1388 .info = snd_hda_spdif_mask_info,
1389 .get = snd_hda_spdif_cmask_get,
1390 },
1391 {
1392 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1393 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1394 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PRO_MASK),
1395 .info = snd_hda_spdif_mask_info,
1396 .get = snd_hda_spdif_pmask_get,
1397 },
1398 {
1399 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1400 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
1401 .info = snd_hda_spdif_mask_info,
1402 .get = snd_hda_spdif_default_get,
1403 .put = snd_hda_spdif_default_put,
1404 },
1405 {
1406 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1407 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH),
1408 .info = snd_hda_spdif_out_switch_info,
1409 .get = snd_hda_spdif_out_switch_get,
1410 .put = snd_hda_spdif_out_switch_put,
1411 },
1412 { } /* end */
1413};
1414
1415/**
1416 * snd_hda_create_spdif_out_ctls - create Output SPDIF-related controls
1417 * @codec: the HDA codec
1418 * @nid: audio out widget NID
1419 *
1420 * Creates controls related with the SPDIF output.
1421 * Called from each patch supporting the SPDIF out.
1422 *
1423 * Returns 0 if successful, or a negative error code.
1424 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02001425int snd_hda_create_spdif_out_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426{
1427 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001428 struct snd_kcontrol *kctl;
1429 struct snd_kcontrol_new *dig_mix;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
1431 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
1432 kctl = snd_ctl_new1(dig_mix, codec);
1433 kctl->private_value = nid;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001434 err = snd_ctl_add(codec->bus->card, kctl);
1435 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 return err;
1437 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001438 codec->spdif_ctls =
1439 snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 codec->spdif_status = convert_to_spdif_status(codec->spdif_ctls);
1441 return 0;
1442}
1443
1444/*
1445 * SPDIF input
1446 */
1447
1448#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
1449
Takashi Iwai0ba21762007-04-16 11:29:14 +02001450static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
1451 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452{
1453 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1454
1455 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
1456 return 0;
1457}
1458
Takashi Iwai0ba21762007-04-16 11:29:14 +02001459static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
1460 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461{
1462 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1463 hda_nid_t nid = kcontrol->private_value;
1464 unsigned int val = !!ucontrol->value.integer.value[0];
1465 int change;
1466
Ingo Molnar62932df2006-01-16 16:34:20 +01001467 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001469 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 codec->spdif_in_enable = val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001471 snd_hda_codec_write_cache(codec, nid, 0,
1472 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001474 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 return change;
1476}
1477
Takashi Iwai0ba21762007-04-16 11:29:14 +02001478static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
1479 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480{
1481 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1482 hda_nid_t nid = kcontrol->private_value;
1483 unsigned short val;
1484 unsigned int sbits;
1485
1486 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT, 0);
1487 sbits = convert_to_spdif_status(val);
1488 ucontrol->value.iec958.status[0] = sbits;
1489 ucontrol->value.iec958.status[1] = sbits >> 8;
1490 ucontrol->value.iec958.status[2] = sbits >> 16;
1491 ucontrol->value.iec958.status[3] = sbits >> 24;
1492 return 0;
1493}
1494
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001495static struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 {
1497 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1498 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH),
1499 .info = snd_hda_spdif_in_switch_info,
1500 .get = snd_hda_spdif_in_switch_get,
1501 .put = snd_hda_spdif_in_switch_put,
1502 },
1503 {
1504 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1505 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1506 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,DEFAULT),
1507 .info = snd_hda_spdif_mask_info,
1508 .get = snd_hda_spdif_in_status_get,
1509 },
1510 { } /* end */
1511};
1512
1513/**
1514 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
1515 * @codec: the HDA codec
1516 * @nid: audio in widget NID
1517 *
1518 * Creates controls related with the SPDIF input.
1519 * Called from each patch supporting the SPDIF in.
1520 *
1521 * Returns 0 if successful, or a negative error code.
1522 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02001523int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524{
1525 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001526 struct snd_kcontrol *kctl;
1527 struct snd_kcontrol_new *dig_mix;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
1529 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
1530 kctl = snd_ctl_new1(dig_mix, codec);
1531 kctl->private_value = nid;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001532 err = snd_ctl_add(codec->bus->card, kctl);
1533 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 return err;
1535 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001536 codec->spdif_in_enable =
1537 snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT, 0) &
1538 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 return 0;
1540}
1541
Takashi Iwaicb53c622007-08-10 17:21:45 +02001542#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001543/*
1544 * command cache
1545 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001547/* build a 32bit cache key with the widget id and the command parameter */
1548#define build_cmd_cache_key(nid, verb) ((verb << 8) | nid)
1549#define get_cmd_cache_nid(key) ((key) & 0xff)
1550#define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff)
1551
1552/**
1553 * snd_hda_codec_write_cache - send a single command with caching
1554 * @codec: the HDA codec
1555 * @nid: NID to send the command
1556 * @direct: direct flag
1557 * @verb: the verb to send
1558 * @parm: the parameter for the verb
1559 *
1560 * Send a single command without waiting for response.
1561 *
1562 * Returns 0 if successful, or a negative error code.
1563 */
1564int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid,
1565 int direct, unsigned int verb, unsigned int parm)
1566{
1567 int err;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001568 snd_hda_power_up(codec);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001569 mutex_lock(&codec->bus->cmd_mutex);
1570 err = codec->bus->ops.command(codec, nid, direct, verb, parm);
1571 if (!err) {
1572 struct hda_cache_head *c;
1573 u32 key = build_cmd_cache_key(nid, verb);
1574 c = get_alloc_hash(&codec->cmd_cache, key);
1575 if (c)
1576 c->val = parm;
1577 }
1578 mutex_unlock(&codec->bus->cmd_mutex);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001579 snd_hda_power_down(codec);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001580 return err;
1581}
1582
1583/* resume the all commands from the cache */
1584void snd_hda_codec_resume_cache(struct hda_codec *codec)
1585{
1586 struct hda_cache_head *buffer = codec->cmd_cache.buffer;
1587 int i;
1588
1589 for (i = 0; i < codec->cmd_cache.size; i++, buffer++) {
1590 u32 key = buffer->key;
1591 if (!key)
1592 continue;
1593 snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0,
1594 get_cmd_cache_cmd(key), buffer->val);
1595 }
1596}
1597
1598/**
1599 * snd_hda_sequence_write_cache - sequence writes with caching
1600 * @codec: the HDA codec
1601 * @seq: VERB array to send
1602 *
1603 * Send the commands sequentially from the given array.
1604 * Thte commands are recorded on cache for power-save and resume.
1605 * The array must be terminated with NID=0.
1606 */
1607void snd_hda_sequence_write_cache(struct hda_codec *codec,
1608 const struct hda_verb *seq)
1609{
1610 for (; seq->nid; seq++)
1611 snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb,
1612 seq->param);
1613}
Takashi Iwaicb53c622007-08-10 17:21:45 +02001614#endif /* SND_HDA_NEEDS_RESUME */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001615
Takashi Iwai54d17402005-11-21 16:33:22 +01001616/*
1617 * set power state of the codec
1618 */
1619static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
1620 unsigned int power_state)
1621{
Takashi Iwaicb53c622007-08-10 17:21:45 +02001622 hda_nid_t nid;
1623 int i;
Takashi Iwai54d17402005-11-21 16:33:22 +01001624
1625 snd_hda_codec_write(codec, fg, 0, AC_VERB_SET_POWER_STATE,
1626 power_state);
1627
Takashi Iwaicb53c622007-08-10 17:21:45 +02001628 nid = codec->start_nid;
1629 for (i = 0; i < codec->num_nodes; i++, nid++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01001630 if (get_wcaps(codec, nid) & AC_WCAP_POWER)
1631 snd_hda_codec_write(codec, nid, 0,
1632 AC_VERB_SET_POWER_STATE,
1633 power_state);
1634 }
1635
Takashi Iwaicb53c622007-08-10 17:21:45 +02001636 if (power_state == AC_PWRST_D0) {
1637 unsigned long end_time;
1638 int state;
Takashi Iwai54d17402005-11-21 16:33:22 +01001639 msleep(10);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001640 /* wait until the codec reachs to D0 */
1641 end_time = jiffies + msecs_to_jiffies(500);
1642 do {
1643 state = snd_hda_codec_read(codec, fg, 0,
1644 AC_VERB_GET_POWER_STATE, 0);
1645 if (state == power_state)
1646 break;
1647 msleep(1);
1648 } while (time_after_eq(end_time, jiffies));
1649 }
Takashi Iwai54d17402005-11-21 16:33:22 +01001650}
1651
Takashi Iwaicb53c622007-08-10 17:21:45 +02001652#ifdef SND_HDA_NEEDS_RESUME
1653/*
1654 * call suspend and power-down; used both from PM and power-save
1655 */
1656static void hda_call_codec_suspend(struct hda_codec *codec)
1657{
1658 if (codec->patch_ops.suspend)
1659 codec->patch_ops.suspend(codec, PMSG_SUSPEND);
1660 hda_set_power_state(codec,
1661 codec->afg ? codec->afg : codec->mfg,
1662 AC_PWRST_D3);
1663#ifdef CONFIG_SND_HDA_POWER_SAVE
1664 cancel_delayed_work(&codec->power_work);
Takashi Iwai95e99fd2007-08-13 15:29:04 +02001665 codec->power_on = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001666#endif
1667}
1668
1669/*
1670 * kick up codec; used both from PM and power-save
1671 */
1672static void hda_call_codec_resume(struct hda_codec *codec)
1673{
1674 hda_set_power_state(codec,
1675 codec->afg ? codec->afg : codec->mfg,
1676 AC_PWRST_D0);
1677 if (codec->patch_ops.resume)
1678 codec->patch_ops.resume(codec);
1679 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02001680 if (codec->patch_ops.init)
1681 codec->patch_ops.init(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001682 snd_hda_codec_resume_amp(codec);
1683 snd_hda_codec_resume_cache(codec);
1684 }
1685}
1686#endif /* SND_HDA_NEEDS_RESUME */
1687
Takashi Iwai54d17402005-11-21 16:33:22 +01001688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689/**
1690 * snd_hda_build_controls - build mixer controls
1691 * @bus: the BUS
1692 *
1693 * Creates mixer controls for each codec included in the bus.
1694 *
1695 * Returns 0 if successful, otherwise a negative error code.
1696 */
Takashi Iwai756e2b02007-04-16 11:27:07 +02001697int __devinit snd_hda_build_controls(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001699 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Takashi Iwai0ba21762007-04-16 11:29:14 +02001701 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwaicb53c622007-08-10 17:21:45 +02001702 int err = 0;
1703 /* fake as if already powered-on */
1704 hda_keep_power_on(codec);
1705 /* then fire up */
1706 hda_set_power_state(codec,
1707 codec->afg ? codec->afg : codec->mfg,
1708 AC_PWRST_D0);
1709 /* continue to initialize... */
1710 if (codec->patch_ops.init)
1711 err = codec->patch_ops.init(codec);
1712 if (!err && codec->patch_ops.build_controls)
1713 err = codec->patch_ops.build_controls(codec);
1714 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 if (err < 0)
1716 return err;
1717 }
1718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 return 0;
1720}
1721
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722/*
1723 * stream formats
1724 */
Takashi Iwaibefdf312005-08-22 13:57:55 +02001725struct hda_rate_tbl {
1726 unsigned int hz;
1727 unsigned int alsa_bits;
1728 unsigned int hda_fmt;
1729};
1730
1731static struct hda_rate_tbl rate_bits[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 /* rate in Hz, ALSA rate bitmask, HDA format value */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02001733
1734 /* autodetected value used in snd_hda_query_supported_pcm */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 { 8000, SNDRV_PCM_RATE_8000, 0x0500 }, /* 1/6 x 48 */
1736 { 11025, SNDRV_PCM_RATE_11025, 0x4300 }, /* 1/4 x 44 */
1737 { 16000, SNDRV_PCM_RATE_16000, 0x0200 }, /* 1/3 x 48 */
1738 { 22050, SNDRV_PCM_RATE_22050, 0x4100 }, /* 1/2 x 44 */
1739 { 32000, SNDRV_PCM_RATE_32000, 0x0a00 }, /* 2/3 x 48 */
1740 { 44100, SNDRV_PCM_RATE_44100, 0x4000 }, /* 44 */
1741 { 48000, SNDRV_PCM_RATE_48000, 0x0000 }, /* 48 */
1742 { 88200, SNDRV_PCM_RATE_88200, 0x4800 }, /* 2 x 44 */
1743 { 96000, SNDRV_PCM_RATE_96000, 0x0800 }, /* 2 x 48 */
1744 { 176400, SNDRV_PCM_RATE_176400, 0x5800 },/* 4 x 44 */
1745 { 192000, SNDRV_PCM_RATE_192000, 0x1800 }, /* 4 x 48 */
Takashi Iwaia961f9f2007-04-12 13:08:09 +02001746#define AC_PAR_PCM_RATE_BITS 11
1747 /* up to bits 10, 384kHZ isn't supported properly */
1748
1749 /* not autodetected value */
1750 { 9600, SNDRV_PCM_RATE_KNOT, 0x0400 }, /* 1/5 x 48 */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02001751
Takashi Iwaibefdf312005-08-22 13:57:55 +02001752 { 0 } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753};
1754
1755/**
1756 * snd_hda_calc_stream_format - calculate format bitset
1757 * @rate: the sample rate
1758 * @channels: the number of channels
1759 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
1760 * @maxbps: the max. bps
1761 *
1762 * Calculate the format bitset from the given rate, channels and th PCM format.
1763 *
1764 * Return zero if invalid.
1765 */
1766unsigned int snd_hda_calc_stream_format(unsigned int rate,
1767 unsigned int channels,
1768 unsigned int format,
1769 unsigned int maxbps)
1770{
1771 int i;
1772 unsigned int val = 0;
1773
Takashi Iwaibefdf312005-08-22 13:57:55 +02001774 for (i = 0; rate_bits[i].hz; i++)
1775 if (rate_bits[i].hz == rate) {
1776 val = rate_bits[i].hda_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 break;
1778 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001779 if (!rate_bits[i].hz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 snd_printdd("invalid rate %d\n", rate);
1781 return 0;
1782 }
1783
1784 if (channels == 0 || channels > 8) {
1785 snd_printdd("invalid channels %d\n", channels);
1786 return 0;
1787 }
1788 val |= channels - 1;
1789
1790 switch (snd_pcm_format_width(format)) {
1791 case 8: val |= 0x00; break;
1792 case 16: val |= 0x10; break;
1793 case 20:
1794 case 24:
1795 case 32:
1796 if (maxbps >= 32)
1797 val |= 0x40;
1798 else if (maxbps >= 24)
1799 val |= 0x30;
1800 else
1801 val |= 0x20;
1802 break;
1803 default:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001804 snd_printdd("invalid format width %d\n",
1805 snd_pcm_format_width(format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 return 0;
1807 }
1808
1809 return val;
1810}
1811
1812/**
1813 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
1814 * @codec: the HDA codec
1815 * @nid: NID to query
1816 * @ratesp: the pointer to store the detected rate bitflags
1817 * @formatsp: the pointer to store the detected formats
1818 * @bpsp: the pointer to store the detected format widths
1819 *
1820 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
1821 * or @bsps argument is ignored.
1822 *
1823 * Returns 0 if successful, otherwise a negative error code.
1824 */
1825int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
1826 u32 *ratesp, u64 *formatsp, unsigned int *bpsp)
1827{
1828 int i;
1829 unsigned int val, streams;
1830
1831 val = 0;
1832 if (nid != codec->afg &&
Takashi Iwai54d17402005-11-21 16:33:22 +01001833 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
1835 if (val == -1)
1836 return -EIO;
1837 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001838 if (!val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
1840
1841 if (ratesp) {
1842 u32 rates = 0;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02001843 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 if (val & (1 << i))
Takashi Iwaibefdf312005-08-22 13:57:55 +02001845 rates |= rate_bits[i].alsa_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 }
1847 *ratesp = rates;
1848 }
1849
1850 if (formatsp || bpsp) {
1851 u64 formats = 0;
1852 unsigned int bps;
1853 unsigned int wcaps;
1854
Takashi Iwai54d17402005-11-21 16:33:22 +01001855 wcaps = get_wcaps(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
1857 if (streams == -1)
1858 return -EIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001859 if (!streams) {
1860 streams = snd_hda_param_read(codec, codec->afg,
1861 AC_PAR_STREAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 if (streams == -1)
1863 return -EIO;
1864 }
1865
1866 bps = 0;
1867 if (streams & AC_SUPFMT_PCM) {
1868 if (val & AC_SUPPCM_BITS_8) {
1869 formats |= SNDRV_PCM_FMTBIT_U8;
1870 bps = 8;
1871 }
1872 if (val & AC_SUPPCM_BITS_16) {
1873 formats |= SNDRV_PCM_FMTBIT_S16_LE;
1874 bps = 16;
1875 }
1876 if (wcaps & AC_WCAP_DIGITAL) {
1877 if (val & AC_SUPPCM_BITS_32)
1878 formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
1879 if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24))
1880 formats |= SNDRV_PCM_FMTBIT_S32_LE;
1881 if (val & AC_SUPPCM_BITS_24)
1882 bps = 24;
1883 else if (val & AC_SUPPCM_BITS_20)
1884 bps = 20;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001885 } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24|
1886 AC_SUPPCM_BITS_32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 formats |= SNDRV_PCM_FMTBIT_S32_LE;
1888 if (val & AC_SUPPCM_BITS_32)
1889 bps = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 else if (val & AC_SUPPCM_BITS_24)
1891 bps = 24;
Nicolas Graziano33ef76512006-09-19 14:23:14 +02001892 else if (val & AC_SUPPCM_BITS_20)
1893 bps = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 }
1895 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001896 else if (streams == AC_SUPFMT_FLOAT32) {
1897 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
1899 bps = 32;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001900 } else if (streams == AC_SUPFMT_AC3) {
1901 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 /* temporary hack: we have still no proper support
1903 * for the direct AC3 stream...
1904 */
1905 formats |= SNDRV_PCM_FMTBIT_U8;
1906 bps = 8;
1907 }
1908 if (formatsp)
1909 *formatsp = formats;
1910 if (bpsp)
1911 *bpsp = bps;
1912 }
1913
1914 return 0;
1915}
1916
1917/**
Takashi Iwai0ba21762007-04-16 11:29:14 +02001918 * snd_hda_is_supported_format - check whether the given node supports
1919 * the format val
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 *
1921 * Returns 1 if supported, 0 if not.
1922 */
1923int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
1924 unsigned int format)
1925{
1926 int i;
1927 unsigned int val = 0, rate, stream;
1928
1929 if (nid != codec->afg &&
Takashi Iwai54d17402005-11-21 16:33:22 +01001930 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
1932 if (val == -1)
1933 return 0;
1934 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001935 if (!val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
1937 if (val == -1)
1938 return 0;
1939 }
1940
1941 rate = format & 0xff00;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02001942 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++)
Takashi Iwaibefdf312005-08-22 13:57:55 +02001943 if (rate_bits[i].hda_fmt == rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 if (val & (1 << i))
1945 break;
1946 return 0;
1947 }
Takashi Iwaia961f9f2007-04-12 13:08:09 +02001948 if (i >= AC_PAR_PCM_RATE_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 return 0;
1950
1951 stream = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
1952 if (stream == -1)
1953 return 0;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001954 if (!stream && nid != codec->afg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 stream = snd_hda_param_read(codec, codec->afg, AC_PAR_STREAM);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001956 if (!stream || stream == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 return 0;
1958
1959 if (stream & AC_SUPFMT_PCM) {
1960 switch (format & 0xf0) {
1961 case 0x00:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001962 if (!(val & AC_SUPPCM_BITS_8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 return 0;
1964 break;
1965 case 0x10:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001966 if (!(val & AC_SUPPCM_BITS_16))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 return 0;
1968 break;
1969 case 0x20:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001970 if (!(val & AC_SUPPCM_BITS_20))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 return 0;
1972 break;
1973 case 0x30:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001974 if (!(val & AC_SUPPCM_BITS_24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 return 0;
1976 break;
1977 case 0x40:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001978 if (!(val & AC_SUPPCM_BITS_32))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 return 0;
1980 break;
1981 default:
1982 return 0;
1983 }
1984 } else {
1985 /* FIXME: check for float32 and AC3? */
1986 }
1987
1988 return 1;
1989}
1990
1991/*
1992 * PCM stuff
1993 */
1994static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
1995 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001996 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997{
1998 return 0;
1999}
2000
2001static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
2002 struct hda_codec *codec,
2003 unsigned int stream_tag,
2004 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002005 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006{
2007 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
2008 return 0;
2009}
2010
2011static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
2012 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002013 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014{
2015 snd_hda_codec_setup_stream(codec, hinfo->nid, 0, 0, 0);
2016 return 0;
2017}
2018
Takashi Iwai0ba21762007-04-16 11:29:14 +02002019static int __devinit set_pcm_default_values(struct hda_codec *codec,
2020 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002022 /* query support PCM information from the given NID */
2023 if (info->nid && (!info->rates || !info->formats)) {
2024 snd_hda_query_supported_pcm(codec, info->nid,
2025 info->rates ? NULL : &info->rates,
2026 info->formats ? NULL : &info->formats,
2027 info->maxbps ? NULL : &info->maxbps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 }
2029 if (info->ops.open == NULL)
2030 info->ops.open = hda_pcm_default_open_close;
2031 if (info->ops.close == NULL)
2032 info->ops.close = hda_pcm_default_open_close;
2033 if (info->ops.prepare == NULL) {
2034 snd_assert(info->nid, return -EINVAL);
2035 info->ops.prepare = hda_pcm_default_prepare;
2036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 if (info->ops.cleanup == NULL) {
2038 snd_assert(info->nid, return -EINVAL);
2039 info->ops.cleanup = hda_pcm_default_cleanup;
2040 }
2041 return 0;
2042}
2043
2044/**
2045 * snd_hda_build_pcms - build PCM information
2046 * @bus: the BUS
2047 *
2048 * Create PCM information for each codec included in the bus.
2049 *
2050 * The build_pcms codec patch is requested to set up codec->num_pcms and
2051 * codec->pcm_info properly. The array is referred by the top-level driver
2052 * to create its PCM instances.
2053 * The allocated codec->pcm_info should be released in codec->patch_ops.free
2054 * callback.
2055 *
2056 * At least, substreams, channels_min and channels_max must be filled for
2057 * each stream. substreams = 0 indicates that the stream doesn't exist.
2058 * When rates and/or formats are zero, the supported values are queried
2059 * from the given nid. The nid is used also by the default ops.prepare
2060 * and ops.cleanup callbacks.
2061 *
2062 * The driver needs to call ops.open in its open callback. Similarly,
2063 * ops.close is supposed to be called in the close callback.
2064 * ops.prepare should be called in the prepare or hw_params callback
2065 * with the proper parameters for set up.
2066 * ops.cleanup should be called in hw_free for clean up of streams.
2067 *
2068 * This function returns 0 if successfull, or a negative error code.
2069 */
Takashi Iwai756e2b02007-04-16 11:27:07 +02002070int __devinit snd_hda_build_pcms(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002072 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073
Takashi Iwai0ba21762007-04-16 11:29:14 +02002074 list_for_each_entry(codec, &bus->codec_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 unsigned int pcm, s;
2076 int err;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002077 if (!codec->patch_ops.build_pcms)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 continue;
2079 err = codec->patch_ops.build_pcms(codec);
2080 if (err < 0)
2081 return err;
2082 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
2083 for (s = 0; s < 2; s++) {
2084 struct hda_pcm_stream *info;
2085 info = &codec->pcm_info[pcm].stream[s];
Takashi Iwai0ba21762007-04-16 11:29:14 +02002086 if (!info->substreams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 continue;
2088 err = set_pcm_default_values(codec, info);
2089 if (err < 0)
2090 return err;
2091 }
2092 }
2093 }
2094 return 0;
2095}
2096
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097/**
2098 * snd_hda_check_board_config - compare the current codec with the config table
2099 * @codec: the HDA codec
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002100 * @num_configs: number of config enums
2101 * @models: array of model name strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 * @tbl: configuration table, terminated by null entries
2103 *
2104 * Compares the modelname or PCI subsystem id of the current codec with the
2105 * given configuration table. If a matching entry is found, returns its
2106 * config value (supposed to be 0 or positive).
2107 *
2108 * If no entries are matching, the function returns a negative value.
2109 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002110int snd_hda_check_board_config(struct hda_codec *codec,
2111 int num_configs, const char **models,
2112 const struct snd_pci_quirk *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113{
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002114 if (codec->bus->modelname && models) {
2115 int i;
2116 for (i = 0; i < num_configs; i++) {
2117 if (models[i] &&
2118 !strcmp(codec->bus->modelname, models[i])) {
2119 snd_printd(KERN_INFO "hda_codec: model '%s' is "
2120 "selected\n", models[i]);
2121 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 }
2123 }
2124 }
2125
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002126 if (!codec->bus->pci || !tbl)
2127 return -1;
2128
2129 tbl = snd_pci_quirk_lookup(codec->bus->pci, tbl);
2130 if (!tbl)
2131 return -1;
2132 if (tbl->value >= 0 && tbl->value < num_configs) {
2133#ifdef CONFIG_SND_DEBUG_DETECT
2134 char tmp[10];
2135 const char *model = NULL;
2136 if (models)
2137 model = models[tbl->value];
2138 if (!model) {
2139 sprintf(tmp, "#%d", tbl->value);
2140 model = tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 }
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002142 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
2143 "for config %x:%x (%s)\n",
2144 model, tbl->subvendor, tbl->subdevice,
2145 (tbl->name ? tbl->name : "Unknown device"));
2146#endif
2147 return tbl->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 }
2149 return -1;
2150}
2151
2152/**
2153 * snd_hda_add_new_ctls - create controls from the array
2154 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002155 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 *
2157 * This helper function creates and add new controls in the given array.
2158 * The array must be terminated with an empty entry as terminator.
2159 *
2160 * Returns 0 if successful, or a negative error code.
2161 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002162int snd_hda_add_new_ctls(struct hda_codec *codec, struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163{
Takashi Iwaicb53c622007-08-10 17:21:45 +02002164 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165
2166 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01002167 struct snd_kcontrol *kctl;
2168 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002169 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01002170 return -ENOMEM;
2171 err = snd_ctl_add(codec->bus->card, kctl);
2172 if (err < 0) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002173 if (!codec->addr)
Takashi Iwai54d17402005-11-21 16:33:22 +01002174 return err;
2175 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002176 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01002177 return -ENOMEM;
2178 kctl->id.device = codec->addr;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002179 err = snd_ctl_add(codec->bus->card, kctl);
2180 if (err < 0)
Takashi Iwai54d17402005-11-21 16:33:22 +01002181 return err;
2182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 }
2184 return 0;
2185}
2186
Takashi Iwaicb53c622007-08-10 17:21:45 +02002187#ifdef CONFIG_SND_HDA_POWER_SAVE
2188static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2189 unsigned int power_state);
2190
2191static void hda_power_work(struct work_struct *work)
2192{
2193 struct hda_codec *codec =
2194 container_of(work, struct hda_codec, power_work.work);
2195
2196 if (!codec->power_on || codec->power_count)
2197 return;
2198
2199 hda_call_codec_suspend(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002200 if (codec->bus->ops.pm_notify)
2201 codec->bus->ops.pm_notify(codec);
2202}
2203
2204static void hda_keep_power_on(struct hda_codec *codec)
2205{
2206 codec->power_count++;
2207 codec->power_on = 1;
2208}
2209
2210void snd_hda_power_up(struct hda_codec *codec)
2211{
2212 codec->power_count++;
2213 if (codec->power_on)
2214 return;
2215
2216 codec->power_on = 1;
2217 if (codec->bus->ops.pm_notify)
2218 codec->bus->ops.pm_notify(codec);
2219 hda_call_codec_resume(codec);
2220 cancel_delayed_work(&codec->power_work);
2221}
2222
2223void snd_hda_power_down(struct hda_codec *codec)
2224{
2225 --codec->power_count;
2226 if (!codec->power_on)
2227 return;
2228 if (power_save)
2229 schedule_delayed_work(&codec->power_work,
2230 msecs_to_jiffies(power_save * 1000));
2231}
2232
2233int snd_hda_check_amp_list_power(struct hda_codec *codec,
2234 struct hda_loopback_check *check,
2235 hda_nid_t nid)
2236{
2237 struct hda_amp_list *p;
2238 int ch, v;
2239
2240 if (!check->amplist)
2241 return 0;
2242 for (p = check->amplist; p->nid; p++) {
2243 if (p->nid == nid)
2244 break;
2245 }
2246 if (!p->nid)
2247 return 0; /* nothing changed */
2248
2249 for (p = check->amplist; p->nid; p++) {
2250 for (ch = 0; ch < 2; ch++) {
2251 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
2252 p->idx);
2253 if (!(v & HDA_AMP_MUTE) && v > 0) {
2254 if (!check->power_on) {
2255 check->power_on = 1;
2256 snd_hda_power_up(codec);
2257 }
2258 return 1;
2259 }
2260 }
2261 }
2262 if (check->power_on) {
2263 check->power_on = 0;
2264 snd_hda_power_down(codec);
2265 }
2266 return 0;
2267}
2268#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002270/*
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002271 * Channel mode helper
2272 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002273int snd_hda_ch_mode_info(struct hda_codec *codec,
2274 struct snd_ctl_elem_info *uinfo,
2275 const struct hda_channel_mode *chmode,
2276 int num_chmodes)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002277{
2278 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2279 uinfo->count = 1;
2280 uinfo->value.enumerated.items = num_chmodes;
2281 if (uinfo->value.enumerated.item >= num_chmodes)
2282 uinfo->value.enumerated.item = num_chmodes - 1;
2283 sprintf(uinfo->value.enumerated.name, "%dch",
2284 chmode[uinfo->value.enumerated.item].channels);
2285 return 0;
2286}
2287
Takashi Iwai0ba21762007-04-16 11:29:14 +02002288int snd_hda_ch_mode_get(struct hda_codec *codec,
2289 struct snd_ctl_elem_value *ucontrol,
2290 const struct hda_channel_mode *chmode,
2291 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002292 int max_channels)
2293{
2294 int i;
2295
2296 for (i = 0; i < num_chmodes; i++) {
2297 if (max_channels == chmode[i].channels) {
2298 ucontrol->value.enumerated.item[0] = i;
2299 break;
2300 }
2301 }
2302 return 0;
2303}
2304
Takashi Iwai0ba21762007-04-16 11:29:14 +02002305int snd_hda_ch_mode_put(struct hda_codec *codec,
2306 struct snd_ctl_elem_value *ucontrol,
2307 const struct hda_channel_mode *chmode,
2308 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002309 int *max_channelsp)
2310{
2311 unsigned int mode;
2312
2313 mode = ucontrol->value.enumerated.item[0];
2314 snd_assert(mode < num_chmodes, return -EINVAL);
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002315 if (*max_channelsp == chmode[mode].channels)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002316 return 0;
2317 /* change the current channel setting */
2318 *max_channelsp = chmode[mode].channels;
2319 if (chmode[mode].sequence)
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002320 snd_hda_sequence_write_cache(codec, chmode[mode].sequence);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002321 return 1;
2322}
2323
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324/*
2325 * input MUX helper
2326 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002327int snd_hda_input_mux_info(const struct hda_input_mux *imux,
2328 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329{
2330 unsigned int index;
2331
2332 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2333 uinfo->count = 1;
2334 uinfo->value.enumerated.items = imux->num_items;
2335 index = uinfo->value.enumerated.item;
2336 if (index >= imux->num_items)
2337 index = imux->num_items - 1;
2338 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
2339 return 0;
2340}
2341
Takashi Iwai0ba21762007-04-16 11:29:14 +02002342int snd_hda_input_mux_put(struct hda_codec *codec,
2343 const struct hda_input_mux *imux,
2344 struct snd_ctl_elem_value *ucontrol,
2345 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 unsigned int *cur_val)
2347{
2348 unsigned int idx;
2349
2350 idx = ucontrol->value.enumerated.item[0];
2351 if (idx >= imux->num_items)
2352 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002353 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002355 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
2356 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 *cur_val = idx;
2358 return 1;
2359}
2360
2361
2362/*
2363 * Multi-channel / digital-out PCM helper functions
2364 */
2365
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002366/* setup SPDIF output stream */
2367static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
2368 unsigned int stream_tag, unsigned int format)
2369{
2370 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
2371 if (codec->spdif_ctls & AC_DIG1_ENABLE)
2372 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_DIGI_CONVERT_1,
2373 codec->spdif_ctls & ~AC_DIG1_ENABLE & 0xff);
2374 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
2375 /* turn on again (if needed) */
2376 if (codec->spdif_ctls & AC_DIG1_ENABLE)
2377 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_DIGI_CONVERT_1,
2378 codec->spdif_ctls & 0xff);
2379}
2380
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381/*
2382 * open the digital out in the exclusive mode
2383 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002384int snd_hda_multi_out_dig_open(struct hda_codec *codec,
2385 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386{
Ingo Molnar62932df2006-01-16 16:34:20 +01002387 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02002388 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
2389 /* already opened as analog dup; reset it once */
2390 snd_hda_codec_setup_stream(codec, mout->dig_out_nid, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01002392 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 return 0;
2394}
2395
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002396int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
2397 struct hda_multi_out *mout,
2398 unsigned int stream_tag,
2399 unsigned int format,
2400 struct snd_pcm_substream *substream)
2401{
2402 mutex_lock(&codec->spdif_mutex);
2403 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
2404 mutex_unlock(&codec->spdif_mutex);
2405 return 0;
2406}
2407
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408/*
2409 * release the digital out
2410 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002411int snd_hda_multi_out_dig_close(struct hda_codec *codec,
2412 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413{
Ingo Molnar62932df2006-01-16 16:34:20 +01002414 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01002416 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 return 0;
2418}
2419
2420/*
2421 * set up more restrictions for analog out
2422 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002423int snd_hda_multi_out_analog_open(struct hda_codec *codec,
2424 struct hda_multi_out *mout,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002425 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426{
2427 substream->runtime->hw.channels_max = mout->max_channels;
2428 return snd_pcm_hw_constraint_step(substream->runtime, 0,
2429 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
2430}
2431
2432/*
2433 * set up the i/o for analog out
2434 * when the digital out is available, copy the front out to digital out, too.
2435 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002436int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
2437 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 unsigned int stream_tag,
2439 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002440 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441{
2442 hda_nid_t *nids = mout->dac_nids;
2443 int chs = substream->runtime->channels;
2444 int i;
2445
Ingo Molnar62932df2006-01-16 16:34:20 +01002446 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 if (mout->dig_out_nid && mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
2448 if (chs == 2 &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02002449 snd_hda_is_supported_format(codec, mout->dig_out_nid,
2450 format) &&
2451 !(codec->spdif_status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002453 setup_dig_out_stream(codec, mout->dig_out_nid,
2454 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 } else {
2456 mout->dig_out_used = 0;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002457 snd_hda_codec_setup_stream(codec, mout->dig_out_nid,
2458 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 }
2460 }
Ingo Molnar62932df2006-01-16 16:34:20 +01002461 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462
2463 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002464 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
2465 0, format);
Takashi Iwai35aec4e2006-07-28 14:44:31 +02002466 if (mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002468 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
2469 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01002470 /* extra outputs copied from front */
2471 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
2472 if (mout->extra_out_nid[i])
2473 snd_hda_codec_setup_stream(codec,
2474 mout->extra_out_nid[i],
2475 stream_tag, 0, format);
2476
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 /* surrounds */
2478 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02002479 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002480 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
2481 i * 2, format);
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02002482 else /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002483 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
2484 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 }
2486 return 0;
2487}
2488
2489/*
2490 * clean up the setting for analog out
2491 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002492int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
2493 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494{
2495 hda_nid_t *nids = mout->dac_nids;
2496 int i;
2497
2498 for (i = 0; i < mout->num_dacs; i++)
2499 snd_hda_codec_setup_stream(codec, nids[i], 0, 0, 0);
2500 if (mout->hp_nid)
2501 snd_hda_codec_setup_stream(codec, mout->hp_nid, 0, 0, 0);
Takashi Iwai82bc9552006-03-21 11:24:42 +01002502 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
2503 if (mout->extra_out_nid[i])
2504 snd_hda_codec_setup_stream(codec,
2505 mout->extra_out_nid[i],
2506 0, 0, 0);
Ingo Molnar62932df2006-01-16 16:34:20 +01002507 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
2509 snd_hda_codec_setup_stream(codec, mout->dig_out_nid, 0, 0, 0);
2510 mout->dig_out_used = 0;
2511 }
Ingo Molnar62932df2006-01-16 16:34:20 +01002512 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 return 0;
2514}
2515
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002516/*
2517 * Helper for automatic ping configuration
2518 */
Kailang Yangdf694da2005-12-05 19:42:22 +01002519
Takashi Iwai12f288b2007-08-02 15:51:59 +02002520static int is_in_nid_list(hda_nid_t nid, hda_nid_t *list)
Kailang Yangdf694da2005-12-05 19:42:22 +01002521{
2522 for (; *list; list++)
2523 if (*list == nid)
2524 return 1;
2525 return 0;
2526}
2527
Steve Longerbeam81937d32007-05-08 15:33:03 +02002528
2529/*
2530 * Sort an associated group of pins according to their sequence numbers.
2531 */
2532static void sort_pins_by_sequence(hda_nid_t * pins, short * sequences,
2533 int num_pins)
2534{
2535 int i, j;
2536 short seq;
2537 hda_nid_t nid;
2538
2539 for (i = 0; i < num_pins; i++) {
2540 for (j = i + 1; j < num_pins; j++) {
2541 if (sequences[i] > sequences[j]) {
2542 seq = sequences[i];
2543 sequences[i] = sequences[j];
2544 sequences[j] = seq;
2545 nid = pins[i];
2546 pins[i] = pins[j];
2547 pins[j] = nid;
2548 }
2549 }
2550 }
2551}
2552
2553
Takashi Iwai82bc9552006-03-21 11:24:42 +01002554/*
2555 * Parse all pin widgets and store the useful pin nids to cfg
2556 *
2557 * The number of line-outs or any primary output is stored in line_outs,
2558 * and the corresponding output pins are assigned to line_out_pins[],
2559 * in the order of front, rear, CLFE, side, ...
2560 *
2561 * If more extra outputs (speaker and headphone) are found, the pins are
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002562 * assisnged to hp_pins[] and speaker_pins[], respectively. If no line-out jack
Takashi Iwai82bc9552006-03-21 11:24:42 +01002563 * is detected, one of speaker of HP pins is assigned as the primary
2564 * output, i.e. to line_out_pins[0]. So, line_outs is always positive
2565 * if any analog output exists.
2566 *
2567 * The analog input pins are assigned to input_pins array.
2568 * The digital input/output pins are assigned to dig_in_pin and dig_out_pin,
2569 * respectively.
2570 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002571int snd_hda_parse_pin_def_config(struct hda_codec *codec,
2572 struct auto_pin_cfg *cfg,
2573 hda_nid_t *ignore_nids)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002574{
2575 hda_nid_t nid, nid_start;
Steve Longerbeam81937d32007-05-08 15:33:03 +02002576 int nodes;
2577 short seq, assoc_line_out, assoc_speaker;
2578 short sequences_line_out[ARRAY_SIZE(cfg->line_out_pins)];
2579 short sequences_speaker[ARRAY_SIZE(cfg->speaker_pins)];
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002580
2581 memset(cfg, 0, sizeof(*cfg));
2582
Steve Longerbeam81937d32007-05-08 15:33:03 +02002583 memset(sequences_line_out, 0, sizeof(sequences_line_out));
2584 memset(sequences_speaker, 0, sizeof(sequences_speaker));
2585 assoc_line_out = assoc_speaker = 0;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002586
2587 nodes = snd_hda_get_sub_nodes(codec, codec->afg, &nid_start);
2588 for (nid = nid_start; nid < nodes + nid_start; nid++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01002589 unsigned int wid_caps = get_wcaps(codec, nid);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002590 unsigned int wid_type =
2591 (wid_caps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002592 unsigned int def_conf;
2593 short assoc, loc;
2594
2595 /* read all default configuration for pin complex */
2596 if (wid_type != AC_WID_PIN)
2597 continue;
Kailang Yangdf694da2005-12-05 19:42:22 +01002598 /* ignore the given nids (e.g. pc-beep returns error) */
2599 if (ignore_nids && is_in_nid_list(nid, ignore_nids))
2600 continue;
2601
Takashi Iwai0ba21762007-04-16 11:29:14 +02002602 def_conf = snd_hda_codec_read(codec, nid, 0,
2603 AC_VERB_GET_CONFIG_DEFAULT, 0);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002604 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
2605 continue;
2606 loc = get_defcfg_location(def_conf);
2607 switch (get_defcfg_device(def_conf)) {
2608 case AC_JACK_LINE_OUT:
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002609 seq = get_defcfg_sequence(def_conf);
2610 assoc = get_defcfg_association(def_conf);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002611 if (!assoc)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002612 continue;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002613 if (!assoc_line_out)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002614 assoc_line_out = assoc;
2615 else if (assoc_line_out != assoc)
2616 continue;
2617 if (cfg->line_outs >= ARRAY_SIZE(cfg->line_out_pins))
2618 continue;
2619 cfg->line_out_pins[cfg->line_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02002620 sequences_line_out[cfg->line_outs] = seq;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002621 cfg->line_outs++;
2622 break;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01002623 case AC_JACK_SPEAKER:
Steve Longerbeam81937d32007-05-08 15:33:03 +02002624 seq = get_defcfg_sequence(def_conf);
2625 assoc = get_defcfg_association(def_conf);
2626 if (! assoc)
2627 continue;
2628 if (! assoc_speaker)
2629 assoc_speaker = assoc;
2630 else if (assoc_speaker != assoc)
2631 continue;
Takashi Iwai82bc9552006-03-21 11:24:42 +01002632 if (cfg->speaker_outs >= ARRAY_SIZE(cfg->speaker_pins))
2633 continue;
2634 cfg->speaker_pins[cfg->speaker_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02002635 sequences_speaker[cfg->speaker_outs] = seq;
Takashi Iwai82bc9552006-03-21 11:24:42 +01002636 cfg->speaker_outs++;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01002637 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002638 case AC_JACK_HP_OUT:
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002639 if (cfg->hp_outs >= ARRAY_SIZE(cfg->hp_pins))
2640 continue;
2641 cfg->hp_pins[cfg->hp_outs] = nid;
2642 cfg->hp_outs++;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002643 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02002644 case AC_JACK_MIC_IN: {
2645 int preferred, alt;
2646 if (loc == AC_JACK_LOC_FRONT) {
2647 preferred = AUTO_PIN_FRONT_MIC;
2648 alt = AUTO_PIN_MIC;
2649 } else {
2650 preferred = AUTO_PIN_MIC;
2651 alt = AUTO_PIN_FRONT_MIC;
2652 }
2653 if (!cfg->input_pins[preferred])
2654 cfg->input_pins[preferred] = nid;
2655 else if (!cfg->input_pins[alt])
2656 cfg->input_pins[alt] = nid;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002657 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02002658 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002659 case AC_JACK_LINE_IN:
2660 if (loc == AC_JACK_LOC_FRONT)
2661 cfg->input_pins[AUTO_PIN_FRONT_LINE] = nid;
2662 else
2663 cfg->input_pins[AUTO_PIN_LINE] = nid;
2664 break;
2665 case AC_JACK_CD:
2666 cfg->input_pins[AUTO_PIN_CD] = nid;
2667 break;
2668 case AC_JACK_AUX:
2669 cfg->input_pins[AUTO_PIN_AUX] = nid;
2670 break;
2671 case AC_JACK_SPDIF_OUT:
2672 cfg->dig_out_pin = nid;
2673 break;
2674 case AC_JACK_SPDIF_IN:
2675 cfg->dig_in_pin = nid;
2676 break;
2677 }
2678 }
2679
2680 /* sort by sequence */
Steve Longerbeam81937d32007-05-08 15:33:03 +02002681 sort_pins_by_sequence(cfg->line_out_pins, sequences_line_out,
2682 cfg->line_outs);
2683 sort_pins_by_sequence(cfg->speaker_pins, sequences_speaker,
2684 cfg->speaker_outs);
2685
2686 /*
2687 * FIX-UP: if no line-outs are detected, try to use speaker or HP pin
2688 * as a primary output
2689 */
2690 if (!cfg->line_outs) {
2691 if (cfg->speaker_outs) {
2692 cfg->line_outs = cfg->speaker_outs;
2693 memcpy(cfg->line_out_pins, cfg->speaker_pins,
2694 sizeof(cfg->speaker_pins));
2695 cfg->speaker_outs = 0;
2696 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
2697 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
2698 } else if (cfg->hp_outs) {
2699 cfg->line_outs = cfg->hp_outs;
2700 memcpy(cfg->line_out_pins, cfg->hp_pins,
2701 sizeof(cfg->hp_pins));
2702 cfg->hp_outs = 0;
2703 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
2704 cfg->line_out_type = AUTO_PIN_HP_OUT;
2705 }
2706 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002707
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02002708 /* Reorder the surround channels
2709 * ALSA sequence is front/surr/clfe/side
2710 * HDA sequence is:
2711 * 4-ch: front/surr => OK as it is
2712 * 6-ch: front/clfe/surr
Takashi Iwai9422db42007-04-20 16:11:43 +02002713 * 8-ch: front/clfe/rear/side|fc
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02002714 */
2715 switch (cfg->line_outs) {
2716 case 3:
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02002717 case 4:
2718 nid = cfg->line_out_pins[1];
Takashi Iwai9422db42007-04-20 16:11:43 +02002719 cfg->line_out_pins[1] = cfg->line_out_pins[2];
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02002720 cfg->line_out_pins[2] = nid;
2721 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002722 }
2723
Takashi Iwai82bc9552006-03-21 11:24:42 +01002724 /*
2725 * debug prints of the parsed results
2726 */
2727 snd_printd("autoconfig: line_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
2728 cfg->line_outs, cfg->line_out_pins[0], cfg->line_out_pins[1],
2729 cfg->line_out_pins[2], cfg->line_out_pins[3],
2730 cfg->line_out_pins[4]);
2731 snd_printd(" speaker_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
2732 cfg->speaker_outs, cfg->speaker_pins[0],
2733 cfg->speaker_pins[1], cfg->speaker_pins[2],
2734 cfg->speaker_pins[3], cfg->speaker_pins[4]);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002735 snd_printd(" hp_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
2736 cfg->hp_outs, cfg->hp_pins[0],
2737 cfg->hp_pins[1], cfg->hp_pins[2],
2738 cfg->hp_pins[3], cfg->hp_pins[4]);
Takashi Iwai82bc9552006-03-21 11:24:42 +01002739 snd_printd(" inputs: mic=0x%x, fmic=0x%x, line=0x%x, fline=0x%x,"
2740 " cd=0x%x, aux=0x%x\n",
2741 cfg->input_pins[AUTO_PIN_MIC],
2742 cfg->input_pins[AUTO_PIN_FRONT_MIC],
2743 cfg->input_pins[AUTO_PIN_LINE],
2744 cfg->input_pins[AUTO_PIN_FRONT_LINE],
2745 cfg->input_pins[AUTO_PIN_CD],
2746 cfg->input_pins[AUTO_PIN_AUX]);
2747
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002748 return 0;
2749}
2750
Takashi Iwai4a471b72005-12-07 13:56:29 +01002751/* labels for input pins */
2752const char *auto_pin_cfg_labels[AUTO_PIN_LAST] = {
2753 "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux"
2754};
2755
2756
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757#ifdef CONFIG_PM
2758/*
2759 * power management
2760 */
2761
2762/**
2763 * snd_hda_suspend - suspend the codecs
2764 * @bus: the HDA bus
2765 * @state: suspsend state
2766 *
2767 * Returns 0 if successful.
2768 */
2769int snd_hda_suspend(struct hda_bus *bus, pm_message_t state)
2770{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002771 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772
Takashi Iwai0ba21762007-04-16 11:29:14 +02002773 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwaicb53c622007-08-10 17:21:45 +02002774 hda_call_codec_suspend(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 }
2776 return 0;
2777}
2778
Takashi Iwaicb53c622007-08-10 17:21:45 +02002779#ifndef CONFIG_SND_HDA_POWER_SAVE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780/**
2781 * snd_hda_resume - resume the codecs
2782 * @bus: the HDA bus
2783 * @state: resume state
2784 *
2785 * Returns 0 if successful.
Takashi Iwaicb53c622007-08-10 17:21:45 +02002786 *
2787 * This fucntion is defined only when POWER_SAVE isn't set.
2788 * In the power-save mode, the codec is resumed dynamically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 */
2790int snd_hda_resume(struct hda_bus *bus)
2791{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002792 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
Takashi Iwai0ba21762007-04-16 11:29:14 +02002794 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwaicb53c622007-08-10 17:21:45 +02002795 hda_call_codec_resume(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 return 0;
2798}
Takashi Iwaicb53c622007-08-10 17:21:45 +02002799#endif /* !CONFIG_SND_HDA_POWER_SAVE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801#endif