blob: cd807194e5f14c9574ce2bb75cd8fd3bf325589d [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 =
Andrew Paprocki3982d172007-12-19 12:13:44 +01001438 snd_hda_codec_read(codec, nid, 0,
1439 AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 codec->spdif_status = convert_to_spdif_status(codec->spdif_ctls);
1441 return 0;
1442}
1443
1444/*
1445 * SPDIF input
1446 */
1447
1448#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
1449
Takashi Iwai0ba21762007-04-16 11:29:14 +02001450static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
1451 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452{
1453 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1454
1455 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
1456 return 0;
1457}
1458
Takashi Iwai0ba21762007-04-16 11:29:14 +02001459static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
1460 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461{
1462 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1463 hda_nid_t nid = kcontrol->private_value;
1464 unsigned int val = !!ucontrol->value.integer.value[0];
1465 int change;
1466
Ingo Molnar62932df2006-01-16 16:34:20 +01001467 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001469 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 codec->spdif_in_enable = val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001471 snd_hda_codec_write_cache(codec, nid, 0,
1472 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001474 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 return change;
1476}
1477
Takashi Iwai0ba21762007-04-16 11:29:14 +02001478static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
1479 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480{
1481 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1482 hda_nid_t nid = kcontrol->private_value;
1483 unsigned short val;
1484 unsigned int sbits;
1485
Andrew Paprocki3982d172007-12-19 12:13:44 +01001486 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 sbits = convert_to_spdif_status(val);
1488 ucontrol->value.iec958.status[0] = sbits;
1489 ucontrol->value.iec958.status[1] = sbits >> 8;
1490 ucontrol->value.iec958.status[2] = sbits >> 16;
1491 ucontrol->value.iec958.status[3] = sbits >> 24;
1492 return 0;
1493}
1494
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001495static struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 {
1497 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1498 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH),
1499 .info = snd_hda_spdif_in_switch_info,
1500 .get = snd_hda_spdif_in_switch_get,
1501 .put = snd_hda_spdif_in_switch_put,
1502 },
1503 {
1504 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1505 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1506 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,DEFAULT),
1507 .info = snd_hda_spdif_mask_info,
1508 .get = snd_hda_spdif_in_status_get,
1509 },
1510 { } /* end */
1511};
1512
1513/**
1514 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
1515 * @codec: the HDA codec
1516 * @nid: audio in widget NID
1517 *
1518 * Creates controls related with the SPDIF input.
1519 * Called from each patch supporting the SPDIF in.
1520 *
1521 * Returns 0 if successful, or a negative error code.
1522 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02001523int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524{
1525 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001526 struct snd_kcontrol *kctl;
1527 struct snd_kcontrol_new *dig_mix;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
1529 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
1530 kctl = snd_ctl_new1(dig_mix, codec);
1531 kctl->private_value = nid;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001532 err = snd_ctl_add(codec->bus->card, kctl);
1533 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 return err;
1535 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001536 codec->spdif_in_enable =
Andrew Paprocki3982d172007-12-19 12:13:44 +01001537 snd_hda_codec_read(codec, nid, 0,
1538 AC_VERB_GET_DIGI_CONVERT_1, 0) &
Takashi Iwai0ba21762007-04-16 11:29:14 +02001539 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 return 0;
1541}
1542
Takashi Iwaicb53c622007-08-10 17:21:45 +02001543#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001544/*
1545 * command cache
1546 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001548/* build a 32bit cache key with the widget id and the command parameter */
1549#define build_cmd_cache_key(nid, verb) ((verb << 8) | nid)
1550#define get_cmd_cache_nid(key) ((key) & 0xff)
1551#define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff)
1552
1553/**
1554 * snd_hda_codec_write_cache - send a single command with caching
1555 * @codec: the HDA codec
1556 * @nid: NID to send the command
1557 * @direct: direct flag
1558 * @verb: the verb to send
1559 * @parm: the parameter for the verb
1560 *
1561 * Send a single command without waiting for response.
1562 *
1563 * Returns 0 if successful, or a negative error code.
1564 */
1565int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid,
1566 int direct, unsigned int verb, unsigned int parm)
1567{
1568 int err;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001569 snd_hda_power_up(codec);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001570 mutex_lock(&codec->bus->cmd_mutex);
1571 err = codec->bus->ops.command(codec, nid, direct, verb, parm);
1572 if (!err) {
1573 struct hda_cache_head *c;
1574 u32 key = build_cmd_cache_key(nid, verb);
1575 c = get_alloc_hash(&codec->cmd_cache, key);
1576 if (c)
1577 c->val = parm;
1578 }
1579 mutex_unlock(&codec->bus->cmd_mutex);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001580 snd_hda_power_down(codec);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001581 return err;
1582}
1583
1584/* resume the all commands from the cache */
1585void snd_hda_codec_resume_cache(struct hda_codec *codec)
1586{
1587 struct hda_cache_head *buffer = codec->cmd_cache.buffer;
1588 int i;
1589
1590 for (i = 0; i < codec->cmd_cache.size; i++, buffer++) {
1591 u32 key = buffer->key;
1592 if (!key)
1593 continue;
1594 snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0,
1595 get_cmd_cache_cmd(key), buffer->val);
1596 }
1597}
1598
1599/**
1600 * snd_hda_sequence_write_cache - sequence writes with caching
1601 * @codec: the HDA codec
1602 * @seq: VERB array to send
1603 *
1604 * Send the commands sequentially from the given array.
1605 * Thte commands are recorded on cache for power-save and resume.
1606 * The array must be terminated with NID=0.
1607 */
1608void snd_hda_sequence_write_cache(struct hda_codec *codec,
1609 const struct hda_verb *seq)
1610{
1611 for (; seq->nid; seq++)
1612 snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb,
1613 seq->param);
1614}
Takashi Iwaicb53c622007-08-10 17:21:45 +02001615#endif /* SND_HDA_NEEDS_RESUME */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001616
Takashi Iwai54d17402005-11-21 16:33:22 +01001617/*
1618 * set power state of the codec
1619 */
1620static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
1621 unsigned int power_state)
1622{
Takashi Iwaicb53c622007-08-10 17:21:45 +02001623 hda_nid_t nid;
1624 int i;
Takashi Iwai54d17402005-11-21 16:33:22 +01001625
1626 snd_hda_codec_write(codec, fg, 0, AC_VERB_SET_POWER_STATE,
1627 power_state);
1628
Takashi Iwaicb53c622007-08-10 17:21:45 +02001629 nid = codec->start_nid;
1630 for (i = 0; i < codec->num_nodes; i++, nid++) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01001631 unsigned int wcaps = get_wcaps(codec, nid);
1632 if (wcaps & AC_WCAP_POWER) {
1633 unsigned int wid_type = (wcaps & AC_WCAP_TYPE) >>
1634 AC_WCAP_TYPE_SHIFT;
1635 if (wid_type == AC_WID_PIN) {
1636 unsigned int pincap;
1637 /*
1638 * don't power down the widget if it controls
1639 * eapd and EAPD_BTLENABLE is set.
1640 */
1641 pincap = snd_hda_param_read(codec, nid,
1642 AC_PAR_PIN_CAP);
1643 if (pincap & AC_PINCAP_EAPD) {
1644 int eapd = snd_hda_codec_read(codec,
1645 nid, 0,
1646 AC_VERB_GET_EAPD_BTLENABLE, 0);
1647 eapd &= 0x02;
1648 if (power_state == AC_PWRST_D3 && eapd)
1649 continue;
1650 }
Takashi Iwai1194b5b2007-10-10 10:04:26 +02001651 }
Takashi Iwai54d17402005-11-21 16:33:22 +01001652 snd_hda_codec_write(codec, nid, 0,
1653 AC_VERB_SET_POWER_STATE,
1654 power_state);
Takashi Iwai1194b5b2007-10-10 10:04:26 +02001655 }
Takashi Iwai54d17402005-11-21 16:33:22 +01001656 }
1657
Takashi Iwaicb53c622007-08-10 17:21:45 +02001658 if (power_state == AC_PWRST_D0) {
1659 unsigned long end_time;
1660 int state;
Takashi Iwai54d17402005-11-21 16:33:22 +01001661 msleep(10);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001662 /* wait until the codec reachs to D0 */
1663 end_time = jiffies + msecs_to_jiffies(500);
1664 do {
1665 state = snd_hda_codec_read(codec, fg, 0,
1666 AC_VERB_GET_POWER_STATE, 0);
1667 if (state == power_state)
1668 break;
1669 msleep(1);
1670 } while (time_after_eq(end_time, jiffies));
1671 }
Takashi Iwai54d17402005-11-21 16:33:22 +01001672}
1673
Takashi Iwaicb53c622007-08-10 17:21:45 +02001674#ifdef SND_HDA_NEEDS_RESUME
1675/*
1676 * call suspend and power-down; used both from PM and power-save
1677 */
1678static void hda_call_codec_suspend(struct hda_codec *codec)
1679{
1680 if (codec->patch_ops.suspend)
1681 codec->patch_ops.suspend(codec, PMSG_SUSPEND);
1682 hda_set_power_state(codec,
1683 codec->afg ? codec->afg : codec->mfg,
1684 AC_PWRST_D3);
1685#ifdef CONFIG_SND_HDA_POWER_SAVE
1686 cancel_delayed_work(&codec->power_work);
Takashi Iwai95e99fd2007-08-13 15:29:04 +02001687 codec->power_on = 0;
Takashi Iwaia221e282007-08-16 16:35:33 +02001688 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001689#endif
1690}
1691
1692/*
1693 * kick up codec; used both from PM and power-save
1694 */
1695static void hda_call_codec_resume(struct hda_codec *codec)
1696{
1697 hda_set_power_state(codec,
1698 codec->afg ? codec->afg : codec->mfg,
1699 AC_PWRST_D0);
1700 if (codec->patch_ops.resume)
1701 codec->patch_ops.resume(codec);
1702 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02001703 if (codec->patch_ops.init)
1704 codec->patch_ops.init(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001705 snd_hda_codec_resume_amp(codec);
1706 snd_hda_codec_resume_cache(codec);
1707 }
1708}
1709#endif /* SND_HDA_NEEDS_RESUME */
1710
Takashi Iwai54d17402005-11-21 16:33:22 +01001711
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712/**
1713 * snd_hda_build_controls - build mixer controls
1714 * @bus: the BUS
1715 *
1716 * Creates mixer controls for each codec included in the bus.
1717 *
1718 * Returns 0 if successful, otherwise a negative error code.
1719 */
Takashi Iwai756e2b02007-04-16 11:27:07 +02001720int __devinit snd_hda_build_controls(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001722 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Takashi Iwai0ba21762007-04-16 11:29:14 +02001724 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwaicb53c622007-08-10 17:21:45 +02001725 int err = 0;
1726 /* fake as if already powered-on */
1727 hda_keep_power_on(codec);
1728 /* then fire up */
1729 hda_set_power_state(codec,
1730 codec->afg ? codec->afg : codec->mfg,
1731 AC_PWRST_D0);
1732 /* continue to initialize... */
1733 if (codec->patch_ops.init)
1734 err = codec->patch_ops.init(codec);
1735 if (!err && codec->patch_ops.build_controls)
1736 err = codec->patch_ops.build_controls(codec);
1737 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 if (err < 0)
1739 return err;
1740 }
1741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 return 0;
1743}
1744
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745/*
1746 * stream formats
1747 */
Takashi Iwaibefdf312005-08-22 13:57:55 +02001748struct hda_rate_tbl {
1749 unsigned int hz;
1750 unsigned int alsa_bits;
1751 unsigned int hda_fmt;
1752};
1753
1754static struct hda_rate_tbl rate_bits[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 /* rate in Hz, ALSA rate bitmask, HDA format value */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02001756
1757 /* autodetected value used in snd_hda_query_supported_pcm */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 { 8000, SNDRV_PCM_RATE_8000, 0x0500 }, /* 1/6 x 48 */
1759 { 11025, SNDRV_PCM_RATE_11025, 0x4300 }, /* 1/4 x 44 */
1760 { 16000, SNDRV_PCM_RATE_16000, 0x0200 }, /* 1/3 x 48 */
1761 { 22050, SNDRV_PCM_RATE_22050, 0x4100 }, /* 1/2 x 44 */
1762 { 32000, SNDRV_PCM_RATE_32000, 0x0a00 }, /* 2/3 x 48 */
1763 { 44100, SNDRV_PCM_RATE_44100, 0x4000 }, /* 44 */
1764 { 48000, SNDRV_PCM_RATE_48000, 0x0000 }, /* 48 */
1765 { 88200, SNDRV_PCM_RATE_88200, 0x4800 }, /* 2 x 44 */
1766 { 96000, SNDRV_PCM_RATE_96000, 0x0800 }, /* 2 x 48 */
1767 { 176400, SNDRV_PCM_RATE_176400, 0x5800 },/* 4 x 44 */
1768 { 192000, SNDRV_PCM_RATE_192000, 0x1800 }, /* 4 x 48 */
Takashi Iwaia961f9f2007-04-12 13:08:09 +02001769#define AC_PAR_PCM_RATE_BITS 11
1770 /* up to bits 10, 384kHZ isn't supported properly */
1771
1772 /* not autodetected value */
1773 { 9600, SNDRV_PCM_RATE_KNOT, 0x0400 }, /* 1/5 x 48 */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02001774
Takashi Iwaibefdf312005-08-22 13:57:55 +02001775 { 0 } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776};
1777
1778/**
1779 * snd_hda_calc_stream_format - calculate format bitset
1780 * @rate: the sample rate
1781 * @channels: the number of channels
1782 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
1783 * @maxbps: the max. bps
1784 *
1785 * Calculate the format bitset from the given rate, channels and th PCM format.
1786 *
1787 * Return zero if invalid.
1788 */
1789unsigned int snd_hda_calc_stream_format(unsigned int rate,
1790 unsigned int channels,
1791 unsigned int format,
1792 unsigned int maxbps)
1793{
1794 int i;
1795 unsigned int val = 0;
1796
Takashi Iwaibefdf312005-08-22 13:57:55 +02001797 for (i = 0; rate_bits[i].hz; i++)
1798 if (rate_bits[i].hz == rate) {
1799 val = rate_bits[i].hda_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 break;
1801 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001802 if (!rate_bits[i].hz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 snd_printdd("invalid rate %d\n", rate);
1804 return 0;
1805 }
1806
1807 if (channels == 0 || channels > 8) {
1808 snd_printdd("invalid channels %d\n", channels);
1809 return 0;
1810 }
1811 val |= channels - 1;
1812
1813 switch (snd_pcm_format_width(format)) {
1814 case 8: val |= 0x00; break;
1815 case 16: val |= 0x10; break;
1816 case 20:
1817 case 24:
1818 case 32:
1819 if (maxbps >= 32)
1820 val |= 0x40;
1821 else if (maxbps >= 24)
1822 val |= 0x30;
1823 else
1824 val |= 0x20;
1825 break;
1826 default:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001827 snd_printdd("invalid format width %d\n",
1828 snd_pcm_format_width(format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 return 0;
1830 }
1831
1832 return val;
1833}
1834
1835/**
1836 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
1837 * @codec: the HDA codec
1838 * @nid: NID to query
1839 * @ratesp: the pointer to store the detected rate bitflags
1840 * @formatsp: the pointer to store the detected formats
1841 * @bpsp: the pointer to store the detected format widths
1842 *
1843 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
1844 * or @bsps argument is ignored.
1845 *
1846 * Returns 0 if successful, otherwise a negative error code.
1847 */
1848int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
1849 u32 *ratesp, u64 *formatsp, unsigned int *bpsp)
1850{
1851 int i;
1852 unsigned int val, streams;
1853
1854 val = 0;
1855 if (nid != codec->afg &&
Takashi Iwai54d17402005-11-21 16:33:22 +01001856 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
1858 if (val == -1)
1859 return -EIO;
1860 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001861 if (!val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
1863
1864 if (ratesp) {
1865 u32 rates = 0;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02001866 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 if (val & (1 << i))
Takashi Iwaibefdf312005-08-22 13:57:55 +02001868 rates |= rate_bits[i].alsa_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 }
1870 *ratesp = rates;
1871 }
1872
1873 if (formatsp || bpsp) {
1874 u64 formats = 0;
1875 unsigned int bps;
1876 unsigned int wcaps;
1877
Takashi Iwai54d17402005-11-21 16:33:22 +01001878 wcaps = get_wcaps(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
1880 if (streams == -1)
1881 return -EIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001882 if (!streams) {
1883 streams = snd_hda_param_read(codec, codec->afg,
1884 AC_PAR_STREAM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 if (streams == -1)
1886 return -EIO;
1887 }
1888
1889 bps = 0;
1890 if (streams & AC_SUPFMT_PCM) {
1891 if (val & AC_SUPPCM_BITS_8) {
1892 formats |= SNDRV_PCM_FMTBIT_U8;
1893 bps = 8;
1894 }
1895 if (val & AC_SUPPCM_BITS_16) {
1896 formats |= SNDRV_PCM_FMTBIT_S16_LE;
1897 bps = 16;
1898 }
1899 if (wcaps & AC_WCAP_DIGITAL) {
1900 if (val & AC_SUPPCM_BITS_32)
1901 formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
1902 if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24))
1903 formats |= SNDRV_PCM_FMTBIT_S32_LE;
1904 if (val & AC_SUPPCM_BITS_24)
1905 bps = 24;
1906 else if (val & AC_SUPPCM_BITS_20)
1907 bps = 20;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001908 } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24|
1909 AC_SUPPCM_BITS_32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 formats |= SNDRV_PCM_FMTBIT_S32_LE;
1911 if (val & AC_SUPPCM_BITS_32)
1912 bps = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 else if (val & AC_SUPPCM_BITS_24)
1914 bps = 24;
Nicolas Graziano33ef76512006-09-19 14:23:14 +02001915 else if (val & AC_SUPPCM_BITS_20)
1916 bps = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 }
1918 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001919 else if (streams == AC_SUPFMT_FLOAT32) {
1920 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
1922 bps = 32;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001923 } else if (streams == AC_SUPFMT_AC3) {
1924 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 /* temporary hack: we have still no proper support
1926 * for the direct AC3 stream...
1927 */
1928 formats |= SNDRV_PCM_FMTBIT_U8;
1929 bps = 8;
1930 }
1931 if (formatsp)
1932 *formatsp = formats;
1933 if (bpsp)
1934 *bpsp = bps;
1935 }
1936
1937 return 0;
1938}
1939
1940/**
Takashi Iwai0ba21762007-04-16 11:29:14 +02001941 * snd_hda_is_supported_format - check whether the given node supports
1942 * the format val
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 *
1944 * Returns 1 if supported, 0 if not.
1945 */
1946int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
1947 unsigned int format)
1948{
1949 int i;
1950 unsigned int val = 0, rate, stream;
1951
1952 if (nid != codec->afg &&
Takashi Iwai54d17402005-11-21 16:33:22 +01001953 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
1955 if (val == -1)
1956 return 0;
1957 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02001958 if (!val) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
1960 if (val == -1)
1961 return 0;
1962 }
1963
1964 rate = format & 0xff00;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02001965 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++)
Takashi Iwaibefdf312005-08-22 13:57:55 +02001966 if (rate_bits[i].hda_fmt == rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 if (val & (1 << i))
1968 break;
1969 return 0;
1970 }
Takashi Iwaia961f9f2007-04-12 13:08:09 +02001971 if (i >= AC_PAR_PCM_RATE_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 return 0;
1973
1974 stream = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
1975 if (stream == -1)
1976 return 0;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001977 if (!stream && nid != codec->afg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 stream = snd_hda_param_read(codec, codec->afg, AC_PAR_STREAM);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001979 if (!stream || stream == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 return 0;
1981
1982 if (stream & AC_SUPFMT_PCM) {
1983 switch (format & 0xf0) {
1984 case 0x00:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001985 if (!(val & AC_SUPPCM_BITS_8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 return 0;
1987 break;
1988 case 0x10:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001989 if (!(val & AC_SUPPCM_BITS_16))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 return 0;
1991 break;
1992 case 0x20:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001993 if (!(val & AC_SUPPCM_BITS_20))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 return 0;
1995 break;
1996 case 0x30:
Takashi Iwai0ba21762007-04-16 11:29:14 +02001997 if (!(val & AC_SUPPCM_BITS_24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 return 0;
1999 break;
2000 case 0x40:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002001 if (!(val & AC_SUPPCM_BITS_32))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 return 0;
2003 break;
2004 default:
2005 return 0;
2006 }
2007 } else {
2008 /* FIXME: check for float32 and AC3? */
2009 }
2010
2011 return 1;
2012}
2013
2014/*
2015 * PCM stuff
2016 */
2017static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
2018 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002019 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020{
2021 return 0;
2022}
2023
2024static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
2025 struct hda_codec *codec,
2026 unsigned int stream_tag,
2027 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002028 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029{
2030 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
2031 return 0;
2032}
2033
2034static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
2035 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002036 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037{
2038 snd_hda_codec_setup_stream(codec, hinfo->nid, 0, 0, 0);
2039 return 0;
2040}
2041
Takashi Iwai0ba21762007-04-16 11:29:14 +02002042static int __devinit set_pcm_default_values(struct hda_codec *codec,
2043 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002045 /* query support PCM information from the given NID */
2046 if (info->nid && (!info->rates || !info->formats)) {
2047 snd_hda_query_supported_pcm(codec, info->nid,
2048 info->rates ? NULL : &info->rates,
2049 info->formats ? NULL : &info->formats,
2050 info->maxbps ? NULL : &info->maxbps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 }
2052 if (info->ops.open == NULL)
2053 info->ops.open = hda_pcm_default_open_close;
2054 if (info->ops.close == NULL)
2055 info->ops.close = hda_pcm_default_open_close;
2056 if (info->ops.prepare == NULL) {
2057 snd_assert(info->nid, return -EINVAL);
2058 info->ops.prepare = hda_pcm_default_prepare;
2059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 if (info->ops.cleanup == NULL) {
2061 snd_assert(info->nid, return -EINVAL);
2062 info->ops.cleanup = hda_pcm_default_cleanup;
2063 }
2064 return 0;
2065}
2066
2067/**
2068 * snd_hda_build_pcms - build PCM information
2069 * @bus: the BUS
2070 *
2071 * Create PCM information for each codec included in the bus.
2072 *
2073 * The build_pcms codec patch is requested to set up codec->num_pcms and
2074 * codec->pcm_info properly. The array is referred by the top-level driver
2075 * to create its PCM instances.
2076 * The allocated codec->pcm_info should be released in codec->patch_ops.free
2077 * callback.
2078 *
2079 * At least, substreams, channels_min and channels_max must be filled for
2080 * each stream. substreams = 0 indicates that the stream doesn't exist.
2081 * When rates and/or formats are zero, the supported values are queried
2082 * from the given nid. The nid is used also by the default ops.prepare
2083 * and ops.cleanup callbacks.
2084 *
2085 * The driver needs to call ops.open in its open callback. Similarly,
2086 * ops.close is supposed to be called in the close callback.
2087 * ops.prepare should be called in the prepare or hw_params callback
2088 * with the proper parameters for set up.
2089 * ops.cleanup should be called in hw_free for clean up of streams.
2090 *
2091 * This function returns 0 if successfull, or a negative error code.
2092 */
Takashi Iwai756e2b02007-04-16 11:27:07 +02002093int __devinit snd_hda_build_pcms(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002095 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Takashi Iwai0ba21762007-04-16 11:29:14 +02002097 list_for_each_entry(codec, &bus->codec_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 unsigned int pcm, s;
2099 int err;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002100 if (!codec->patch_ops.build_pcms)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 continue;
2102 err = codec->patch_ops.build_pcms(codec);
2103 if (err < 0)
2104 return err;
2105 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
2106 for (s = 0; s < 2; s++) {
2107 struct hda_pcm_stream *info;
2108 info = &codec->pcm_info[pcm].stream[s];
Takashi Iwai0ba21762007-04-16 11:29:14 +02002109 if (!info->substreams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 continue;
2111 err = set_pcm_default_values(codec, info);
2112 if (err < 0)
2113 return err;
2114 }
2115 }
2116 }
2117 return 0;
2118}
2119
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120/**
2121 * snd_hda_check_board_config - compare the current codec with the config table
2122 * @codec: the HDA codec
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002123 * @num_configs: number of config enums
2124 * @models: array of model name strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 * @tbl: configuration table, terminated by null entries
2126 *
2127 * Compares the modelname or PCI subsystem id of the current codec with the
2128 * given configuration table. If a matching entry is found, returns its
2129 * config value (supposed to be 0 or positive).
2130 *
2131 * If no entries are matching, the function returns a negative value.
2132 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002133int snd_hda_check_board_config(struct hda_codec *codec,
2134 int num_configs, const char **models,
2135 const struct snd_pci_quirk *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136{
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002137 if (codec->bus->modelname && models) {
2138 int i;
2139 for (i = 0; i < num_configs; i++) {
2140 if (models[i] &&
2141 !strcmp(codec->bus->modelname, models[i])) {
2142 snd_printd(KERN_INFO "hda_codec: model '%s' is "
2143 "selected\n", models[i]);
2144 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 }
2146 }
2147 }
2148
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002149 if (!codec->bus->pci || !tbl)
2150 return -1;
2151
2152 tbl = snd_pci_quirk_lookup(codec->bus->pci, tbl);
2153 if (!tbl)
2154 return -1;
2155 if (tbl->value >= 0 && tbl->value < num_configs) {
2156#ifdef CONFIG_SND_DEBUG_DETECT
2157 char tmp[10];
2158 const char *model = NULL;
2159 if (models)
2160 model = models[tbl->value];
2161 if (!model) {
2162 sprintf(tmp, "#%d", tbl->value);
2163 model = tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 }
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002165 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
2166 "for config %x:%x (%s)\n",
2167 model, tbl->subvendor, tbl->subdevice,
2168 (tbl->name ? tbl->name : "Unknown device"));
2169#endif
2170 return tbl->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 }
2172 return -1;
2173}
2174
2175/**
2176 * snd_hda_add_new_ctls - create controls from the array
2177 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002178 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 *
2180 * This helper function creates and add new controls in the given array.
2181 * The array must be terminated with an empty entry as terminator.
2182 *
2183 * Returns 0 if successful, or a negative error code.
2184 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002185int snd_hda_add_new_ctls(struct hda_codec *codec, struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186{
Takashi Iwaicb53c622007-08-10 17:21:45 +02002187 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
2189 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01002190 struct snd_kcontrol *kctl;
2191 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002192 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01002193 return -ENOMEM;
2194 err = snd_ctl_add(codec->bus->card, kctl);
2195 if (err < 0) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002196 if (!codec->addr)
Takashi Iwai54d17402005-11-21 16:33:22 +01002197 return err;
2198 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002199 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01002200 return -ENOMEM;
2201 kctl->id.device = codec->addr;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002202 err = snd_ctl_add(codec->bus->card, kctl);
2203 if (err < 0)
Takashi Iwai54d17402005-11-21 16:33:22 +01002204 return err;
2205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 }
2207 return 0;
2208}
2209
Takashi Iwaicb53c622007-08-10 17:21:45 +02002210#ifdef CONFIG_SND_HDA_POWER_SAVE
2211static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2212 unsigned int power_state);
2213
2214static void hda_power_work(struct work_struct *work)
2215{
2216 struct hda_codec *codec =
2217 container_of(work, struct hda_codec, power_work.work);
2218
Maxim Levitsky2e492462007-09-03 15:26:57 +02002219 if (!codec->power_on || codec->power_count) {
2220 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002221 return;
Maxim Levitsky2e492462007-09-03 15:26:57 +02002222 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02002223
2224 hda_call_codec_suspend(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002225 if (codec->bus->ops.pm_notify)
2226 codec->bus->ops.pm_notify(codec);
2227}
2228
2229static void hda_keep_power_on(struct hda_codec *codec)
2230{
2231 codec->power_count++;
2232 codec->power_on = 1;
2233}
2234
2235void snd_hda_power_up(struct hda_codec *codec)
2236{
2237 codec->power_count++;
Takashi Iwaia221e282007-08-16 16:35:33 +02002238 if (codec->power_on || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002239 return;
2240
2241 codec->power_on = 1;
2242 if (codec->bus->ops.pm_notify)
2243 codec->bus->ops.pm_notify(codec);
2244 hda_call_codec_resume(codec);
2245 cancel_delayed_work(&codec->power_work);
Takashi Iwaia221e282007-08-16 16:35:33 +02002246 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002247}
2248
2249void snd_hda_power_down(struct hda_codec *codec)
2250{
2251 --codec->power_count;
Takashi Iwaia221e282007-08-16 16:35:33 +02002252 if (!codec->power_on || codec->power_count || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002253 return;
Takashi Iwaia221e282007-08-16 16:35:33 +02002254 if (power_save) {
2255 codec->power_transition = 1; /* avoid reentrance */
Takashi Iwaicb53c622007-08-10 17:21:45 +02002256 schedule_delayed_work(&codec->power_work,
2257 msecs_to_jiffies(power_save * 1000));
Takashi Iwaia221e282007-08-16 16:35:33 +02002258 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02002259}
2260
2261int snd_hda_check_amp_list_power(struct hda_codec *codec,
2262 struct hda_loopback_check *check,
2263 hda_nid_t nid)
2264{
2265 struct hda_amp_list *p;
2266 int ch, v;
2267
2268 if (!check->amplist)
2269 return 0;
2270 for (p = check->amplist; p->nid; p++) {
2271 if (p->nid == nid)
2272 break;
2273 }
2274 if (!p->nid)
2275 return 0; /* nothing changed */
2276
2277 for (p = check->amplist; p->nid; p++) {
2278 for (ch = 0; ch < 2; ch++) {
2279 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
2280 p->idx);
2281 if (!(v & HDA_AMP_MUTE) && v > 0) {
2282 if (!check->power_on) {
2283 check->power_on = 1;
2284 snd_hda_power_up(codec);
2285 }
2286 return 1;
2287 }
2288 }
2289 }
2290 if (check->power_on) {
2291 check->power_on = 0;
2292 snd_hda_power_down(codec);
2293 }
2294 return 0;
2295}
2296#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002298/*
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002299 * Channel mode helper
2300 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002301int snd_hda_ch_mode_info(struct hda_codec *codec,
2302 struct snd_ctl_elem_info *uinfo,
2303 const struct hda_channel_mode *chmode,
2304 int num_chmodes)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002305{
2306 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2307 uinfo->count = 1;
2308 uinfo->value.enumerated.items = num_chmodes;
2309 if (uinfo->value.enumerated.item >= num_chmodes)
2310 uinfo->value.enumerated.item = num_chmodes - 1;
2311 sprintf(uinfo->value.enumerated.name, "%dch",
2312 chmode[uinfo->value.enumerated.item].channels);
2313 return 0;
2314}
2315
Takashi Iwai0ba21762007-04-16 11:29:14 +02002316int snd_hda_ch_mode_get(struct hda_codec *codec,
2317 struct snd_ctl_elem_value *ucontrol,
2318 const struct hda_channel_mode *chmode,
2319 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002320 int max_channels)
2321{
2322 int i;
2323
2324 for (i = 0; i < num_chmodes; i++) {
2325 if (max_channels == chmode[i].channels) {
2326 ucontrol->value.enumerated.item[0] = i;
2327 break;
2328 }
2329 }
2330 return 0;
2331}
2332
Takashi Iwai0ba21762007-04-16 11:29:14 +02002333int snd_hda_ch_mode_put(struct hda_codec *codec,
2334 struct snd_ctl_elem_value *ucontrol,
2335 const struct hda_channel_mode *chmode,
2336 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002337 int *max_channelsp)
2338{
2339 unsigned int mode;
2340
2341 mode = ucontrol->value.enumerated.item[0];
Takashi Iwai68ea7b22007-11-15 15:54:38 +01002342 if (mode >= num_chmodes)
2343 return -EINVAL;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002344 if (*max_channelsp == chmode[mode].channels)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002345 return 0;
2346 /* change the current channel setting */
2347 *max_channelsp = chmode[mode].channels;
2348 if (chmode[mode].sequence)
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002349 snd_hda_sequence_write_cache(codec, chmode[mode].sequence);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01002350 return 1;
2351}
2352
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353/*
2354 * input MUX helper
2355 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002356int snd_hda_input_mux_info(const struct hda_input_mux *imux,
2357 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358{
2359 unsigned int index;
2360
2361 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2362 uinfo->count = 1;
2363 uinfo->value.enumerated.items = imux->num_items;
Takashi Iwai5513b0c2007-10-09 11:58:41 +02002364 if (!imux->num_items)
2365 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 index = uinfo->value.enumerated.item;
2367 if (index >= imux->num_items)
2368 index = imux->num_items - 1;
2369 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
2370 return 0;
2371}
2372
Takashi Iwai0ba21762007-04-16 11:29:14 +02002373int snd_hda_input_mux_put(struct hda_codec *codec,
2374 const struct hda_input_mux *imux,
2375 struct snd_ctl_elem_value *ucontrol,
2376 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 unsigned int *cur_val)
2378{
2379 unsigned int idx;
2380
Takashi Iwai5513b0c2007-10-09 11:58:41 +02002381 if (!imux->num_items)
2382 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 idx = ucontrol->value.enumerated.item[0];
2384 if (idx >= imux->num_items)
2385 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002386 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002388 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
2389 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 *cur_val = idx;
2391 return 1;
2392}
2393
2394
2395/*
2396 * Multi-channel / digital-out PCM helper functions
2397 */
2398
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002399/* setup SPDIF output stream */
2400static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
2401 unsigned int stream_tag, unsigned int format)
2402{
2403 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
2404 if (codec->spdif_ctls & AC_DIG1_ENABLE)
2405 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_DIGI_CONVERT_1,
2406 codec->spdif_ctls & ~AC_DIG1_ENABLE & 0xff);
2407 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
2408 /* turn on again (if needed) */
2409 if (codec->spdif_ctls & AC_DIG1_ENABLE)
2410 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_DIGI_CONVERT_1,
2411 codec->spdif_ctls & 0xff);
2412}
2413
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414/*
2415 * open the digital out in the exclusive mode
2416 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002417int snd_hda_multi_out_dig_open(struct hda_codec *codec,
2418 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419{
Ingo Molnar62932df2006-01-16 16:34:20 +01002420 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02002421 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
2422 /* already opened as analog dup; reset it once */
2423 snd_hda_codec_setup_stream(codec, mout->dig_out_nid, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01002425 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 return 0;
2427}
2428
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002429int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
2430 struct hda_multi_out *mout,
2431 unsigned int stream_tag,
2432 unsigned int format,
2433 struct snd_pcm_substream *substream)
2434{
2435 mutex_lock(&codec->spdif_mutex);
2436 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
2437 mutex_unlock(&codec->spdif_mutex);
2438 return 0;
2439}
2440
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441/*
2442 * release the digital out
2443 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002444int snd_hda_multi_out_dig_close(struct hda_codec *codec,
2445 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446{
Ingo Molnar62932df2006-01-16 16:34:20 +01002447 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01002449 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 return 0;
2451}
2452
2453/*
2454 * set up more restrictions for analog out
2455 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002456int snd_hda_multi_out_analog_open(struct hda_codec *codec,
2457 struct hda_multi_out *mout,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002458 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459{
2460 substream->runtime->hw.channels_max = mout->max_channels;
2461 return snd_pcm_hw_constraint_step(substream->runtime, 0,
2462 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
2463}
2464
2465/*
2466 * set up the i/o for analog out
2467 * when the digital out is available, copy the front out to digital out, too.
2468 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002469int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
2470 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 unsigned int stream_tag,
2472 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002473 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474{
2475 hda_nid_t *nids = mout->dac_nids;
2476 int chs = substream->runtime->channels;
2477 int i;
2478
Ingo Molnar62932df2006-01-16 16:34:20 +01002479 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 if (mout->dig_out_nid && mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
2481 if (chs == 2 &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02002482 snd_hda_is_supported_format(codec, mout->dig_out_nid,
2483 format) &&
2484 !(codec->spdif_status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02002486 setup_dig_out_stream(codec, mout->dig_out_nid,
2487 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 } else {
2489 mout->dig_out_used = 0;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002490 snd_hda_codec_setup_stream(codec, mout->dig_out_nid,
2491 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 }
2493 }
Ingo Molnar62932df2006-01-16 16:34:20 +01002494 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
2496 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002497 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
2498 0, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02002499 if (!mout->no_share_stream &&
2500 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002502 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
2503 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01002504 /* extra outputs copied from front */
2505 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
Takashi Iwaid29240c2007-10-26 12:35:56 +02002506 if (!mout->no_share_stream && mout->extra_out_nid[i])
Takashi Iwai82bc9552006-03-21 11:24:42 +01002507 snd_hda_codec_setup_stream(codec,
2508 mout->extra_out_nid[i],
2509 stream_tag, 0, format);
2510
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 /* surrounds */
2512 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02002513 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002514 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
2515 i * 2, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02002516 else if (!mout->no_share_stream) /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002517 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
2518 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 }
2520 return 0;
2521}
2522
2523/*
2524 * clean up the setting for analog out
2525 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002526int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
2527 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528{
2529 hda_nid_t *nids = mout->dac_nids;
2530 int i;
2531
2532 for (i = 0; i < mout->num_dacs; i++)
2533 snd_hda_codec_setup_stream(codec, nids[i], 0, 0, 0);
2534 if (mout->hp_nid)
2535 snd_hda_codec_setup_stream(codec, mout->hp_nid, 0, 0, 0);
Takashi Iwai82bc9552006-03-21 11:24:42 +01002536 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
2537 if (mout->extra_out_nid[i])
2538 snd_hda_codec_setup_stream(codec,
2539 mout->extra_out_nid[i],
2540 0, 0, 0);
Ingo Molnar62932df2006-01-16 16:34:20 +01002541 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
2543 snd_hda_codec_setup_stream(codec, mout->dig_out_nid, 0, 0, 0);
2544 mout->dig_out_used = 0;
2545 }
Ingo Molnar62932df2006-01-16 16:34:20 +01002546 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 return 0;
2548}
2549
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002550/*
2551 * Helper for automatic ping configuration
2552 */
Kailang Yangdf694da2005-12-05 19:42:22 +01002553
Takashi Iwai12f288b2007-08-02 15:51:59 +02002554static int is_in_nid_list(hda_nid_t nid, hda_nid_t *list)
Kailang Yangdf694da2005-12-05 19:42:22 +01002555{
2556 for (; *list; list++)
2557 if (*list == nid)
2558 return 1;
2559 return 0;
2560}
2561
Steve Longerbeam81937d32007-05-08 15:33:03 +02002562
2563/*
2564 * Sort an associated group of pins according to their sequence numbers.
2565 */
2566static void sort_pins_by_sequence(hda_nid_t * pins, short * sequences,
2567 int num_pins)
2568{
2569 int i, j;
2570 short seq;
2571 hda_nid_t nid;
2572
2573 for (i = 0; i < num_pins; i++) {
2574 for (j = i + 1; j < num_pins; j++) {
2575 if (sequences[i] > sequences[j]) {
2576 seq = sequences[i];
2577 sequences[i] = sequences[j];
2578 sequences[j] = seq;
2579 nid = pins[i];
2580 pins[i] = pins[j];
2581 pins[j] = nid;
2582 }
2583 }
2584 }
2585}
2586
2587
Takashi Iwai82bc9552006-03-21 11:24:42 +01002588/*
2589 * Parse all pin widgets and store the useful pin nids to cfg
2590 *
2591 * The number of line-outs or any primary output is stored in line_outs,
2592 * and the corresponding output pins are assigned to line_out_pins[],
2593 * in the order of front, rear, CLFE, side, ...
2594 *
2595 * If more extra outputs (speaker and headphone) are found, the pins are
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002596 * assisnged to hp_pins[] and speaker_pins[], respectively. If no line-out jack
Takashi Iwai82bc9552006-03-21 11:24:42 +01002597 * is detected, one of speaker of HP pins is assigned as the primary
2598 * output, i.e. to line_out_pins[0]. So, line_outs is always positive
2599 * if any analog output exists.
2600 *
2601 * The analog input pins are assigned to input_pins array.
2602 * The digital input/output pins are assigned to dig_in_pin and dig_out_pin,
2603 * respectively.
2604 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002605int snd_hda_parse_pin_def_config(struct hda_codec *codec,
2606 struct auto_pin_cfg *cfg,
2607 hda_nid_t *ignore_nids)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002608{
2609 hda_nid_t nid, nid_start;
Steve Longerbeam81937d32007-05-08 15:33:03 +02002610 int nodes;
2611 short seq, assoc_line_out, assoc_speaker;
2612 short sequences_line_out[ARRAY_SIZE(cfg->line_out_pins)];
2613 short sequences_speaker[ARRAY_SIZE(cfg->speaker_pins)];
Takashi Iwaif889fa92007-10-31 15:49:32 +01002614 short sequences_hp[ARRAY_SIZE(cfg->hp_pins)];
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002615
2616 memset(cfg, 0, sizeof(*cfg));
2617
Steve Longerbeam81937d32007-05-08 15:33:03 +02002618 memset(sequences_line_out, 0, sizeof(sequences_line_out));
2619 memset(sequences_speaker, 0, sizeof(sequences_speaker));
Takashi Iwaif889fa92007-10-31 15:49:32 +01002620 memset(sequences_hp, 0, sizeof(sequences_hp));
Steve Longerbeam81937d32007-05-08 15:33:03 +02002621 assoc_line_out = assoc_speaker = 0;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002622
2623 nodes = snd_hda_get_sub_nodes(codec, codec->afg, &nid_start);
2624 for (nid = nid_start; nid < nodes + nid_start; nid++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01002625 unsigned int wid_caps = get_wcaps(codec, nid);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002626 unsigned int wid_type =
2627 (wid_caps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002628 unsigned int def_conf;
2629 short assoc, loc;
2630
2631 /* read all default configuration for pin complex */
2632 if (wid_type != AC_WID_PIN)
2633 continue;
Kailang Yangdf694da2005-12-05 19:42:22 +01002634 /* ignore the given nids (e.g. pc-beep returns error) */
2635 if (ignore_nids && is_in_nid_list(nid, ignore_nids))
2636 continue;
2637
Takashi Iwai0ba21762007-04-16 11:29:14 +02002638 def_conf = snd_hda_codec_read(codec, nid, 0,
2639 AC_VERB_GET_CONFIG_DEFAULT, 0);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002640 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
2641 continue;
2642 loc = get_defcfg_location(def_conf);
2643 switch (get_defcfg_device(def_conf)) {
2644 case AC_JACK_LINE_OUT:
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002645 seq = get_defcfg_sequence(def_conf);
2646 assoc = get_defcfg_association(def_conf);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002647 if (!assoc)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002648 continue;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002649 if (!assoc_line_out)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002650 assoc_line_out = assoc;
2651 else if (assoc_line_out != assoc)
2652 continue;
2653 if (cfg->line_outs >= ARRAY_SIZE(cfg->line_out_pins))
2654 continue;
2655 cfg->line_out_pins[cfg->line_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02002656 sequences_line_out[cfg->line_outs] = seq;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002657 cfg->line_outs++;
2658 break;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01002659 case AC_JACK_SPEAKER:
Steve Longerbeam81937d32007-05-08 15:33:03 +02002660 seq = get_defcfg_sequence(def_conf);
2661 assoc = get_defcfg_association(def_conf);
2662 if (! assoc)
2663 continue;
2664 if (! assoc_speaker)
2665 assoc_speaker = assoc;
2666 else if (assoc_speaker != assoc)
2667 continue;
Takashi Iwai82bc9552006-03-21 11:24:42 +01002668 if (cfg->speaker_outs >= ARRAY_SIZE(cfg->speaker_pins))
2669 continue;
2670 cfg->speaker_pins[cfg->speaker_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02002671 sequences_speaker[cfg->speaker_outs] = seq;
Takashi Iwai82bc9552006-03-21 11:24:42 +01002672 cfg->speaker_outs++;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01002673 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002674 case AC_JACK_HP_OUT:
Takashi Iwaif889fa92007-10-31 15:49:32 +01002675 seq = get_defcfg_sequence(def_conf);
2676 assoc = get_defcfg_association(def_conf);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002677 if (cfg->hp_outs >= ARRAY_SIZE(cfg->hp_pins))
2678 continue;
2679 cfg->hp_pins[cfg->hp_outs] = nid;
Takashi Iwaif889fa92007-10-31 15:49:32 +01002680 sequences_hp[cfg->hp_outs] = (assoc << 4) | seq;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002681 cfg->hp_outs++;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002682 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02002683 case AC_JACK_MIC_IN: {
2684 int preferred, alt;
2685 if (loc == AC_JACK_LOC_FRONT) {
2686 preferred = AUTO_PIN_FRONT_MIC;
2687 alt = AUTO_PIN_MIC;
2688 } else {
2689 preferred = AUTO_PIN_MIC;
2690 alt = AUTO_PIN_FRONT_MIC;
2691 }
2692 if (!cfg->input_pins[preferred])
2693 cfg->input_pins[preferred] = nid;
2694 else if (!cfg->input_pins[alt])
2695 cfg->input_pins[alt] = nid;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002696 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02002697 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002698 case AC_JACK_LINE_IN:
2699 if (loc == AC_JACK_LOC_FRONT)
2700 cfg->input_pins[AUTO_PIN_FRONT_LINE] = nid;
2701 else
2702 cfg->input_pins[AUTO_PIN_LINE] = nid;
2703 break;
2704 case AC_JACK_CD:
2705 cfg->input_pins[AUTO_PIN_CD] = nid;
2706 break;
2707 case AC_JACK_AUX:
2708 cfg->input_pins[AUTO_PIN_AUX] = nid;
2709 break;
2710 case AC_JACK_SPDIF_OUT:
2711 cfg->dig_out_pin = nid;
2712 break;
2713 case AC_JACK_SPDIF_IN:
2714 cfg->dig_in_pin = nid;
2715 break;
2716 }
2717 }
2718
2719 /* sort by sequence */
Steve Longerbeam81937d32007-05-08 15:33:03 +02002720 sort_pins_by_sequence(cfg->line_out_pins, sequences_line_out,
2721 cfg->line_outs);
2722 sort_pins_by_sequence(cfg->speaker_pins, sequences_speaker,
2723 cfg->speaker_outs);
Takashi Iwaif889fa92007-10-31 15:49:32 +01002724 sort_pins_by_sequence(cfg->hp_pins, sequences_hp,
2725 cfg->hp_outs);
Steve Longerbeam81937d32007-05-08 15:33:03 +02002726
Takashi Iwaif889fa92007-10-31 15:49:32 +01002727 /* if we have only one mic, make it AUTO_PIN_MIC */
2728 if (!cfg->input_pins[AUTO_PIN_MIC] &&
2729 cfg->input_pins[AUTO_PIN_FRONT_MIC]) {
2730 cfg->input_pins[AUTO_PIN_MIC] =
2731 cfg->input_pins[AUTO_PIN_FRONT_MIC];
2732 cfg->input_pins[AUTO_PIN_FRONT_MIC] = 0;
2733 }
2734 /* ditto for line-in */
2735 if (!cfg->input_pins[AUTO_PIN_LINE] &&
2736 cfg->input_pins[AUTO_PIN_FRONT_LINE]) {
2737 cfg->input_pins[AUTO_PIN_LINE] =
2738 cfg->input_pins[AUTO_PIN_FRONT_LINE];
2739 cfg->input_pins[AUTO_PIN_FRONT_LINE] = 0;
2740 }
2741
Steve Longerbeam81937d32007-05-08 15:33:03 +02002742 /*
2743 * FIX-UP: if no line-outs are detected, try to use speaker or HP pin
2744 * as a primary output
2745 */
2746 if (!cfg->line_outs) {
2747 if (cfg->speaker_outs) {
2748 cfg->line_outs = cfg->speaker_outs;
2749 memcpy(cfg->line_out_pins, cfg->speaker_pins,
2750 sizeof(cfg->speaker_pins));
2751 cfg->speaker_outs = 0;
2752 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
2753 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
2754 } else if (cfg->hp_outs) {
2755 cfg->line_outs = cfg->hp_outs;
2756 memcpy(cfg->line_out_pins, cfg->hp_pins,
2757 sizeof(cfg->hp_pins));
2758 cfg->hp_outs = 0;
2759 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
2760 cfg->line_out_type = AUTO_PIN_HP_OUT;
2761 }
2762 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002763
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02002764 /* Reorder the surround channels
2765 * ALSA sequence is front/surr/clfe/side
2766 * HDA sequence is:
2767 * 4-ch: front/surr => OK as it is
2768 * 6-ch: front/clfe/surr
Takashi Iwai9422db42007-04-20 16:11:43 +02002769 * 8-ch: front/clfe/rear/side|fc
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02002770 */
2771 switch (cfg->line_outs) {
2772 case 3:
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02002773 case 4:
2774 nid = cfg->line_out_pins[1];
Takashi Iwai9422db42007-04-20 16:11:43 +02002775 cfg->line_out_pins[1] = cfg->line_out_pins[2];
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02002776 cfg->line_out_pins[2] = nid;
2777 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002778 }
2779
Takashi Iwai82bc9552006-03-21 11:24:42 +01002780 /*
2781 * debug prints of the parsed results
2782 */
2783 snd_printd("autoconfig: line_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
2784 cfg->line_outs, cfg->line_out_pins[0], cfg->line_out_pins[1],
2785 cfg->line_out_pins[2], cfg->line_out_pins[3],
2786 cfg->line_out_pins[4]);
2787 snd_printd(" speaker_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
2788 cfg->speaker_outs, cfg->speaker_pins[0],
2789 cfg->speaker_pins[1], cfg->speaker_pins[2],
2790 cfg->speaker_pins[3], cfg->speaker_pins[4]);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002791 snd_printd(" hp_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
2792 cfg->hp_outs, cfg->hp_pins[0],
2793 cfg->hp_pins[1], cfg->hp_pins[2],
2794 cfg->hp_pins[3], cfg->hp_pins[4]);
Takashi Iwai82bc9552006-03-21 11:24:42 +01002795 snd_printd(" inputs: mic=0x%x, fmic=0x%x, line=0x%x, fline=0x%x,"
2796 " cd=0x%x, aux=0x%x\n",
2797 cfg->input_pins[AUTO_PIN_MIC],
2798 cfg->input_pins[AUTO_PIN_FRONT_MIC],
2799 cfg->input_pins[AUTO_PIN_LINE],
2800 cfg->input_pins[AUTO_PIN_FRONT_LINE],
2801 cfg->input_pins[AUTO_PIN_CD],
2802 cfg->input_pins[AUTO_PIN_AUX]);
2803
Takashi Iwaie9edcee2005-06-13 14:16:38 +02002804 return 0;
2805}
2806
Takashi Iwai4a471b72005-12-07 13:56:29 +01002807/* labels for input pins */
2808const char *auto_pin_cfg_labels[AUTO_PIN_LAST] = {
2809 "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux"
2810};
2811
2812
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813#ifdef CONFIG_PM
2814/*
2815 * power management
2816 */
2817
2818/**
2819 * snd_hda_suspend - suspend the codecs
2820 * @bus: the HDA bus
2821 * @state: suspsend state
2822 *
2823 * Returns 0 if successful.
2824 */
2825int snd_hda_suspend(struct hda_bus *bus, pm_message_t state)
2826{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002827 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
Takashi Iwai0ba21762007-04-16 11:29:14 +02002829 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai0b7a2e92007-08-14 15:18:26 +02002830#ifdef CONFIG_SND_HDA_POWER_SAVE
2831 if (!codec->power_on)
2832 continue;
2833#endif
Takashi Iwaicb53c622007-08-10 17:21:45 +02002834 hda_call_codec_suspend(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 }
2836 return 0;
2837}
2838
2839/**
2840 * snd_hda_resume - resume the codecs
2841 * @bus: the HDA bus
2842 * @state: resume state
2843 *
2844 * Returns 0 if successful.
Takashi Iwaicb53c622007-08-10 17:21:45 +02002845 *
2846 * This fucntion is defined only when POWER_SAVE isn't set.
2847 * In the power-save mode, the codec is resumed dynamically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 */
2849int snd_hda_resume(struct hda_bus *bus)
2850{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002851 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
Takashi Iwai0ba21762007-04-16 11:29:14 +02002853 list_for_each_entry(codec, &bus->codec_list, list) {
Maxim Levitskyd804ad92007-09-03 15:28:04 +02002854 if (snd_hda_codec_needs_resume(codec))
2855 hda_call_codec_resume(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 return 0;
2858}
Maxim Levitskyd804ad92007-09-03 15:28:04 +02002859#ifdef CONFIG_SND_HDA_POWER_SAVE
2860int snd_hda_codecs_inuse(struct hda_bus *bus)
2861{
2862 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
Maxim Levitskyd804ad92007-09-03 15:28:04 +02002864 list_for_each_entry(codec, &bus->codec_list, list) {
2865 if (snd_hda_codec_needs_resume(codec))
2866 return 1;
2867 }
2868 return 0;
2869}
2870#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871#endif