blob: 46d4253642d7f765510fc603269ac28fcae402eb [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);
Takashi Iwai1fcaee62007-08-23 00:01:09 +0200517static void free_hda_cache(struct hda_cache_rec *cache);
Takashi Iwai01751f52007-08-10 16:59:39 +0200518
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);
Takashi Iwai2525fdc2007-08-15 22:18:22 +0200528 flush_scheduled_work();
Takashi Iwaicb53c622007-08-10 17:21:45 +0200529#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 list_del(&codec->list);
531 codec->bus->caddr_tbl[codec->addr] = NULL;
532 if (codec->patch_ops.free)
533 codec->patch_ops.free(codec);
Takashi Iwai01751f52007-08-10 16:59:39 +0200534 free_hda_cache(&codec->amp_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200535 free_hda_cache(&codec->cmd_cache);
Takashi Iwai54d17402005-11-21 16:33:22 +0100536 kfree(codec->wcaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 kfree(codec);
538}
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540/**
541 * snd_hda_codec_new - create a HDA codec
542 * @bus: the bus to assign
543 * @codec_addr: the codec address
544 * @codecp: the pointer to store the generated codec
545 *
546 * Returns 0 if successful, or a negative error code.
547 */
Takashi Iwai756e2b02007-04-16 11:27:07 +0200548int __devinit snd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr,
549 struct hda_codec **codecp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
551 struct hda_codec *codec;
552 char component[13];
553 int err;
554
555 snd_assert(bus, return -EINVAL);
556 snd_assert(codec_addr <= HDA_MAX_CODEC_ADDRESS, return -EINVAL);
557
558 if (bus->caddr_tbl[codec_addr]) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200559 snd_printk(KERN_ERR "hda_codec: "
560 "address 0x%x is already occupied\n", codec_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 return -EBUSY;
562 }
563
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200564 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (codec == NULL) {
566 snd_printk(KERN_ERR "can't allocate struct hda_codec\n");
567 return -ENOMEM;
568 }
569
570 codec->bus = bus;
571 codec->addr = codec_addr;
Ingo Molnar62932df2006-01-16 16:34:20 +0100572 mutex_init(&codec->spdif_mutex);
Takashi Iwai01751f52007-08-10 16:59:39 +0200573 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200574 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Takashi Iwaicb53c622007-08-10 17:21:45 +0200576#ifdef CONFIG_SND_HDA_POWER_SAVE
577 INIT_DELAYED_WORK(&codec->power_work, hda_power_work);
578 /* snd_hda_codec_new() marks the codec as power-up, and leave it as is.
579 * the caller has to power down appropriatley after initialization
580 * phase.
581 */
582 hda_keep_power_on(codec);
583#endif
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 list_add_tail(&codec->list, &bus->codec_list);
586 bus->caddr_tbl[codec_addr] = codec;
587
Takashi Iwai0ba21762007-04-16 11:29:14 +0200588 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
589 AC_PAR_VENDOR_ID);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100590 if (codec->vendor_id == -1)
591 /* read again, hopefully the access method was corrected
592 * in the last read...
593 */
594 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
595 AC_PAR_VENDOR_ID);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200596 codec->subsystem_id = snd_hda_param_read(codec, AC_NODE_ROOT,
597 AC_PAR_SUBSYSTEM_ID);
598 codec->revision_id = snd_hda_param_read(codec, AC_NODE_ROOT,
599 AC_PAR_REV_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200601 setup_fg_nodes(codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200602 if (!codec->afg && !codec->mfg) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200603 snd_printdd("hda_codec: no AFG or MFG node found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 snd_hda_codec_free(codec);
605 return -ENODEV;
606 }
607
Takashi Iwai54d17402005-11-21 16:33:22 +0100608 if (read_widget_caps(codec, codec->afg ? codec->afg : codec->mfg) < 0) {
609 snd_printk(KERN_ERR "hda_codec: cannot malloc\n");
610 snd_hda_codec_free(codec);
611 return -ENOMEM;
612 }
613
Takashi Iwai0ba21762007-04-16 11:29:14 +0200614 if (!codec->subsystem_id) {
Takashi Iwai86284e42005-10-11 15:05:54 +0200615 hda_nid_t nid = codec->afg ? codec->afg : codec->mfg;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200616 codec->subsystem_id =
617 snd_hda_codec_read(codec, nid, 0,
618 AC_VERB_GET_SUBSYSTEM_ID, 0);
Takashi Iwai86284e42005-10-11 15:05:54 +0200619 }
620
Takashi Iwaid5ad6302007-03-07 15:55:59 +0100621 codec->preset = find_codec_preset(codec);
Takashi Iwai43ea1d42007-04-26 19:12:08 +0200622 /* audio codec should override the mixer name */
623 if (codec->afg || !*bus->card->mixername)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 snd_hda_get_codec_name(codec, bus->card->mixername,
625 sizeof(bus->card->mixername));
626
Takashi Iwai82467612007-07-27 19:15:54 +0200627#ifdef CONFIG_SND_HDA_GENERIC
628 if (is_generic_config(codec)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 err = snd_hda_parse_generic_codec(codec);
Takashi Iwai82467612007-07-27 19:15:54 +0200630 goto patched;
631 }
632#endif
633 if (codec->preset && codec->preset->patch) {
634 err = codec->preset->patch(codec);
635 goto patched;
636 }
637
638 /* call the default parser */
639#ifdef CONFIG_SND_HDA_GENERIC
640 err = snd_hda_parse_generic_codec(codec);
641#else
642 printk(KERN_ERR "hda-codec: No codec parser is available\n");
643 err = -ENODEV;
644#endif
645
646 patched:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (err < 0) {
648 snd_hda_codec_free(codec);
649 return err;
650 }
651
Takashi Iwai9f146bb2005-11-17 11:07:49 +0100652 if (codec->patch_ops.unsol_event)
653 init_unsol_queue(bus);
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 snd_hda_codec_proc_new(codec);
Takashi Iwai28073142007-07-27 18:58:06 +0200656#ifdef CONFIG_SND_HDA_HWDEP
657 snd_hda_create_hwdep(codec);
658#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 sprintf(component, "HDA:%08x", codec->vendor_id);
661 snd_component_add(codec->bus->card, component);
662
663 if (codecp)
664 *codecp = codec;
665 return 0;
666}
667
668/**
669 * snd_hda_codec_setup_stream - set up the codec for streaming
670 * @codec: the CODEC to set up
671 * @nid: the NID to set up
672 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
673 * @channel_id: channel id to pass, zero based.
674 * @format: stream format.
675 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200676void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
677 u32 stream_tag,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 int channel_id, int format)
679{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200680 if (!nid)
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200681 return;
682
Takashi Iwai0ba21762007-04-16 11:29:14 +0200683 snd_printdd("hda_codec_setup_stream: "
684 "NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 nid, stream_tag, channel_id, format);
686 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID,
687 (stream_tag << 4) | channel_id);
688 msleep(1);
689 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, format);
690}
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692/*
693 * amp access functions
694 */
695
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200696/* FIXME: more better hash key? */
697#define HDA_HASH_KEY(nid,dir,idx) (u32)((nid) + ((idx) << 16) + ((dir) << 24))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698#define INFO_AMP_CAPS (1<<0)
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200699#define INFO_AMP_VOL(ch) (1 << (1 + (ch)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701/* initialize the hash table */
Takashi Iwai01751f52007-08-10 16:59:39 +0200702static void __devinit init_hda_cache(struct hda_cache_rec *cache,
703 unsigned int record_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Takashi Iwai01751f52007-08-10 16:59:39 +0200705 memset(cache, 0, sizeof(*cache));
706 memset(cache->hash, 0xff, sizeof(cache->hash));
707 cache->record_size = record_size;
708}
709
Takashi Iwai1fcaee62007-08-23 00:01:09 +0200710static void free_hda_cache(struct hda_cache_rec *cache)
Takashi Iwai01751f52007-08-10 16:59:39 +0200711{
712 kfree(cache->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}
714
715/* query the hash. allocate an entry if not found. */
Takashi Iwai01751f52007-08-10 16:59:39 +0200716static struct hda_cache_head *get_alloc_hash(struct hda_cache_rec *cache,
717 u32 key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
Takashi Iwai01751f52007-08-10 16:59:39 +0200719 u16 idx = key % (u16)ARRAY_SIZE(cache->hash);
720 u16 cur = cache->hash[idx];
721 struct hda_cache_head *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 while (cur != 0xffff) {
Takashi Iwai01751f52007-08-10 16:59:39 +0200724 info = (struct hda_cache_head *)(cache->buffer +
725 cur * cache->record_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (info->key == key)
727 return info;
728 cur = info->next;
729 }
730
731 /* add a new hash entry */
Takashi Iwai01751f52007-08-10 16:59:39 +0200732 if (cache->num_entries >= cache->size) {
Takashi Iwaid0311662005-11-07 14:38:44 +0100733 /* reallocate the array */
Takashi Iwai01751f52007-08-10 16:59:39 +0200734 unsigned int new_size = cache->size + 64;
735 void *new_buffer;
736 new_buffer = kcalloc(new_size, cache->record_size, GFP_KERNEL);
737 if (!new_buffer) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200738 snd_printk(KERN_ERR "hda_codec: "
739 "can't malloc amp_info\n");
Takashi Iwaid0311662005-11-07 14:38:44 +0100740 return NULL;
741 }
Takashi Iwai01751f52007-08-10 16:59:39 +0200742 if (cache->buffer) {
743 memcpy(new_buffer, cache->buffer,
744 cache->size * cache->record_size);
745 kfree(cache->buffer);
Takashi Iwaid0311662005-11-07 14:38:44 +0100746 }
Takashi Iwai01751f52007-08-10 16:59:39 +0200747 cache->size = new_size;
748 cache->buffer = new_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
Takashi Iwai01751f52007-08-10 16:59:39 +0200750 cur = cache->num_entries++;
751 info = (struct hda_cache_head *)(cache->buffer +
752 cur * cache->record_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 info->key = key;
Takashi Iwai01751f52007-08-10 16:59:39 +0200754 info->val = 0;
755 info->next = cache->hash[idx];
756 cache->hash[idx] = cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
758 return info;
759}
760
Takashi Iwai01751f52007-08-10 16:59:39 +0200761/* query and allocate an amp hash entry */
762static inline struct hda_amp_info *
763get_alloc_amp_hash(struct hda_codec *codec, u32 key)
764{
765 return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key);
766}
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768/*
769 * query AMP capabilities for the given widget and direction
770 */
771static u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
772{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200773 struct hda_amp_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Takashi Iwai0ba21762007-04-16 11:29:14 +0200775 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, 0));
776 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 return 0;
Takashi Iwai01751f52007-08-10 16:59:39 +0200778 if (!(info->head.val & INFO_AMP_CAPS)) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200779 if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 nid = codec->afg;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200781 info->amp_caps = snd_hda_param_read(codec, nid,
782 direction == HDA_OUTPUT ?
783 AC_PAR_AMP_OUT_CAP :
784 AC_PAR_AMP_IN_CAP);
Takashi Iwaib75e53f2007-05-10 16:56:09 +0200785 if (info->amp_caps)
Takashi Iwai01751f52007-08-10 16:59:39 +0200786 info->head.val |= INFO_AMP_CAPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
788 return info->amp_caps;
789}
790
Takashi Iwai897cc182007-05-29 19:01:37 +0200791int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
792 unsigned int caps)
793{
794 struct hda_amp_info *info;
795
796 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, dir, 0));
797 if (!info)
798 return -EINVAL;
799 info->amp_caps = caps;
Takashi Iwai01751f52007-08-10 16:59:39 +0200800 info->head.val |= INFO_AMP_CAPS;
Takashi Iwai897cc182007-05-29 19:01:37 +0200801 return 0;
802}
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804/*
805 * read the current volume to info
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200806 * if the cache exists, read the cache value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200808static unsigned int get_vol_mute(struct hda_codec *codec,
809 struct hda_amp_info *info, hda_nid_t nid,
810 int ch, int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
812 u32 val, parm;
813
Takashi Iwai01751f52007-08-10 16:59:39 +0200814 if (info->head.val & INFO_AMP_VOL(ch))
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200815 return info->vol[ch];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 parm = ch ? AC_AMP_GET_RIGHT : AC_AMP_GET_LEFT;
818 parm |= direction == HDA_OUTPUT ? AC_AMP_GET_OUTPUT : AC_AMP_GET_INPUT;
819 parm |= index;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200820 val = snd_hda_codec_read(codec, nid, 0,
821 AC_VERB_GET_AMP_GAIN_MUTE, parm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 info->vol[ch] = val & 0xff;
Takashi Iwai01751f52007-08-10 16:59:39 +0200823 info->head.val |= INFO_AMP_VOL(ch);
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200824 return info->vol[ch];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
827/*
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200828 * write the current volume in info to the h/w and update the cache
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 */
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200830static void put_vol_mute(struct hda_codec *codec, struct hda_amp_info *info,
Takashi Iwai0ba21762007-04-16 11:29:14 +0200831 hda_nid_t nid, int ch, int direction, int index,
832 int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
834 u32 parm;
835
836 parm = ch ? AC_AMP_SET_RIGHT : AC_AMP_SET_LEFT;
837 parm |= direction == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT;
838 parm |= index << AC_AMP_SET_INDEX_SHIFT;
839 parm |= val;
840 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, parm);
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200841 info->vol[ch] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842}
843
844/*
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200845 * read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 */
Takashi Iwai834be882006-03-01 14:16:17 +0100847int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch,
848 int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200850 struct hda_amp_info *info;
851 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, index));
852 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200854 return get_vol_mute(codec, info, nid, ch, direction, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855}
856
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200857/*
858 * update the AMP value, mask = bit mask to set, val = the value
859 */
Takashi Iwai834be882006-03-01 14:16:17 +0100860int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch,
861 int direction, int idx, int mask, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200863 struct hda_amp_info *info;
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200864
Takashi Iwai0ba21762007-04-16 11:29:14 +0200865 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, idx));
866 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200868 val &= mask;
869 val |= get_vol_mute(codec, info, nid, ch, direction, idx) & ~mask;
Takashi Iwai82beb8f2007-08-10 17:09:26 +0200870 if (info->vol[ch] == val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200872 put_vol_mute(codec, info, nid, ch, direction, idx, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 return 1;
874}
875
Takashi Iwai47fd8302007-08-10 17:11:07 +0200876/*
877 * update the AMP stereo with the same mask and value
878 */
879int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
880 int direction, int idx, int mask, int val)
881{
882 int ch, ret = 0;
883 for (ch = 0; ch < 2; ch++)
884 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
885 idx, mask, val);
886 return ret;
887}
888
Takashi Iwaicb53c622007-08-10 17:21:45 +0200889#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200890/* resume the all amp commands from the cache */
891void snd_hda_codec_resume_amp(struct hda_codec *codec)
892{
893 struct hda_amp_info *buffer = codec->amp_cache.buffer;
894 int i;
895
896 for (i = 0; i < codec->amp_cache.size; i++, buffer++) {
897 u32 key = buffer->head.key;
898 hda_nid_t nid;
899 unsigned int idx, dir, ch;
900 if (!key)
901 continue;
902 nid = key & 0xff;
903 idx = (key >> 16) & 0xff;
904 dir = (key >> 24) & 0xff;
905 for (ch = 0; ch < 2; ch++) {
906 if (!(buffer->head.val & INFO_AMP_VOL(ch)))
907 continue;
908 put_vol_mute(codec, buffer, nid, ch, dir, idx,
909 buffer->vol[ch]);
910 }
911 }
912}
Takashi Iwaicb53c622007-08-10 17:21:45 +0200913#endif /* SND_HDA_NEEDS_RESUME */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915/*
916 * AMP control callbacks
917 */
918/* retrieve parameters from private_value */
919#define get_amp_nid(kc) ((kc)->private_value & 0xffff)
920#define get_amp_channels(kc) (((kc)->private_value >> 16) & 0x3)
921#define get_amp_direction(kc) (((kc)->private_value >> 18) & 0x1)
922#define get_amp_index(kc) (((kc)->private_value >> 19) & 0xf)
923
924/* volume */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200925int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
926 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
928 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
929 u16 nid = get_amp_nid(kcontrol);
930 u8 chs = get_amp_channels(kcontrol);
931 int dir = get_amp_direction(kcontrol);
932 u32 caps;
933
934 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200935 /* num steps */
936 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
937 if (!caps) {
938 printk(KERN_WARNING "hda_codec: "
939 "num_steps = 0 for NID=0x%x\n", nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 return -EINVAL;
941 }
942 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
943 uinfo->count = chs == 3 ? 2 : 1;
944 uinfo->value.integer.min = 0;
945 uinfo->value.integer.max = caps;
946 return 0;
947}
948
Takashi Iwai0ba21762007-04-16 11:29:14 +0200949int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
950 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
952 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
953 hda_nid_t nid = get_amp_nid(kcontrol);
954 int chs = get_amp_channels(kcontrol);
955 int dir = get_amp_direction(kcontrol);
956 int idx = get_amp_index(kcontrol);
957 long *valp = ucontrol->value.integer.value;
958
959 if (chs & 1)
Takashi Iwai47fd8302007-08-10 17:11:07 +0200960 *valp++ = snd_hda_codec_amp_read(codec, nid, 0, dir, idx)
961 & HDA_AMP_VOLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (chs & 2)
Takashi Iwai47fd8302007-08-10 17:11:07 +0200963 *valp = snd_hda_codec_amp_read(codec, nid, 1, dir, idx)
964 & HDA_AMP_VOLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 return 0;
966}
967
Takashi Iwai0ba21762007-04-16 11:29:14 +0200968int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
969 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
971 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
972 hda_nid_t nid = get_amp_nid(kcontrol);
973 int chs = get_amp_channels(kcontrol);
974 int dir = get_amp_direction(kcontrol);
975 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 long *valp = ucontrol->value.integer.value;
977 int change = 0;
978
Takashi Iwaicb53c622007-08-10 17:21:45 +0200979 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +0200980 if (chs & 1) {
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200981 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
982 0x7f, *valp);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +0200983 valp++;
984 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200985 if (chs & 2)
986 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
Nicolas Grazianob9f5a892005-07-29 12:17:20 +0200987 0x7f, *valp);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200988 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 return change;
990}
991
Jaroslav Kysela302e9c52006-07-05 17:39:49 +0200992int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
993 unsigned int size, unsigned int __user *_tlv)
994{
995 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
996 hda_nid_t nid = get_amp_nid(kcontrol);
997 int dir = get_amp_direction(kcontrol);
998 u32 caps, val1, val2;
999
1000 if (size < 4 * sizeof(unsigned int))
1001 return -ENOMEM;
1002 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001003 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1004 val2 = (val2 + 1) * 25;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001005 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
1006 val1 = ((int)val1) * ((int)val2);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001007 if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv))
1008 return -EFAULT;
1009 if (put_user(2 * sizeof(unsigned int), _tlv + 1))
1010 return -EFAULT;
1011 if (put_user(val1, _tlv + 2))
1012 return -EFAULT;
1013 if (put_user(val2, _tlv + 3))
1014 return -EFAULT;
1015 return 0;
1016}
1017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018/* switch */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001019int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
1020 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
1022 int chs = get_amp_channels(kcontrol);
1023
1024 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1025 uinfo->count = chs == 3 ? 2 : 1;
1026 uinfo->value.integer.min = 0;
1027 uinfo->value.integer.max = 1;
1028 return 0;
1029}
1030
Takashi Iwai0ba21762007-04-16 11:29:14 +02001031int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
1032 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
1034 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1035 hda_nid_t nid = get_amp_nid(kcontrol);
1036 int chs = get_amp_channels(kcontrol);
1037 int dir = get_amp_direction(kcontrol);
1038 int idx = get_amp_index(kcontrol);
1039 long *valp = ucontrol->value.integer.value;
1040
1041 if (chs & 1)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001042 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02001043 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if (chs & 2)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001045 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02001046 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 return 0;
1048}
1049
Takashi Iwai0ba21762007-04-16 11:29:14 +02001050int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
1051 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
1053 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1054 hda_nid_t nid = get_amp_nid(kcontrol);
1055 int chs = get_amp_channels(kcontrol);
1056 int dir = get_amp_direction(kcontrol);
1057 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 long *valp = ucontrol->value.integer.value;
1059 int change = 0;
1060
Takashi Iwaicb53c622007-08-10 17:21:45 +02001061 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001062 if (chs & 1) {
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001063 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001064 HDA_AMP_MUTE,
1065 *valp ? 0 : HDA_AMP_MUTE);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001066 valp++;
1067 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001068 if (chs & 2)
1069 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001070 HDA_AMP_MUTE,
1071 *valp ? 0 : HDA_AMP_MUTE);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001072#ifdef CONFIG_SND_HDA_POWER_SAVE
1073 if (codec->patch_ops.check_power_status)
1074 codec->patch_ops.check_power_status(codec, nid);
1075#endif
1076 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 return change;
1078}
1079
1080/*
Takashi Iwai985be542005-11-02 18:26:49 +01001081 * bound volume controls
1082 *
1083 * bind multiple volumes (# indices, from 0)
1084 */
1085
1086#define AMP_VAL_IDX_SHIFT 19
1087#define AMP_VAL_IDX_MASK (0x0f<<19)
1088
Takashi Iwai0ba21762007-04-16 11:29:14 +02001089int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol,
1090 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01001091{
1092 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1093 unsigned long pval;
1094 int err;
1095
Ingo Molnar62932df2006-01-16 16:34:20 +01001096 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
Takashi Iwai985be542005-11-02 18:26:49 +01001097 pval = kcontrol->private_value;
1098 kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */
1099 err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
1100 kcontrol->private_value = pval;
Ingo Molnar62932df2006-01-16 16:34:20 +01001101 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001102 return err;
1103}
1104
Takashi Iwai0ba21762007-04-16 11:29:14 +02001105int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol,
1106 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01001107{
1108 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1109 unsigned long pval;
1110 int i, indices, err = 0, change = 0;
1111
Ingo Molnar62932df2006-01-16 16:34:20 +01001112 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
Takashi Iwai985be542005-11-02 18:26:49 +01001113 pval = kcontrol->private_value;
1114 indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT;
1115 for (i = 0; i < indices; i++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001116 kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) |
1117 (i << AMP_VAL_IDX_SHIFT);
Takashi Iwai985be542005-11-02 18:26:49 +01001118 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
1119 if (err < 0)
1120 break;
1121 change |= err;
1122 }
1123 kcontrol->private_value = pval;
Ingo Molnar62932df2006-01-16 16:34:20 +01001124 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001125 return err < 0 ? err : change;
1126}
1127
1128/*
Takashi Iwai532d5382007-07-27 19:02:40 +02001129 * generic bound volume/swtich controls
1130 */
1131int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol,
1132 struct snd_ctl_elem_info *uinfo)
1133{
1134 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1135 struct hda_bind_ctls *c;
1136 int err;
1137
1138 c = (struct hda_bind_ctls *)kcontrol->private_value;
1139 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
1140 kcontrol->private_value = *c->values;
1141 err = c->ops->info(kcontrol, uinfo);
1142 kcontrol->private_value = (long)c;
1143 mutex_unlock(&codec->spdif_mutex);
1144 return err;
1145}
1146
1147int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol,
1148 struct snd_ctl_elem_value *ucontrol)
1149{
1150 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1151 struct hda_bind_ctls *c;
1152 int err;
1153
1154 c = (struct hda_bind_ctls *)kcontrol->private_value;
1155 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
1156 kcontrol->private_value = *c->values;
1157 err = c->ops->get(kcontrol, ucontrol);
1158 kcontrol->private_value = (long)c;
1159 mutex_unlock(&codec->spdif_mutex);
1160 return err;
1161}
1162
1163int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol,
1164 struct snd_ctl_elem_value *ucontrol)
1165{
1166 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1167 struct hda_bind_ctls *c;
1168 unsigned long *vals;
1169 int err = 0, change = 0;
1170
1171 c = (struct hda_bind_ctls *)kcontrol->private_value;
1172 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
1173 for (vals = c->values; *vals; vals++) {
1174 kcontrol->private_value = *vals;
1175 err = c->ops->put(kcontrol, ucontrol);
1176 if (err < 0)
1177 break;
1178 change |= err;
1179 }
1180 kcontrol->private_value = (long)c;
1181 mutex_unlock(&codec->spdif_mutex);
1182 return err < 0 ? err : change;
1183}
1184
1185int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1186 unsigned int size, unsigned int __user *tlv)
1187{
1188 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1189 struct hda_bind_ctls *c;
1190 int err;
1191
1192 c = (struct hda_bind_ctls *)kcontrol->private_value;
1193 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
1194 kcontrol->private_value = *c->values;
1195 err = c->ops->tlv(kcontrol, op_flag, size, tlv);
1196 kcontrol->private_value = (long)c;
1197 mutex_unlock(&codec->spdif_mutex);
1198 return err;
1199}
1200
1201struct hda_ctl_ops snd_hda_bind_vol = {
1202 .info = snd_hda_mixer_amp_volume_info,
1203 .get = snd_hda_mixer_amp_volume_get,
1204 .put = snd_hda_mixer_amp_volume_put,
1205 .tlv = snd_hda_mixer_amp_tlv
1206};
1207
1208struct hda_ctl_ops snd_hda_bind_sw = {
1209 .info = snd_hda_mixer_amp_switch_info,
1210 .get = snd_hda_mixer_amp_switch_get,
1211 .put = snd_hda_mixer_amp_switch_put,
1212 .tlv = snd_hda_mixer_amp_tlv
1213};
1214
1215/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 * SPDIF out controls
1217 */
1218
Takashi Iwai0ba21762007-04-16 11:29:14 +02001219static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
1220 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
1222 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1223 uinfo->count = 1;
1224 return 0;
1225}
1226
Takashi Iwai0ba21762007-04-16 11:29:14 +02001227static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
1228 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
1230 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1231 IEC958_AES0_NONAUDIO |
1232 IEC958_AES0_CON_EMPHASIS_5015 |
1233 IEC958_AES0_CON_NOT_COPYRIGHT;
1234 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
1235 IEC958_AES1_CON_ORIGINAL;
1236 return 0;
1237}
1238
Takashi Iwai0ba21762007-04-16 11:29:14 +02001239static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
1240 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241{
1242 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1243 IEC958_AES0_NONAUDIO |
1244 IEC958_AES0_PRO_EMPHASIS_5015;
1245 return 0;
1246}
1247
Takashi Iwai0ba21762007-04-16 11:29:14 +02001248static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
1249 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
1251 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1252
1253 ucontrol->value.iec958.status[0] = codec->spdif_status & 0xff;
1254 ucontrol->value.iec958.status[1] = (codec->spdif_status >> 8) & 0xff;
1255 ucontrol->value.iec958.status[2] = (codec->spdif_status >> 16) & 0xff;
1256 ucontrol->value.iec958.status[3] = (codec->spdif_status >> 24) & 0xff;
1257
1258 return 0;
1259}
1260
1261/* convert from SPDIF status bits to HDA SPDIF bits
1262 * bit 0 (DigEn) is always set zero (to be filled later)
1263 */
1264static unsigned short convert_from_spdif_status(unsigned int sbits)
1265{
1266 unsigned short val = 0;
1267
1268 if (sbits & IEC958_AES0_PROFESSIONAL)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001269 val |= AC_DIG1_PROFESSIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 if (sbits & IEC958_AES0_NONAUDIO)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001271 val |= AC_DIG1_NONAUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001273 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
1274 IEC958_AES0_PRO_EMPHASIS_5015)
1275 val |= AC_DIG1_EMPHASIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001277 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
1278 IEC958_AES0_CON_EMPHASIS_5015)
1279 val |= AC_DIG1_EMPHASIS;
1280 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
1281 val |= AC_DIG1_COPYRIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
Takashi Iwai0ba21762007-04-16 11:29:14 +02001283 val |= AC_DIG1_LEVEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
1285 }
1286 return val;
1287}
1288
1289/* convert to SPDIF status bits from HDA SPDIF bits
1290 */
1291static unsigned int convert_to_spdif_status(unsigned short val)
1292{
1293 unsigned int sbits = 0;
1294
Takashi Iwai0ba21762007-04-16 11:29:14 +02001295 if (val & AC_DIG1_NONAUDIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 sbits |= IEC958_AES0_NONAUDIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001297 if (val & AC_DIG1_PROFESSIONAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 sbits |= IEC958_AES0_PROFESSIONAL;
1299 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001300 if (sbits & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
1302 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001303 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001305 if (!(val & AC_DIG1_COPYRIGHT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001307 if (val & AC_DIG1_LEVEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
1309 sbits |= val & (0x7f << 8);
1310 }
1311 return sbits;
1312}
1313
Takashi Iwai0ba21762007-04-16 11:29:14 +02001314static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
1315 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
1317 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1318 hda_nid_t nid = kcontrol->private_value;
1319 unsigned short val;
1320 int change;
1321
Ingo Molnar62932df2006-01-16 16:34:20 +01001322 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 codec->spdif_status = ucontrol->value.iec958.status[0] |
1324 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
1325 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
1326 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
1327 val = convert_from_spdif_status(codec->spdif_status);
1328 val |= codec->spdif_ctls & 1;
1329 change = codec->spdif_ctls != val;
1330 codec->spdif_ctls = val;
1331
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001332 if (change) {
1333 snd_hda_codec_write_cache(codec, nid, 0,
1334 AC_VERB_SET_DIGI_CONVERT_1,
1335 val & 0xff);
1336 snd_hda_codec_write_cache(codec, nid, 0,
1337 AC_VERB_SET_DIGI_CONVERT_2,
1338 val >> 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
1340
Ingo Molnar62932df2006-01-16 16:34:20 +01001341 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 return change;
1343}
1344
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001345#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Takashi Iwai0ba21762007-04-16 11:29:14 +02001347static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
1348 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
1350 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1351
Takashi Iwai0ba21762007-04-16 11:29:14 +02001352 ucontrol->value.integer.value[0] = codec->spdif_ctls & AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 return 0;
1354}
1355
Takashi Iwai0ba21762007-04-16 11:29:14 +02001356static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
1357 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
1359 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1360 hda_nid_t nid = kcontrol->private_value;
1361 unsigned short val;
1362 int change;
1363
Ingo Molnar62932df2006-01-16 16:34:20 +01001364 mutex_lock(&codec->spdif_mutex);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001365 val = codec->spdif_ctls & ~AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 if (ucontrol->value.integer.value[0])
Takashi Iwai0ba21762007-04-16 11:29:14 +02001367 val |= AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 change = codec->spdif_ctls != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001369 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 codec->spdif_ctls = val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001371 snd_hda_codec_write_cache(codec, nid, 0,
1372 AC_VERB_SET_DIGI_CONVERT_1,
1373 val & 0xff);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001374 /* unmute amp switch (if any) */
1375 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
Takashi Iwai47fd8302007-08-10 17:11:07 +02001376 (val & AC_DIG1_ENABLE))
1377 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
1378 HDA_AMP_MUTE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001380 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 return change;
1382}
1383
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001384static struct snd_kcontrol_new dig_mixes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 {
1386 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1387 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1388 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK),
1389 .info = snd_hda_spdif_mask_info,
1390 .get = snd_hda_spdif_cmask_get,
1391 },
1392 {
1393 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1394 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1395 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PRO_MASK),
1396 .info = snd_hda_spdif_mask_info,
1397 .get = snd_hda_spdif_pmask_get,
1398 },
1399 {
1400 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1401 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
1402 .info = snd_hda_spdif_mask_info,
1403 .get = snd_hda_spdif_default_get,
1404 .put = snd_hda_spdif_default_put,
1405 },
1406 {
1407 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1408 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH),
1409 .info = snd_hda_spdif_out_switch_info,
1410 .get = snd_hda_spdif_out_switch_get,
1411 .put = snd_hda_spdif_out_switch_put,
1412 },
1413 { } /* end */
1414};
1415
1416/**
1417 * snd_hda_create_spdif_out_ctls - create Output SPDIF-related controls
1418 * @codec: the HDA codec
1419 * @nid: audio out widget NID
1420 *
1421 * Creates controls related with the SPDIF output.
1422 * Called from each patch supporting the SPDIF out.
1423 *
1424 * Returns 0 if successful, or a negative error code.
1425 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02001426int snd_hda_create_spdif_out_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
1428 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001429 struct snd_kcontrol *kctl;
1430 struct snd_kcontrol_new *dig_mix;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
1432 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
1433 kctl = snd_ctl_new1(dig_mix, codec);
1434 kctl->private_value = nid;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001435 err = snd_ctl_add(codec->bus->card, kctl);
1436 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 return err;
1438 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001439 codec->spdif_ctls =
1440 snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 codec->spdif_status = convert_to_spdif_status(codec->spdif_ctls);
1442 return 0;
1443}
1444
1445/*
1446 * SPDIF input
1447 */
1448
1449#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
1450
Takashi Iwai0ba21762007-04-16 11:29:14 +02001451static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
1452 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453{
1454 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1455
1456 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
1457 return 0;
1458}
1459
Takashi Iwai0ba21762007-04-16 11:29:14 +02001460static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
1461 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462{
1463 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1464 hda_nid_t nid = kcontrol->private_value;
1465 unsigned int val = !!ucontrol->value.integer.value[0];
1466 int change;
1467
Ingo Molnar62932df2006-01-16 16:34:20 +01001468 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001470 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 codec->spdif_in_enable = val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001472 snd_hda_codec_write_cache(codec, nid, 0,
1473 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001475 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 return change;
1477}
1478
Takashi Iwai0ba21762007-04-16 11:29:14 +02001479static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
1480 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481{
1482 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1483 hda_nid_t nid = kcontrol->private_value;
1484 unsigned short val;
1485 unsigned int sbits;
1486
1487 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT, 0);
1488 sbits = convert_to_spdif_status(val);
1489 ucontrol->value.iec958.status[0] = sbits;
1490 ucontrol->value.iec958.status[1] = sbits >> 8;
1491 ucontrol->value.iec958.status[2] = sbits >> 16;
1492 ucontrol->value.iec958.status[3] = sbits >> 24;
1493 return 0;
1494}
1495
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001496static struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 {
1498 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1499 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH),
1500 .info = snd_hda_spdif_in_switch_info,
1501 .get = snd_hda_spdif_in_switch_get,
1502 .put = snd_hda_spdif_in_switch_put,
1503 },
1504 {
1505 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1506 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1507 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,DEFAULT),
1508 .info = snd_hda_spdif_mask_info,
1509 .get = snd_hda_spdif_in_status_get,
1510 },
1511 { } /* end */
1512};
1513
1514/**
1515 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
1516 * @codec: the HDA codec
1517 * @nid: audio in widget NID
1518 *
1519 * Creates controls related with the SPDIF input.
1520 * Called from each patch supporting the SPDIF in.
1521 *
1522 * Returns 0 if successful, or a negative error code.
1523 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02001524int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525{
1526 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001527 struct snd_kcontrol *kctl;
1528 struct snd_kcontrol_new *dig_mix;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
1530 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
1531 kctl = snd_ctl_new1(dig_mix, codec);
1532 kctl->private_value = nid;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001533 err = snd_ctl_add(codec->bus->card, kctl);
1534 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 return err;
1536 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001537 codec->spdif_in_enable =
1538 snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT, 0) &
1539 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 return 0;
1541}
1542
Takashi Iwaicb53c622007-08-10 17:21:45 +02001543#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001544/*
1545 * command cache
1546 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001548/* build a 32bit cache key with the widget id and the command parameter */
1549#define build_cmd_cache_key(nid, verb) ((verb << 8) | nid)
1550#define get_cmd_cache_nid(key) ((key) & 0xff)
1551#define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff)
1552
1553/**
1554 * snd_hda_codec_write_cache - send a single command with caching
1555 * @codec: the HDA codec
1556 * @nid: NID to send the command
1557 * @direct: direct flag
1558 * @verb: the verb to send
1559 * @parm: the parameter for the verb
1560 *
1561 * Send a single command without waiting for response.
1562 *
1563 * Returns 0 if successful, or a negative error code.
1564 */
1565int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid,
1566 int direct, unsigned int verb, unsigned int parm)
1567{
1568 int err;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001569 snd_hda_power_up(codec);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001570 mutex_lock(&codec->bus->cmd_mutex);
1571 err = codec->bus->ops.command(codec, nid, direct, verb, parm);
1572 if (!err) {
1573 struct hda_cache_head *c;
1574 u32 key = build_cmd_cache_key(nid, verb);
1575 c = get_alloc_hash(&codec->cmd_cache, key);
1576 if (c)
1577 c->val = parm;
1578 }
1579 mutex_unlock(&codec->bus->cmd_mutex);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001580 snd_hda_power_down(codec);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001581 return err;
1582}
1583
1584/* resume the all commands from the cache */
1585void snd_hda_codec_resume_cache(struct hda_codec *codec)
1586{
1587 struct hda_cache_head *buffer = codec->cmd_cache.buffer;
1588 int i;
1589
1590 for (i = 0; i < codec->cmd_cache.size; i++, buffer++) {
1591 u32 key = buffer->key;
1592 if (!key)
1593 continue;
1594 snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0,
1595 get_cmd_cache_cmd(key), buffer->val);
1596 }
1597}
1598
1599/**
1600 * snd_hda_sequence_write_cache - sequence writes with caching
1601 * @codec: the HDA codec
1602 * @seq: VERB array to send
1603 *
1604 * Send the commands sequentially from the given array.
1605 * Thte commands are recorded on cache for power-save and resume.
1606 * The array must be terminated with NID=0.
1607 */
1608void snd_hda_sequence_write_cache(struct hda_codec *codec,
1609 const struct hda_verb *seq)
1610{
1611 for (; seq->nid; seq++)
1612 snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb,
1613 seq->param);
1614}
Takashi Iwaicb53c622007-08-10 17:21:45 +02001615#endif /* SND_HDA_NEEDS_RESUME */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001616
Takashi Iwai54d17402005-11-21 16:33:22 +01001617/*
1618 * set power state of the codec
1619 */
1620static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
1621 unsigned int power_state)
1622{
Takashi Iwaicb53c622007-08-10 17:21:45 +02001623 hda_nid_t nid;
1624 int i;
Takashi Iwai54d17402005-11-21 16:33:22 +01001625
1626 snd_hda_codec_write(codec, fg, 0, AC_VERB_SET_POWER_STATE,
1627 power_state);
1628
Takashi Iwaicb53c622007-08-10 17:21:45 +02001629 nid = codec->start_nid;
1630 for (i = 0; i < codec->num_nodes; i++, nid++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01001631 if (get_wcaps(codec, nid) & AC_WCAP_POWER)
1632 snd_hda_codec_write(codec, nid, 0,
1633 AC_VERB_SET_POWER_STATE,
1634 power_state);
1635 }
1636
Takashi Iwaicb53c622007-08-10 17:21:45 +02001637 if (power_state == AC_PWRST_D0) {
1638 unsigned long end_time;
1639 int state;
Takashi Iwai54d17402005-11-21 16:33:22 +01001640 msleep(10);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001641 /* wait until the codec reachs to D0 */
1642 end_time = jiffies + msecs_to_jiffies(500);
1643 do {
1644 state = snd_hda_codec_read(codec, fg, 0,
1645 AC_VERB_GET_POWER_STATE, 0);
1646 if (state == power_state)
1647 break;
1648 msleep(1);
1649 } while (time_after_eq(end_time, jiffies));
1650 }
Takashi Iwai54d17402005-11-21 16:33:22 +01001651}
1652
Takashi Iwaicb53c622007-08-10 17:21:45 +02001653#ifdef SND_HDA_NEEDS_RESUME
1654/*
1655 * call suspend and power-down; used both from PM and power-save
1656 */
1657static void hda_call_codec_suspend(struct hda_codec *codec)
1658{
1659 if (codec->patch_ops.suspend)
1660 codec->patch_ops.suspend(codec, PMSG_SUSPEND);
1661 hda_set_power_state(codec,
1662 codec->afg ? codec->afg : codec->mfg,
1663 AC_PWRST_D3);
1664#ifdef CONFIG_SND_HDA_POWER_SAVE
1665 cancel_delayed_work(&codec->power_work);
Takashi Iwai95e99fd2007-08-13 15:29:04 +02001666 codec->power_on = 0;
Takashi Iwaia221e282007-08-16 16:35:33 +02001667 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001668#endif
1669}
1670
1671/*
1672 * kick up codec; used both from PM and power-save
1673 */
1674static void hda_call_codec_resume(struct hda_codec *codec)
1675{
1676 hda_set_power_state(codec,
1677 codec->afg ? codec->afg : codec->mfg,
1678 AC_PWRST_D0);
1679 if (codec->patch_ops.resume)
1680 codec->patch_ops.resume(codec);
1681 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02001682 if (codec->patch_ops.init)
1683 codec->patch_ops.init(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001684 snd_hda_codec_resume_amp(codec);
1685 snd_hda_codec_resume_cache(codec);
1686 }
1687}
1688#endif /* SND_HDA_NEEDS_RESUME */
1689
Takashi Iwai54d17402005-11-21 16:33:22 +01001690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691/**
1692 * snd_hda_build_controls - build mixer controls
1693 * @bus: the BUS
1694 *
1695 * Creates mixer controls for each codec included in the bus.
1696 *
1697 * Returns 0 if successful, otherwise a negative error code.
1698 */
Takashi Iwai756e2b02007-04-16 11:27:07 +02001699int __devinit snd_hda_build_controls(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001701 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Takashi Iwai0ba21762007-04-16 11:29:14 +02001703 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwaicb53c622007-08-10 17:21:45 +02001704 int err = 0;
1705 /* fake as if already powered-on */
1706 hda_keep_power_on(codec);
1707 /* then fire up */
1708 hda_set_power_state(codec,
1709 codec->afg ? codec->afg : codec->mfg,
1710 AC_PWRST_D0);
1711 /* continue to initialize... */
1712 if (codec->patch_ops.init)
1713 err = codec->patch_ops.init(codec);
1714 if (!err && codec->patch_ops.build_controls)
1715 err = codec->patch_ops.build_controls(codec);
1716 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 if (err < 0)
1718 return err;
1719 }
1720
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 return 0;
1722}
1723
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724/*
1725 * stream formats
1726 */
Takashi Iwaibefdf312005-08-22 13:57:55 +02001727struct hda_rate_tbl {
1728 unsigned int hz;
1729 unsigned int alsa_bits;
1730 unsigned int hda_fmt;
1731};
1732
1733static struct hda_rate_tbl rate_bits[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 /* rate in Hz, ALSA rate bitmask, HDA format value */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02001735
1736 /* autodetected value used in snd_hda_query_supported_pcm */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 { 8000, SNDRV_PCM_RATE_8000, 0x0500 }, /* 1/6 x 48 */
1738 { 11025, SNDRV_PCM_RATE_11025, 0x4300 }, /* 1/4 x 44 */
1739 { 16000, SNDRV_PCM_RATE_16000, 0x0200 }, /* 1/3 x 48 */
1740 { 22050, SNDRV_PCM_RATE_22050, 0x4100 }, /* 1/2 x 44 */
1741 { 32000, SNDRV_PCM_RATE_32000, 0x0a00 }, /* 2/3 x 48 */
1742 { 44100, SNDRV_PCM_RATE_44100, 0x4000 }, /* 44 */
1743 { 48000, SNDRV_PCM_RATE_48000, 0x0000 }, /* 48 */
1744 { 88200, SNDRV_PCM_RATE_88200, 0x4800 }, /* 2 x 44 */
1745 { 96000, SNDRV_PCM_RATE_96000, 0x0800 }, /* 2 x 48 */
1746 { 176400, SNDRV_PCM_RATE_176400, 0x5800 },/* 4 x 44 */
1747 { 192000, SNDRV_PCM_RATE_192000, 0x1800 }, /* 4 x 48 */
Takashi Iwaia961f9f2007-04-12 13:08:09 +02001748#define AC_PAR_PCM_RATE_BITS 11
1749 /* up to bits 10, 384kHZ isn't supported properly */
1750
1751 /* not autodetected value */
1752 { 9600, SNDRV_PCM_RATE_KNOT, 0x0400 }, /* 1/5 x 48 */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02001753
Takashi Iwaibefdf312005-08-22 13:57:55 +02001754 { 0 } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755};
1756
1757/**
1758 * snd_hda_calc_stream_format - calculate format bitset
1759 * @rate: the sample rate
1760 * @channels: the number of channels
1761 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
1762 * @maxbps: the max. bps
1763 *
1764 * Calculate the format bitset from the given rate, channels and th PCM format.
1765 *
1766 * Return zero if invalid.
1767 */
1768unsigned int snd_hda_calc_stream_format(unsigned int rate,
1769 unsigned int channels,
1770 unsigned int format,
1771 unsigned int maxbps)
1772{
1773 int i;
1774 unsigned int val = 0;
1775
Takashi Iwaibefdf312005-08-22 13:57:55 +02001776 for (i = 0; rate_bits[i].hz; i++)
1777 if (rate_bits[i].hz == rate) {
1778 val = rate_bits[i].hda_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 break;
1780 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001781 if (!rate_bits[i].hz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 snd_printdd("invalid rate %d\n", rate);
1783 return 0;
1784 }
1785
1786 if (channels == 0 || channels > 8) {
1787 snd_printdd("invalid channels %d\n", channels);
1788 return 0;
1789 }
1790 val |= channels - 1;
1791
1792 switch (snd_pcm_format_width(format)) {
1793 case 8: val |= 0x00; break;
1794 case 16: val |= 0x10; break;
1795 case 20:
1796 case 24:
1797 case 32:
1798 if (maxbps >= 32)
1799 val |= 0x40;
1800 else if (maxbps >= 24)
1801 val |= 0x30;
1802 else
1803 val |= 0x20;
1804 break;
1805 default:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001806 snd_printdd("invalid format width %d\n",
1807 snd_pcm_format_width(format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 return 0;
1809 }
1810
1811 return val;
1812}
1813
1814/**
1815 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
1816 * @codec: the HDA codec
1817 * @nid: NID to query
1818 * @ratesp: the pointer to store the detected rate bitflags
1819 * @formatsp: the pointer to store the detected formats
1820 * @bpsp: the pointer to store the detected format widths
1821 *
1822 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
1823 * or @bsps argument is ignored.
1824 *
1825 * Returns 0 if successful, otherwise a negative error code.
1826 */
1827int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
1828 u32 *ratesp, u64 *formatsp, unsigned int *bpsp)
1829{
1830 int i;
1831 unsigned int val, streams;
1832
1833 val = 0;
1834 if (nid != codec->afg &&
Takashi Iwai54d17402005-11-21 16:33:22 +01001835 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
1837 if (val == -1)
1838 return -EIO;
1839 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001840 if (!val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
1842
1843 if (ratesp) {
1844 u32 rates = 0;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02001845 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 if (val & (1 << i))
Takashi Iwaibefdf312005-08-22 13:57:55 +02001847 rates |= rate_bits[i].alsa_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 }
1849 *ratesp = rates;
1850 }
1851
1852 if (formatsp || bpsp) {
1853 u64 formats = 0;
1854 unsigned int bps;
1855 unsigned int wcaps;
1856
Takashi Iwai54d17402005-11-21 16:33:22 +01001857 wcaps = get_wcaps(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
1859 if (streams == -1)
1860 return -EIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001861 if (!streams) {
1862 streams = snd_hda_param_read(codec, codec->afg,
1863 AC_PAR_STREAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 if (streams == -1)
1865 return -EIO;
1866 }
1867
1868 bps = 0;
1869 if (streams & AC_SUPFMT_PCM) {
1870 if (val & AC_SUPPCM_BITS_8) {
1871 formats |= SNDRV_PCM_FMTBIT_U8;
1872 bps = 8;
1873 }
1874 if (val & AC_SUPPCM_BITS_16) {
1875 formats |= SNDRV_PCM_FMTBIT_S16_LE;
1876 bps = 16;
1877 }
1878 if (wcaps & AC_WCAP_DIGITAL) {
1879 if (val & AC_SUPPCM_BITS_32)
1880 formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
1881 if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24))
1882 formats |= SNDRV_PCM_FMTBIT_S32_LE;
1883 if (val & AC_SUPPCM_BITS_24)
1884 bps = 24;
1885 else if (val & AC_SUPPCM_BITS_20)
1886 bps = 20;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001887 } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24|
1888 AC_SUPPCM_BITS_32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 formats |= SNDRV_PCM_FMTBIT_S32_LE;
1890 if (val & AC_SUPPCM_BITS_32)
1891 bps = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 else if (val & AC_SUPPCM_BITS_24)
1893 bps = 24;
Nicolas Graziano33ef76512006-09-19 14:23:14 +02001894 else if (val & AC_SUPPCM_BITS_20)
1895 bps = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 }
1897 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001898 else if (streams == AC_SUPFMT_FLOAT32) {
1899 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
1901 bps = 32;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001902 } else if (streams == AC_SUPFMT_AC3) {
1903 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 /* temporary hack: we have still no proper support
1905 * for the direct AC3 stream...
1906 */
1907 formats |= SNDRV_PCM_FMTBIT_U8;
1908 bps = 8;
1909 }
1910 if (formatsp)
1911 *formatsp = formats;
1912 if (bpsp)
1913 *bpsp = bps;
1914 }
1915
1916 return 0;
1917}
1918
1919/**
Takashi Iwai0ba21762007-04-16 11:29:14 +02001920 * snd_hda_is_supported_format - check whether the given node supports
1921 * the format val
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 *
1923 * Returns 1 if supported, 0 if not.
1924 */
1925int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
1926 unsigned int format)
1927{
1928 int i;
1929 unsigned int val = 0, rate, stream;
1930
1931 if (nid != codec->afg &&
Takashi Iwai54d17402005-11-21 16:33:22 +01001932 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
1934 if (val == -1)
1935 return 0;
1936 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001937 if (!val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
1939 if (val == -1)
1940 return 0;
1941 }
1942
1943 rate = format & 0xff00;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02001944 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++)
Takashi Iwaibefdf312005-08-22 13:57:55 +02001945 if (rate_bits[i].hda_fmt == rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 if (val & (1 << i))
1947 break;
1948 return 0;
1949 }
Takashi Iwaia961f9f2007-04-12 13:08:09 +02001950 if (i >= AC_PAR_PCM_RATE_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 return 0;
1952
1953 stream = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
1954 if (stream == -1)
1955 return 0;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001956 if (!stream && nid != codec->afg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 stream = snd_hda_param_read(codec, codec->afg, AC_PAR_STREAM);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001958 if (!stream || stream == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 return 0;
1960
1961 if (stream & AC_SUPFMT_PCM) {
1962 switch (format & 0xf0) {
1963 case 0x00:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001964 if (!(val & AC_SUPPCM_BITS_8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 return 0;
1966 break;
1967 case 0x10:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001968 if (!(val & AC_SUPPCM_BITS_16))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 return 0;
1970 break;
1971 case 0x20:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001972 if (!(val & AC_SUPPCM_BITS_20))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 return 0;
1974 break;
1975 case 0x30:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001976 if (!(val & AC_SUPPCM_BITS_24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 return 0;
1978 break;
1979 case 0x40:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001980 if (!(val & AC_SUPPCM_BITS_32))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 return 0;
1982 break;
1983 default:
1984 return 0;
1985 }
1986 } else {
1987 /* FIXME: check for float32 and AC3? */
1988 }
1989
1990 return 1;
1991}
1992
1993/*
1994 * PCM stuff
1995 */
1996static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
1997 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001998 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999{
2000 return 0;
2001}
2002
2003static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
2004 struct hda_codec *codec,
2005 unsigned int stream_tag,
2006 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002007 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
2009 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
2010 return 0;
2011}
2012
2013static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
2014 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002015 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016{
2017 snd_hda_codec_setup_stream(codec, hinfo->nid, 0, 0, 0);
2018 return 0;
2019}
2020
Takashi Iwai0ba21762007-04-16 11:29:14 +02002021static int __devinit set_pcm_default_values(struct hda_codec *codec,
2022 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002024 /* query support PCM information from the given NID */
2025 if (info->nid && (!info->rates || !info->formats)) {
2026 snd_hda_query_supported_pcm(codec, info->nid,
2027 info->rates ? NULL : &info->rates,
2028 info->formats ? NULL : &info->formats,
2029 info->maxbps ? NULL : &info->maxbps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 }
2031 if (info->ops.open == NULL)
2032 info->ops.open = hda_pcm_default_open_close;
2033 if (info->ops.close == NULL)
2034 info->ops.close = hda_pcm_default_open_close;
2035 if (info->ops.prepare == NULL) {
2036 snd_assert(info->nid, return -EINVAL);
2037 info->ops.prepare = hda_pcm_default_prepare;
2038 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 if (info->ops.cleanup == NULL) {
2040 snd_assert(info->nid, return -EINVAL);
2041 info->ops.cleanup = hda_pcm_default_cleanup;
2042 }
2043 return 0;
2044}
2045
2046/**
2047 * snd_hda_build_pcms - build PCM information
2048 * @bus: the BUS
2049 *
2050 * Create PCM information for each codec included in the bus.
2051 *
2052 * The build_pcms codec patch is requested to set up codec->num_pcms and
2053 * codec->pcm_info properly. The array is referred by the top-level driver
2054 * to create its PCM instances.
2055 * The allocated codec->pcm_info should be released in codec->patch_ops.free
2056 * callback.
2057 *
2058 * At least, substreams, channels_min and channels_max must be filled for
2059 * each stream. substreams = 0 indicates that the stream doesn't exist.
2060 * When rates and/or formats are zero, the supported values are queried
2061 * from the given nid. The nid is used also by the default ops.prepare
2062 * and ops.cleanup callbacks.
2063 *
2064 * The driver needs to call ops.open in its open callback. Similarly,
2065 * ops.close is supposed to be called in the close callback.
2066 * ops.prepare should be called in the prepare or hw_params callback
2067 * with the proper parameters for set up.
2068 * ops.cleanup should be called in hw_free for clean up of streams.
2069 *
2070 * This function returns 0 if successfull, or a negative error code.
2071 */
Takashi Iwai756e2b02007-04-16 11:27:07 +02002072int __devinit snd_hda_build_pcms(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002074 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Takashi Iwai0ba21762007-04-16 11:29:14 +02002076 list_for_each_entry(codec, &bus->codec_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 unsigned int pcm, s;
2078 int err;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002079 if (!codec->patch_ops.build_pcms)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 continue;
2081 err = codec->patch_ops.build_pcms(codec);
2082 if (err < 0)
2083 return err;
2084 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
2085 for (s = 0; s < 2; s++) {
2086 struct hda_pcm_stream *info;
2087 info = &codec->pcm_info[pcm].stream[s];
Takashi Iwai0ba21762007-04-16 11:29:14 +02002088 if (!info->substreams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 continue;
2090 err = set_pcm_default_values(codec, info);
2091 if (err < 0)
2092 return err;
2093 }
2094 }
2095 }
2096 return 0;
2097}
2098
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099/**
2100 * snd_hda_check_board_config - compare the current codec with the config table
2101 * @codec: the HDA codec
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002102 * @num_configs: number of config enums
2103 * @models: array of model name strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 * @tbl: configuration table, terminated by null entries
2105 *
2106 * Compares the modelname or PCI subsystem id of the current codec with the
2107 * given configuration table. If a matching entry is found, returns its
2108 * config value (supposed to be 0 or positive).
2109 *
2110 * If no entries are matching, the function returns a negative value.
2111 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002112int snd_hda_check_board_config(struct hda_codec *codec,
2113 int num_configs, const char **models,
2114 const struct snd_pci_quirk *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115{
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002116 if (codec->bus->modelname && models) {
2117 int i;
2118 for (i = 0; i < num_configs; i++) {
2119 if (models[i] &&
2120 !strcmp(codec->bus->modelname, models[i])) {
2121 snd_printd(KERN_INFO "hda_codec: model '%s' is "
2122 "selected\n", models[i]);
2123 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 }
2125 }
2126 }
2127
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002128 if (!codec->bus->pci || !tbl)
2129 return -1;
2130
2131 tbl = snd_pci_quirk_lookup(codec->bus->pci, tbl);
2132 if (!tbl)
2133 return -1;
2134 if (tbl->value >= 0 && tbl->value < num_configs) {
2135#ifdef CONFIG_SND_DEBUG_DETECT
2136 char tmp[10];
2137 const char *model = NULL;
2138 if (models)
2139 model = models[tbl->value];
2140 if (!model) {
2141 sprintf(tmp, "#%d", tbl->value);
2142 model = tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 }
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002144 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
2145 "for config %x:%x (%s)\n",
2146 model, tbl->subvendor, tbl->subdevice,
2147 (tbl->name ? tbl->name : "Unknown device"));
2148#endif
2149 return tbl->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 }
2151 return -1;
2152}
2153
2154/**
2155 * snd_hda_add_new_ctls - create controls from the array
2156 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002157 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 *
2159 * This helper function creates and add new controls in the given array.
2160 * The array must be terminated with an empty entry as terminator.
2161 *
2162 * Returns 0 if successful, or a negative error code.
2163 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002164int snd_hda_add_new_ctls(struct hda_codec *codec, struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165{
Takashi Iwaicb53c622007-08-10 17:21:45 +02002166 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
2168 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01002169 struct snd_kcontrol *kctl;
2170 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002171 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01002172 return -ENOMEM;
2173 err = snd_ctl_add(codec->bus->card, kctl);
2174 if (err < 0) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002175 if (!codec->addr)
Takashi Iwai54d17402005-11-21 16:33:22 +01002176 return err;
2177 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002178 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01002179 return -ENOMEM;
2180 kctl->id.device = codec->addr;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002181 err = snd_ctl_add(codec->bus->card, kctl);
2182 if (err < 0)
Takashi Iwai54d17402005-11-21 16:33:22 +01002183 return err;
2184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 }
2186 return 0;
2187}
2188
Takashi Iwaicb53c622007-08-10 17:21:45 +02002189#ifdef CONFIG_SND_HDA_POWER_SAVE
2190static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2191 unsigned int power_state);
2192
2193static void hda_power_work(struct work_struct *work)
2194{
2195 struct hda_codec *codec =
2196 container_of(work, struct hda_codec, power_work.work);
2197
2198 if (!codec->power_on || codec->power_count)
2199 return;
2200
2201 hda_call_codec_suspend(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002202 if (codec->bus->ops.pm_notify)
2203 codec->bus->ops.pm_notify(codec);
2204}
2205
2206static void hda_keep_power_on(struct hda_codec *codec)
2207{
2208 codec->power_count++;
2209 codec->power_on = 1;
2210}
2211
2212void snd_hda_power_up(struct hda_codec *codec)
2213{
2214 codec->power_count++;
Takashi Iwaia221e282007-08-16 16:35:33 +02002215 if (codec->power_on || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002216 return;
2217
2218 codec->power_on = 1;
2219 if (codec->bus->ops.pm_notify)
2220 codec->bus->ops.pm_notify(codec);
2221 hda_call_codec_resume(codec);
2222 cancel_delayed_work(&codec->power_work);
Takashi Iwaia221e282007-08-16 16:35:33 +02002223 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002224}
2225
2226void snd_hda_power_down(struct hda_codec *codec)
2227{
2228 --codec->power_count;
Takashi Iwaia221e282007-08-16 16:35:33 +02002229 if (!codec->power_on || codec->power_count || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002230 return;
Takashi Iwaia221e282007-08-16 16:35:33 +02002231 if (power_save) {
2232 codec->power_transition = 1; /* avoid reentrance */
Takashi Iwaicb53c622007-08-10 17:21:45 +02002233 schedule_delayed_work(&codec->power_work,
2234 msecs_to_jiffies(power_save * 1000));
Takashi Iwaia221e282007-08-16 16:35:33 +02002235 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02002236}
2237
2238int snd_hda_check_amp_list_power(struct hda_codec *codec,
2239 struct hda_loopback_check *check,
2240 hda_nid_t nid)
2241{
2242 struct hda_amp_list *p;
2243 int ch, v;
2244
2245 if (!check->amplist)
2246 return 0;
2247 for (p = check->amplist; p->nid; p++) {
2248 if (p->nid == nid)
2249 break;
2250 }
2251 if (!p->nid)
2252 return 0; /* nothing changed */
2253
2254 for (p = check->amplist; p->nid; p++) {
2255 for (ch = 0; ch < 2; ch++) {
2256 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
2257 p->idx);
2258 if (!(v & HDA_AMP_MUTE) && v > 0) {
2259 if (!check->power_on) {
2260 check->power_on = 1;
2261 snd_hda_power_up(codec);
2262 }
2263 return 1;
2264 }
2265 }
2266 }
2267 if (check->power_on) {
2268 check->power_on = 0;
2269 snd_hda_power_down(codec);
2270 }
2271 return 0;
2272}
2273#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002275/*
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002276 * Channel mode helper
2277 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002278int snd_hda_ch_mode_info(struct hda_codec *codec,
2279 struct snd_ctl_elem_info *uinfo,
2280 const struct hda_channel_mode *chmode,
2281 int num_chmodes)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002282{
2283 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2284 uinfo->count = 1;
2285 uinfo->value.enumerated.items = num_chmodes;
2286 if (uinfo->value.enumerated.item >= num_chmodes)
2287 uinfo->value.enumerated.item = num_chmodes - 1;
2288 sprintf(uinfo->value.enumerated.name, "%dch",
2289 chmode[uinfo->value.enumerated.item].channels);
2290 return 0;
2291}
2292
Takashi Iwai0ba21762007-04-16 11:29:14 +02002293int snd_hda_ch_mode_get(struct hda_codec *codec,
2294 struct snd_ctl_elem_value *ucontrol,
2295 const struct hda_channel_mode *chmode,
2296 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002297 int max_channels)
2298{
2299 int i;
2300
2301 for (i = 0; i < num_chmodes; i++) {
2302 if (max_channels == chmode[i].channels) {
2303 ucontrol->value.enumerated.item[0] = i;
2304 break;
2305 }
2306 }
2307 return 0;
2308}
2309
Takashi Iwai0ba21762007-04-16 11:29:14 +02002310int snd_hda_ch_mode_put(struct hda_codec *codec,
2311 struct snd_ctl_elem_value *ucontrol,
2312 const struct hda_channel_mode *chmode,
2313 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002314 int *max_channelsp)
2315{
2316 unsigned int mode;
2317
2318 mode = ucontrol->value.enumerated.item[0];
2319 snd_assert(mode < num_chmodes, return -EINVAL);
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002320 if (*max_channelsp == chmode[mode].channels)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002321 return 0;
2322 /* change the current channel setting */
2323 *max_channelsp = chmode[mode].channels;
2324 if (chmode[mode].sequence)
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002325 snd_hda_sequence_write_cache(codec, chmode[mode].sequence);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002326 return 1;
2327}
2328
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329/*
2330 * input MUX helper
2331 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002332int snd_hda_input_mux_info(const struct hda_input_mux *imux,
2333 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334{
2335 unsigned int index;
2336
2337 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2338 uinfo->count = 1;
2339 uinfo->value.enumerated.items = imux->num_items;
2340 index = uinfo->value.enumerated.item;
2341 if (index >= imux->num_items)
2342 index = imux->num_items - 1;
2343 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
2344 return 0;
2345}
2346
Takashi Iwai0ba21762007-04-16 11:29:14 +02002347int snd_hda_input_mux_put(struct hda_codec *codec,
2348 const struct hda_input_mux *imux,
2349 struct snd_ctl_elem_value *ucontrol,
2350 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 unsigned int *cur_val)
2352{
2353 unsigned int idx;
2354
2355 idx = ucontrol->value.enumerated.item[0];
2356 if (idx >= imux->num_items)
2357 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002358 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002360 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
2361 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 *cur_val = idx;
2363 return 1;
2364}
2365
2366
2367/*
2368 * Multi-channel / digital-out PCM helper functions
2369 */
2370
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002371/* setup SPDIF output stream */
2372static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
2373 unsigned int stream_tag, unsigned int format)
2374{
2375 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
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 & ~AC_DIG1_ENABLE & 0xff);
2379 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
2380 /* turn on again (if needed) */
2381 if (codec->spdif_ctls & AC_DIG1_ENABLE)
2382 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_DIGI_CONVERT_1,
2383 codec->spdif_ctls & 0xff);
2384}
2385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386/*
2387 * open the digital out in the exclusive mode
2388 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002389int snd_hda_multi_out_dig_open(struct hda_codec *codec,
2390 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391{
Ingo Molnar62932df2006-01-16 16:34:20 +01002392 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02002393 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
2394 /* already opened as analog dup; reset it once */
2395 snd_hda_codec_setup_stream(codec, mout->dig_out_nid, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01002397 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 return 0;
2399}
2400
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002401int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
2402 struct hda_multi_out *mout,
2403 unsigned int stream_tag,
2404 unsigned int format,
2405 struct snd_pcm_substream *substream)
2406{
2407 mutex_lock(&codec->spdif_mutex);
2408 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
2409 mutex_unlock(&codec->spdif_mutex);
2410 return 0;
2411}
2412
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413/*
2414 * release the digital out
2415 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002416int snd_hda_multi_out_dig_close(struct hda_codec *codec,
2417 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418{
Ingo Molnar62932df2006-01-16 16:34:20 +01002419 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01002421 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 return 0;
2423}
2424
2425/*
2426 * set up more restrictions for analog out
2427 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002428int snd_hda_multi_out_analog_open(struct hda_codec *codec,
2429 struct hda_multi_out *mout,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002430 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431{
2432 substream->runtime->hw.channels_max = mout->max_channels;
2433 return snd_pcm_hw_constraint_step(substream->runtime, 0,
2434 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
2435}
2436
2437/*
2438 * set up the i/o for analog out
2439 * when the digital out is available, copy the front out to digital out, too.
2440 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002441int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
2442 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 unsigned int stream_tag,
2444 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002445 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446{
2447 hda_nid_t *nids = mout->dac_nids;
2448 int chs = substream->runtime->channels;
2449 int i;
2450
Ingo Molnar62932df2006-01-16 16:34:20 +01002451 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 if (mout->dig_out_nid && mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
2453 if (chs == 2 &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02002454 snd_hda_is_supported_format(codec, mout->dig_out_nid,
2455 format) &&
2456 !(codec->spdif_status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002458 setup_dig_out_stream(codec, mout->dig_out_nid,
2459 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 } else {
2461 mout->dig_out_used = 0;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002462 snd_hda_codec_setup_stream(codec, mout->dig_out_nid,
2463 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 }
2465 }
Ingo Molnar62932df2006-01-16 16:34:20 +01002466 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
2468 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002469 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
2470 0, format);
Takashi Iwai35aec4e2006-07-28 14:44:31 +02002471 if (mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002473 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
2474 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01002475 /* extra outputs copied from front */
2476 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
2477 if (mout->extra_out_nid[i])
2478 snd_hda_codec_setup_stream(codec,
2479 mout->extra_out_nid[i],
2480 stream_tag, 0, format);
2481
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 /* surrounds */
2483 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02002484 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002485 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
2486 i * 2, format);
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02002487 else /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002488 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
2489 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 }
2491 return 0;
2492}
2493
2494/*
2495 * clean up the setting for analog out
2496 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002497int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
2498 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499{
2500 hda_nid_t *nids = mout->dac_nids;
2501 int i;
2502
2503 for (i = 0; i < mout->num_dacs; i++)
2504 snd_hda_codec_setup_stream(codec, nids[i], 0, 0, 0);
2505 if (mout->hp_nid)
2506 snd_hda_codec_setup_stream(codec, mout->hp_nid, 0, 0, 0);
Takashi Iwai82bc9552006-03-21 11:24:42 +01002507 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
2508 if (mout->extra_out_nid[i])
2509 snd_hda_codec_setup_stream(codec,
2510 mout->extra_out_nid[i],
2511 0, 0, 0);
Ingo Molnar62932df2006-01-16 16:34:20 +01002512 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
2514 snd_hda_codec_setup_stream(codec, mout->dig_out_nid, 0, 0, 0);
2515 mout->dig_out_used = 0;
2516 }
Ingo Molnar62932df2006-01-16 16:34:20 +01002517 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 return 0;
2519}
2520
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002521/*
2522 * Helper for automatic ping configuration
2523 */
Kailang Yangdf694da2005-12-05 19:42:22 +01002524
Takashi Iwai12f288b2007-08-02 15:51:59 +02002525static int is_in_nid_list(hda_nid_t nid, hda_nid_t *list)
Kailang Yangdf694da2005-12-05 19:42:22 +01002526{
2527 for (; *list; list++)
2528 if (*list == nid)
2529 return 1;
2530 return 0;
2531}
2532
Steve Longerbeam81937d32007-05-08 15:33:03 +02002533
2534/*
2535 * Sort an associated group of pins according to their sequence numbers.
2536 */
2537static void sort_pins_by_sequence(hda_nid_t * pins, short * sequences,
2538 int num_pins)
2539{
2540 int i, j;
2541 short seq;
2542 hda_nid_t nid;
2543
2544 for (i = 0; i < num_pins; i++) {
2545 for (j = i + 1; j < num_pins; j++) {
2546 if (sequences[i] > sequences[j]) {
2547 seq = sequences[i];
2548 sequences[i] = sequences[j];
2549 sequences[j] = seq;
2550 nid = pins[i];
2551 pins[i] = pins[j];
2552 pins[j] = nid;
2553 }
2554 }
2555 }
2556}
2557
2558
Takashi Iwai82bc9552006-03-21 11:24:42 +01002559/*
2560 * Parse all pin widgets and store the useful pin nids to cfg
2561 *
2562 * The number of line-outs or any primary output is stored in line_outs,
2563 * and the corresponding output pins are assigned to line_out_pins[],
2564 * in the order of front, rear, CLFE, side, ...
2565 *
2566 * If more extra outputs (speaker and headphone) are found, the pins are
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002567 * assisnged to hp_pins[] and speaker_pins[], respectively. If no line-out jack
Takashi Iwai82bc9552006-03-21 11:24:42 +01002568 * is detected, one of speaker of HP pins is assigned as the primary
2569 * output, i.e. to line_out_pins[0]. So, line_outs is always positive
2570 * if any analog output exists.
2571 *
2572 * The analog input pins are assigned to input_pins array.
2573 * The digital input/output pins are assigned to dig_in_pin and dig_out_pin,
2574 * respectively.
2575 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002576int snd_hda_parse_pin_def_config(struct hda_codec *codec,
2577 struct auto_pin_cfg *cfg,
2578 hda_nid_t *ignore_nids)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002579{
2580 hda_nid_t nid, nid_start;
Steve Longerbeam81937d32007-05-08 15:33:03 +02002581 int nodes;
2582 short seq, assoc_line_out, assoc_speaker;
2583 short sequences_line_out[ARRAY_SIZE(cfg->line_out_pins)];
2584 short sequences_speaker[ARRAY_SIZE(cfg->speaker_pins)];
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002585
2586 memset(cfg, 0, sizeof(*cfg));
2587
Steve Longerbeam81937d32007-05-08 15:33:03 +02002588 memset(sequences_line_out, 0, sizeof(sequences_line_out));
2589 memset(sequences_speaker, 0, sizeof(sequences_speaker));
2590 assoc_line_out = assoc_speaker = 0;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002591
2592 nodes = snd_hda_get_sub_nodes(codec, codec->afg, &nid_start);
2593 for (nid = nid_start; nid < nodes + nid_start; nid++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01002594 unsigned int wid_caps = get_wcaps(codec, nid);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002595 unsigned int wid_type =
2596 (wid_caps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002597 unsigned int def_conf;
2598 short assoc, loc;
2599
2600 /* read all default configuration for pin complex */
2601 if (wid_type != AC_WID_PIN)
2602 continue;
Kailang Yangdf694da2005-12-05 19:42:22 +01002603 /* ignore the given nids (e.g. pc-beep returns error) */
2604 if (ignore_nids && is_in_nid_list(nid, ignore_nids))
2605 continue;
2606
Takashi Iwai0ba21762007-04-16 11:29:14 +02002607 def_conf = snd_hda_codec_read(codec, nid, 0,
2608 AC_VERB_GET_CONFIG_DEFAULT, 0);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002609 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
2610 continue;
2611 loc = get_defcfg_location(def_conf);
2612 switch (get_defcfg_device(def_conf)) {
2613 case AC_JACK_LINE_OUT:
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002614 seq = get_defcfg_sequence(def_conf);
2615 assoc = get_defcfg_association(def_conf);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002616 if (!assoc)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002617 continue;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002618 if (!assoc_line_out)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002619 assoc_line_out = assoc;
2620 else if (assoc_line_out != assoc)
2621 continue;
2622 if (cfg->line_outs >= ARRAY_SIZE(cfg->line_out_pins))
2623 continue;
2624 cfg->line_out_pins[cfg->line_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02002625 sequences_line_out[cfg->line_outs] = seq;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002626 cfg->line_outs++;
2627 break;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01002628 case AC_JACK_SPEAKER:
Steve Longerbeam81937d32007-05-08 15:33:03 +02002629 seq = get_defcfg_sequence(def_conf);
2630 assoc = get_defcfg_association(def_conf);
2631 if (! assoc)
2632 continue;
2633 if (! assoc_speaker)
2634 assoc_speaker = assoc;
2635 else if (assoc_speaker != assoc)
2636 continue;
Takashi Iwai82bc9552006-03-21 11:24:42 +01002637 if (cfg->speaker_outs >= ARRAY_SIZE(cfg->speaker_pins))
2638 continue;
2639 cfg->speaker_pins[cfg->speaker_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02002640 sequences_speaker[cfg->speaker_outs] = seq;
Takashi Iwai82bc9552006-03-21 11:24:42 +01002641 cfg->speaker_outs++;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01002642 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002643 case AC_JACK_HP_OUT:
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002644 if (cfg->hp_outs >= ARRAY_SIZE(cfg->hp_pins))
2645 continue;
2646 cfg->hp_pins[cfg->hp_outs] = nid;
2647 cfg->hp_outs++;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002648 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02002649 case AC_JACK_MIC_IN: {
2650 int preferred, alt;
2651 if (loc == AC_JACK_LOC_FRONT) {
2652 preferred = AUTO_PIN_FRONT_MIC;
2653 alt = AUTO_PIN_MIC;
2654 } else {
2655 preferred = AUTO_PIN_MIC;
2656 alt = AUTO_PIN_FRONT_MIC;
2657 }
2658 if (!cfg->input_pins[preferred])
2659 cfg->input_pins[preferred] = nid;
2660 else if (!cfg->input_pins[alt])
2661 cfg->input_pins[alt] = nid;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002662 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02002663 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002664 case AC_JACK_LINE_IN:
2665 if (loc == AC_JACK_LOC_FRONT)
2666 cfg->input_pins[AUTO_PIN_FRONT_LINE] = nid;
2667 else
2668 cfg->input_pins[AUTO_PIN_LINE] = nid;
2669 break;
2670 case AC_JACK_CD:
2671 cfg->input_pins[AUTO_PIN_CD] = nid;
2672 break;
2673 case AC_JACK_AUX:
2674 cfg->input_pins[AUTO_PIN_AUX] = nid;
2675 break;
2676 case AC_JACK_SPDIF_OUT:
2677 cfg->dig_out_pin = nid;
2678 break;
2679 case AC_JACK_SPDIF_IN:
2680 cfg->dig_in_pin = nid;
2681 break;
2682 }
2683 }
2684
2685 /* sort by sequence */
Steve Longerbeam81937d32007-05-08 15:33:03 +02002686 sort_pins_by_sequence(cfg->line_out_pins, sequences_line_out,
2687 cfg->line_outs);
2688 sort_pins_by_sequence(cfg->speaker_pins, sequences_speaker,
2689 cfg->speaker_outs);
2690
2691 /*
2692 * FIX-UP: if no line-outs are detected, try to use speaker or HP pin
2693 * as a primary output
2694 */
2695 if (!cfg->line_outs) {
2696 if (cfg->speaker_outs) {
2697 cfg->line_outs = cfg->speaker_outs;
2698 memcpy(cfg->line_out_pins, cfg->speaker_pins,
2699 sizeof(cfg->speaker_pins));
2700 cfg->speaker_outs = 0;
2701 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
2702 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
2703 } else if (cfg->hp_outs) {
2704 cfg->line_outs = cfg->hp_outs;
2705 memcpy(cfg->line_out_pins, cfg->hp_pins,
2706 sizeof(cfg->hp_pins));
2707 cfg->hp_outs = 0;
2708 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
2709 cfg->line_out_type = AUTO_PIN_HP_OUT;
2710 }
2711 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002712
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02002713 /* Reorder the surround channels
2714 * ALSA sequence is front/surr/clfe/side
2715 * HDA sequence is:
2716 * 4-ch: front/surr => OK as it is
2717 * 6-ch: front/clfe/surr
Takashi Iwai9422db42007-04-20 16:11:43 +02002718 * 8-ch: front/clfe/rear/side|fc
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02002719 */
2720 switch (cfg->line_outs) {
2721 case 3:
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02002722 case 4:
2723 nid = cfg->line_out_pins[1];
Takashi Iwai9422db42007-04-20 16:11:43 +02002724 cfg->line_out_pins[1] = cfg->line_out_pins[2];
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02002725 cfg->line_out_pins[2] = nid;
2726 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002727 }
2728
Takashi Iwai82bc9552006-03-21 11:24:42 +01002729 /*
2730 * debug prints of the parsed results
2731 */
2732 snd_printd("autoconfig: line_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
2733 cfg->line_outs, cfg->line_out_pins[0], cfg->line_out_pins[1],
2734 cfg->line_out_pins[2], cfg->line_out_pins[3],
2735 cfg->line_out_pins[4]);
2736 snd_printd(" speaker_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
2737 cfg->speaker_outs, cfg->speaker_pins[0],
2738 cfg->speaker_pins[1], cfg->speaker_pins[2],
2739 cfg->speaker_pins[3], cfg->speaker_pins[4]);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002740 snd_printd(" hp_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
2741 cfg->hp_outs, cfg->hp_pins[0],
2742 cfg->hp_pins[1], cfg->hp_pins[2],
2743 cfg->hp_pins[3], cfg->hp_pins[4]);
Takashi Iwai82bc9552006-03-21 11:24:42 +01002744 snd_printd(" inputs: mic=0x%x, fmic=0x%x, line=0x%x, fline=0x%x,"
2745 " cd=0x%x, aux=0x%x\n",
2746 cfg->input_pins[AUTO_PIN_MIC],
2747 cfg->input_pins[AUTO_PIN_FRONT_MIC],
2748 cfg->input_pins[AUTO_PIN_LINE],
2749 cfg->input_pins[AUTO_PIN_FRONT_LINE],
2750 cfg->input_pins[AUTO_PIN_CD],
2751 cfg->input_pins[AUTO_PIN_AUX]);
2752
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002753 return 0;
2754}
2755
Takashi Iwai4a471b72005-12-07 13:56:29 +01002756/* labels for input pins */
2757const char *auto_pin_cfg_labels[AUTO_PIN_LAST] = {
2758 "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux"
2759};
2760
2761
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762#ifdef CONFIG_PM
2763/*
2764 * power management
2765 */
2766
2767/**
2768 * snd_hda_suspend - suspend the codecs
2769 * @bus: the HDA bus
2770 * @state: suspsend state
2771 *
2772 * Returns 0 if successful.
2773 */
2774int snd_hda_suspend(struct hda_bus *bus, pm_message_t state)
2775{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002776 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777
Takashi Iwai0ba21762007-04-16 11:29:14 +02002778 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai0b7a2e92007-08-14 15:18:26 +02002779#ifdef CONFIG_SND_HDA_POWER_SAVE
2780 if (!codec->power_on)
2781 continue;
2782#endif
Takashi Iwaicb53c622007-08-10 17:21:45 +02002783 hda_call_codec_suspend(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 }
2785 return 0;
2786}
2787
Takashi Iwaicb53c622007-08-10 17:21:45 +02002788#ifndef CONFIG_SND_HDA_POWER_SAVE
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789/**
2790 * snd_hda_resume - resume the codecs
2791 * @bus: the HDA bus
2792 * @state: resume state
2793 *
2794 * Returns 0 if successful.
Takashi Iwaicb53c622007-08-10 17:21:45 +02002795 *
2796 * This fucntion is defined only when POWER_SAVE isn't set.
2797 * In the power-save mode, the codec is resumed dynamically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 */
2799int snd_hda_resume(struct hda_bus *bus)
2800{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002801 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
Takashi Iwai0ba21762007-04-16 11:29:14 +02002803 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwaicb53c622007-08-10 17:21:45 +02002804 hda_call_codec_resume(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 return 0;
2807}
Takashi Iwaicb53c622007-08-10 17:21:45 +02002808#endif /* !CONFIG_SND_HDA_POWER_SAVE */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810#endif