blob: dacabe52a41cf8afdb3f13371779bfdd656ad543 [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 */
Takashi Iwai7a5a27c2007-09-17 19:07:46 +020038static int power_save = CONFIG_SND_HDA_POWER_SAVE_DEFAULT;
Takashi Iwaicb53c622007-08-10 17:21:45 +020039module_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" },
Matthew Ranostay7f168592007-10-18 17:38:17 +020058 { 0x111d, "IDT" },
Takashi Iwai54b903e2005-05-15 14:30:10 +020059 { 0x11d4, "Analog Devices" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 { 0x13f6, "C-Media" },
Takashi Iwaia9226252006-09-17 22:05:54 +020061 { 0x14f1, "Conexant" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 { 0x434d, "C-Media" },
Matt2f2f4252005-04-13 14:45:30 +020063 { 0x8384, "SigmaTel" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 {} /* terminator */
65};
66
67/* codec presets */
68#include "hda_patch.h"
69
70
Takashi Iwaicb53c622007-08-10 17:21:45 +020071#ifdef CONFIG_SND_HDA_POWER_SAVE
72static void hda_power_work(struct work_struct *work);
73static void hda_keep_power_on(struct hda_codec *codec);
74#else
75static inline void hda_keep_power_on(struct hda_codec *codec) {}
76#endif
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078/**
79 * snd_hda_codec_read - send a command and get the response
80 * @codec: the HDA codec
81 * @nid: NID to send the command
82 * @direct: direct flag
83 * @verb: the verb to send
84 * @parm: the parameter for the verb
85 *
86 * Send a single command and read the corresponding response.
87 *
88 * Returns the obtained response value, or -1 for an error.
89 */
Takashi Iwai0ba21762007-04-16 11:29:14 +020090unsigned int snd_hda_codec_read(struct hda_codec *codec, hda_nid_t nid,
91 int direct,
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 unsigned int verb, unsigned int parm)
93{
94 unsigned int res;
Takashi Iwaicb53c622007-08-10 17:21:45 +020095 snd_hda_power_up(codec);
Ingo Molnar62932df2006-01-16 16:34:20 +010096 mutex_lock(&codec->bus->cmd_mutex);
Takashi Iwai0ba21762007-04-16 11:29:14 +020097 if (!codec->bus->ops.command(codec, nid, direct, verb, parm))
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 res = codec->bus->ops.get_response(codec);
99 else
100 res = (unsigned int)-1;
Ingo Molnar62932df2006-01-16 16:34:20 +0100101 mutex_unlock(&codec->bus->cmd_mutex);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200102 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 return res;
104}
105
106/**
107 * snd_hda_codec_write - send a single command without waiting for response
108 * @codec: the HDA codec
109 * @nid: NID to send the command
110 * @direct: direct flag
111 * @verb: the verb to send
112 * @parm: the parameter for the verb
113 *
114 * Send a single command without waiting for response.
115 *
116 * Returns 0 if successful, or a negative error code.
117 */
118int snd_hda_codec_write(struct hda_codec *codec, hda_nid_t nid, int direct,
119 unsigned int verb, unsigned int parm)
120{
121 int err;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200122 snd_hda_power_up(codec);
Ingo Molnar62932df2006-01-16 16:34:20 +0100123 mutex_lock(&codec->bus->cmd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 err = codec->bus->ops.command(codec, nid, direct, verb, parm);
Ingo Molnar62932df2006-01-16 16:34:20 +0100125 mutex_unlock(&codec->bus->cmd_mutex);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200126 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 return err;
128}
129
130/**
131 * snd_hda_sequence_write - sequence writes
132 * @codec: the HDA codec
133 * @seq: VERB array to send
134 *
135 * Send the commands sequentially from the given array.
136 * The array must be terminated with NID=0.
137 */
138void snd_hda_sequence_write(struct hda_codec *codec, const struct hda_verb *seq)
139{
140 for (; seq->nid; seq++)
141 snd_hda_codec_write(codec, seq->nid, 0, seq->verb, seq->param);
142}
143
144/**
145 * snd_hda_get_sub_nodes - get the range of sub nodes
146 * @codec: the HDA codec
147 * @nid: NID to parse
148 * @start_id: the pointer to store the start NID
149 *
150 * Parse the NID and store the start NID of its sub-nodes.
151 * Returns the number of sub-nodes.
152 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200153int snd_hda_get_sub_nodes(struct hda_codec *codec, hda_nid_t nid,
154 hda_nid_t *start_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
156 unsigned int parm;
157
158 parm = snd_hda_param_read(codec, nid, AC_PAR_NODE_COUNT);
Danny Tholene8a7f132007-09-11 21:41:56 +0200159 if (parm == -1)
160 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 *start_id = (parm >> 16) & 0x7fff;
162 return (int)(parm & 0x7fff);
163}
164
165/**
166 * snd_hda_get_connections - get connection list
167 * @codec: the HDA codec
168 * @nid: NID to parse
169 * @conn_list: connection list array
170 * @max_conns: max. number of connections to store
171 *
172 * Parses the connection list of the given widget and stores the list
173 * of NIDs.
174 *
175 * Returns the number of connections, or a negative error code.
176 */
177int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid,
178 hda_nid_t *conn_list, int max_conns)
179{
180 unsigned int parm;
Takashi Iwai54d17402005-11-21 16:33:22 +0100181 int i, conn_len, conns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 unsigned int shift, num_elems, mask;
Takashi Iwai54d17402005-11-21 16:33:22 +0100183 hda_nid_t prev_nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 snd_assert(conn_list && max_conns > 0, return -EINVAL);
186
187 parm = snd_hda_param_read(codec, nid, AC_PAR_CONNLIST_LEN);
188 if (parm & AC_CLIST_LONG) {
189 /* long form */
190 shift = 16;
191 num_elems = 2;
192 } else {
193 /* short form */
194 shift = 8;
195 num_elems = 4;
196 }
197 conn_len = parm & AC_CLIST_LENGTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 mask = (1 << (shift-1)) - 1;
199
Takashi Iwai0ba21762007-04-16 11:29:14 +0200200 if (!conn_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 return 0; /* no connection */
202
203 if (conn_len == 1) {
204 /* single connection */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200205 parm = snd_hda_codec_read(codec, nid, 0,
206 AC_VERB_GET_CONNECT_LIST, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 conn_list[0] = parm & mask;
208 return 1;
209 }
210
211 /* multi connection */
212 conns = 0;
Takashi Iwai54d17402005-11-21 16:33:22 +0100213 prev_nid = 0;
214 for (i = 0; i < conn_len; i++) {
215 int range_val;
216 hda_nid_t val, n;
217
218 if (i % num_elems == 0)
219 parm = snd_hda_codec_read(codec, nid, 0,
220 AC_VERB_GET_CONNECT_LIST, i);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200221 range_val = !!(parm & (1 << (shift-1))); /* ranges */
Takashi Iwai54d17402005-11-21 16:33:22 +0100222 val = parm & mask;
223 parm >>= shift;
224 if (range_val) {
225 /* ranges between the previous and this one */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200226 if (!prev_nid || prev_nid >= val) {
227 snd_printk(KERN_WARNING "hda_codec: "
228 "invalid dep_range_val %x:%x\n",
229 prev_nid, val);
Takashi Iwai54d17402005-11-21 16:33:22 +0100230 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100232 for (n = prev_nid + 1; n <= val; n++) {
233 if (conns >= max_conns) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200234 snd_printk(KERN_ERR
235 "Too many connections\n");
Takashi Iwai54d17402005-11-21 16:33:22 +0100236 return -EINVAL;
237 }
238 conn_list[conns++] = n;
239 }
240 } else {
241 if (conns >= max_conns) {
242 snd_printk(KERN_ERR "Too many connections\n");
243 return -EINVAL;
244 }
245 conn_list[conns++] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100247 prev_nid = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
249 return conns;
250}
251
252
253/**
254 * snd_hda_queue_unsol_event - add an unsolicited event to queue
255 * @bus: the BUS
256 * @res: unsolicited event (lower 32bit of RIRB entry)
257 * @res_ex: codec addr and flags (upper 32bit or RIRB entry)
258 *
259 * Adds the given event to the queue. The events are processed in
260 * the workqueue asynchronously. Call this function in the interrupt
261 * hanlder when RIRB receives an unsolicited event.
262 *
263 * Returns 0 if successful, or a negative error code.
264 */
265int snd_hda_queue_unsol_event(struct hda_bus *bus, u32 res, u32 res_ex)
266{
267 struct hda_bus_unsolicited *unsol;
268 unsigned int wp;
269
Takashi Iwai0ba21762007-04-16 11:29:14 +0200270 unsol = bus->unsol;
271 if (!unsol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return 0;
273
274 wp = (unsol->wp + 1) % HDA_UNSOL_QUEUE_SIZE;
275 unsol->wp = wp;
276
277 wp <<= 1;
278 unsol->queue[wp] = res;
279 unsol->queue[wp + 1] = res_ex;
280
Takashi Iwaie250af22006-12-19 17:08:52 +0100281 schedule_work(&unsol->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 return 0;
284}
285
286/*
287 * process queueud unsolicited events
288 */
David Howellsc4028952006-11-22 14:57:56 +0000289static void process_unsol_events(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
David Howellsc4028952006-11-22 14:57:56 +0000291 struct hda_bus_unsolicited *unsol =
292 container_of(work, struct hda_bus_unsolicited, work);
293 struct hda_bus *bus = unsol->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 struct hda_codec *codec;
295 unsigned int rp, caddr, res;
296
297 while (unsol->rp != unsol->wp) {
298 rp = (unsol->rp + 1) % HDA_UNSOL_QUEUE_SIZE;
299 unsol->rp = rp;
300 rp <<= 1;
301 res = unsol->queue[rp];
302 caddr = unsol->queue[rp + 1];
Takashi Iwai0ba21762007-04-16 11:29:14 +0200303 if (!(caddr & (1 << 4))) /* no unsolicited event? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 continue;
305 codec = bus->caddr_tbl[caddr & 0x0f];
306 if (codec && codec->patch_ops.unsol_event)
307 codec->patch_ops.unsol_event(codec, res);
308 }
309}
310
311/*
312 * initialize unsolicited queue
313 */
Takashi Iwai756e2b02007-04-16 11:27:07 +0200314static int __devinit init_unsol_queue(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
316 struct hda_bus_unsolicited *unsol;
317
Takashi Iwai9f146bb2005-11-17 11:07:49 +0100318 if (bus->unsol) /* already initialized */
319 return 0;
320
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200321 unsol = kzalloc(sizeof(*unsol), GFP_KERNEL);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200322 if (!unsol) {
323 snd_printk(KERN_ERR "hda_codec: "
324 "can't allocate unsolicited queue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 return -ENOMEM;
326 }
David Howellsc4028952006-11-22 14:57:56 +0000327 INIT_WORK(&unsol->work, process_unsol_events);
328 unsol->bus = bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 bus->unsol = unsol;
330 return 0;
331}
332
333/*
334 * destructor
335 */
336static void snd_hda_codec_free(struct hda_codec *codec);
337
338static int snd_hda_bus_free(struct hda_bus *bus)
339{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200340 struct hda_codec *codec, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Takashi Iwai0ba21762007-04-16 11:29:14 +0200342 if (!bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 return 0;
344 if (bus->unsol) {
Takashi Iwaie250af22006-12-19 17:08:52 +0100345 flush_scheduled_work();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 kfree(bus->unsol);
347 }
Takashi Iwai0ba21762007-04-16 11:29:14 +0200348 list_for_each_entry_safe(codec, n, &bus->codec_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 snd_hda_codec_free(codec);
350 }
351 if (bus->ops.private_free)
352 bus->ops.private_free(bus);
353 kfree(bus);
354 return 0;
355}
356
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100357static int snd_hda_bus_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358{
359 struct hda_bus *bus = device->device_data;
360 return snd_hda_bus_free(bus);
361}
362
363/**
364 * snd_hda_bus_new - create a HDA bus
365 * @card: the card entry
366 * @temp: the template for hda_bus information
367 * @busp: the pointer to store the created bus instance
368 *
369 * Returns 0 if successful, or a negative error code.
370 */
Takashi Iwai756e2b02007-04-16 11:27:07 +0200371int __devinit snd_hda_bus_new(struct snd_card *card,
372 const struct hda_bus_template *temp,
373 struct hda_bus **busp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
375 struct hda_bus *bus;
376 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100377 static struct snd_device_ops dev_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 .dev_free = snd_hda_bus_dev_free,
379 };
380
381 snd_assert(temp, return -EINVAL);
382 snd_assert(temp->ops.command && temp->ops.get_response, return -EINVAL);
383
384 if (busp)
385 *busp = NULL;
386
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200387 bus = kzalloc(sizeof(*bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 if (bus == NULL) {
389 snd_printk(KERN_ERR "can't allocate struct hda_bus\n");
390 return -ENOMEM;
391 }
392
393 bus->card = card;
394 bus->private_data = temp->private_data;
395 bus->pci = temp->pci;
396 bus->modelname = temp->modelname;
397 bus->ops = temp->ops;
398
Ingo Molnar62932df2006-01-16 16:34:20 +0100399 mutex_init(&bus->cmd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 INIT_LIST_HEAD(&bus->codec_list);
401
Takashi Iwai0ba21762007-04-16 11:29:14 +0200402 err = snd_device_new(card, SNDRV_DEV_BUS, bus, &dev_ops);
403 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 snd_hda_bus_free(bus);
405 return err;
406 }
407 if (busp)
408 *busp = bus;
409 return 0;
410}
411
Takashi Iwai82467612007-07-27 19:15:54 +0200412#ifdef CONFIG_SND_HDA_GENERIC
413#define is_generic_config(codec) \
414 (codec->bus->modelname && !strcmp(codec->bus->modelname, "generic"))
415#else
416#define is_generic_config(codec) 0
417#endif
418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419/*
420 * find a matching codec preset
421 */
Takashi Iwai756e2b02007-04-16 11:27:07 +0200422static const struct hda_codec_preset __devinit *
423find_codec_preset(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
425 const struct hda_codec_preset **tbl, *preset;
426
Takashi Iwai82467612007-07-27 19:15:54 +0200427 if (is_generic_config(codec))
Takashi Iwaid5ad6302007-03-07 15:55:59 +0100428 return NULL; /* use the generic parser */
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 for (tbl = hda_preset_tables; *tbl; tbl++) {
431 for (preset = *tbl; preset->id; preset++) {
432 u32 mask = preset->mask;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200433 if (!mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 mask = ~0;
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200435 if (preset->id == (codec->vendor_id & mask) &&
Takashi Iwai0ba21762007-04-16 11:29:14 +0200436 (!preset->rev ||
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200437 preset->rev == codec->revision_id))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return preset;
439 }
440 }
441 return NULL;
442}
443
444/*
445 * snd_hda_get_codec_name - store the codec name
446 */
447void snd_hda_get_codec_name(struct hda_codec *codec,
448 char *name, int namelen)
449{
450 const struct hda_vendor_id *c;
451 const char *vendor = NULL;
452 u16 vendor_id = codec->vendor_id >> 16;
453 char tmp[16];
454
455 for (c = hda_vendor_ids; c->id; c++) {
456 if (c->id == vendor_id) {
457 vendor = c->name;
458 break;
459 }
460 }
Takashi Iwai0ba21762007-04-16 11:29:14 +0200461 if (!vendor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 sprintf(tmp, "Generic %04x", vendor_id);
463 vendor = tmp;
464 }
465 if (codec->preset && codec->preset->name)
466 snprintf(name, namelen, "%s %s", vendor, codec->preset->name);
467 else
Takashi Iwai0ba21762007-04-16 11:29:14 +0200468 snprintf(name, namelen, "%s ID %x", vendor,
469 codec->vendor_id & 0xffff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
472/*
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200473 * look for an AFG and MFG nodes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 */
Takashi Iwai756e2b02007-04-16 11:27:07 +0200475static void __devinit setup_fg_nodes(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
477 int i, total_nodes;
478 hda_nid_t nid;
479
480 total_nodes = snd_hda_get_sub_nodes(codec, AC_NODE_ROOT, &nid);
481 for (i = 0; i < total_nodes; i++, nid++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200482 unsigned int func;
483 func = snd_hda_param_read(codec, nid, AC_PAR_FUNCTION_TYPE);
484 switch (func & 0xff) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200485 case AC_GRP_AUDIO_FUNCTION:
486 codec->afg = nid;
487 break;
488 case AC_GRP_MODEM_FUNCTION:
489 codec->mfg = nid;
490 break;
491 default:
492 break;
493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495}
496
497/*
Takashi Iwai54d17402005-11-21 16:33:22 +0100498 * read widget caps for each widget and store in cache
499 */
500static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node)
501{
502 int i;
503 hda_nid_t nid;
504
505 codec->num_nodes = snd_hda_get_sub_nodes(codec, fg_node,
506 &codec->start_nid);
507 codec->wcaps = kmalloc(codec->num_nodes * 4, GFP_KERNEL);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200508 if (!codec->wcaps)
Takashi Iwai54d17402005-11-21 16:33:22 +0100509 return -ENOMEM;
510 nid = codec->start_nid;
511 for (i = 0; i < codec->num_nodes; i++, nid++)
512 codec->wcaps[i] = snd_hda_param_read(codec, nid,
513 AC_PAR_AUDIO_WIDGET_CAP);
514 return 0;
515}
516
517
Takashi Iwai01751f52007-08-10 16:59:39 +0200518static void init_hda_cache(struct hda_cache_rec *cache,
519 unsigned int record_size);
Takashi Iwai1fcaee62007-08-23 00:01:09 +0200520static void free_hda_cache(struct hda_cache_rec *cache);
Takashi Iwai01751f52007-08-10 16:59:39 +0200521
Takashi Iwai54d17402005-11-21 16:33:22 +0100522/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 * codec destructor
524 */
525static void snd_hda_codec_free(struct hda_codec *codec)
526{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200527 if (!codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 return;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200529#ifdef CONFIG_SND_HDA_POWER_SAVE
530 cancel_delayed_work(&codec->power_work);
Takashi Iwai2525fdc2007-08-15 22:18:22 +0200531 flush_scheduled_work();
Takashi Iwaicb53c622007-08-10 17:21:45 +0200532#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 list_del(&codec->list);
534 codec->bus->caddr_tbl[codec->addr] = NULL;
535 if (codec->patch_ops.free)
536 codec->patch_ops.free(codec);
Takashi Iwai01751f52007-08-10 16:59:39 +0200537 free_hda_cache(&codec->amp_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200538 free_hda_cache(&codec->cmd_cache);
Takashi Iwai54d17402005-11-21 16:33:22 +0100539 kfree(codec->wcaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 kfree(codec);
541}
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543/**
544 * snd_hda_codec_new - create a HDA codec
545 * @bus: the bus to assign
546 * @codec_addr: the codec address
547 * @codecp: the pointer to store the generated codec
548 *
549 * Returns 0 if successful, or a negative error code.
550 */
Takashi Iwai756e2b02007-04-16 11:27:07 +0200551int __devinit snd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr,
552 struct hda_codec **codecp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
554 struct hda_codec *codec;
555 char component[13];
556 int err;
557
558 snd_assert(bus, return -EINVAL);
559 snd_assert(codec_addr <= HDA_MAX_CODEC_ADDRESS, return -EINVAL);
560
561 if (bus->caddr_tbl[codec_addr]) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200562 snd_printk(KERN_ERR "hda_codec: "
563 "address 0x%x is already occupied\n", codec_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 return -EBUSY;
565 }
566
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200567 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 if (codec == NULL) {
569 snd_printk(KERN_ERR "can't allocate struct hda_codec\n");
570 return -ENOMEM;
571 }
572
573 codec->bus = bus;
574 codec->addr = codec_addr;
Ingo Molnar62932df2006-01-16 16:34:20 +0100575 mutex_init(&codec->spdif_mutex);
Takashi Iwai01751f52007-08-10 16:59:39 +0200576 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200577 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Takashi Iwaicb53c622007-08-10 17:21:45 +0200579#ifdef CONFIG_SND_HDA_POWER_SAVE
580 INIT_DELAYED_WORK(&codec->power_work, hda_power_work);
581 /* snd_hda_codec_new() marks the codec as power-up, and leave it as is.
582 * the caller has to power down appropriatley after initialization
583 * phase.
584 */
585 hda_keep_power_on(codec);
586#endif
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 list_add_tail(&codec->list, &bus->codec_list);
589 bus->caddr_tbl[codec_addr] = codec;
590
Takashi Iwai0ba21762007-04-16 11:29:14 +0200591 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
592 AC_PAR_VENDOR_ID);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100593 if (codec->vendor_id == -1)
594 /* read again, hopefully the access method was corrected
595 * in the last read...
596 */
597 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
598 AC_PAR_VENDOR_ID);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200599 codec->subsystem_id = snd_hda_param_read(codec, AC_NODE_ROOT,
600 AC_PAR_SUBSYSTEM_ID);
601 codec->revision_id = snd_hda_param_read(codec, AC_NODE_ROOT,
602 AC_PAR_REV_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200604 setup_fg_nodes(codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200605 if (!codec->afg && !codec->mfg) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200606 snd_printdd("hda_codec: no AFG or MFG node found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 snd_hda_codec_free(codec);
608 return -ENODEV;
609 }
610
Takashi Iwai54d17402005-11-21 16:33:22 +0100611 if (read_widget_caps(codec, codec->afg ? codec->afg : codec->mfg) < 0) {
612 snd_printk(KERN_ERR "hda_codec: cannot malloc\n");
613 snd_hda_codec_free(codec);
614 return -ENOMEM;
615 }
616
Takashi Iwai0ba21762007-04-16 11:29:14 +0200617 if (!codec->subsystem_id) {
Takashi Iwai86284e42005-10-11 15:05:54 +0200618 hda_nid_t nid = codec->afg ? codec->afg : codec->mfg;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200619 codec->subsystem_id =
620 snd_hda_codec_read(codec, nid, 0,
621 AC_VERB_GET_SUBSYSTEM_ID, 0);
Takashi Iwai86284e42005-10-11 15:05:54 +0200622 }
623
Takashi Iwaid5ad6302007-03-07 15:55:59 +0100624 codec->preset = find_codec_preset(codec);
Takashi Iwai43ea1d42007-04-26 19:12:08 +0200625 /* audio codec should override the mixer name */
626 if (codec->afg || !*bus->card->mixername)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 snd_hda_get_codec_name(codec, bus->card->mixername,
628 sizeof(bus->card->mixername));
629
Takashi Iwai82467612007-07-27 19:15:54 +0200630 if (is_generic_config(codec)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 err = snd_hda_parse_generic_codec(codec);
Takashi Iwai82467612007-07-27 19:15:54 +0200632 goto patched;
633 }
Takashi Iwai82467612007-07-27 19:15:54 +0200634 if (codec->preset && codec->preset->patch) {
635 err = codec->preset->patch(codec);
636 goto patched;
637 }
638
639 /* call the default parser */
Takashi Iwai82467612007-07-27 19:15:54 +0200640 err = snd_hda_parse_generic_codec(codec);
Takashi Iwai35a1e0c2007-10-19 08:13:40 +0200641 if (err < 0)
642 printk(KERN_ERR "hda-codec: No codec parser is available\n");
Takashi Iwai82467612007-07-27 19:15:54 +0200643
644 patched:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (err < 0) {
646 snd_hda_codec_free(codec);
647 return err;
648 }
649
Takashi Iwai9f146bb2005-11-17 11:07:49 +0100650 if (codec->patch_ops.unsol_event)
651 init_unsol_queue(bus);
652
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 snd_hda_codec_proc_new(codec);
Takashi Iwai28073142007-07-27 18:58:06 +0200654#ifdef CONFIG_SND_HDA_HWDEP
655 snd_hda_create_hwdep(codec);
656#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
658 sprintf(component, "HDA:%08x", codec->vendor_id);
659 snd_component_add(codec->bus->card, component);
660
661 if (codecp)
662 *codecp = codec;
663 return 0;
664}
665
666/**
667 * snd_hda_codec_setup_stream - set up the codec for streaming
668 * @codec: the CODEC to set up
669 * @nid: the NID to set up
670 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
671 * @channel_id: channel id to pass, zero based.
672 * @format: stream format.
673 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200674void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
675 u32 stream_tag,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 int channel_id, int format)
677{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200678 if (!nid)
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200679 return;
680
Takashi Iwai0ba21762007-04-16 11:29:14 +0200681 snd_printdd("hda_codec_setup_stream: "
682 "NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 nid, stream_tag, channel_id, format);
684 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID,
685 (stream_tag << 4) | channel_id);
686 msleep(1);
687 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, format);
688}
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690/*
691 * amp access functions
692 */
693
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200694/* FIXME: more better hash key? */
695#define HDA_HASH_KEY(nid,dir,idx) (u32)((nid) + ((idx) << 16) + ((dir) << 24))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696#define INFO_AMP_CAPS (1<<0)
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200697#define INFO_AMP_VOL(ch) (1 << (1 + (ch)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699/* initialize the hash table */
Takashi Iwai01751f52007-08-10 16:59:39 +0200700static void __devinit init_hda_cache(struct hda_cache_rec *cache,
701 unsigned int record_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Takashi Iwai01751f52007-08-10 16:59:39 +0200703 memset(cache, 0, sizeof(*cache));
704 memset(cache->hash, 0xff, sizeof(cache->hash));
705 cache->record_size = record_size;
706}
707
Takashi Iwai1fcaee62007-08-23 00:01:09 +0200708static void free_hda_cache(struct hda_cache_rec *cache)
Takashi Iwai01751f52007-08-10 16:59:39 +0200709{
710 kfree(cache->buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
712
713/* query the hash. allocate an entry if not found. */
Takashi Iwai01751f52007-08-10 16:59:39 +0200714static struct hda_cache_head *get_alloc_hash(struct hda_cache_rec *cache,
715 u32 key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
Takashi Iwai01751f52007-08-10 16:59:39 +0200717 u16 idx = key % (u16)ARRAY_SIZE(cache->hash);
718 u16 cur = cache->hash[idx];
719 struct hda_cache_head *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 while (cur != 0xffff) {
Takashi Iwai01751f52007-08-10 16:59:39 +0200722 info = (struct hda_cache_head *)(cache->buffer +
723 cur * cache->record_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 if (info->key == key)
725 return info;
726 cur = info->next;
727 }
728
729 /* add a new hash entry */
Takashi Iwai01751f52007-08-10 16:59:39 +0200730 if (cache->num_entries >= cache->size) {
Takashi Iwaid0311662005-11-07 14:38:44 +0100731 /* reallocate the array */
Takashi Iwai01751f52007-08-10 16:59:39 +0200732 unsigned int new_size = cache->size + 64;
733 void *new_buffer;
734 new_buffer = kcalloc(new_size, cache->record_size, GFP_KERNEL);
735 if (!new_buffer) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200736 snd_printk(KERN_ERR "hda_codec: "
737 "can't malloc amp_info\n");
Takashi Iwaid0311662005-11-07 14:38:44 +0100738 return NULL;
739 }
Takashi Iwai01751f52007-08-10 16:59:39 +0200740 if (cache->buffer) {
741 memcpy(new_buffer, cache->buffer,
742 cache->size * cache->record_size);
743 kfree(cache->buffer);
Takashi Iwaid0311662005-11-07 14:38:44 +0100744 }
Takashi Iwai01751f52007-08-10 16:59:39 +0200745 cache->size = new_size;
746 cache->buffer = new_buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
Takashi Iwai01751f52007-08-10 16:59:39 +0200748 cur = cache->num_entries++;
749 info = (struct hda_cache_head *)(cache->buffer +
750 cur * cache->record_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 info->key = key;
Takashi Iwai01751f52007-08-10 16:59:39 +0200752 info->val = 0;
753 info->next = cache->hash[idx];
754 cache->hash[idx] = cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 return info;
757}
758
Takashi Iwai01751f52007-08-10 16:59:39 +0200759/* query and allocate an amp hash entry */
760static inline struct hda_amp_info *
761get_alloc_amp_hash(struct hda_codec *codec, u32 key)
762{
763 return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key);
764}
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766/*
767 * query AMP capabilities for the given widget and direction
768 */
769static u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
770{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200771 struct hda_amp_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Takashi Iwai0ba21762007-04-16 11:29:14 +0200773 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, 0));
774 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return 0;
Takashi Iwai01751f52007-08-10 16:59:39 +0200776 if (!(info->head.val & INFO_AMP_CAPS)) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200777 if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 nid = codec->afg;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200779 info->amp_caps = snd_hda_param_read(codec, nid,
780 direction == HDA_OUTPUT ?
781 AC_PAR_AMP_OUT_CAP :
782 AC_PAR_AMP_IN_CAP);
Takashi Iwaib75e53f2007-05-10 16:56:09 +0200783 if (info->amp_caps)
Takashi Iwai01751f52007-08-10 16:59:39 +0200784 info->head.val |= INFO_AMP_CAPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786 return info->amp_caps;
787}
788
Takashi Iwai897cc182007-05-29 19:01:37 +0200789int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
790 unsigned int caps)
791{
792 struct hda_amp_info *info;
793
794 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, dir, 0));
795 if (!info)
796 return -EINVAL;
797 info->amp_caps = caps;
Takashi Iwai01751f52007-08-10 16:59:39 +0200798 info->head.val |= INFO_AMP_CAPS;
Takashi Iwai897cc182007-05-29 19:01:37 +0200799 return 0;
800}
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802/*
803 * read the current volume to info
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200804 * if the cache exists, read the cache value.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200806static unsigned int get_vol_mute(struct hda_codec *codec,
807 struct hda_amp_info *info, hda_nid_t nid,
808 int ch, int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
810 u32 val, parm;
811
Takashi Iwai01751f52007-08-10 16:59:39 +0200812 if (info->head.val & INFO_AMP_VOL(ch))
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200813 return info->vol[ch];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 parm = ch ? AC_AMP_GET_RIGHT : AC_AMP_GET_LEFT;
816 parm |= direction == HDA_OUTPUT ? AC_AMP_GET_OUTPUT : AC_AMP_GET_INPUT;
817 parm |= index;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200818 val = snd_hda_codec_read(codec, nid, 0,
819 AC_VERB_GET_AMP_GAIN_MUTE, parm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 info->vol[ch] = val & 0xff;
Takashi Iwai01751f52007-08-10 16:59:39 +0200821 info->head.val |= INFO_AMP_VOL(ch);
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200822 return info->vol[ch];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
824
825/*
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200826 * write the current volume in info to the h/w and update the cache
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 */
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200828static void put_vol_mute(struct hda_codec *codec, struct hda_amp_info *info,
Takashi Iwai0ba21762007-04-16 11:29:14 +0200829 hda_nid_t nid, int ch, int direction, int index,
830 int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
832 u32 parm;
833
834 parm = ch ? AC_AMP_SET_RIGHT : AC_AMP_SET_LEFT;
835 parm |= direction == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT;
836 parm |= index << AC_AMP_SET_INDEX_SHIFT;
837 parm |= val;
838 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, parm);
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200839 info->vol[ch] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
842/*
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200843 * read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 */
Takashi Iwai834be882006-03-01 14:16:17 +0100845int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch,
846 int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200848 struct hda_amp_info *info;
849 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, index));
850 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200852 return get_vol_mute(codec, info, nid, ch, direction, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853}
854
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200855/*
856 * update the AMP value, mask = bit mask to set, val = the value
857 */
Takashi Iwai834be882006-03-01 14:16:17 +0100858int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch,
859 int direction, int idx, int mask, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200861 struct hda_amp_info *info;
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200862
Takashi Iwai0ba21762007-04-16 11:29:14 +0200863 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, idx));
864 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200866 val &= mask;
867 val |= get_vol_mute(codec, info, nid, ch, direction, idx) & ~mask;
Takashi Iwai82beb8f2007-08-10 17:09:26 +0200868 if (info->vol[ch] == val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200870 put_vol_mute(codec, info, nid, ch, direction, idx, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 return 1;
872}
873
Takashi Iwai47fd8302007-08-10 17:11:07 +0200874/*
875 * update the AMP stereo with the same mask and value
876 */
877int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
878 int direction, int idx, int mask, int val)
879{
880 int ch, ret = 0;
881 for (ch = 0; ch < 2; ch++)
882 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
883 idx, mask, val);
884 return ret;
885}
886
Takashi Iwaicb53c622007-08-10 17:21:45 +0200887#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200888/* resume the all amp commands from the cache */
889void snd_hda_codec_resume_amp(struct hda_codec *codec)
890{
891 struct hda_amp_info *buffer = codec->amp_cache.buffer;
892 int i;
893
894 for (i = 0; i < codec->amp_cache.size; i++, buffer++) {
895 u32 key = buffer->head.key;
896 hda_nid_t nid;
897 unsigned int idx, dir, ch;
898 if (!key)
899 continue;
900 nid = key & 0xff;
901 idx = (key >> 16) & 0xff;
902 dir = (key >> 24) & 0xff;
903 for (ch = 0; ch < 2; ch++) {
904 if (!(buffer->head.val & INFO_AMP_VOL(ch)))
905 continue;
906 put_vol_mute(codec, buffer, nid, ch, dir, idx,
907 buffer->vol[ch]);
908 }
909 }
910}
Takashi Iwaicb53c622007-08-10 17:21:45 +0200911#endif /* SND_HDA_NEEDS_RESUME */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913/*
914 * AMP control callbacks
915 */
916/* retrieve parameters from private_value */
917#define get_amp_nid(kc) ((kc)->private_value & 0xffff)
918#define get_amp_channels(kc) (((kc)->private_value >> 16) & 0x3)
919#define get_amp_direction(kc) (((kc)->private_value >> 18) & 0x1)
920#define get_amp_index(kc) (((kc)->private_value >> 19) & 0xf)
921
922/* volume */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200923int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
924 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
926 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
927 u16 nid = get_amp_nid(kcontrol);
928 u8 chs = get_amp_channels(kcontrol);
929 int dir = get_amp_direction(kcontrol);
930 u32 caps;
931
932 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200933 /* num steps */
934 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
935 if (!caps) {
936 printk(KERN_WARNING "hda_codec: "
937 "num_steps = 0 for NID=0x%x\n", nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 return -EINVAL;
939 }
940 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
941 uinfo->count = chs == 3 ? 2 : 1;
942 uinfo->value.integer.min = 0;
943 uinfo->value.integer.max = caps;
944 return 0;
945}
946
Takashi Iwai0ba21762007-04-16 11:29:14 +0200947int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
948 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
950 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
951 hda_nid_t nid = get_amp_nid(kcontrol);
952 int chs = get_amp_channels(kcontrol);
953 int dir = get_amp_direction(kcontrol);
954 int idx = get_amp_index(kcontrol);
955 long *valp = ucontrol->value.integer.value;
956
957 if (chs & 1)
Takashi Iwai47fd8302007-08-10 17:11:07 +0200958 *valp++ = snd_hda_codec_amp_read(codec, nid, 0, dir, idx)
959 & HDA_AMP_VOLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 if (chs & 2)
Takashi Iwai47fd8302007-08-10 17:11:07 +0200961 *valp = snd_hda_codec_amp_read(codec, nid, 1, dir, idx)
962 & HDA_AMP_VOLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 return 0;
964}
965
Takashi Iwai0ba21762007-04-16 11:29:14 +0200966int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
967 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
969 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
970 hda_nid_t nid = get_amp_nid(kcontrol);
971 int chs = get_amp_channels(kcontrol);
972 int dir = get_amp_direction(kcontrol);
973 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 long *valp = ucontrol->value.integer.value;
975 int change = 0;
976
Takashi Iwaicb53c622007-08-10 17:21:45 +0200977 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +0200978 if (chs & 1) {
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200979 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
980 0x7f, *valp);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +0200981 valp++;
982 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +0200983 if (chs & 2)
984 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
Nicolas Grazianob9f5a892005-07-29 12:17:20 +0200985 0x7f, *valp);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200986 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 return change;
988}
989
Jaroslav Kysela302e9c52006-07-05 17:39:49 +0200990int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
991 unsigned int size, unsigned int __user *_tlv)
992{
993 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
994 hda_nid_t nid = get_amp_nid(kcontrol);
995 int dir = get_amp_direction(kcontrol);
996 u32 caps, val1, val2;
997
998 if (size < 4 * sizeof(unsigned int))
999 return -ENOMEM;
1000 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001001 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1002 val2 = (val2 + 1) * 25;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001003 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
1004 val1 = ((int)val1) * ((int)val2);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001005 if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv))
1006 return -EFAULT;
1007 if (put_user(2 * sizeof(unsigned int), _tlv + 1))
1008 return -EFAULT;
1009 if (put_user(val1, _tlv + 2))
1010 return -EFAULT;
1011 if (put_user(val2, _tlv + 3))
1012 return -EFAULT;
1013 return 0;
1014}
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016/* switch */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001017int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
1018 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
1020 int chs = get_amp_channels(kcontrol);
1021
1022 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1023 uinfo->count = chs == 3 ? 2 : 1;
1024 uinfo->value.integer.min = 0;
1025 uinfo->value.integer.max = 1;
1026 return 0;
1027}
1028
Takashi Iwai0ba21762007-04-16 11:29:14 +02001029int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
1030 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
1032 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1033 hda_nid_t nid = get_amp_nid(kcontrol);
1034 int chs = get_amp_channels(kcontrol);
1035 int dir = get_amp_direction(kcontrol);
1036 int idx = get_amp_index(kcontrol);
1037 long *valp = ucontrol->value.integer.value;
1038
1039 if (chs & 1)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001040 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02001041 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 if (chs & 2)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001043 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02001044 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 return 0;
1046}
1047
Takashi Iwai0ba21762007-04-16 11:29:14 +02001048int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
1049 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
1051 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1052 hda_nid_t nid = get_amp_nid(kcontrol);
1053 int chs = get_amp_channels(kcontrol);
1054 int dir = get_amp_direction(kcontrol);
1055 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 long *valp = ucontrol->value.integer.value;
1057 int change = 0;
1058
Takashi Iwaicb53c622007-08-10 17:21:45 +02001059 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001060 if (chs & 1) {
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001061 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001062 HDA_AMP_MUTE,
1063 *valp ? 0 : HDA_AMP_MUTE);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001064 valp++;
1065 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001066 if (chs & 2)
1067 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001068 HDA_AMP_MUTE,
1069 *valp ? 0 : HDA_AMP_MUTE);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001070#ifdef CONFIG_SND_HDA_POWER_SAVE
1071 if (codec->patch_ops.check_power_status)
1072 codec->patch_ops.check_power_status(codec, nid);
1073#endif
1074 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 return change;
1076}
1077
1078/*
Takashi Iwai985be542005-11-02 18:26:49 +01001079 * bound volume controls
1080 *
1081 * bind multiple volumes (# indices, from 0)
1082 */
1083
1084#define AMP_VAL_IDX_SHIFT 19
1085#define AMP_VAL_IDX_MASK (0x0f<<19)
1086
Takashi Iwai0ba21762007-04-16 11:29:14 +02001087int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol,
1088 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01001089{
1090 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1091 unsigned long pval;
1092 int err;
1093
Ingo Molnar62932df2006-01-16 16:34:20 +01001094 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
Takashi Iwai985be542005-11-02 18:26:49 +01001095 pval = kcontrol->private_value;
1096 kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */
1097 err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
1098 kcontrol->private_value = pval;
Ingo Molnar62932df2006-01-16 16:34:20 +01001099 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001100 return err;
1101}
1102
Takashi Iwai0ba21762007-04-16 11:29:14 +02001103int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol,
1104 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01001105{
1106 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1107 unsigned long pval;
1108 int i, indices, err = 0, change = 0;
1109
Ingo Molnar62932df2006-01-16 16:34:20 +01001110 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
Takashi Iwai985be542005-11-02 18:26:49 +01001111 pval = kcontrol->private_value;
1112 indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT;
1113 for (i = 0; i < indices; i++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001114 kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) |
1115 (i << AMP_VAL_IDX_SHIFT);
Takashi Iwai985be542005-11-02 18:26:49 +01001116 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
1117 if (err < 0)
1118 break;
1119 change |= err;
1120 }
1121 kcontrol->private_value = pval;
Ingo Molnar62932df2006-01-16 16:34:20 +01001122 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001123 return err < 0 ? err : change;
1124}
1125
1126/*
Takashi Iwai532d5382007-07-27 19:02:40 +02001127 * generic bound volume/swtich controls
1128 */
1129int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol,
1130 struct snd_ctl_elem_info *uinfo)
1131{
1132 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1133 struct hda_bind_ctls *c;
1134 int err;
1135
1136 c = (struct hda_bind_ctls *)kcontrol->private_value;
1137 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
1138 kcontrol->private_value = *c->values;
1139 err = c->ops->info(kcontrol, uinfo);
1140 kcontrol->private_value = (long)c;
1141 mutex_unlock(&codec->spdif_mutex);
1142 return err;
1143}
1144
1145int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol,
1146 struct snd_ctl_elem_value *ucontrol)
1147{
1148 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1149 struct hda_bind_ctls *c;
1150 int err;
1151
1152 c = (struct hda_bind_ctls *)kcontrol->private_value;
1153 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
1154 kcontrol->private_value = *c->values;
1155 err = c->ops->get(kcontrol, ucontrol);
1156 kcontrol->private_value = (long)c;
1157 mutex_unlock(&codec->spdif_mutex);
1158 return err;
1159}
1160
1161int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol,
1162 struct snd_ctl_elem_value *ucontrol)
1163{
1164 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1165 struct hda_bind_ctls *c;
1166 unsigned long *vals;
1167 int err = 0, change = 0;
1168
1169 c = (struct hda_bind_ctls *)kcontrol->private_value;
1170 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
1171 for (vals = c->values; *vals; vals++) {
1172 kcontrol->private_value = *vals;
1173 err = c->ops->put(kcontrol, ucontrol);
1174 if (err < 0)
1175 break;
1176 change |= err;
1177 }
1178 kcontrol->private_value = (long)c;
1179 mutex_unlock(&codec->spdif_mutex);
1180 return err < 0 ? err : change;
1181}
1182
1183int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1184 unsigned int size, unsigned int __user *tlv)
1185{
1186 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1187 struct hda_bind_ctls *c;
1188 int err;
1189
1190 c = (struct hda_bind_ctls *)kcontrol->private_value;
1191 mutex_lock(&codec->spdif_mutex); /* reuse spdif_mutex */
1192 kcontrol->private_value = *c->values;
1193 err = c->ops->tlv(kcontrol, op_flag, size, tlv);
1194 kcontrol->private_value = (long)c;
1195 mutex_unlock(&codec->spdif_mutex);
1196 return err;
1197}
1198
1199struct hda_ctl_ops snd_hda_bind_vol = {
1200 .info = snd_hda_mixer_amp_volume_info,
1201 .get = snd_hda_mixer_amp_volume_get,
1202 .put = snd_hda_mixer_amp_volume_put,
1203 .tlv = snd_hda_mixer_amp_tlv
1204};
1205
1206struct hda_ctl_ops snd_hda_bind_sw = {
1207 .info = snd_hda_mixer_amp_switch_info,
1208 .get = snd_hda_mixer_amp_switch_get,
1209 .put = snd_hda_mixer_amp_switch_put,
1210 .tlv = snd_hda_mixer_amp_tlv
1211};
1212
1213/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 * SPDIF out controls
1215 */
1216
Takashi Iwai0ba21762007-04-16 11:29:14 +02001217static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
1218 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219{
1220 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1221 uinfo->count = 1;
1222 return 0;
1223}
1224
Takashi Iwai0ba21762007-04-16 11:29:14 +02001225static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
1226 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
1228 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1229 IEC958_AES0_NONAUDIO |
1230 IEC958_AES0_CON_EMPHASIS_5015 |
1231 IEC958_AES0_CON_NOT_COPYRIGHT;
1232 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
1233 IEC958_AES1_CON_ORIGINAL;
1234 return 0;
1235}
1236
Takashi Iwai0ba21762007-04-16 11:29:14 +02001237static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
1238 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
1240 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1241 IEC958_AES0_NONAUDIO |
1242 IEC958_AES0_PRO_EMPHASIS_5015;
1243 return 0;
1244}
1245
Takashi Iwai0ba21762007-04-16 11:29:14 +02001246static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
1247 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
1249 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1250
1251 ucontrol->value.iec958.status[0] = codec->spdif_status & 0xff;
1252 ucontrol->value.iec958.status[1] = (codec->spdif_status >> 8) & 0xff;
1253 ucontrol->value.iec958.status[2] = (codec->spdif_status >> 16) & 0xff;
1254 ucontrol->value.iec958.status[3] = (codec->spdif_status >> 24) & 0xff;
1255
1256 return 0;
1257}
1258
1259/* convert from SPDIF status bits to HDA SPDIF bits
1260 * bit 0 (DigEn) is always set zero (to be filled later)
1261 */
1262static unsigned short convert_from_spdif_status(unsigned int sbits)
1263{
1264 unsigned short val = 0;
1265
1266 if (sbits & IEC958_AES0_PROFESSIONAL)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001267 val |= AC_DIG1_PROFESSIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 if (sbits & IEC958_AES0_NONAUDIO)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001269 val |= AC_DIG1_NONAUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001271 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
1272 IEC958_AES0_PRO_EMPHASIS_5015)
1273 val |= AC_DIG1_EMPHASIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001275 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
1276 IEC958_AES0_CON_EMPHASIS_5015)
1277 val |= AC_DIG1_EMPHASIS;
1278 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
1279 val |= AC_DIG1_COPYRIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
Takashi Iwai0ba21762007-04-16 11:29:14 +02001281 val |= AC_DIG1_LEVEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
1283 }
1284 return val;
1285}
1286
1287/* convert to SPDIF status bits from HDA SPDIF bits
1288 */
1289static unsigned int convert_to_spdif_status(unsigned short val)
1290{
1291 unsigned int sbits = 0;
1292
Takashi Iwai0ba21762007-04-16 11:29:14 +02001293 if (val & AC_DIG1_NONAUDIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 sbits |= IEC958_AES0_NONAUDIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001295 if (val & AC_DIG1_PROFESSIONAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 sbits |= IEC958_AES0_PROFESSIONAL;
1297 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001298 if (sbits & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
1300 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001301 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001303 if (!(val & AC_DIG1_COPYRIGHT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001305 if (val & AC_DIG1_LEVEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
1307 sbits |= val & (0x7f << 8);
1308 }
1309 return sbits;
1310}
1311
Takashi Iwai0ba21762007-04-16 11:29:14 +02001312static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
1313 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314{
1315 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1316 hda_nid_t nid = kcontrol->private_value;
1317 unsigned short val;
1318 int change;
1319
Ingo Molnar62932df2006-01-16 16:34:20 +01001320 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 codec->spdif_status = ucontrol->value.iec958.status[0] |
1322 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
1323 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
1324 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
1325 val = convert_from_spdif_status(codec->spdif_status);
1326 val |= codec->spdif_ctls & 1;
1327 change = codec->spdif_ctls != val;
1328 codec->spdif_ctls = val;
1329
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001330 if (change) {
1331 snd_hda_codec_write_cache(codec, nid, 0,
1332 AC_VERB_SET_DIGI_CONVERT_1,
1333 val & 0xff);
1334 snd_hda_codec_write_cache(codec, nid, 0,
1335 AC_VERB_SET_DIGI_CONVERT_2,
1336 val >> 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 }
1338
Ingo Molnar62932df2006-01-16 16:34:20 +01001339 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 return change;
1341}
1342
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001343#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Takashi Iwai0ba21762007-04-16 11:29:14 +02001345static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
1346 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
1348 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1349
Takashi Iwai0ba21762007-04-16 11:29:14 +02001350 ucontrol->value.integer.value[0] = codec->spdif_ctls & AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 return 0;
1352}
1353
Takashi Iwai0ba21762007-04-16 11:29:14 +02001354static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
1355 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356{
1357 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1358 hda_nid_t nid = kcontrol->private_value;
1359 unsigned short val;
1360 int change;
1361
Ingo Molnar62932df2006-01-16 16:34:20 +01001362 mutex_lock(&codec->spdif_mutex);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001363 val = codec->spdif_ctls & ~AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 if (ucontrol->value.integer.value[0])
Takashi Iwai0ba21762007-04-16 11:29:14 +02001365 val |= AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 change = codec->spdif_ctls != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001367 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 codec->spdif_ctls = val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001369 snd_hda_codec_write_cache(codec, nid, 0,
1370 AC_VERB_SET_DIGI_CONVERT_1,
1371 val & 0xff);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001372 /* unmute amp switch (if any) */
1373 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
Takashi Iwai47fd8302007-08-10 17:11:07 +02001374 (val & AC_DIG1_ENABLE))
1375 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
1376 HDA_AMP_MUTE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001378 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 return change;
1380}
1381
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001382static struct snd_kcontrol_new dig_mixes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 {
1384 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1385 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1386 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK),
1387 .info = snd_hda_spdif_mask_info,
1388 .get = snd_hda_spdif_cmask_get,
1389 },
1390 {
1391 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1392 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1393 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PRO_MASK),
1394 .info = snd_hda_spdif_mask_info,
1395 .get = snd_hda_spdif_pmask_get,
1396 },
1397 {
1398 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1399 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
1400 .info = snd_hda_spdif_mask_info,
1401 .get = snd_hda_spdif_default_get,
1402 .put = snd_hda_spdif_default_put,
1403 },
1404 {
1405 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1406 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH),
1407 .info = snd_hda_spdif_out_switch_info,
1408 .get = snd_hda_spdif_out_switch_get,
1409 .put = snd_hda_spdif_out_switch_put,
1410 },
1411 { } /* end */
1412};
1413
1414/**
1415 * snd_hda_create_spdif_out_ctls - create Output SPDIF-related controls
1416 * @codec: the HDA codec
1417 * @nid: audio out widget NID
1418 *
1419 * Creates controls related with the SPDIF output.
1420 * Called from each patch supporting the SPDIF out.
1421 *
1422 * Returns 0 if successful, or a negative error code.
1423 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02001424int snd_hda_create_spdif_out_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425{
1426 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001427 struct snd_kcontrol *kctl;
1428 struct snd_kcontrol_new *dig_mix;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
1431 kctl = snd_ctl_new1(dig_mix, codec);
1432 kctl->private_value = nid;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001433 err = snd_ctl_add(codec->bus->card, kctl);
1434 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 return err;
1436 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001437 codec->spdif_ctls =
1438 snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 codec->spdif_status = convert_to_spdif_status(codec->spdif_ctls);
1440 return 0;
1441}
1442
1443/*
1444 * SPDIF input
1445 */
1446
1447#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
1448
Takashi Iwai0ba21762007-04-16 11:29:14 +02001449static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
1450 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451{
1452 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1453
1454 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
1455 return 0;
1456}
1457
Takashi Iwai0ba21762007-04-16 11:29:14 +02001458static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
1459 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
1461 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1462 hda_nid_t nid = kcontrol->private_value;
1463 unsigned int val = !!ucontrol->value.integer.value[0];
1464 int change;
1465
Ingo Molnar62932df2006-01-16 16:34:20 +01001466 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001468 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 codec->spdif_in_enable = val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001470 snd_hda_codec_write_cache(codec, nid, 0,
1471 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001473 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 return change;
1475}
1476
Takashi Iwai0ba21762007-04-16 11:29:14 +02001477static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
1478 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
1480 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1481 hda_nid_t nid = kcontrol->private_value;
1482 unsigned short val;
1483 unsigned int sbits;
1484
1485 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT, 0);
1486 sbits = convert_to_spdif_status(val);
1487 ucontrol->value.iec958.status[0] = sbits;
1488 ucontrol->value.iec958.status[1] = sbits >> 8;
1489 ucontrol->value.iec958.status[2] = sbits >> 16;
1490 ucontrol->value.iec958.status[3] = sbits >> 24;
1491 return 0;
1492}
1493
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001494static struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 {
1496 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1497 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH),
1498 .info = snd_hda_spdif_in_switch_info,
1499 .get = snd_hda_spdif_in_switch_get,
1500 .put = snd_hda_spdif_in_switch_put,
1501 },
1502 {
1503 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1504 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1505 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,DEFAULT),
1506 .info = snd_hda_spdif_mask_info,
1507 .get = snd_hda_spdif_in_status_get,
1508 },
1509 { } /* end */
1510};
1511
1512/**
1513 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
1514 * @codec: the HDA codec
1515 * @nid: audio in widget NID
1516 *
1517 * Creates controls related with the SPDIF input.
1518 * Called from each patch supporting the SPDIF in.
1519 *
1520 * Returns 0 if successful, or a negative error code.
1521 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02001522int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523{
1524 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001525 struct snd_kcontrol *kctl;
1526 struct snd_kcontrol_new *dig_mix;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
1528 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
1529 kctl = snd_ctl_new1(dig_mix, codec);
1530 kctl->private_value = nid;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001531 err = snd_ctl_add(codec->bus->card, kctl);
1532 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 return err;
1534 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001535 codec->spdif_in_enable =
1536 snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT, 0) &
1537 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 return 0;
1539}
1540
Takashi Iwaicb53c622007-08-10 17:21:45 +02001541#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001542/*
1543 * command cache
1544 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001546/* build a 32bit cache key with the widget id and the command parameter */
1547#define build_cmd_cache_key(nid, verb) ((verb << 8) | nid)
1548#define get_cmd_cache_nid(key) ((key) & 0xff)
1549#define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff)
1550
1551/**
1552 * snd_hda_codec_write_cache - send a single command with caching
1553 * @codec: the HDA codec
1554 * @nid: NID to send the command
1555 * @direct: direct flag
1556 * @verb: the verb to send
1557 * @parm: the parameter for the verb
1558 *
1559 * Send a single command without waiting for response.
1560 *
1561 * Returns 0 if successful, or a negative error code.
1562 */
1563int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid,
1564 int direct, unsigned int verb, unsigned int parm)
1565{
1566 int err;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001567 snd_hda_power_up(codec);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001568 mutex_lock(&codec->bus->cmd_mutex);
1569 err = codec->bus->ops.command(codec, nid, direct, verb, parm);
1570 if (!err) {
1571 struct hda_cache_head *c;
1572 u32 key = build_cmd_cache_key(nid, verb);
1573 c = get_alloc_hash(&codec->cmd_cache, key);
1574 if (c)
1575 c->val = parm;
1576 }
1577 mutex_unlock(&codec->bus->cmd_mutex);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001578 snd_hda_power_down(codec);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001579 return err;
1580}
1581
1582/* resume the all commands from the cache */
1583void snd_hda_codec_resume_cache(struct hda_codec *codec)
1584{
1585 struct hda_cache_head *buffer = codec->cmd_cache.buffer;
1586 int i;
1587
1588 for (i = 0; i < codec->cmd_cache.size; i++, buffer++) {
1589 u32 key = buffer->key;
1590 if (!key)
1591 continue;
1592 snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0,
1593 get_cmd_cache_cmd(key), buffer->val);
1594 }
1595}
1596
1597/**
1598 * snd_hda_sequence_write_cache - sequence writes with caching
1599 * @codec: the HDA codec
1600 * @seq: VERB array to send
1601 *
1602 * Send the commands sequentially from the given array.
1603 * Thte commands are recorded on cache for power-save and resume.
1604 * The array must be terminated with NID=0.
1605 */
1606void snd_hda_sequence_write_cache(struct hda_codec *codec,
1607 const struct hda_verb *seq)
1608{
1609 for (; seq->nid; seq++)
1610 snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb,
1611 seq->param);
1612}
Takashi Iwaicb53c622007-08-10 17:21:45 +02001613#endif /* SND_HDA_NEEDS_RESUME */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001614
Takashi Iwai54d17402005-11-21 16:33:22 +01001615/*
1616 * set power state of the codec
1617 */
1618static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
1619 unsigned int power_state)
1620{
Takashi Iwaicb53c622007-08-10 17:21:45 +02001621 hda_nid_t nid;
1622 int i;
Takashi Iwai54d17402005-11-21 16:33:22 +01001623
1624 snd_hda_codec_write(codec, fg, 0, AC_VERB_SET_POWER_STATE,
1625 power_state);
1626
Takashi Iwaicb53c622007-08-10 17:21:45 +02001627 nid = codec->start_nid;
1628 for (i = 0; i < codec->num_nodes; i++, nid++) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01001629 unsigned int wcaps = get_wcaps(codec, nid);
1630 if (wcaps & AC_WCAP_POWER) {
1631 unsigned int wid_type = (wcaps & AC_WCAP_TYPE) >>
1632 AC_WCAP_TYPE_SHIFT;
1633 if (wid_type == AC_WID_PIN) {
1634 unsigned int pincap;
1635 /*
1636 * don't power down the widget if it controls
1637 * eapd and EAPD_BTLENABLE is set.
1638 */
1639 pincap = snd_hda_param_read(codec, nid,
1640 AC_PAR_PIN_CAP);
1641 if (pincap & AC_PINCAP_EAPD) {
1642 int eapd = snd_hda_codec_read(codec,
1643 nid, 0,
1644 AC_VERB_GET_EAPD_BTLENABLE, 0);
1645 eapd &= 0x02;
1646 if (power_state == AC_PWRST_D3 && eapd)
1647 continue;
1648 }
Takashi Iwai1194b5b2007-10-10 10:04:26 +02001649 }
Takashi Iwai54d17402005-11-21 16:33:22 +01001650 snd_hda_codec_write(codec, nid, 0,
1651 AC_VERB_SET_POWER_STATE,
1652 power_state);
Takashi Iwai1194b5b2007-10-10 10:04:26 +02001653 }
Takashi Iwai54d17402005-11-21 16:33:22 +01001654 }
1655
Takashi Iwaicb53c622007-08-10 17:21:45 +02001656 if (power_state == AC_PWRST_D0) {
1657 unsigned long end_time;
1658 int state;
Takashi Iwai54d17402005-11-21 16:33:22 +01001659 msleep(10);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001660 /* wait until the codec reachs to D0 */
1661 end_time = jiffies + msecs_to_jiffies(500);
1662 do {
1663 state = snd_hda_codec_read(codec, fg, 0,
1664 AC_VERB_GET_POWER_STATE, 0);
1665 if (state == power_state)
1666 break;
1667 msleep(1);
1668 } while (time_after_eq(end_time, jiffies));
1669 }
Takashi Iwai54d17402005-11-21 16:33:22 +01001670}
1671
Takashi Iwaicb53c622007-08-10 17:21:45 +02001672#ifdef SND_HDA_NEEDS_RESUME
1673/*
1674 * call suspend and power-down; used both from PM and power-save
1675 */
1676static void hda_call_codec_suspend(struct hda_codec *codec)
1677{
1678 if (codec->patch_ops.suspend)
1679 codec->patch_ops.suspend(codec, PMSG_SUSPEND);
1680 hda_set_power_state(codec,
1681 codec->afg ? codec->afg : codec->mfg,
1682 AC_PWRST_D3);
1683#ifdef CONFIG_SND_HDA_POWER_SAVE
1684 cancel_delayed_work(&codec->power_work);
Takashi Iwai95e99fd2007-08-13 15:29:04 +02001685 codec->power_on = 0;
Takashi Iwaia221e282007-08-16 16:35:33 +02001686 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001687#endif
1688}
1689
1690/*
1691 * kick up codec; used both from PM and power-save
1692 */
1693static void hda_call_codec_resume(struct hda_codec *codec)
1694{
1695 hda_set_power_state(codec,
1696 codec->afg ? codec->afg : codec->mfg,
1697 AC_PWRST_D0);
1698 if (codec->patch_ops.resume)
1699 codec->patch_ops.resume(codec);
1700 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02001701 if (codec->patch_ops.init)
1702 codec->patch_ops.init(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001703 snd_hda_codec_resume_amp(codec);
1704 snd_hda_codec_resume_cache(codec);
1705 }
1706}
1707#endif /* SND_HDA_NEEDS_RESUME */
1708
Takashi Iwai54d17402005-11-21 16:33:22 +01001709
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710/**
1711 * snd_hda_build_controls - build mixer controls
1712 * @bus: the BUS
1713 *
1714 * Creates mixer controls for each codec included in the bus.
1715 *
1716 * Returns 0 if successful, otherwise a negative error code.
1717 */
Takashi Iwai756e2b02007-04-16 11:27:07 +02001718int __devinit snd_hda_build_controls(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001720 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Takashi Iwai0ba21762007-04-16 11:29:14 +02001722 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwaicb53c622007-08-10 17:21:45 +02001723 int err = 0;
1724 /* fake as if already powered-on */
1725 hda_keep_power_on(codec);
1726 /* then fire up */
1727 hda_set_power_state(codec,
1728 codec->afg ? codec->afg : codec->mfg,
1729 AC_PWRST_D0);
1730 /* continue to initialize... */
1731 if (codec->patch_ops.init)
1732 err = codec->patch_ops.init(codec);
1733 if (!err && codec->patch_ops.build_controls)
1734 err = codec->patch_ops.build_controls(codec);
1735 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 if (err < 0)
1737 return err;
1738 }
1739
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 return 0;
1741}
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743/*
1744 * stream formats
1745 */
Takashi Iwaibefdf312005-08-22 13:57:55 +02001746struct hda_rate_tbl {
1747 unsigned int hz;
1748 unsigned int alsa_bits;
1749 unsigned int hda_fmt;
1750};
1751
1752static struct hda_rate_tbl rate_bits[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 /* rate in Hz, ALSA rate bitmask, HDA format value */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02001754
1755 /* autodetected value used in snd_hda_query_supported_pcm */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 { 8000, SNDRV_PCM_RATE_8000, 0x0500 }, /* 1/6 x 48 */
1757 { 11025, SNDRV_PCM_RATE_11025, 0x4300 }, /* 1/4 x 44 */
1758 { 16000, SNDRV_PCM_RATE_16000, 0x0200 }, /* 1/3 x 48 */
1759 { 22050, SNDRV_PCM_RATE_22050, 0x4100 }, /* 1/2 x 44 */
1760 { 32000, SNDRV_PCM_RATE_32000, 0x0a00 }, /* 2/3 x 48 */
1761 { 44100, SNDRV_PCM_RATE_44100, 0x4000 }, /* 44 */
1762 { 48000, SNDRV_PCM_RATE_48000, 0x0000 }, /* 48 */
1763 { 88200, SNDRV_PCM_RATE_88200, 0x4800 }, /* 2 x 44 */
1764 { 96000, SNDRV_PCM_RATE_96000, 0x0800 }, /* 2 x 48 */
1765 { 176400, SNDRV_PCM_RATE_176400, 0x5800 },/* 4 x 44 */
1766 { 192000, SNDRV_PCM_RATE_192000, 0x1800 }, /* 4 x 48 */
Takashi Iwaia961f9f2007-04-12 13:08:09 +02001767#define AC_PAR_PCM_RATE_BITS 11
1768 /* up to bits 10, 384kHZ isn't supported properly */
1769
1770 /* not autodetected value */
1771 { 9600, SNDRV_PCM_RATE_KNOT, 0x0400 }, /* 1/5 x 48 */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02001772
Takashi Iwaibefdf312005-08-22 13:57:55 +02001773 { 0 } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774};
1775
1776/**
1777 * snd_hda_calc_stream_format - calculate format bitset
1778 * @rate: the sample rate
1779 * @channels: the number of channels
1780 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
1781 * @maxbps: the max. bps
1782 *
1783 * Calculate the format bitset from the given rate, channels and th PCM format.
1784 *
1785 * Return zero if invalid.
1786 */
1787unsigned int snd_hda_calc_stream_format(unsigned int rate,
1788 unsigned int channels,
1789 unsigned int format,
1790 unsigned int maxbps)
1791{
1792 int i;
1793 unsigned int val = 0;
1794
Takashi Iwaibefdf312005-08-22 13:57:55 +02001795 for (i = 0; rate_bits[i].hz; i++)
1796 if (rate_bits[i].hz == rate) {
1797 val = rate_bits[i].hda_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 break;
1799 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001800 if (!rate_bits[i].hz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 snd_printdd("invalid rate %d\n", rate);
1802 return 0;
1803 }
1804
1805 if (channels == 0 || channels > 8) {
1806 snd_printdd("invalid channels %d\n", channels);
1807 return 0;
1808 }
1809 val |= channels - 1;
1810
1811 switch (snd_pcm_format_width(format)) {
1812 case 8: val |= 0x00; break;
1813 case 16: val |= 0x10; break;
1814 case 20:
1815 case 24:
1816 case 32:
1817 if (maxbps >= 32)
1818 val |= 0x40;
1819 else if (maxbps >= 24)
1820 val |= 0x30;
1821 else
1822 val |= 0x20;
1823 break;
1824 default:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001825 snd_printdd("invalid format width %d\n",
1826 snd_pcm_format_width(format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 return 0;
1828 }
1829
1830 return val;
1831}
1832
1833/**
1834 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
1835 * @codec: the HDA codec
1836 * @nid: NID to query
1837 * @ratesp: the pointer to store the detected rate bitflags
1838 * @formatsp: the pointer to store the detected formats
1839 * @bpsp: the pointer to store the detected format widths
1840 *
1841 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
1842 * or @bsps argument is ignored.
1843 *
1844 * Returns 0 if successful, otherwise a negative error code.
1845 */
1846int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
1847 u32 *ratesp, u64 *formatsp, unsigned int *bpsp)
1848{
1849 int i;
1850 unsigned int val, streams;
1851
1852 val = 0;
1853 if (nid != codec->afg &&
Takashi Iwai54d17402005-11-21 16:33:22 +01001854 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
1856 if (val == -1)
1857 return -EIO;
1858 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001859 if (!val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
1861
1862 if (ratesp) {
1863 u32 rates = 0;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02001864 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 if (val & (1 << i))
Takashi Iwaibefdf312005-08-22 13:57:55 +02001866 rates |= rate_bits[i].alsa_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 }
1868 *ratesp = rates;
1869 }
1870
1871 if (formatsp || bpsp) {
1872 u64 formats = 0;
1873 unsigned int bps;
1874 unsigned int wcaps;
1875
Takashi Iwai54d17402005-11-21 16:33:22 +01001876 wcaps = get_wcaps(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
1878 if (streams == -1)
1879 return -EIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001880 if (!streams) {
1881 streams = snd_hda_param_read(codec, codec->afg,
1882 AC_PAR_STREAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 if (streams == -1)
1884 return -EIO;
1885 }
1886
1887 bps = 0;
1888 if (streams & AC_SUPFMT_PCM) {
1889 if (val & AC_SUPPCM_BITS_8) {
1890 formats |= SNDRV_PCM_FMTBIT_U8;
1891 bps = 8;
1892 }
1893 if (val & AC_SUPPCM_BITS_16) {
1894 formats |= SNDRV_PCM_FMTBIT_S16_LE;
1895 bps = 16;
1896 }
1897 if (wcaps & AC_WCAP_DIGITAL) {
1898 if (val & AC_SUPPCM_BITS_32)
1899 formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
1900 if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24))
1901 formats |= SNDRV_PCM_FMTBIT_S32_LE;
1902 if (val & AC_SUPPCM_BITS_24)
1903 bps = 24;
1904 else if (val & AC_SUPPCM_BITS_20)
1905 bps = 20;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001906 } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24|
1907 AC_SUPPCM_BITS_32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 formats |= SNDRV_PCM_FMTBIT_S32_LE;
1909 if (val & AC_SUPPCM_BITS_32)
1910 bps = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 else if (val & AC_SUPPCM_BITS_24)
1912 bps = 24;
Nicolas Graziano33ef76512006-09-19 14:23:14 +02001913 else if (val & AC_SUPPCM_BITS_20)
1914 bps = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 }
1916 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001917 else if (streams == AC_SUPFMT_FLOAT32) {
1918 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
1920 bps = 32;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001921 } else if (streams == AC_SUPFMT_AC3) {
1922 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 /* temporary hack: we have still no proper support
1924 * for the direct AC3 stream...
1925 */
1926 formats |= SNDRV_PCM_FMTBIT_U8;
1927 bps = 8;
1928 }
1929 if (formatsp)
1930 *formatsp = formats;
1931 if (bpsp)
1932 *bpsp = bps;
1933 }
1934
1935 return 0;
1936}
1937
1938/**
Takashi Iwai0ba21762007-04-16 11:29:14 +02001939 * snd_hda_is_supported_format - check whether the given node supports
1940 * the format val
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 *
1942 * Returns 1 if supported, 0 if not.
1943 */
1944int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
1945 unsigned int format)
1946{
1947 int i;
1948 unsigned int val = 0, rate, stream;
1949
1950 if (nid != codec->afg &&
Takashi Iwai54d17402005-11-21 16:33:22 +01001951 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
1953 if (val == -1)
1954 return 0;
1955 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001956 if (!val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
1958 if (val == -1)
1959 return 0;
1960 }
1961
1962 rate = format & 0xff00;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02001963 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++)
Takashi Iwaibefdf312005-08-22 13:57:55 +02001964 if (rate_bits[i].hda_fmt == rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 if (val & (1 << i))
1966 break;
1967 return 0;
1968 }
Takashi Iwaia961f9f2007-04-12 13:08:09 +02001969 if (i >= AC_PAR_PCM_RATE_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 return 0;
1971
1972 stream = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
1973 if (stream == -1)
1974 return 0;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001975 if (!stream && nid != codec->afg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 stream = snd_hda_param_read(codec, codec->afg, AC_PAR_STREAM);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001977 if (!stream || stream == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 return 0;
1979
1980 if (stream & AC_SUPFMT_PCM) {
1981 switch (format & 0xf0) {
1982 case 0x00:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001983 if (!(val & AC_SUPPCM_BITS_8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 return 0;
1985 break;
1986 case 0x10:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001987 if (!(val & AC_SUPPCM_BITS_16))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 return 0;
1989 break;
1990 case 0x20:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001991 if (!(val & AC_SUPPCM_BITS_20))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 return 0;
1993 break;
1994 case 0x30:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001995 if (!(val & AC_SUPPCM_BITS_24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 return 0;
1997 break;
1998 case 0x40:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001999 if (!(val & AC_SUPPCM_BITS_32))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 return 0;
2001 break;
2002 default:
2003 return 0;
2004 }
2005 } else {
2006 /* FIXME: check for float32 and AC3? */
2007 }
2008
2009 return 1;
2010}
2011
2012/*
2013 * PCM stuff
2014 */
2015static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
2016 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002017 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018{
2019 return 0;
2020}
2021
2022static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
2023 struct hda_codec *codec,
2024 unsigned int stream_tag,
2025 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002026 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027{
2028 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
2029 return 0;
2030}
2031
2032static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
2033 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002034 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035{
2036 snd_hda_codec_setup_stream(codec, hinfo->nid, 0, 0, 0);
2037 return 0;
2038}
2039
Takashi Iwai0ba21762007-04-16 11:29:14 +02002040static int __devinit set_pcm_default_values(struct hda_codec *codec,
2041 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002043 /* query support PCM information from the given NID */
2044 if (info->nid && (!info->rates || !info->formats)) {
2045 snd_hda_query_supported_pcm(codec, info->nid,
2046 info->rates ? NULL : &info->rates,
2047 info->formats ? NULL : &info->formats,
2048 info->maxbps ? NULL : &info->maxbps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 }
2050 if (info->ops.open == NULL)
2051 info->ops.open = hda_pcm_default_open_close;
2052 if (info->ops.close == NULL)
2053 info->ops.close = hda_pcm_default_open_close;
2054 if (info->ops.prepare == NULL) {
2055 snd_assert(info->nid, return -EINVAL);
2056 info->ops.prepare = hda_pcm_default_prepare;
2057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 if (info->ops.cleanup == NULL) {
2059 snd_assert(info->nid, return -EINVAL);
2060 info->ops.cleanup = hda_pcm_default_cleanup;
2061 }
2062 return 0;
2063}
2064
2065/**
2066 * snd_hda_build_pcms - build PCM information
2067 * @bus: the BUS
2068 *
2069 * Create PCM information for each codec included in the bus.
2070 *
2071 * The build_pcms codec patch is requested to set up codec->num_pcms and
2072 * codec->pcm_info properly. The array is referred by the top-level driver
2073 * to create its PCM instances.
2074 * The allocated codec->pcm_info should be released in codec->patch_ops.free
2075 * callback.
2076 *
2077 * At least, substreams, channels_min and channels_max must be filled for
2078 * each stream. substreams = 0 indicates that the stream doesn't exist.
2079 * When rates and/or formats are zero, the supported values are queried
2080 * from the given nid. The nid is used also by the default ops.prepare
2081 * and ops.cleanup callbacks.
2082 *
2083 * The driver needs to call ops.open in its open callback. Similarly,
2084 * ops.close is supposed to be called in the close callback.
2085 * ops.prepare should be called in the prepare or hw_params callback
2086 * with the proper parameters for set up.
2087 * ops.cleanup should be called in hw_free for clean up of streams.
2088 *
2089 * This function returns 0 if successfull, or a negative error code.
2090 */
Takashi Iwai756e2b02007-04-16 11:27:07 +02002091int __devinit snd_hda_build_pcms(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002093 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Takashi Iwai0ba21762007-04-16 11:29:14 +02002095 list_for_each_entry(codec, &bus->codec_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 unsigned int pcm, s;
2097 int err;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002098 if (!codec->patch_ops.build_pcms)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 continue;
2100 err = codec->patch_ops.build_pcms(codec);
2101 if (err < 0)
2102 return err;
2103 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
2104 for (s = 0; s < 2; s++) {
2105 struct hda_pcm_stream *info;
2106 info = &codec->pcm_info[pcm].stream[s];
Takashi Iwai0ba21762007-04-16 11:29:14 +02002107 if (!info->substreams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 continue;
2109 err = set_pcm_default_values(codec, info);
2110 if (err < 0)
2111 return err;
2112 }
2113 }
2114 }
2115 return 0;
2116}
2117
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118/**
2119 * snd_hda_check_board_config - compare the current codec with the config table
2120 * @codec: the HDA codec
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002121 * @num_configs: number of config enums
2122 * @models: array of model name strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 * @tbl: configuration table, terminated by null entries
2124 *
2125 * Compares the modelname or PCI subsystem id of the current codec with the
2126 * given configuration table. If a matching entry is found, returns its
2127 * config value (supposed to be 0 or positive).
2128 *
2129 * If no entries are matching, the function returns a negative value.
2130 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002131int snd_hda_check_board_config(struct hda_codec *codec,
2132 int num_configs, const char **models,
2133 const struct snd_pci_quirk *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134{
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002135 if (codec->bus->modelname && models) {
2136 int i;
2137 for (i = 0; i < num_configs; i++) {
2138 if (models[i] &&
2139 !strcmp(codec->bus->modelname, models[i])) {
2140 snd_printd(KERN_INFO "hda_codec: model '%s' is "
2141 "selected\n", models[i]);
2142 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 }
2144 }
2145 }
2146
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002147 if (!codec->bus->pci || !tbl)
2148 return -1;
2149
2150 tbl = snd_pci_quirk_lookup(codec->bus->pci, tbl);
2151 if (!tbl)
2152 return -1;
2153 if (tbl->value >= 0 && tbl->value < num_configs) {
2154#ifdef CONFIG_SND_DEBUG_DETECT
2155 char tmp[10];
2156 const char *model = NULL;
2157 if (models)
2158 model = models[tbl->value];
2159 if (!model) {
2160 sprintf(tmp, "#%d", tbl->value);
2161 model = tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 }
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002163 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
2164 "for config %x:%x (%s)\n",
2165 model, tbl->subvendor, tbl->subdevice,
2166 (tbl->name ? tbl->name : "Unknown device"));
2167#endif
2168 return tbl->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 }
2170 return -1;
2171}
2172
2173/**
2174 * snd_hda_add_new_ctls - create controls from the array
2175 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002176 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 *
2178 * This helper function creates and add new controls in the given array.
2179 * The array must be terminated with an empty entry as terminator.
2180 *
2181 * Returns 0 if successful, or a negative error code.
2182 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002183int snd_hda_add_new_ctls(struct hda_codec *codec, struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184{
Takashi Iwaicb53c622007-08-10 17:21:45 +02002185 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
2187 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01002188 struct snd_kcontrol *kctl;
2189 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002190 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01002191 return -ENOMEM;
2192 err = snd_ctl_add(codec->bus->card, kctl);
2193 if (err < 0) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002194 if (!codec->addr)
Takashi Iwai54d17402005-11-21 16:33:22 +01002195 return err;
2196 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002197 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01002198 return -ENOMEM;
2199 kctl->id.device = codec->addr;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002200 err = snd_ctl_add(codec->bus->card, kctl);
2201 if (err < 0)
Takashi Iwai54d17402005-11-21 16:33:22 +01002202 return err;
2203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 }
2205 return 0;
2206}
2207
Takashi Iwaicb53c622007-08-10 17:21:45 +02002208#ifdef CONFIG_SND_HDA_POWER_SAVE
2209static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2210 unsigned int power_state);
2211
2212static void hda_power_work(struct work_struct *work)
2213{
2214 struct hda_codec *codec =
2215 container_of(work, struct hda_codec, power_work.work);
2216
Maxim Levitsky2e492462007-09-03 15:26:57 +02002217 if (!codec->power_on || codec->power_count) {
2218 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002219 return;
Maxim Levitsky2e492462007-09-03 15:26:57 +02002220 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02002221
2222 hda_call_codec_suspend(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002223 if (codec->bus->ops.pm_notify)
2224 codec->bus->ops.pm_notify(codec);
2225}
2226
2227static void hda_keep_power_on(struct hda_codec *codec)
2228{
2229 codec->power_count++;
2230 codec->power_on = 1;
2231}
2232
2233void snd_hda_power_up(struct hda_codec *codec)
2234{
2235 codec->power_count++;
Takashi Iwaia221e282007-08-16 16:35:33 +02002236 if (codec->power_on || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002237 return;
2238
2239 codec->power_on = 1;
2240 if (codec->bus->ops.pm_notify)
2241 codec->bus->ops.pm_notify(codec);
2242 hda_call_codec_resume(codec);
2243 cancel_delayed_work(&codec->power_work);
Takashi Iwaia221e282007-08-16 16:35:33 +02002244 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002245}
2246
2247void snd_hda_power_down(struct hda_codec *codec)
2248{
2249 --codec->power_count;
Takashi Iwaia221e282007-08-16 16:35:33 +02002250 if (!codec->power_on || codec->power_count || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002251 return;
Takashi Iwaia221e282007-08-16 16:35:33 +02002252 if (power_save) {
2253 codec->power_transition = 1; /* avoid reentrance */
Takashi Iwaicb53c622007-08-10 17:21:45 +02002254 schedule_delayed_work(&codec->power_work,
2255 msecs_to_jiffies(power_save * 1000));
Takashi Iwaia221e282007-08-16 16:35:33 +02002256 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02002257}
2258
2259int snd_hda_check_amp_list_power(struct hda_codec *codec,
2260 struct hda_loopback_check *check,
2261 hda_nid_t nid)
2262{
2263 struct hda_amp_list *p;
2264 int ch, v;
2265
2266 if (!check->amplist)
2267 return 0;
2268 for (p = check->amplist; p->nid; p++) {
2269 if (p->nid == nid)
2270 break;
2271 }
2272 if (!p->nid)
2273 return 0; /* nothing changed */
2274
2275 for (p = check->amplist; p->nid; p++) {
2276 for (ch = 0; ch < 2; ch++) {
2277 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
2278 p->idx);
2279 if (!(v & HDA_AMP_MUTE) && v > 0) {
2280 if (!check->power_on) {
2281 check->power_on = 1;
2282 snd_hda_power_up(codec);
2283 }
2284 return 1;
2285 }
2286 }
2287 }
2288 if (check->power_on) {
2289 check->power_on = 0;
2290 snd_hda_power_down(codec);
2291 }
2292 return 0;
2293}
2294#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002296/*
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002297 * Channel mode helper
2298 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002299int snd_hda_ch_mode_info(struct hda_codec *codec,
2300 struct snd_ctl_elem_info *uinfo,
2301 const struct hda_channel_mode *chmode,
2302 int num_chmodes)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002303{
2304 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2305 uinfo->count = 1;
2306 uinfo->value.enumerated.items = num_chmodes;
2307 if (uinfo->value.enumerated.item >= num_chmodes)
2308 uinfo->value.enumerated.item = num_chmodes - 1;
2309 sprintf(uinfo->value.enumerated.name, "%dch",
2310 chmode[uinfo->value.enumerated.item].channels);
2311 return 0;
2312}
2313
Takashi Iwai0ba21762007-04-16 11:29:14 +02002314int snd_hda_ch_mode_get(struct hda_codec *codec,
2315 struct snd_ctl_elem_value *ucontrol,
2316 const struct hda_channel_mode *chmode,
2317 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002318 int max_channels)
2319{
2320 int i;
2321
2322 for (i = 0; i < num_chmodes; i++) {
2323 if (max_channels == chmode[i].channels) {
2324 ucontrol->value.enumerated.item[0] = i;
2325 break;
2326 }
2327 }
2328 return 0;
2329}
2330
Takashi Iwai0ba21762007-04-16 11:29:14 +02002331int snd_hda_ch_mode_put(struct hda_codec *codec,
2332 struct snd_ctl_elem_value *ucontrol,
2333 const struct hda_channel_mode *chmode,
2334 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002335 int *max_channelsp)
2336{
2337 unsigned int mode;
2338
2339 mode = ucontrol->value.enumerated.item[0];
2340 snd_assert(mode < num_chmodes, return -EINVAL);
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002341 if (*max_channelsp == chmode[mode].channels)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002342 return 0;
2343 /* change the current channel setting */
2344 *max_channelsp = chmode[mode].channels;
2345 if (chmode[mode].sequence)
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002346 snd_hda_sequence_write_cache(codec, chmode[mode].sequence);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002347 return 1;
2348}
2349
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350/*
2351 * input MUX helper
2352 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002353int snd_hda_input_mux_info(const struct hda_input_mux *imux,
2354 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355{
2356 unsigned int index;
2357
2358 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2359 uinfo->count = 1;
2360 uinfo->value.enumerated.items = imux->num_items;
Takashi Iwai5513b0c2007-10-09 11:58:41 +02002361 if (!imux->num_items)
2362 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 index = uinfo->value.enumerated.item;
2364 if (index >= imux->num_items)
2365 index = imux->num_items - 1;
2366 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
2367 return 0;
2368}
2369
Takashi Iwai0ba21762007-04-16 11:29:14 +02002370int snd_hda_input_mux_put(struct hda_codec *codec,
2371 const struct hda_input_mux *imux,
2372 struct snd_ctl_elem_value *ucontrol,
2373 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 unsigned int *cur_val)
2375{
2376 unsigned int idx;
2377
Takashi Iwai5513b0c2007-10-09 11:58:41 +02002378 if (!imux->num_items)
2379 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 idx = ucontrol->value.enumerated.item[0];
2381 if (idx >= imux->num_items)
2382 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002383 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002385 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
2386 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 *cur_val = idx;
2388 return 1;
2389}
2390
2391
2392/*
2393 * Multi-channel / digital-out PCM helper functions
2394 */
2395
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002396/* setup SPDIF output stream */
2397static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
2398 unsigned int stream_tag, unsigned int format)
2399{
2400 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
2401 if (codec->spdif_ctls & AC_DIG1_ENABLE)
2402 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_DIGI_CONVERT_1,
2403 codec->spdif_ctls & ~AC_DIG1_ENABLE & 0xff);
2404 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
2405 /* turn on again (if needed) */
2406 if (codec->spdif_ctls & AC_DIG1_ENABLE)
2407 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_DIGI_CONVERT_1,
2408 codec->spdif_ctls & 0xff);
2409}
2410
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411/*
2412 * open the digital out in the exclusive mode
2413 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002414int snd_hda_multi_out_dig_open(struct hda_codec *codec,
2415 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416{
Ingo Molnar62932df2006-01-16 16:34:20 +01002417 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02002418 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
2419 /* already opened as analog dup; reset it once */
2420 snd_hda_codec_setup_stream(codec, mout->dig_out_nid, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01002422 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 return 0;
2424}
2425
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002426int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
2427 struct hda_multi_out *mout,
2428 unsigned int stream_tag,
2429 unsigned int format,
2430 struct snd_pcm_substream *substream)
2431{
2432 mutex_lock(&codec->spdif_mutex);
2433 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
2434 mutex_unlock(&codec->spdif_mutex);
2435 return 0;
2436}
2437
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438/*
2439 * release the digital out
2440 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002441int snd_hda_multi_out_dig_close(struct hda_codec *codec,
2442 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443{
Ingo Molnar62932df2006-01-16 16:34:20 +01002444 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01002446 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 return 0;
2448}
2449
2450/*
2451 * set up more restrictions for analog out
2452 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002453int snd_hda_multi_out_analog_open(struct hda_codec *codec,
2454 struct hda_multi_out *mout,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002455 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456{
2457 substream->runtime->hw.channels_max = mout->max_channels;
2458 return snd_pcm_hw_constraint_step(substream->runtime, 0,
2459 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
2460}
2461
2462/*
2463 * set up the i/o for analog out
2464 * when the digital out is available, copy the front out to digital out, too.
2465 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002466int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
2467 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 unsigned int stream_tag,
2469 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002470 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471{
2472 hda_nid_t *nids = mout->dac_nids;
2473 int chs = substream->runtime->channels;
2474 int i;
2475
Ingo Molnar62932df2006-01-16 16:34:20 +01002476 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 if (mout->dig_out_nid && mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
2478 if (chs == 2 &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02002479 snd_hda_is_supported_format(codec, mout->dig_out_nid,
2480 format) &&
2481 !(codec->spdif_status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002483 setup_dig_out_stream(codec, mout->dig_out_nid,
2484 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 } else {
2486 mout->dig_out_used = 0;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002487 snd_hda_codec_setup_stream(codec, mout->dig_out_nid,
2488 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 }
2490 }
Ingo Molnar62932df2006-01-16 16:34:20 +01002491 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492
2493 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002494 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
2495 0, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02002496 if (!mout->no_share_stream &&
2497 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002499 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
2500 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01002501 /* extra outputs copied from front */
2502 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
Takashi Iwaid29240c2007-10-26 12:35:56 +02002503 if (!mout->no_share_stream && mout->extra_out_nid[i])
Takashi Iwai82bc9552006-03-21 11:24:42 +01002504 snd_hda_codec_setup_stream(codec,
2505 mout->extra_out_nid[i],
2506 stream_tag, 0, format);
2507
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 /* surrounds */
2509 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02002510 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002511 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
2512 i * 2, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02002513 else if (!mout->no_share_stream) /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002514 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
2515 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 }
2517 return 0;
2518}
2519
2520/*
2521 * clean up the setting for analog out
2522 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002523int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
2524 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525{
2526 hda_nid_t *nids = mout->dac_nids;
2527 int i;
2528
2529 for (i = 0; i < mout->num_dacs; i++)
2530 snd_hda_codec_setup_stream(codec, nids[i], 0, 0, 0);
2531 if (mout->hp_nid)
2532 snd_hda_codec_setup_stream(codec, mout->hp_nid, 0, 0, 0);
Takashi Iwai82bc9552006-03-21 11:24:42 +01002533 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
2534 if (mout->extra_out_nid[i])
2535 snd_hda_codec_setup_stream(codec,
2536 mout->extra_out_nid[i],
2537 0, 0, 0);
Ingo Molnar62932df2006-01-16 16:34:20 +01002538 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
2540 snd_hda_codec_setup_stream(codec, mout->dig_out_nid, 0, 0, 0);
2541 mout->dig_out_used = 0;
2542 }
Ingo Molnar62932df2006-01-16 16:34:20 +01002543 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 return 0;
2545}
2546
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002547/*
2548 * Helper for automatic ping configuration
2549 */
Kailang Yangdf694da2005-12-05 19:42:22 +01002550
Takashi Iwai12f288b2007-08-02 15:51:59 +02002551static int is_in_nid_list(hda_nid_t nid, hda_nid_t *list)
Kailang Yangdf694da2005-12-05 19:42:22 +01002552{
2553 for (; *list; list++)
2554 if (*list == nid)
2555 return 1;
2556 return 0;
2557}
2558
Steve Longerbeam81937d32007-05-08 15:33:03 +02002559
2560/*
2561 * Sort an associated group of pins according to their sequence numbers.
2562 */
2563static void sort_pins_by_sequence(hda_nid_t * pins, short * sequences,
2564 int num_pins)
2565{
2566 int i, j;
2567 short seq;
2568 hda_nid_t nid;
2569
2570 for (i = 0; i < num_pins; i++) {
2571 for (j = i + 1; j < num_pins; j++) {
2572 if (sequences[i] > sequences[j]) {
2573 seq = sequences[i];
2574 sequences[i] = sequences[j];
2575 sequences[j] = seq;
2576 nid = pins[i];
2577 pins[i] = pins[j];
2578 pins[j] = nid;
2579 }
2580 }
2581 }
2582}
2583
2584
Takashi Iwai82bc9552006-03-21 11:24:42 +01002585/*
2586 * Parse all pin widgets and store the useful pin nids to cfg
2587 *
2588 * The number of line-outs or any primary output is stored in line_outs,
2589 * and the corresponding output pins are assigned to line_out_pins[],
2590 * in the order of front, rear, CLFE, side, ...
2591 *
2592 * If more extra outputs (speaker and headphone) are found, the pins are
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002593 * assisnged to hp_pins[] and speaker_pins[], respectively. If no line-out jack
Takashi Iwai82bc9552006-03-21 11:24:42 +01002594 * is detected, one of speaker of HP pins is assigned as the primary
2595 * output, i.e. to line_out_pins[0]. So, line_outs is always positive
2596 * if any analog output exists.
2597 *
2598 * The analog input pins are assigned to input_pins array.
2599 * The digital input/output pins are assigned to dig_in_pin and dig_out_pin,
2600 * respectively.
2601 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002602int snd_hda_parse_pin_def_config(struct hda_codec *codec,
2603 struct auto_pin_cfg *cfg,
2604 hda_nid_t *ignore_nids)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002605{
2606 hda_nid_t nid, nid_start;
Steve Longerbeam81937d32007-05-08 15:33:03 +02002607 int nodes;
2608 short seq, assoc_line_out, assoc_speaker;
2609 short sequences_line_out[ARRAY_SIZE(cfg->line_out_pins)];
2610 short sequences_speaker[ARRAY_SIZE(cfg->speaker_pins)];
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002611
2612 memset(cfg, 0, sizeof(*cfg));
2613
Steve Longerbeam81937d32007-05-08 15:33:03 +02002614 memset(sequences_line_out, 0, sizeof(sequences_line_out));
2615 memset(sequences_speaker, 0, sizeof(sequences_speaker));
2616 assoc_line_out = assoc_speaker = 0;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002617
2618 nodes = snd_hda_get_sub_nodes(codec, codec->afg, &nid_start);
2619 for (nid = nid_start; nid < nodes + nid_start; nid++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01002620 unsigned int wid_caps = get_wcaps(codec, nid);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002621 unsigned int wid_type =
2622 (wid_caps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002623 unsigned int def_conf;
2624 short assoc, loc;
2625
2626 /* read all default configuration for pin complex */
2627 if (wid_type != AC_WID_PIN)
2628 continue;
Kailang Yangdf694da2005-12-05 19:42:22 +01002629 /* ignore the given nids (e.g. pc-beep returns error) */
2630 if (ignore_nids && is_in_nid_list(nid, ignore_nids))
2631 continue;
2632
Takashi Iwai0ba21762007-04-16 11:29:14 +02002633 def_conf = snd_hda_codec_read(codec, nid, 0,
2634 AC_VERB_GET_CONFIG_DEFAULT, 0);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002635 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
2636 continue;
2637 loc = get_defcfg_location(def_conf);
2638 switch (get_defcfg_device(def_conf)) {
2639 case AC_JACK_LINE_OUT:
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002640 seq = get_defcfg_sequence(def_conf);
2641 assoc = get_defcfg_association(def_conf);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002642 if (!assoc)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002643 continue;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002644 if (!assoc_line_out)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002645 assoc_line_out = assoc;
2646 else if (assoc_line_out != assoc)
2647 continue;
2648 if (cfg->line_outs >= ARRAY_SIZE(cfg->line_out_pins))
2649 continue;
2650 cfg->line_out_pins[cfg->line_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02002651 sequences_line_out[cfg->line_outs] = seq;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002652 cfg->line_outs++;
2653 break;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01002654 case AC_JACK_SPEAKER:
Steve Longerbeam81937d32007-05-08 15:33:03 +02002655 seq = get_defcfg_sequence(def_conf);
2656 assoc = get_defcfg_association(def_conf);
2657 if (! assoc)
2658 continue;
2659 if (! assoc_speaker)
2660 assoc_speaker = assoc;
2661 else if (assoc_speaker != assoc)
2662 continue;
Takashi Iwai82bc9552006-03-21 11:24:42 +01002663 if (cfg->speaker_outs >= ARRAY_SIZE(cfg->speaker_pins))
2664 continue;
2665 cfg->speaker_pins[cfg->speaker_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02002666 sequences_speaker[cfg->speaker_outs] = seq;
Takashi Iwai82bc9552006-03-21 11:24:42 +01002667 cfg->speaker_outs++;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01002668 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002669 case AC_JACK_HP_OUT:
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002670 if (cfg->hp_outs >= ARRAY_SIZE(cfg->hp_pins))
2671 continue;
2672 cfg->hp_pins[cfg->hp_outs] = nid;
2673 cfg->hp_outs++;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002674 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02002675 case AC_JACK_MIC_IN: {
2676 int preferred, alt;
2677 if (loc == AC_JACK_LOC_FRONT) {
2678 preferred = AUTO_PIN_FRONT_MIC;
2679 alt = AUTO_PIN_MIC;
2680 } else {
2681 preferred = AUTO_PIN_MIC;
2682 alt = AUTO_PIN_FRONT_MIC;
2683 }
2684 if (!cfg->input_pins[preferred])
2685 cfg->input_pins[preferred] = nid;
2686 else if (!cfg->input_pins[alt])
2687 cfg->input_pins[alt] = nid;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002688 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02002689 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002690 case AC_JACK_LINE_IN:
2691 if (loc == AC_JACK_LOC_FRONT)
2692 cfg->input_pins[AUTO_PIN_FRONT_LINE] = nid;
2693 else
2694 cfg->input_pins[AUTO_PIN_LINE] = nid;
2695 break;
2696 case AC_JACK_CD:
2697 cfg->input_pins[AUTO_PIN_CD] = nid;
2698 break;
2699 case AC_JACK_AUX:
2700 cfg->input_pins[AUTO_PIN_AUX] = nid;
2701 break;
2702 case AC_JACK_SPDIF_OUT:
2703 cfg->dig_out_pin = nid;
2704 break;
2705 case AC_JACK_SPDIF_IN:
2706 cfg->dig_in_pin = nid;
2707 break;
2708 }
2709 }
2710
2711 /* sort by sequence */
Steve Longerbeam81937d32007-05-08 15:33:03 +02002712 sort_pins_by_sequence(cfg->line_out_pins, sequences_line_out,
2713 cfg->line_outs);
2714 sort_pins_by_sequence(cfg->speaker_pins, sequences_speaker,
2715 cfg->speaker_outs);
2716
2717 /*
2718 * FIX-UP: if no line-outs are detected, try to use speaker or HP pin
2719 * as a primary output
2720 */
2721 if (!cfg->line_outs) {
2722 if (cfg->speaker_outs) {
2723 cfg->line_outs = cfg->speaker_outs;
2724 memcpy(cfg->line_out_pins, cfg->speaker_pins,
2725 sizeof(cfg->speaker_pins));
2726 cfg->speaker_outs = 0;
2727 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
2728 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
2729 } else if (cfg->hp_outs) {
2730 cfg->line_outs = cfg->hp_outs;
2731 memcpy(cfg->line_out_pins, cfg->hp_pins,
2732 sizeof(cfg->hp_pins));
2733 cfg->hp_outs = 0;
2734 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
2735 cfg->line_out_type = AUTO_PIN_HP_OUT;
2736 }
2737 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002738
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02002739 /* Reorder the surround channels
2740 * ALSA sequence is front/surr/clfe/side
2741 * HDA sequence is:
2742 * 4-ch: front/surr => OK as it is
2743 * 6-ch: front/clfe/surr
Takashi Iwai9422db42007-04-20 16:11:43 +02002744 * 8-ch: front/clfe/rear/side|fc
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02002745 */
2746 switch (cfg->line_outs) {
2747 case 3:
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02002748 case 4:
2749 nid = cfg->line_out_pins[1];
Takashi Iwai9422db42007-04-20 16:11:43 +02002750 cfg->line_out_pins[1] = cfg->line_out_pins[2];
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02002751 cfg->line_out_pins[2] = nid;
2752 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002753 }
2754
Takashi Iwai82bc9552006-03-21 11:24:42 +01002755 /*
2756 * debug prints of the parsed results
2757 */
2758 snd_printd("autoconfig: line_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
2759 cfg->line_outs, cfg->line_out_pins[0], cfg->line_out_pins[1],
2760 cfg->line_out_pins[2], cfg->line_out_pins[3],
2761 cfg->line_out_pins[4]);
2762 snd_printd(" speaker_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
2763 cfg->speaker_outs, cfg->speaker_pins[0],
2764 cfg->speaker_pins[1], cfg->speaker_pins[2],
2765 cfg->speaker_pins[3], cfg->speaker_pins[4]);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002766 snd_printd(" hp_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
2767 cfg->hp_outs, cfg->hp_pins[0],
2768 cfg->hp_pins[1], cfg->hp_pins[2],
2769 cfg->hp_pins[3], cfg->hp_pins[4]);
Takashi Iwai82bc9552006-03-21 11:24:42 +01002770 snd_printd(" inputs: mic=0x%x, fmic=0x%x, line=0x%x, fline=0x%x,"
2771 " cd=0x%x, aux=0x%x\n",
2772 cfg->input_pins[AUTO_PIN_MIC],
2773 cfg->input_pins[AUTO_PIN_FRONT_MIC],
2774 cfg->input_pins[AUTO_PIN_LINE],
2775 cfg->input_pins[AUTO_PIN_FRONT_LINE],
2776 cfg->input_pins[AUTO_PIN_CD],
2777 cfg->input_pins[AUTO_PIN_AUX]);
2778
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002779 return 0;
2780}
2781
Takashi Iwai4a471b72005-12-07 13:56:29 +01002782/* labels for input pins */
2783const char *auto_pin_cfg_labels[AUTO_PIN_LAST] = {
2784 "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux"
2785};
2786
2787
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788#ifdef CONFIG_PM
2789/*
2790 * power management
2791 */
2792
2793/**
2794 * snd_hda_suspend - suspend the codecs
2795 * @bus: the HDA bus
2796 * @state: suspsend state
2797 *
2798 * Returns 0 if successful.
2799 */
2800int snd_hda_suspend(struct hda_bus *bus, pm_message_t state)
2801{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002802 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
Takashi Iwai0ba21762007-04-16 11:29:14 +02002804 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai0b7a2e92007-08-14 15:18:26 +02002805#ifdef CONFIG_SND_HDA_POWER_SAVE
2806 if (!codec->power_on)
2807 continue;
2808#endif
Takashi Iwaicb53c622007-08-10 17:21:45 +02002809 hda_call_codec_suspend(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 }
2811 return 0;
2812}
2813
2814/**
2815 * snd_hda_resume - resume the codecs
2816 * @bus: the HDA bus
2817 * @state: resume state
2818 *
2819 * Returns 0 if successful.
Takashi Iwaicb53c622007-08-10 17:21:45 +02002820 *
2821 * This fucntion is defined only when POWER_SAVE isn't set.
2822 * In the power-save mode, the codec is resumed dynamically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 */
2824int snd_hda_resume(struct hda_bus *bus)
2825{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002826 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827
Takashi Iwai0ba21762007-04-16 11:29:14 +02002828 list_for_each_entry(codec, &bus->codec_list, list) {
Maxim Levitskyd804ad92007-09-03 15:28:04 +02002829 if (snd_hda_codec_needs_resume(codec))
2830 hda_call_codec_resume(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 return 0;
2833}
Maxim Levitskyd804ad92007-09-03 15:28:04 +02002834#ifdef CONFIG_SND_HDA_POWER_SAVE
2835int snd_hda_codecs_inuse(struct hda_bus *bus)
2836{
2837 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838
Maxim Levitskyd804ad92007-09-03 15:28:04 +02002839 list_for_each_entry(codec, &bus->codec_list, list) {
2840 if (snd_hda_codec_needs_resume(codec))
2841 return 1;
2842 }
2843 return 0;
2844}
2845#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846#endif