blob: 26d255de6bebb73b6fa51b39b740132b7c0b609c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
4 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
5 *
6 *
7 * This driver is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This driver is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/init.h>
23#include <linux/delay.h>
24#include <linux/slab.h>
25#include <linux/pci.h>
Ingo Molnar62932df2006-01-16 16:34:20 +010026#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <sound/core.h>
28#include "hda_codec.h"
29#include <sound/asoundef.h>
Jaroslav Kysela302e9c52006-07-05 17:39:49 +020030#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <sound/initval.h>
32#include "hda_local.h"
Takashi Iwai28073142007-07-27 18:58:06 +020033#include <sound/hda_hwdep.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Linus Torvalds1da177e2005-04-16 15:20:36 -070035/*
36 * vendor / preset table
37 */
38
39struct hda_vendor_id {
40 unsigned int id;
41 const char *name;
42};
43
44/* codec vendor labels */
45static struct hda_vendor_id hda_vendor_ids[] = {
Takashi Iwaic8cd1282008-02-13 16:59:29 +010046 { 0x1002, "ATI" },
Takashi Iwaia9226252006-09-17 22:05:54 +020047 { 0x1057, "Motorola" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010048 { 0x1095, "Silicon Image" },
Takashi Iwai31117b72008-12-16 14:43:21 +010049 { 0x10de, "Nvidia" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010050 { 0x10ec, "Realtek" },
Takashi Iwai4e01f542009-04-16 08:53:34 +020051 { 0x1102, "Creative" },
Joseph Chanc577b8a2006-11-29 15:29:40 +010052 { 0x1106, "VIA" },
Matthew Ranostay7f168592007-10-18 17:38:17 +020053 { 0x111d, "IDT" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010054 { 0x11c1, "LSI" },
Takashi Iwai54b903e2005-05-15 14:30:10 +020055 { 0x11d4, "Analog Devices" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 { 0x13f6, "C-Media" },
Takashi Iwaia9226252006-09-17 22:05:54 +020057 { 0x14f1, "Conexant" },
Takashi Iwaic8cd1282008-02-13 16:59:29 +010058 { 0x17e8, "Chrontel" },
59 { 0x1854, "LG" },
Mark Brown8199de32008-10-28 14:50:13 +000060 { 0x1aec, "Wolfson Microelectronics" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 { 0x434d, "C-Media" },
Takashi Iwai74c61132008-12-18 09:11:33 +010062 { 0x8086, "Intel" },
Matt2f2f4252005-04-13 14:45:30 +020063 { 0x8384, "SigmaTel" },
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 {} /* terminator */
65};
66
Takashi Iwai1289e9e2008-11-27 15:47:11 +010067static DEFINE_MUTEX(preset_mutex);
68static LIST_HEAD(hda_preset_tables);
69
70int snd_hda_add_codec_preset(struct hda_codec_preset_list *preset)
71{
72 mutex_lock(&preset_mutex);
73 list_add_tail(&preset->list, &hda_preset_tables);
74 mutex_unlock(&preset_mutex);
75 return 0;
76}
Takashi Iwaiff7a3262008-11-28 15:17:06 +010077EXPORT_SYMBOL_HDA(snd_hda_add_codec_preset);
Takashi Iwai1289e9e2008-11-27 15:47:11 +010078
79int snd_hda_delete_codec_preset(struct hda_codec_preset_list *preset)
80{
81 mutex_lock(&preset_mutex);
82 list_del(&preset->list);
83 mutex_unlock(&preset_mutex);
84 return 0;
85}
Takashi Iwaiff7a3262008-11-28 15:17:06 +010086EXPORT_SYMBOL_HDA(snd_hda_delete_codec_preset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Takashi Iwaicb53c622007-08-10 17:21:45 +020088#ifdef CONFIG_SND_HDA_POWER_SAVE
89static void hda_power_work(struct work_struct *work);
90static void hda_keep_power_on(struct hda_codec *codec);
91#else
92static inline void hda_keep_power_on(struct hda_codec *codec) {}
93#endif
94
Matthew Ranostay50a9f792008-10-25 01:05:45 -040095const char *snd_hda_get_jack_location(u32 cfg)
96{
97 static char *bases[7] = {
98 "N/A", "Rear", "Front", "Left", "Right", "Top", "Bottom",
99 };
100 static unsigned char specials_idx[] = {
101 0x07, 0x08,
102 0x17, 0x18, 0x19,
103 0x37, 0x38
104 };
105 static char *specials[] = {
106 "Rear Panel", "Drive Bar",
107 "Riser", "HDMI", "ATAPI",
108 "Mobile-In", "Mobile-Out"
109 };
110 int i;
111 cfg = (cfg & AC_DEFCFG_LOCATION) >> AC_DEFCFG_LOCATION_SHIFT;
112 if ((cfg & 0x0f) < 7)
113 return bases[cfg & 0x0f];
114 for (i = 0; i < ARRAY_SIZE(specials_idx); i++) {
115 if (cfg == specials_idx[i])
116 return specials[i];
117 }
118 return "UNKNOWN";
119}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100120EXPORT_SYMBOL_HDA(snd_hda_get_jack_location);
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400121
122const char *snd_hda_get_jack_connectivity(u32 cfg)
123{
124 static char *jack_locations[4] = { "Ext", "Int", "Sep", "Oth" };
125
126 return jack_locations[(cfg >> (AC_DEFCFG_LOCATION_SHIFT + 4)) & 3];
127}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100128EXPORT_SYMBOL_HDA(snd_hda_get_jack_connectivity);
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400129
130const char *snd_hda_get_jack_type(u32 cfg)
131{
132 static char *jack_types[16] = {
133 "Line Out", "Speaker", "HP Out", "CD",
134 "SPDIF Out", "Digital Out", "Modem Line", "Modem Hand",
135 "Line In", "Aux", "Mic", "Telephony",
136 "SPDIF In", "Digitial In", "Reserved", "Other"
137 };
138
139 return jack_types[(cfg & AC_DEFCFG_DEVICE)
140 >> AC_DEFCFG_DEVICE_SHIFT];
141}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100142EXPORT_SYMBOL_HDA(snd_hda_get_jack_type);
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400143
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100144/*
145 * Compose a 32bit command word to be sent to the HD-audio controller
146 */
147static inline unsigned int
148make_codec_cmd(struct hda_codec *codec, hda_nid_t nid, int direct,
149 unsigned int verb, unsigned int parm)
150{
151 u32 val;
152
153 val = (u32)(codec->addr & 0x0f) << 28;
154 val |= (u32)direct << 27;
155 val |= (u32)nid << 20;
156 val |= verb << 8;
157 val |= parm;
158 return val;
159}
160
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200161/*
162 * Send and receive a verb
163 */
164static int codec_exec_verb(struct hda_codec *codec, unsigned int cmd,
165 unsigned int *res)
166{
167 struct hda_bus *bus = codec->bus;
Takashi Iwai8dd78332009-06-02 01:16:07 +0200168 int err;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200169
170 if (res)
171 *res = -1;
Takashi Iwai8dd78332009-06-02 01:16:07 +0200172 again:
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200173 snd_hda_power_up(codec);
174 mutex_lock(&bus->cmd_mutex);
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200175 err = bus->ops.command(bus, cmd);
Takashi Iwai8dd78332009-06-02 01:16:07 +0200176 if (!err && res)
177 *res = bus->ops.get_response(bus);
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200178 mutex_unlock(&bus->cmd_mutex);
179 snd_hda_power_down(codec);
Takashi Iwai8dd78332009-06-02 01:16:07 +0200180 if (res && *res == -1 && bus->rirb_error) {
181 if (bus->response_reset) {
182 snd_printd("hda_codec: resetting BUS due to "
183 "fatal communication error\n");
184 bus->ops.bus_reset(bus);
185 }
186 goto again;
187 }
188 /* clear reset-flag when the communication gets recovered */
189 if (!err)
190 bus->response_reset = 0;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200191 return err;
192}
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194/**
195 * snd_hda_codec_read - send a command and get the response
196 * @codec: the HDA codec
197 * @nid: NID to send the command
198 * @direct: direct flag
199 * @verb: the verb to send
200 * @parm: the parameter for the verb
201 *
202 * Send a single command and read the corresponding response.
203 *
204 * Returns the obtained response value, or -1 for an error.
205 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200206unsigned int snd_hda_codec_read(struct hda_codec *codec, hda_nid_t nid,
207 int direct,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 unsigned int verb, unsigned int parm)
209{
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200210 unsigned cmd = make_codec_cmd(codec, nid, direct, verb, parm);
211 unsigned int res;
212 codec_exec_verb(codec, cmd, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return res;
214}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100215EXPORT_SYMBOL_HDA(snd_hda_codec_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217/**
218 * snd_hda_codec_write - send a single command without waiting for response
219 * @codec: the HDA codec
220 * @nid: NID to send the command
221 * @direct: direct flag
222 * @verb: the verb to send
223 * @parm: the parameter for the verb
224 *
225 * Send a single command without waiting for response.
226 *
227 * Returns 0 if successful, or a negative error code.
228 */
229int snd_hda_codec_write(struct hda_codec *codec, hda_nid_t nid, int direct,
230 unsigned int verb, unsigned int parm)
231{
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200232 unsigned int cmd = make_codec_cmd(codec, nid, direct, verb, parm);
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100233 unsigned int res;
Takashi Iwaib20f3b82009-06-02 01:20:22 +0200234 return codec_exec_verb(codec, cmd,
235 codec->bus->sync_write ? &res : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100237EXPORT_SYMBOL_HDA(snd_hda_codec_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239/**
240 * snd_hda_sequence_write - sequence writes
241 * @codec: the HDA codec
242 * @seq: VERB array to send
243 *
244 * Send the commands sequentially from the given array.
245 * The array must be terminated with NID=0.
246 */
247void snd_hda_sequence_write(struct hda_codec *codec, const struct hda_verb *seq)
248{
249 for (; seq->nid; seq++)
250 snd_hda_codec_write(codec, seq->nid, 0, seq->verb, seq->param);
251}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100252EXPORT_SYMBOL_HDA(snd_hda_sequence_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254/**
255 * snd_hda_get_sub_nodes - get the range of sub nodes
256 * @codec: the HDA codec
257 * @nid: NID to parse
258 * @start_id: the pointer to store the start NID
259 *
260 * Parse the NID and store the start NID of its sub-nodes.
261 * Returns the number of sub-nodes.
262 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200263int snd_hda_get_sub_nodes(struct hda_codec *codec, hda_nid_t nid,
264 hda_nid_t *start_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
266 unsigned int parm;
267
268 parm = snd_hda_param_read(codec, nid, AC_PAR_NODE_COUNT);
Danny Tholene8a7f132007-09-11 21:41:56 +0200269 if (parm == -1)
270 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 *start_id = (parm >> 16) & 0x7fff;
272 return (int)(parm & 0x7fff);
273}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100274EXPORT_SYMBOL_HDA(snd_hda_get_sub_nodes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276/**
277 * snd_hda_get_connections - get connection list
278 * @codec: the HDA codec
279 * @nid: NID to parse
280 * @conn_list: connection list array
281 * @max_conns: max. number of connections to store
282 *
283 * Parses the connection list of the given widget and stores the list
284 * of NIDs.
285 *
286 * Returns the number of connections, or a negative error code.
287 */
288int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid,
289 hda_nid_t *conn_list, int max_conns)
290{
291 unsigned int parm;
Takashi Iwai54d17402005-11-21 16:33:22 +0100292 int i, conn_len, conns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 unsigned int shift, num_elems, mask;
Takashi Iwai54d17402005-11-21 16:33:22 +0100294 hda_nid_t prev_nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Takashi Iwaida3cec32008-08-08 17:12:14 +0200296 if (snd_BUG_ON(!conn_list || max_conns <= 0))
297 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 parm = snd_hda_param_read(codec, nid, AC_PAR_CONNLIST_LEN);
300 if (parm & AC_CLIST_LONG) {
301 /* long form */
302 shift = 16;
303 num_elems = 2;
304 } else {
305 /* short form */
306 shift = 8;
307 num_elems = 4;
308 }
309 conn_len = parm & AC_CLIST_LENGTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 mask = (1 << (shift-1)) - 1;
311
Takashi Iwai0ba21762007-04-16 11:29:14 +0200312 if (!conn_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return 0; /* no connection */
314
315 if (conn_len == 1) {
316 /* single connection */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200317 parm = snd_hda_codec_read(codec, nid, 0,
318 AC_VERB_GET_CONNECT_LIST, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 conn_list[0] = parm & mask;
320 return 1;
321 }
322
323 /* multi connection */
324 conns = 0;
Takashi Iwai54d17402005-11-21 16:33:22 +0100325 prev_nid = 0;
326 for (i = 0; i < conn_len; i++) {
327 int range_val;
328 hda_nid_t val, n;
329
330 if (i % num_elems == 0)
331 parm = snd_hda_codec_read(codec, nid, 0,
332 AC_VERB_GET_CONNECT_LIST, i);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200333 range_val = !!(parm & (1 << (shift-1))); /* ranges */
Takashi Iwai54d17402005-11-21 16:33:22 +0100334 val = parm & mask;
335 parm >>= shift;
336 if (range_val) {
337 /* ranges between the previous and this one */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200338 if (!prev_nid || prev_nid >= val) {
339 snd_printk(KERN_WARNING "hda_codec: "
340 "invalid dep_range_val %x:%x\n",
341 prev_nid, val);
Takashi Iwai54d17402005-11-21 16:33:22 +0100342 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100344 for (n = prev_nid + 1; n <= val; n++) {
345 if (conns >= max_conns) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200346 snd_printk(KERN_ERR
347 "Too many connections\n");
Takashi Iwai54d17402005-11-21 16:33:22 +0100348 return -EINVAL;
349 }
350 conn_list[conns++] = n;
351 }
352 } else {
353 if (conns >= max_conns) {
354 snd_printk(KERN_ERR "Too many connections\n");
355 return -EINVAL;
356 }
357 conn_list[conns++] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
Takashi Iwai54d17402005-11-21 16:33:22 +0100359 prev_nid = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
361 return conns;
362}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100363EXPORT_SYMBOL_HDA(snd_hda_get_connections);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365
366/**
367 * snd_hda_queue_unsol_event - add an unsolicited event to queue
368 * @bus: the BUS
369 * @res: unsolicited event (lower 32bit of RIRB entry)
370 * @res_ex: codec addr and flags (upper 32bit or RIRB entry)
371 *
372 * Adds the given event to the queue. The events are processed in
373 * the workqueue asynchronously. Call this function in the interrupt
374 * hanlder when RIRB receives an unsolicited event.
375 *
376 * Returns 0 if successful, or a negative error code.
377 */
378int snd_hda_queue_unsol_event(struct hda_bus *bus, u32 res, u32 res_ex)
379{
380 struct hda_bus_unsolicited *unsol;
381 unsigned int wp;
382
Takashi Iwai0ba21762007-04-16 11:29:14 +0200383 unsol = bus->unsol;
384 if (!unsol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 return 0;
386
387 wp = (unsol->wp + 1) % HDA_UNSOL_QUEUE_SIZE;
388 unsol->wp = wp;
389
390 wp <<= 1;
391 unsol->queue[wp] = res;
392 unsol->queue[wp + 1] = res_ex;
393
Takashi Iwai6acaed32009-01-12 10:09:24 +0100394 queue_work(bus->workq, &unsol->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 return 0;
397}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100398EXPORT_SYMBOL_HDA(snd_hda_queue_unsol_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400/*
Wu Fengguang5c1d1a92008-10-07 14:17:53 +0800401 * process queued unsolicited events
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 */
David Howellsc4028952006-11-22 14:57:56 +0000403static void process_unsol_events(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
David Howellsc4028952006-11-22 14:57:56 +0000405 struct hda_bus_unsolicited *unsol =
406 container_of(work, struct hda_bus_unsolicited, work);
407 struct hda_bus *bus = unsol->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 struct hda_codec *codec;
409 unsigned int rp, caddr, res;
410
411 while (unsol->rp != unsol->wp) {
412 rp = (unsol->rp + 1) % HDA_UNSOL_QUEUE_SIZE;
413 unsol->rp = rp;
414 rp <<= 1;
415 res = unsol->queue[rp];
416 caddr = unsol->queue[rp + 1];
Takashi Iwai0ba21762007-04-16 11:29:14 +0200417 if (!(caddr & (1 << 4))) /* no unsolicited event? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 continue;
419 codec = bus->caddr_tbl[caddr & 0x0f];
420 if (codec && codec->patch_ops.unsol_event)
421 codec->patch_ops.unsol_event(codec, res);
422 }
423}
424
425/*
426 * initialize unsolicited queue
427 */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200428static int init_unsol_queue(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
430 struct hda_bus_unsolicited *unsol;
431
Takashi Iwai9f146bb2005-11-17 11:07:49 +0100432 if (bus->unsol) /* already initialized */
433 return 0;
434
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200435 unsol = kzalloc(sizeof(*unsol), GFP_KERNEL);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200436 if (!unsol) {
437 snd_printk(KERN_ERR "hda_codec: "
438 "can't allocate unsolicited queue\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 return -ENOMEM;
440 }
David Howellsc4028952006-11-22 14:57:56 +0000441 INIT_WORK(&unsol->work, process_unsol_events);
442 unsol->bus = bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 bus->unsol = unsol;
444 return 0;
445}
446
447/*
448 * destructor
449 */
450static void snd_hda_codec_free(struct hda_codec *codec);
451
452static int snd_hda_bus_free(struct hda_bus *bus)
453{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200454 struct hda_codec *codec, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Takashi Iwai0ba21762007-04-16 11:29:14 +0200456 if (!bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return 0;
Takashi Iwai6acaed32009-01-12 10:09:24 +0100458 if (bus->workq)
459 flush_workqueue(bus->workq);
460 if (bus->unsol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 kfree(bus->unsol);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200462 list_for_each_entry_safe(codec, n, &bus->codec_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 snd_hda_codec_free(codec);
464 }
465 if (bus->ops.private_free)
466 bus->ops.private_free(bus);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100467 if (bus->workq)
468 destroy_workqueue(bus->workq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 kfree(bus);
470 return 0;
471}
472
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100473static int snd_hda_bus_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 struct hda_bus *bus = device->device_data;
Takashi Iwaib94d35392008-11-21 09:08:06 +0100476 bus->shutdown = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return snd_hda_bus_free(bus);
478}
479
Takashi Iwaid7ffba12008-07-30 15:01:46 +0200480#ifdef CONFIG_SND_HDA_HWDEP
481static int snd_hda_bus_dev_register(struct snd_device *device)
482{
483 struct hda_bus *bus = device->device_data;
484 struct hda_codec *codec;
485 list_for_each_entry(codec, &bus->codec_list, list) {
486 snd_hda_hwdep_add_sysfs(codec);
487 }
488 return 0;
489}
490#else
491#define snd_hda_bus_dev_register NULL
492#endif
493
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494/**
495 * snd_hda_bus_new - create a HDA bus
496 * @card: the card entry
497 * @temp: the template for hda_bus information
498 * @busp: the pointer to store the created bus instance
499 *
500 * Returns 0 if successful, or a negative error code.
501 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100502int /*__devinit*/ snd_hda_bus_new(struct snd_card *card,
Takashi Iwai756e2b02007-04-16 11:27:07 +0200503 const struct hda_bus_template *temp,
504 struct hda_bus **busp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
506 struct hda_bus *bus;
507 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100508 static struct snd_device_ops dev_ops = {
Takashi Iwaid7ffba12008-07-30 15:01:46 +0200509 .dev_register = snd_hda_bus_dev_register,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 .dev_free = snd_hda_bus_dev_free,
511 };
512
Takashi Iwaida3cec32008-08-08 17:12:14 +0200513 if (snd_BUG_ON(!temp))
514 return -EINVAL;
515 if (snd_BUG_ON(!temp->ops.command || !temp->ops.get_response))
516 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 if (busp)
519 *busp = NULL;
520
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200521 bus = kzalloc(sizeof(*bus), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if (bus == NULL) {
523 snd_printk(KERN_ERR "can't allocate struct hda_bus\n");
524 return -ENOMEM;
525 }
526
527 bus->card = card;
528 bus->private_data = temp->private_data;
529 bus->pci = temp->pci;
530 bus->modelname = temp->modelname;
Takashi Iwaifee2fba2008-11-27 12:43:28 +0100531 bus->power_save = temp->power_save;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 bus->ops = temp->ops;
533
Ingo Molnar62932df2006-01-16 16:34:20 +0100534 mutex_init(&bus->cmd_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 INIT_LIST_HEAD(&bus->codec_list);
536
Takashi Iwaie8c0ee52009-02-05 07:34:28 +0100537 snprintf(bus->workq_name, sizeof(bus->workq_name),
538 "hd-audio%d", card->number);
539 bus->workq = create_singlethread_workqueue(bus->workq_name);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100540 if (!bus->workq) {
Takashi Iwaie8c0ee52009-02-05 07:34:28 +0100541 snd_printk(KERN_ERR "cannot create workqueue %s\n",
542 bus->workq_name);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100543 kfree(bus);
544 return -ENOMEM;
545 }
546
Takashi Iwai0ba21762007-04-16 11:29:14 +0200547 err = snd_device_new(card, SNDRV_DEV_BUS, bus, &dev_ops);
548 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 snd_hda_bus_free(bus);
550 return err;
551 }
552 if (busp)
553 *busp = bus;
554 return 0;
555}
Takashi Iwaiff7a3262008-11-28 15:17:06 +0100556EXPORT_SYMBOL_HDA(snd_hda_bus_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Takashi Iwai82467612007-07-27 19:15:54 +0200558#ifdef CONFIG_SND_HDA_GENERIC
559#define is_generic_config(codec) \
Takashi Iwaif44ac832008-07-30 15:01:45 +0200560 (codec->modelname && !strcmp(codec->modelname, "generic"))
Takashi Iwai82467612007-07-27 19:15:54 +0200561#else
562#define is_generic_config(codec) 0
563#endif
564
Takashi Iwai645f10c2008-11-28 15:07:37 +0100565#ifdef MODULE
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100566#define HDA_MODREQ_MAX_COUNT 2 /* two request_modules()'s */
567#else
Takashi Iwai645f10c2008-11-28 15:07:37 +0100568#define HDA_MODREQ_MAX_COUNT 0 /* all presets are statically linked */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100569#endif
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571/*
572 * find a matching codec preset
573 */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200574static const struct hda_codec_preset *
Takashi Iwai756e2b02007-04-16 11:27:07 +0200575find_codec_preset(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100577 struct hda_codec_preset_list *tbl;
578 const struct hda_codec_preset *preset;
579 int mod_requested = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Takashi Iwai82467612007-07-27 19:15:54 +0200581 if (is_generic_config(codec))
Takashi Iwaid5ad6302007-03-07 15:55:59 +0100582 return NULL; /* use the generic parser */
583
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100584 again:
585 mutex_lock(&preset_mutex);
586 list_for_each_entry(tbl, &hda_preset_tables, list) {
587 if (!try_module_get(tbl->owner)) {
588 snd_printk(KERN_ERR "hda_codec: cannot module_get\n");
589 continue;
590 }
591 for (preset = tbl->preset; preset->id; preset++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 u32 mask = preset->mask;
Marc Boucherca7cfae2008-01-22 15:32:25 +0100593 if (preset->afg && preset->afg != codec->afg)
594 continue;
595 if (preset->mfg && preset->mfg != codec->mfg)
596 continue;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200597 if (!mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 mask = ~0;
Takashi Iwai9c7f8522006-06-28 15:08:22 +0200599 if (preset->id == (codec->vendor_id & mask) &&
Takashi Iwai0ba21762007-04-16 11:29:14 +0200600 (!preset->rev ||
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100601 preset->rev == codec->revision_id)) {
602 mutex_unlock(&preset_mutex);
603 codec->owner = tbl->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 return preset;
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 }
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100607 module_put(tbl->owner);
608 }
609 mutex_unlock(&preset_mutex);
610
611 if (mod_requested < HDA_MODREQ_MAX_COUNT) {
612 char name[32];
613 if (!mod_requested)
614 snprintf(name, sizeof(name), "snd-hda-codec-id:%08x",
615 codec->vendor_id);
616 else
617 snprintf(name, sizeof(name), "snd-hda-codec-id:%04x*",
618 (codec->vendor_id >> 16) & 0xffff);
619 request_module(name);
620 mod_requested++;
621 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 }
623 return NULL;
624}
625
626/*
Takashi Iwaif44ac832008-07-30 15:01:45 +0200627 * get_codec_name - store the codec name
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 */
Takashi Iwaif44ac832008-07-30 15:01:45 +0200629static int get_codec_name(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
631 const struct hda_vendor_id *c;
632 const char *vendor = NULL;
633 u16 vendor_id = codec->vendor_id >> 16;
Takashi Iwai812a2cc2009-05-16 10:00:49 +0200634 char tmp[16];
635
636 if (codec->vendor_name)
637 goto get_chip_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639 for (c = hda_vendor_ids; c->id; c++) {
640 if (c->id == vendor_id) {
641 vendor = c->name;
642 break;
643 }
644 }
Takashi Iwai0ba21762007-04-16 11:29:14 +0200645 if (!vendor) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 sprintf(tmp, "Generic %04x", vendor_id);
647 vendor = tmp;
648 }
Takashi Iwai812a2cc2009-05-16 10:00:49 +0200649 codec->vendor_name = kstrdup(vendor, GFP_KERNEL);
650 if (!codec->vendor_name)
651 return -ENOMEM;
652
653 get_chip_name:
654 if (codec->chip_name)
655 return 0;
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 if (codec->preset && codec->preset->name)
Takashi Iwai812a2cc2009-05-16 10:00:49 +0200658 codec->chip_name = kstrdup(codec->preset->name, GFP_KERNEL);
659 else {
660 sprintf(tmp, "ID %x", codec->vendor_id & 0xffff);
661 codec->chip_name = kstrdup(tmp, GFP_KERNEL);
662 }
663 if (!codec->chip_name)
Takashi Iwaif44ac832008-07-30 15:01:45 +0200664 return -ENOMEM;
665 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
667
668/*
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200669 * look for an AFG and MFG nodes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100671static void /*__devinit*/ setup_fg_nodes(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
Takashi Iwai93e82ae2009-04-17 18:04:41 +0200673 int i, total_nodes, function_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 hda_nid_t nid;
675
676 total_nodes = snd_hda_get_sub_nodes(codec, AC_NODE_ROOT, &nid);
677 for (i = 0; i < total_nodes; i++, nid++) {
Takashi Iwai93e82ae2009-04-17 18:04:41 +0200678 function_id = snd_hda_param_read(codec, nid,
Pascal de Bruijn234b4342009-03-23 11:15:59 +0100679 AC_PAR_FUNCTION_TYPE) & 0xff;
Takashi Iwai93e82ae2009-04-17 18:04:41 +0200680 switch (function_id) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200681 case AC_GRP_AUDIO_FUNCTION:
682 codec->afg = nid;
Takashi Iwai93e82ae2009-04-17 18:04:41 +0200683 codec->function_id = function_id;
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200684 break;
685 case AC_GRP_MODEM_FUNCTION:
686 codec->mfg = nid;
Takashi Iwai93e82ae2009-04-17 18:04:41 +0200687 codec->function_id = function_id;
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200688 break;
689 default:
690 break;
691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
695/*
Takashi Iwai54d17402005-11-21 16:33:22 +0100696 * read widget caps for each widget and store in cache
697 */
698static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node)
699{
700 int i;
701 hda_nid_t nid;
702
703 codec->num_nodes = snd_hda_get_sub_nodes(codec, fg_node,
704 &codec->start_nid);
705 codec->wcaps = kmalloc(codec->num_nodes * 4, GFP_KERNEL);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200706 if (!codec->wcaps)
Takashi Iwai54d17402005-11-21 16:33:22 +0100707 return -ENOMEM;
708 nid = codec->start_nid;
709 for (i = 0; i < codec->num_nodes; i++, nid++)
710 codec->wcaps[i] = snd_hda_param_read(codec, nid,
711 AC_PAR_AUDIO_WIDGET_CAP);
712 return 0;
713}
714
Takashi Iwai3be14142009-02-20 14:11:16 +0100715/* read all pin default configurations and save codec->init_pins */
716static int read_pin_defaults(struct hda_codec *codec)
717{
718 int i;
719 hda_nid_t nid = codec->start_nid;
720
721 for (i = 0; i < codec->num_nodes; i++, nid++) {
722 struct hda_pincfg *pin;
723 unsigned int wcaps = get_wcaps(codec, nid);
724 unsigned int wid_type = (wcaps & AC_WCAP_TYPE) >>
725 AC_WCAP_TYPE_SHIFT;
726 if (wid_type != AC_WID_PIN)
727 continue;
728 pin = snd_array_new(&codec->init_pins);
729 if (!pin)
730 return -ENOMEM;
731 pin->nid = nid;
732 pin->cfg = snd_hda_codec_read(codec, nid, 0,
733 AC_VERB_GET_CONFIG_DEFAULT, 0);
734 }
735 return 0;
736}
737
738/* look up the given pin config list and return the item matching with NID */
739static struct hda_pincfg *look_up_pincfg(struct hda_codec *codec,
740 struct snd_array *array,
741 hda_nid_t nid)
742{
743 int i;
744 for (i = 0; i < array->used; i++) {
745 struct hda_pincfg *pin = snd_array_elem(array, i);
746 if (pin->nid == nid)
747 return pin;
748 }
749 return NULL;
750}
751
752/* write a config value for the given NID */
753static void set_pincfg(struct hda_codec *codec, hda_nid_t nid,
754 unsigned int cfg)
755{
756 int i;
757 for (i = 0; i < 4; i++) {
758 snd_hda_codec_write(codec, nid, 0,
759 AC_VERB_SET_CONFIG_DEFAULT_BYTES_0 + i,
760 cfg & 0xff);
761 cfg >>= 8;
762 }
763}
764
765/* set the current pin config value for the given NID.
766 * the value is cached, and read via snd_hda_codec_get_pincfg()
767 */
768int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list,
769 hda_nid_t nid, unsigned int cfg)
770{
771 struct hda_pincfg *pin;
Takashi Iwai5e7b8e02009-02-23 09:45:59 +0100772 unsigned int oldcfg;
Takashi Iwai3be14142009-02-20 14:11:16 +0100773
Takashi Iwai5e7b8e02009-02-23 09:45:59 +0100774 oldcfg = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwai3be14142009-02-20 14:11:16 +0100775 pin = look_up_pincfg(codec, list, nid);
776 if (!pin) {
777 pin = snd_array_new(list);
778 if (!pin)
779 return -ENOMEM;
780 pin->nid = nid;
781 }
782 pin->cfg = cfg;
Takashi Iwai5e7b8e02009-02-23 09:45:59 +0100783
784 /* change only when needed; e.g. if the pincfg is already present
785 * in user_pins[], don't write it
786 */
787 cfg = snd_hda_codec_get_pincfg(codec, nid);
788 if (oldcfg != cfg)
789 set_pincfg(codec, nid, cfg);
Takashi Iwai3be14142009-02-20 14:11:16 +0100790 return 0;
791}
792
793int snd_hda_codec_set_pincfg(struct hda_codec *codec,
794 hda_nid_t nid, unsigned int cfg)
795{
Takashi Iwai346ff702009-02-23 09:42:57 +0100796 return snd_hda_add_pincfg(codec, &codec->driver_pins, nid, cfg);
Takashi Iwai3be14142009-02-20 14:11:16 +0100797}
798EXPORT_SYMBOL_HDA(snd_hda_codec_set_pincfg);
799
800/* get the current pin config value of the given pin NID */
801unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid)
802{
803 struct hda_pincfg *pin;
804
Takashi Iwai3be14142009-02-20 14:11:16 +0100805#ifdef CONFIG_SND_HDA_HWDEP
Takashi Iwai346ff702009-02-23 09:42:57 +0100806 pin = look_up_pincfg(codec, &codec->user_pins, nid);
Takashi Iwai3be14142009-02-20 14:11:16 +0100807 if (pin)
808 return pin->cfg;
809#endif
Takashi Iwai5e7b8e02009-02-23 09:45:59 +0100810 pin = look_up_pincfg(codec, &codec->driver_pins, nid);
811 if (pin)
812 return pin->cfg;
Takashi Iwai3be14142009-02-20 14:11:16 +0100813 pin = look_up_pincfg(codec, &codec->init_pins, nid);
814 if (pin)
815 return pin->cfg;
816 return 0;
817}
818EXPORT_SYMBOL_HDA(snd_hda_codec_get_pincfg);
819
820/* restore all current pin configs */
821static void restore_pincfgs(struct hda_codec *codec)
822{
823 int i;
824 for (i = 0; i < codec->init_pins.used; i++) {
825 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
826 set_pincfg(codec, pin->nid,
827 snd_hda_codec_get_pincfg(codec, pin->nid));
828 }
829}
Takashi Iwai54d17402005-11-21 16:33:22 +0100830
Takashi Iwai01751f52007-08-10 16:59:39 +0200831static void init_hda_cache(struct hda_cache_rec *cache,
832 unsigned int record_size);
Takashi Iwai1fcaee62007-08-23 00:01:09 +0200833static void free_hda_cache(struct hda_cache_rec *cache);
Takashi Iwai01751f52007-08-10 16:59:39 +0200834
Takashi Iwai3be14142009-02-20 14:11:16 +0100835/* restore the initial pin cfgs and release all pincfg lists */
836static void restore_init_pincfgs(struct hda_codec *codec)
837{
Takashi Iwai346ff702009-02-23 09:42:57 +0100838 /* first free driver_pins and user_pins, then call restore_pincfg
Takashi Iwai3be14142009-02-20 14:11:16 +0100839 * so that only the values in init_pins are restored
840 */
Takashi Iwai346ff702009-02-23 09:42:57 +0100841 snd_array_free(&codec->driver_pins);
Takashi Iwai3be14142009-02-20 14:11:16 +0100842#ifdef CONFIG_SND_HDA_HWDEP
Takashi Iwai346ff702009-02-23 09:42:57 +0100843 snd_array_free(&codec->user_pins);
Takashi Iwai3be14142009-02-20 14:11:16 +0100844#endif
845 restore_pincfgs(codec);
846 snd_array_free(&codec->init_pins);
847}
848
Takashi Iwai54d17402005-11-21 16:33:22 +0100849/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 * codec destructor
851 */
852static void snd_hda_codec_free(struct hda_codec *codec)
853{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200854 if (!codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return;
Takashi Iwai3be14142009-02-20 14:11:16 +0100856 restore_init_pincfgs(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200857#ifdef CONFIG_SND_HDA_POWER_SAVE
858 cancel_delayed_work(&codec->power_work);
Takashi Iwai6acaed32009-01-12 10:09:24 +0100859 flush_workqueue(codec->bus->workq);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200860#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 list_del(&codec->list);
Takashi Iwaid13bd412008-07-30 15:01:45 +0200862 snd_array_free(&codec->mixers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 codec->bus->caddr_tbl[codec->addr] = NULL;
864 if (codec->patch_ops.free)
865 codec->patch_ops.free(codec);
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100866 module_put(codec->owner);
Takashi Iwai01751f52007-08-10 16:59:39 +0200867 free_hda_cache(&codec->amp_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200868 free_hda_cache(&codec->cmd_cache);
Takashi Iwai812a2cc2009-05-16 10:00:49 +0200869 kfree(codec->vendor_name);
870 kfree(codec->chip_name);
Takashi Iwaif44ac832008-07-30 15:01:45 +0200871 kfree(codec->modelname);
Takashi Iwai54d17402005-11-21 16:33:22 +0100872 kfree(codec->wcaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 kfree(codec);
874}
875
Takashi Iwaibb6ac722009-03-13 09:02:42 +0100876static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
877 unsigned int power_state);
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879/**
880 * snd_hda_codec_new - create a HDA codec
881 * @bus: the bus to assign
882 * @codec_addr: the codec address
883 * @codecp: the pointer to store the generated codec
884 *
885 * Returns 0 if successful, or a negative error code.
886 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100887int /*__devinit*/ snd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr,
Takashi Iwaid4d9cd032008-12-19 15:19:11 +0100888 int do_init, struct hda_codec **codecp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
890 struct hda_codec *codec;
Jaroslav Kyselaba443682008-08-13 20:55:32 +0200891 char component[31];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 int err;
893
Takashi Iwaida3cec32008-08-08 17:12:14 +0200894 if (snd_BUG_ON(!bus))
895 return -EINVAL;
896 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
897 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 if (bus->caddr_tbl[codec_addr]) {
Takashi Iwai0ba21762007-04-16 11:29:14 +0200900 snd_printk(KERN_ERR "hda_codec: "
901 "address 0x%x is already occupied\n", codec_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 return -EBUSY;
903 }
904
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200905 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 if (codec == NULL) {
907 snd_printk(KERN_ERR "can't allocate struct hda_codec\n");
908 return -ENOMEM;
909 }
910
911 codec->bus = bus;
912 codec->addr = codec_addr;
Ingo Molnar62932df2006-01-16 16:34:20 +0100913 mutex_init(&codec->spdif_mutex);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +0800914 mutex_init(&codec->control_mutex);
Takashi Iwai01751f52007-08-10 16:59:39 +0200915 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
Takashi Iwaib3ac5632007-08-10 17:03:40 +0200916 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Takashi Iwaid13bd412008-07-30 15:01:45 +0200917 snd_array_init(&codec->mixers, sizeof(struct snd_kcontrol *), 32);
Takashi Iwai3be14142009-02-20 14:11:16 +0100918 snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwai346ff702009-02-23 09:42:57 +0100919 snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200920 if (codec->bus->modelname) {
921 codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL);
922 if (!codec->modelname) {
923 snd_hda_codec_free(codec);
924 return -ENODEV;
925 }
926 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Takashi Iwaicb53c622007-08-10 17:21:45 +0200928#ifdef CONFIG_SND_HDA_POWER_SAVE
929 INIT_DELAYED_WORK(&codec->power_work, hda_power_work);
930 /* snd_hda_codec_new() marks the codec as power-up, and leave it as is.
931 * the caller has to power down appropriatley after initialization
932 * phase.
933 */
934 hda_keep_power_on(codec);
935#endif
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 list_add_tail(&codec->list, &bus->codec_list);
938 bus->caddr_tbl[codec_addr] = codec;
939
Takashi Iwai0ba21762007-04-16 11:29:14 +0200940 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
941 AC_PAR_VENDOR_ID);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100942 if (codec->vendor_id == -1)
943 /* read again, hopefully the access method was corrected
944 * in the last read...
945 */
946 codec->vendor_id = snd_hda_param_read(codec, AC_NODE_ROOT,
947 AC_PAR_VENDOR_ID);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200948 codec->subsystem_id = snd_hda_param_read(codec, AC_NODE_ROOT,
949 AC_PAR_SUBSYSTEM_ID);
950 codec->revision_id = snd_hda_param_read(codec, AC_NODE_ROOT,
951 AC_PAR_REV_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200953 setup_fg_nodes(codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200954 if (!codec->afg && !codec->mfg) {
Sasha Khapyorsky673b6832005-08-11 11:00:16 +0200955 snd_printdd("hda_codec: no AFG or MFG node found\n");
Takashi Iwai3be14142009-02-20 14:11:16 +0100956 err = -ENODEV;
957 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
959
Takashi Iwai3be14142009-02-20 14:11:16 +0100960 err = read_widget_caps(codec, codec->afg ? codec->afg : codec->mfg);
961 if (err < 0) {
Takashi Iwai54d17402005-11-21 16:33:22 +0100962 snd_printk(KERN_ERR "hda_codec: cannot malloc\n");
Takashi Iwai3be14142009-02-20 14:11:16 +0100963 goto error;
Takashi Iwai54d17402005-11-21 16:33:22 +0100964 }
Takashi Iwai3be14142009-02-20 14:11:16 +0100965 err = read_pin_defaults(codec);
966 if (err < 0)
967 goto error;
Takashi Iwai54d17402005-11-21 16:33:22 +0100968
Takashi Iwai0ba21762007-04-16 11:29:14 +0200969 if (!codec->subsystem_id) {
Takashi Iwai86284e42005-10-11 15:05:54 +0200970 hda_nid_t nid = codec->afg ? codec->afg : codec->mfg;
Takashi Iwai0ba21762007-04-16 11:29:14 +0200971 codec->subsystem_id =
972 snd_hda_codec_read(codec, nid, 0,
973 AC_VERB_GET_SUBSYSTEM_ID, 0);
Takashi Iwai86284e42005-10-11 15:05:54 +0200974 }
975
Takashi Iwaibb6ac722009-03-13 09:02:42 +0100976 /* power-up all before initialization */
977 hda_set_power_state(codec,
978 codec->afg ? codec->afg : codec->mfg,
979 AC_PWRST_D0);
980
Takashi Iwaid4d9cd032008-12-19 15:19:11 +0100981 if (do_init) {
982 err = snd_hda_codec_configure(codec);
Takashi Iwai3be14142009-02-20 14:11:16 +0100983 if (err < 0)
984 goto error;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200985 }
986 snd_hda_codec_proc_new(codec);
987
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200988 snd_hda_create_hwdep(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +0200989
990 sprintf(component, "HDA:%08x,%08x,%08x", codec->vendor_id,
991 codec->subsystem_id, codec->revision_id);
992 snd_component_add(codec->bus->card, component);
993
994 if (codecp)
995 *codecp = codec;
996 return 0;
Takashi Iwai3be14142009-02-20 14:11:16 +0100997
998 error:
999 snd_hda_codec_free(codec);
1000 return err;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001001}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001002EXPORT_SYMBOL_HDA(snd_hda_codec_new);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001003
1004int snd_hda_codec_configure(struct hda_codec *codec)
1005{
1006 int err;
1007
Takashi Iwaid5ad6302007-03-07 15:55:59 +01001008 codec->preset = find_codec_preset(codec);
Takashi Iwai812a2cc2009-05-16 10:00:49 +02001009 if (!codec->vendor_name || !codec->chip_name) {
Takashi Iwaif44ac832008-07-30 15:01:45 +02001010 err = get_codec_name(codec);
1011 if (err < 0)
1012 return err;
1013 }
Takashi Iwai43ea1d42007-04-26 19:12:08 +02001014 /* audio codec should override the mixer name */
Takashi Iwaif44ac832008-07-30 15:01:45 +02001015 if (codec->afg || !*codec->bus->card->mixername)
Takashi Iwai812a2cc2009-05-16 10:00:49 +02001016 snprintf(codec->bus->card->mixername,
1017 sizeof(codec->bus->card->mixername),
1018 "%s %s", codec->vendor_name, codec->chip_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Takashi Iwai82467612007-07-27 19:15:54 +02001020 if (is_generic_config(codec)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 err = snd_hda_parse_generic_codec(codec);
Takashi Iwai82467612007-07-27 19:15:54 +02001022 goto patched;
1023 }
Takashi Iwai82467612007-07-27 19:15:54 +02001024 if (codec->preset && codec->preset->patch) {
1025 err = codec->preset->patch(codec);
1026 goto patched;
1027 }
1028
1029 /* call the default parser */
Takashi Iwai82467612007-07-27 19:15:54 +02001030 err = snd_hda_parse_generic_codec(codec);
Takashi Iwai35a1e0c2007-10-19 08:13:40 +02001031 if (err < 0)
1032 printk(KERN_ERR "hda-codec: No codec parser is available\n");
Takashi Iwai82467612007-07-27 19:15:54 +02001033
1034 patched:
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001035 if (!err && codec->patch_ops.unsol_event)
1036 err = init_unsol_queue(codec->bus);
1037 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
1039
1040/**
1041 * snd_hda_codec_setup_stream - set up the codec for streaming
1042 * @codec: the CODEC to set up
1043 * @nid: the NID to set up
1044 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
1045 * @channel_id: channel id to pass, zero based.
1046 * @format: stream format.
1047 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001048void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
1049 u32 stream_tag,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 int channel_id, int format)
1051{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001052 if (!nid)
Takashi Iwaid21b37e2005-04-20 13:45:55 +02001053 return;
1054
Takashi Iwai0ba21762007-04-16 11:29:14 +02001055 snd_printdd("hda_codec_setup_stream: "
1056 "NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 nid, stream_tag, channel_id, format);
1058 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID,
1059 (stream_tag << 4) | channel_id);
1060 msleep(1);
1061 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, format);
1062}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001063EXPORT_SYMBOL_HDA(snd_hda_codec_setup_stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Takashi Iwai888afa12008-03-18 09:57:50 +01001065void snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid)
1066{
1067 if (!nid)
1068 return;
1069
1070 snd_printdd("hda_codec_cleanup_stream: NID=0x%x\n", nid);
1071 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
1072#if 0 /* keep the format */
1073 msleep(1);
1074 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0);
1075#endif
1076}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001077EXPORT_SYMBOL_HDA(snd_hda_codec_cleanup_stream);
Takashi Iwai888afa12008-03-18 09:57:50 +01001078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079/*
1080 * amp access functions
1081 */
1082
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001083/* FIXME: more better hash key? */
1084#define HDA_HASH_KEY(nid,dir,idx) (u32)((nid) + ((idx) << 16) + ((dir) << 24))
Takashi Iwai1327a322009-03-23 13:07:47 +01001085#define HDA_HASH_PINCAP_KEY(nid) (u32)((nid) + (0x02 << 24))
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001086#define HDA_HASH_PARPCM_KEY(nid) (u32)((nid) + (0x03 << 24))
1087#define HDA_HASH_PARSTR_KEY(nid) (u32)((nid) + (0x04 << 24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088#define INFO_AMP_CAPS (1<<0)
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001089#define INFO_AMP_VOL(ch) (1 << (1 + (ch)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091/* initialize the hash table */
Takashi Iwai1289e9e2008-11-27 15:47:11 +01001092static void /*__devinit*/ init_hda_cache(struct hda_cache_rec *cache,
Takashi Iwai01751f52007-08-10 16:59:39 +02001093 unsigned int record_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
Takashi Iwai01751f52007-08-10 16:59:39 +02001095 memset(cache, 0, sizeof(*cache));
1096 memset(cache->hash, 0xff, sizeof(cache->hash));
Takashi Iwai603c4012008-07-30 15:01:44 +02001097 snd_array_init(&cache->buf, record_size, 64);
Takashi Iwai01751f52007-08-10 16:59:39 +02001098}
1099
Takashi Iwai1fcaee62007-08-23 00:01:09 +02001100static void free_hda_cache(struct hda_cache_rec *cache)
Takashi Iwai01751f52007-08-10 16:59:39 +02001101{
Takashi Iwai603c4012008-07-30 15:01:44 +02001102 snd_array_free(&cache->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103}
1104
1105/* query the hash. allocate an entry if not found. */
Takashi Iwai01751f52007-08-10 16:59:39 +02001106static struct hda_cache_head *get_alloc_hash(struct hda_cache_rec *cache,
1107 u32 key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
Takashi Iwai01751f52007-08-10 16:59:39 +02001109 u16 idx = key % (u16)ARRAY_SIZE(cache->hash);
1110 u16 cur = cache->hash[idx];
1111 struct hda_cache_head *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 while (cur != 0xffff) {
Takashi Iwaif43aa022008-11-10 16:24:26 +01001114 info = snd_array_elem(&cache->buf, cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 if (info->key == key)
1116 return info;
1117 cur = info->next;
1118 }
1119
1120 /* add a new hash entry */
Takashi Iwai603c4012008-07-30 15:01:44 +02001121 info = snd_array_new(&cache->buf);
Takashi Iwaic2174292008-11-07 00:23:30 +01001122 if (!info)
1123 return NULL;
Takashi Iwaif43aa022008-11-10 16:24:26 +01001124 cur = snd_array_index(&cache->buf, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 info->key = key;
Takashi Iwai01751f52007-08-10 16:59:39 +02001126 info->val = 0;
1127 info->next = cache->hash[idx];
1128 cache->hash[idx] = cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130 return info;
1131}
1132
Takashi Iwai01751f52007-08-10 16:59:39 +02001133/* query and allocate an amp hash entry */
1134static inline struct hda_amp_info *
1135get_alloc_amp_hash(struct hda_codec *codec, u32 key)
1136{
1137 return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key);
1138}
1139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140/*
1141 * query AMP capabilities for the given widget and direction
1142 */
Matthew Ranostay09a99952008-01-24 11:49:21 +01001143u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001145 struct hda_amp_info *info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Takashi Iwai0ba21762007-04-16 11:29:14 +02001147 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, 0));
1148 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 return 0;
Takashi Iwai01751f52007-08-10 16:59:39 +02001150 if (!(info->head.val & INFO_AMP_CAPS)) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001151 if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 nid = codec->afg;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001153 info->amp_caps = snd_hda_param_read(codec, nid,
1154 direction == HDA_OUTPUT ?
1155 AC_PAR_AMP_OUT_CAP :
1156 AC_PAR_AMP_IN_CAP);
Takashi Iwaib75e53f2007-05-10 16:56:09 +02001157 if (info->amp_caps)
Takashi Iwai01751f52007-08-10 16:59:39 +02001158 info->head.val |= INFO_AMP_CAPS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 }
1160 return info->amp_caps;
1161}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001162EXPORT_SYMBOL_HDA(query_amp_caps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Takashi Iwai897cc182007-05-29 19:01:37 +02001164int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
1165 unsigned int caps)
1166{
1167 struct hda_amp_info *info;
1168
1169 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, dir, 0));
1170 if (!info)
1171 return -EINVAL;
1172 info->amp_caps = caps;
Takashi Iwai01751f52007-08-10 16:59:39 +02001173 info->head.val |= INFO_AMP_CAPS;
Takashi Iwai897cc182007-05-29 19:01:37 +02001174 return 0;
1175}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001176EXPORT_SYMBOL_HDA(snd_hda_override_amp_caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001177
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001178static unsigned int
1179query_caps_hash(struct hda_codec *codec, hda_nid_t nid, u32 key,
1180 unsigned int (*func)(struct hda_codec *, hda_nid_t))
Takashi Iwai1327a322009-03-23 13:07:47 +01001181{
1182 struct hda_amp_info *info;
1183
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001184 info = get_alloc_amp_hash(codec, key);
Takashi Iwai1327a322009-03-23 13:07:47 +01001185 if (!info)
1186 return 0;
1187 if (!info->head.val) {
Takashi Iwai1327a322009-03-23 13:07:47 +01001188 info->head.val |= INFO_AMP_CAPS;
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001189 info->amp_caps = func(codec, nid);
Takashi Iwai1327a322009-03-23 13:07:47 +01001190 }
1191 return info->amp_caps;
1192}
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01001193
1194static unsigned int read_pin_cap(struct hda_codec *codec, hda_nid_t nid)
1195{
1196 return snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP);
1197}
1198
1199u32 snd_hda_query_pin_caps(struct hda_codec *codec, hda_nid_t nid)
1200{
1201 return query_caps_hash(codec, nid, HDA_HASH_PINCAP_KEY(nid),
1202 read_pin_cap);
1203}
Takashi Iwai1327a322009-03-23 13:07:47 +01001204EXPORT_SYMBOL_HDA(snd_hda_query_pin_caps);
1205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206/*
1207 * read the current volume to info
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001208 * if the cache exists, read the cache value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001210static unsigned int get_vol_mute(struct hda_codec *codec,
1211 struct hda_amp_info *info, hda_nid_t nid,
1212 int ch, int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
1214 u32 val, parm;
1215
Takashi Iwai01751f52007-08-10 16:59:39 +02001216 if (info->head.val & INFO_AMP_VOL(ch))
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001217 return info->vol[ch];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
1219 parm = ch ? AC_AMP_GET_RIGHT : AC_AMP_GET_LEFT;
1220 parm |= direction == HDA_OUTPUT ? AC_AMP_GET_OUTPUT : AC_AMP_GET_INPUT;
1221 parm |= index;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001222 val = snd_hda_codec_read(codec, nid, 0,
1223 AC_VERB_GET_AMP_GAIN_MUTE, parm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 info->vol[ch] = val & 0xff;
Takashi Iwai01751f52007-08-10 16:59:39 +02001225 info->head.val |= INFO_AMP_VOL(ch);
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001226 return info->vol[ch];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227}
1228
1229/*
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001230 * write the current volume in info to the h/w and update the cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 */
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001232static void put_vol_mute(struct hda_codec *codec, struct hda_amp_info *info,
Takashi Iwai0ba21762007-04-16 11:29:14 +02001233 hda_nid_t nid, int ch, int direction, int index,
1234 int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235{
1236 u32 parm;
1237
1238 parm = ch ? AC_AMP_SET_RIGHT : AC_AMP_SET_LEFT;
1239 parm |= direction == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT;
1240 parm |= index << AC_AMP_SET_INDEX_SHIFT;
1241 parm |= val;
1242 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, parm);
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001243 info->vol[ch] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244}
1245
1246/*
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001247 * read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 */
Takashi Iwai834be882006-03-01 14:16:17 +01001249int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch,
1250 int direction, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001252 struct hda_amp_info *info;
1253 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, index));
1254 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001256 return get_vol_mute(codec, info, nid, ch, direction, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001258EXPORT_SYMBOL_HDA(snd_hda_codec_amp_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001260/*
1261 * update the AMP value, mask = bit mask to set, val = the value
1262 */
Takashi Iwai834be882006-03-01 14:16:17 +01001263int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch,
1264 int direction, int idx, int mask, int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265{
Takashi Iwai0ba21762007-04-16 11:29:14 +02001266 struct hda_amp_info *info;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001267
Takashi Iwai0ba21762007-04-16 11:29:14 +02001268 info = get_alloc_amp_hash(codec, HDA_HASH_KEY(nid, direction, idx));
1269 if (!info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001271 val &= mask;
1272 val |= get_vol_mute(codec, info, nid, ch, direction, idx) & ~mask;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02001273 if (info->vol[ch] == val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 return 0;
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001275 put_vol_mute(codec, info, nid, ch, direction, idx, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 return 1;
1277}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001278EXPORT_SYMBOL_HDA(snd_hda_codec_amp_update);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Takashi Iwai47fd8302007-08-10 17:11:07 +02001280/*
1281 * update the AMP stereo with the same mask and value
1282 */
1283int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
1284 int direction, int idx, int mask, int val)
1285{
1286 int ch, ret = 0;
1287 for (ch = 0; ch < 2; ch++)
1288 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
1289 idx, mask, val);
1290 return ret;
1291}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001292EXPORT_SYMBOL_HDA(snd_hda_codec_amp_stereo);
Takashi Iwai47fd8302007-08-10 17:11:07 +02001293
Takashi Iwaicb53c622007-08-10 17:21:45 +02001294#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001295/* resume the all amp commands from the cache */
1296void snd_hda_codec_resume_amp(struct hda_codec *codec)
1297{
Takashi Iwai603c4012008-07-30 15:01:44 +02001298 struct hda_amp_info *buffer = codec->amp_cache.buf.list;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001299 int i;
1300
Takashi Iwai603c4012008-07-30 15:01:44 +02001301 for (i = 0; i < codec->amp_cache.buf.used; i++, buffer++) {
Takashi Iwaib3ac5632007-08-10 17:03:40 +02001302 u32 key = buffer->head.key;
1303 hda_nid_t nid;
1304 unsigned int idx, dir, ch;
1305 if (!key)
1306 continue;
1307 nid = key & 0xff;
1308 idx = (key >> 16) & 0xff;
1309 dir = (key >> 24) & 0xff;
1310 for (ch = 0; ch < 2; ch++) {
1311 if (!(buffer->head.val & INFO_AMP_VOL(ch)))
1312 continue;
1313 put_vol_mute(codec, buffer, nid, ch, dir, idx,
1314 buffer->vol[ch]);
1315 }
1316 }
1317}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001318EXPORT_SYMBOL_HDA(snd_hda_codec_resume_amp);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001319#endif /* SND_HDA_NEEDS_RESUME */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321/* volume */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001322int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
1323 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
1325 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1326 u16 nid = get_amp_nid(kcontrol);
1327 u8 chs = get_amp_channels(kcontrol);
1328 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001329 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 u32 caps;
1331
1332 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001333 /* num steps */
1334 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1335 if (!caps) {
1336 printk(KERN_WARNING "hda_codec: "
Takashi Iwai9c8f2ab2008-01-11 16:12:23 +01001337 "num_steps = 0 for NID=0x%x (ctl = %s)\n", nid,
1338 kcontrol->id.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 return -EINVAL;
1340 }
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001341 if (ofs < caps)
1342 caps -= ofs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1344 uinfo->count = chs == 3 ? 2 : 1;
1345 uinfo->value.integer.min = 0;
1346 uinfo->value.integer.max = caps;
1347 return 0;
1348}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001349EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001351
1352static inline unsigned int
1353read_amp_value(struct hda_codec *codec, hda_nid_t nid,
1354 int ch, int dir, int idx, unsigned int ofs)
1355{
1356 unsigned int val;
1357 val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx);
1358 val &= HDA_AMP_VOLMASK;
1359 if (val >= ofs)
1360 val -= ofs;
1361 else
1362 val = 0;
1363 return val;
1364}
1365
1366static inline int
1367update_amp_value(struct hda_codec *codec, hda_nid_t nid,
1368 int ch, int dir, int idx, unsigned int ofs,
1369 unsigned int val)
1370{
1371 if (val > 0)
1372 val += ofs;
1373 return snd_hda_codec_amp_update(codec, nid, ch, dir, idx,
1374 HDA_AMP_VOLMASK, val);
1375}
1376
Takashi Iwai0ba21762007-04-16 11:29:14 +02001377int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
1378 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
1380 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1381 hda_nid_t nid = get_amp_nid(kcontrol);
1382 int chs = get_amp_channels(kcontrol);
1383 int dir = get_amp_direction(kcontrol);
1384 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001385 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 long *valp = ucontrol->value.integer.value;
1387
1388 if (chs & 1)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001389 *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001391 *valp = read_amp_value(codec, nid, 1, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 return 0;
1393}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001394EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Takashi Iwai0ba21762007-04-16 11:29:14 +02001396int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
1397 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398{
1399 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1400 hda_nid_t nid = get_amp_nid(kcontrol);
1401 int chs = get_amp_channels(kcontrol);
1402 int dir = get_amp_direction(kcontrol);
1403 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001404 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 long *valp = ucontrol->value.integer.value;
1406 int change = 0;
1407
Takashi Iwaicb53c622007-08-10 17:21:45 +02001408 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001409 if (chs & 1) {
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001410 change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001411 valp++;
1412 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001413 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001414 change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001415 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 return change;
1417}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001418EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001420int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1421 unsigned int size, unsigned int __user *_tlv)
1422{
1423 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1424 hda_nid_t nid = get_amp_nid(kcontrol);
1425 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001426 unsigned int ofs = get_amp_offset(kcontrol);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001427 u32 caps, val1, val2;
1428
1429 if (size < 4 * sizeof(unsigned int))
1430 return -ENOMEM;
1431 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001432 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1433 val2 = (val2 + 1) * 25;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001434 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001435 val1 += ofs;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001436 val1 = ((int)val1) * ((int)val2);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001437 if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv))
1438 return -EFAULT;
1439 if (put_user(2 * sizeof(unsigned int), _tlv + 1))
1440 return -EFAULT;
1441 if (put_user(val1, _tlv + 2))
1442 return -EFAULT;
1443 if (put_user(val2, _tlv + 3))
1444 return -EFAULT;
1445 return 0;
1446}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001447EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_tlv);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001448
Takashi Iwai2134ea42008-01-10 16:53:55 +01001449/*
1450 * set (static) TLV for virtual master volume; recalculated as max 0dB
1451 */
1452void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
1453 unsigned int *tlv)
1454{
1455 u32 caps;
1456 int nums, step;
1457
1458 caps = query_amp_caps(codec, nid, dir);
1459 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1460 step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1461 step = (step + 1) * 25;
1462 tlv[0] = SNDRV_CTL_TLVT_DB_SCALE;
1463 tlv[1] = 2 * sizeof(unsigned int);
1464 tlv[2] = -nums * step;
1465 tlv[3] = step;
1466}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001467EXPORT_SYMBOL_HDA(snd_hda_set_vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001468
1469/* find a mixer control element with the given name */
Takashi Iwai09f99702008-02-04 12:31:13 +01001470static struct snd_kcontrol *
1471_snd_hda_find_mixer_ctl(struct hda_codec *codec,
1472 const char *name, int idx)
Takashi Iwai2134ea42008-01-10 16:53:55 +01001473{
1474 struct snd_ctl_elem_id id;
1475 memset(&id, 0, sizeof(id));
1476 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Takashi Iwai09f99702008-02-04 12:31:13 +01001477 id.index = idx;
Takashi Iwai18cb7102009-04-16 10:22:24 +02001478 if (snd_BUG_ON(strlen(name) >= sizeof(id.name)))
1479 return NULL;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001480 strcpy(id.name, name);
1481 return snd_ctl_find_id(codec->bus->card, &id);
1482}
1483
Takashi Iwai09f99702008-02-04 12:31:13 +01001484struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
1485 const char *name)
1486{
1487 return _snd_hda_find_mixer_ctl(codec, name, 0);
1488}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001489EXPORT_SYMBOL_HDA(snd_hda_find_mixer_ctl);
Takashi Iwai09f99702008-02-04 12:31:13 +01001490
Takashi Iwaid13bd412008-07-30 15:01:45 +02001491/* Add a control element and assign to the codec */
1492int snd_hda_ctl_add(struct hda_codec *codec, struct snd_kcontrol *kctl)
1493{
1494 int err;
1495 struct snd_kcontrol **knewp;
1496
1497 err = snd_ctl_add(codec->bus->card, kctl);
1498 if (err < 0)
1499 return err;
1500 knewp = snd_array_new(&codec->mixers);
1501 if (!knewp)
1502 return -ENOMEM;
1503 *knewp = kctl;
1504 return 0;
1505}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001506EXPORT_SYMBOL_HDA(snd_hda_ctl_add);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001507
1508/* Clear all controls assigned to the given codec */
1509void snd_hda_ctls_clear(struct hda_codec *codec)
1510{
1511 int i;
1512 struct snd_kcontrol **kctls = codec->mixers.list;
1513 for (i = 0; i < codec->mixers.used; i++)
1514 snd_ctl_remove(codec->bus->card, kctls[i]);
1515 snd_array_free(&codec->mixers);
1516}
1517
Takashi Iwaia65d6292009-02-23 16:57:04 +01001518/* pseudo device locking
1519 * toggle card->shutdown to allow/disallow the device access (as a hack)
1520 */
1521static int hda_lock_devices(struct snd_card *card)
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001522{
Takashi Iwaia65d6292009-02-23 16:57:04 +01001523 spin_lock(&card->files_lock);
1524 if (card->shutdown) {
1525 spin_unlock(&card->files_lock);
1526 return -EINVAL;
1527 }
1528 card->shutdown = 1;
1529 spin_unlock(&card->files_lock);
1530 return 0;
1531}
1532
1533static void hda_unlock_devices(struct snd_card *card)
1534{
1535 spin_lock(&card->files_lock);
1536 card->shutdown = 0;
1537 spin_unlock(&card->files_lock);
1538}
1539
1540int snd_hda_codec_reset(struct hda_codec *codec)
1541{
1542 struct snd_card *card = codec->bus->card;
1543 int i, pcm;
1544
1545 if (hda_lock_devices(card) < 0)
1546 return -EBUSY;
1547 /* check whether the codec isn't used by any mixer or PCM streams */
1548 if (!list_empty(&card->ctl_files)) {
1549 hda_unlock_devices(card);
1550 return -EBUSY;
1551 }
1552 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
1553 struct hda_pcm *cpcm = &codec->pcm_info[pcm];
1554 if (!cpcm->pcm)
1555 continue;
1556 if (cpcm->pcm->streams[0].substream_opened ||
1557 cpcm->pcm->streams[1].substream_opened) {
1558 hda_unlock_devices(card);
1559 return -EBUSY;
1560 }
1561 }
1562
1563 /* OK, let it free */
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001564
1565#ifdef CONFIG_SND_HDA_POWER_SAVE
1566 cancel_delayed_work(&codec->power_work);
Takashi Iwai6acaed32009-01-12 10:09:24 +01001567 flush_workqueue(codec->bus->workq);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001568#endif
1569 snd_hda_ctls_clear(codec);
1570 /* relase PCMs */
1571 for (i = 0; i < codec->num_pcms; i++) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001572 if (codec->pcm_info[i].pcm) {
Takashi Iwaia65d6292009-02-23 16:57:04 +01001573 snd_device_free(card, codec->pcm_info[i].pcm);
Takashi Iwai529bd6c2008-11-27 14:17:01 +01001574 clear_bit(codec->pcm_info[i].device,
1575 codec->bus->pcm_dev_bits);
1576 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001577 }
1578 if (codec->patch_ops.free)
1579 codec->patch_ops.free(codec);
Takashi Iwai56d17712008-11-28 14:36:23 +01001580 codec->proc_widget_hook = NULL;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001581 codec->spec = NULL;
1582 free_hda_cache(&codec->amp_cache);
1583 free_hda_cache(&codec->cmd_cache);
Takashi Iwai827057f2008-12-19 10:12:02 +01001584 init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info));
1585 init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head));
Takashi Iwai346ff702009-02-23 09:42:57 +01001586 /* free only driver_pins so that init_pins + user_pins are restored */
1587 snd_array_free(&codec->driver_pins);
Takashi Iwai3be14142009-02-20 14:11:16 +01001588 restore_pincfgs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001589 codec->num_pcms = 0;
1590 codec->pcm_info = NULL;
1591 codec->preset = NULL;
Takashi Iwaid1f1af22009-03-02 10:35:29 +01001592 memset(&codec->patch_ops, 0, sizeof(codec->patch_ops));
1593 codec->slave_dig_outs = NULL;
1594 codec->spdif_status_reset = 0;
Takashi Iwai1289e9e2008-11-27 15:47:11 +01001595 module_put(codec->owner);
1596 codec->owner = NULL;
Takashi Iwaia65d6292009-02-23 16:57:04 +01001597
1598 /* allow device access again */
1599 hda_unlock_devices(card);
1600 return 0;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001601}
1602
Takashi Iwai2134ea42008-01-10 16:53:55 +01001603/* create a virtual master control and add slaves */
1604int snd_hda_add_vmaster(struct hda_codec *codec, char *name,
1605 unsigned int *tlv, const char **slaves)
1606{
1607 struct snd_kcontrol *kctl;
1608 const char **s;
1609 int err;
1610
Takashi Iwai2f085542008-02-22 18:43:50 +01001611 for (s = slaves; *s && !snd_hda_find_mixer_ctl(codec, *s); s++)
1612 ;
1613 if (!*s) {
1614 snd_printdd("No slave found for %s\n", name);
1615 return 0;
1616 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001617 kctl = snd_ctl_make_virtual_master(name, tlv);
1618 if (!kctl)
1619 return -ENOMEM;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001620 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001621 if (err < 0)
1622 return err;
1623
1624 for (s = slaves; *s; s++) {
1625 struct snd_kcontrol *sctl;
Takashi Iwai7a411ee2009-03-06 10:08:14 +01001626 int i = 0;
1627 for (;;) {
1628 sctl = _snd_hda_find_mixer_ctl(codec, *s, i);
1629 if (!sctl) {
1630 if (!i)
1631 snd_printdd("Cannot find slave %s, "
1632 "skipped\n", *s);
1633 break;
1634 }
1635 err = snd_ctl_add_slave(kctl, sctl);
1636 if (err < 0)
1637 return err;
1638 i++;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001639 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01001640 }
1641 return 0;
1642}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001643EXPORT_SYMBOL_HDA(snd_hda_add_vmaster);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645/* switch */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001646int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
1647 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648{
1649 int chs = get_amp_channels(kcontrol);
1650
1651 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1652 uinfo->count = chs == 3 ? 2 : 1;
1653 uinfo->value.integer.min = 0;
1654 uinfo->value.integer.max = 1;
1655 return 0;
1656}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001657EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Takashi Iwai0ba21762007-04-16 11:29:14 +02001659int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
1660 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661{
1662 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1663 hda_nid_t nid = get_amp_nid(kcontrol);
1664 int chs = get_amp_channels(kcontrol);
1665 int dir = get_amp_direction(kcontrol);
1666 int idx = get_amp_index(kcontrol);
1667 long *valp = ucontrol->value.integer.value;
1668
1669 if (chs & 1)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001670 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02001671 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 if (chs & 2)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001673 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02001674 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 return 0;
1676}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001677EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
Takashi Iwai0ba21762007-04-16 11:29:14 +02001679int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
1680 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681{
1682 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1683 hda_nid_t nid = get_amp_nid(kcontrol);
1684 int chs = get_amp_channels(kcontrol);
1685 int dir = get_amp_direction(kcontrol);
1686 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 long *valp = ucontrol->value.integer.value;
1688 int change = 0;
1689
Takashi Iwaicb53c622007-08-10 17:21:45 +02001690 snd_hda_power_up(codec);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001691 if (chs & 1) {
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001692 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001693 HDA_AMP_MUTE,
1694 *valp ? 0 : HDA_AMP_MUTE);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001695 valp++;
1696 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001697 if (chs & 2)
1698 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001699 HDA_AMP_MUTE,
1700 *valp ? 0 : HDA_AMP_MUTE);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001701#ifdef CONFIG_SND_HDA_POWER_SAVE
1702 if (codec->patch_ops.check_power_status)
1703 codec->patch_ops.check_power_status(codec, nid);
1704#endif
1705 snd_hda_power_down(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 return change;
1707}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001708EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
1710/*
Takashi Iwai985be542005-11-02 18:26:49 +01001711 * bound volume controls
1712 *
1713 * bind multiple volumes (# indices, from 0)
1714 */
1715
1716#define AMP_VAL_IDX_SHIFT 19
1717#define AMP_VAL_IDX_MASK (0x0f<<19)
1718
Takashi Iwai0ba21762007-04-16 11:29:14 +02001719int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol,
1720 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01001721{
1722 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1723 unsigned long pval;
1724 int err;
1725
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001726 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001727 pval = kcontrol->private_value;
1728 kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */
1729 err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
1730 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001731 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001732 return err;
1733}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001734EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_get);
Takashi Iwai985be542005-11-02 18:26:49 +01001735
Takashi Iwai0ba21762007-04-16 11:29:14 +02001736int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol,
1737 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01001738{
1739 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1740 unsigned long pval;
1741 int i, indices, err = 0, change = 0;
1742
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001743 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001744 pval = kcontrol->private_value;
1745 indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT;
1746 for (i = 0; i < indices; i++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001747 kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) |
1748 (i << AMP_VAL_IDX_SHIFT);
Takashi Iwai985be542005-11-02 18:26:49 +01001749 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
1750 if (err < 0)
1751 break;
1752 change |= err;
1753 }
1754 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001755 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01001756 return err < 0 ? err : change;
1757}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001758EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_put);
Takashi Iwai985be542005-11-02 18:26:49 +01001759
1760/*
Takashi Iwai532d5382007-07-27 19:02:40 +02001761 * generic bound volume/swtich controls
1762 */
1763int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol,
1764 struct snd_ctl_elem_info *uinfo)
1765{
1766 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1767 struct hda_bind_ctls *c;
1768 int err;
1769
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001770 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001771 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001772 kcontrol->private_value = *c->values;
1773 err = c->ops->info(kcontrol, uinfo);
1774 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001775 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001776 return err;
1777}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001778EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_info);
Takashi Iwai532d5382007-07-27 19:02:40 +02001779
1780int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol,
1781 struct snd_ctl_elem_value *ucontrol)
1782{
1783 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1784 struct hda_bind_ctls *c;
1785 int err;
1786
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001787 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001788 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001789 kcontrol->private_value = *c->values;
1790 err = c->ops->get(kcontrol, ucontrol);
1791 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001792 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001793 return err;
1794}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001795EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_get);
Takashi Iwai532d5382007-07-27 19:02:40 +02001796
1797int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol,
1798 struct snd_ctl_elem_value *ucontrol)
1799{
1800 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1801 struct hda_bind_ctls *c;
1802 unsigned long *vals;
1803 int err = 0, change = 0;
1804
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001805 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001806 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001807 for (vals = c->values; *vals; vals++) {
1808 kcontrol->private_value = *vals;
1809 err = c->ops->put(kcontrol, ucontrol);
1810 if (err < 0)
1811 break;
1812 change |= err;
1813 }
1814 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001815 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001816 return err < 0 ? err : change;
1817}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001818EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_put);
Takashi Iwai532d5382007-07-27 19:02:40 +02001819
1820int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1821 unsigned int size, unsigned int __user *tlv)
1822{
1823 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1824 struct hda_bind_ctls *c;
1825 int err;
1826
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001827 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01001828 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02001829 kcontrol->private_value = *c->values;
1830 err = c->ops->tlv(kcontrol, op_flag, size, tlv);
1831 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001832 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02001833 return err;
1834}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001835EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_tlv);
Takashi Iwai532d5382007-07-27 19:02:40 +02001836
1837struct hda_ctl_ops snd_hda_bind_vol = {
1838 .info = snd_hda_mixer_amp_volume_info,
1839 .get = snd_hda_mixer_amp_volume_get,
1840 .put = snd_hda_mixer_amp_volume_put,
1841 .tlv = snd_hda_mixer_amp_tlv
1842};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001843EXPORT_SYMBOL_HDA(snd_hda_bind_vol);
Takashi Iwai532d5382007-07-27 19:02:40 +02001844
1845struct hda_ctl_ops snd_hda_bind_sw = {
1846 .info = snd_hda_mixer_amp_switch_info,
1847 .get = snd_hda_mixer_amp_switch_get,
1848 .put = snd_hda_mixer_amp_switch_put,
1849 .tlv = snd_hda_mixer_amp_tlv
1850};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01001851EXPORT_SYMBOL_HDA(snd_hda_bind_sw);
Takashi Iwai532d5382007-07-27 19:02:40 +02001852
1853/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 * SPDIF out controls
1855 */
1856
Takashi Iwai0ba21762007-04-16 11:29:14 +02001857static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
1858 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859{
1860 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1861 uinfo->count = 1;
1862 return 0;
1863}
1864
Takashi Iwai0ba21762007-04-16 11:29:14 +02001865static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
1866 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867{
1868 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1869 IEC958_AES0_NONAUDIO |
1870 IEC958_AES0_CON_EMPHASIS_5015 |
1871 IEC958_AES0_CON_NOT_COPYRIGHT;
1872 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
1873 IEC958_AES1_CON_ORIGINAL;
1874 return 0;
1875}
1876
Takashi Iwai0ba21762007-04-16 11:29:14 +02001877static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
1878 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879{
1880 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
1881 IEC958_AES0_NONAUDIO |
1882 IEC958_AES0_PRO_EMPHASIS_5015;
1883 return 0;
1884}
1885
Takashi Iwai0ba21762007-04-16 11:29:14 +02001886static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
1887 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888{
1889 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1890
1891 ucontrol->value.iec958.status[0] = codec->spdif_status & 0xff;
1892 ucontrol->value.iec958.status[1] = (codec->spdif_status >> 8) & 0xff;
1893 ucontrol->value.iec958.status[2] = (codec->spdif_status >> 16) & 0xff;
1894 ucontrol->value.iec958.status[3] = (codec->spdif_status >> 24) & 0xff;
1895
1896 return 0;
1897}
1898
1899/* convert from SPDIF status bits to HDA SPDIF bits
1900 * bit 0 (DigEn) is always set zero (to be filled later)
1901 */
1902static unsigned short convert_from_spdif_status(unsigned int sbits)
1903{
1904 unsigned short val = 0;
1905
1906 if (sbits & IEC958_AES0_PROFESSIONAL)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001907 val |= AC_DIG1_PROFESSIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 if (sbits & IEC958_AES0_NONAUDIO)
Takashi Iwai0ba21762007-04-16 11:29:14 +02001909 val |= AC_DIG1_NONAUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001911 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
1912 IEC958_AES0_PRO_EMPHASIS_5015)
1913 val |= AC_DIG1_EMPHASIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001915 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
1916 IEC958_AES0_CON_EMPHASIS_5015)
1917 val |= AC_DIG1_EMPHASIS;
1918 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
1919 val |= AC_DIG1_COPYRIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
Takashi Iwai0ba21762007-04-16 11:29:14 +02001921 val |= AC_DIG1_LEVEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
1923 }
1924 return val;
1925}
1926
1927/* convert to SPDIF status bits from HDA SPDIF bits
1928 */
1929static unsigned int convert_to_spdif_status(unsigned short val)
1930{
1931 unsigned int sbits = 0;
1932
Takashi Iwai0ba21762007-04-16 11:29:14 +02001933 if (val & AC_DIG1_NONAUDIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 sbits |= IEC958_AES0_NONAUDIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001935 if (val & AC_DIG1_PROFESSIONAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 sbits |= IEC958_AES0_PROFESSIONAL;
1937 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001938 if (sbits & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
1940 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02001941 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001943 if (!(val & AC_DIG1_COPYRIGHT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
Takashi Iwai0ba21762007-04-16 11:29:14 +02001945 if (val & AC_DIG1_LEVEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
1947 sbits |= val & (0x7f << 8);
1948 }
1949 return sbits;
1950}
1951
Takashi Iwai2f728532008-09-25 16:32:41 +02001952/* set digital convert verbs both for the given NID and its slaves */
1953static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
1954 int verb, int val)
1955{
1956 hda_nid_t *d;
1957
Takashi Iwai9e976972008-11-25 08:17:20 +01001958 snd_hda_codec_write_cache(codec, nid, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02001959 d = codec->slave_dig_outs;
1960 if (!d)
1961 return;
1962 for (; *d; d++)
Takashi Iwai9e976972008-11-25 08:17:20 +01001963 snd_hda_codec_write_cache(codec, *d, 0, verb, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02001964}
1965
1966static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,
1967 int dig1, int dig2)
1968{
1969 if (dig1 != -1)
1970 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_1, dig1);
1971 if (dig2 != -1)
1972 set_dig_out(codec, nid, AC_VERB_SET_DIGI_CONVERT_2, dig2);
1973}
1974
Takashi Iwai0ba21762007-04-16 11:29:14 +02001975static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
1976 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977{
1978 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1979 hda_nid_t nid = kcontrol->private_value;
1980 unsigned short val;
1981 int change;
1982
Ingo Molnar62932df2006-01-16 16:34:20 +01001983 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 codec->spdif_status = ucontrol->value.iec958.status[0] |
1985 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
1986 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
1987 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
1988 val = convert_from_spdif_status(codec->spdif_status);
1989 val |= codec->spdif_ctls & 1;
1990 change = codec->spdif_ctls != val;
1991 codec->spdif_ctls = val;
1992
Takashi Iwai2f728532008-09-25 16:32:41 +02001993 if (change)
1994 set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
Ingo Molnar62932df2006-01-16 16:34:20 +01001996 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 return change;
1998}
1999
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002000#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001
Takashi Iwai0ba21762007-04-16 11:29:14 +02002002static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
2003 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004{
2005 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2006
Takashi Iwai0ba21762007-04-16 11:29:14 +02002007 ucontrol->value.integer.value[0] = codec->spdif_ctls & AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 return 0;
2009}
2010
Takashi Iwai0ba21762007-04-16 11:29:14 +02002011static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
2012 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013{
2014 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2015 hda_nid_t nid = kcontrol->private_value;
2016 unsigned short val;
2017 int change;
2018
Ingo Molnar62932df2006-01-16 16:34:20 +01002019 mutex_lock(&codec->spdif_mutex);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002020 val = codec->spdif_ctls & ~AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 if (ucontrol->value.integer.value[0])
Takashi Iwai0ba21762007-04-16 11:29:14 +02002022 val |= AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 change = codec->spdif_ctls != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002024 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 codec->spdif_ctls = val;
Takashi Iwai2f728532008-09-25 16:32:41 +02002026 set_dig_out_convert(codec, nid, val & 0xff, -1);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002027 /* unmute amp switch (if any) */
2028 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
Takashi Iwai47fd8302007-08-10 17:11:07 +02002029 (val & AC_DIG1_ENABLE))
2030 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
2031 HDA_AMP_MUTE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 }
Ingo Molnar62932df2006-01-16 16:34:20 +01002033 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 return change;
2035}
2036
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002037static struct snd_kcontrol_new dig_mixes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 {
2039 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2040 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2041 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK),
2042 .info = snd_hda_spdif_mask_info,
2043 .get = snd_hda_spdif_cmask_get,
2044 },
2045 {
2046 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2047 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2048 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PRO_MASK),
2049 .info = snd_hda_spdif_mask_info,
2050 .get = snd_hda_spdif_pmask_get,
2051 },
2052 {
2053 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2054 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
2055 .info = snd_hda_spdif_mask_info,
2056 .get = snd_hda_spdif_default_get,
2057 .put = snd_hda_spdif_default_put,
2058 },
2059 {
2060 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2061 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH),
2062 .info = snd_hda_spdif_out_switch_info,
2063 .get = snd_hda_spdif_out_switch_get,
2064 .put = snd_hda_spdif_out_switch_put,
2065 },
2066 { } /* end */
2067};
2068
Takashi Iwai09f99702008-02-04 12:31:13 +01002069#define SPDIF_MAX_IDX 4 /* 4 instances should be enough to probe */
2070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071/**
2072 * snd_hda_create_spdif_out_ctls - create Output SPDIF-related controls
2073 * @codec: the HDA codec
2074 * @nid: audio out widget NID
2075 *
2076 * Creates controls related with the SPDIF output.
2077 * Called from each patch supporting the SPDIF out.
2078 *
2079 * Returns 0 if successful, or a negative error code.
2080 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002081int snd_hda_create_spdif_out_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082{
2083 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002084 struct snd_kcontrol *kctl;
2085 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01002086 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Takashi Iwai09f99702008-02-04 12:31:13 +01002088 for (idx = 0; idx < SPDIF_MAX_IDX; idx++) {
2089 if (!_snd_hda_find_mixer_ctl(codec, "IEC958 Playback Switch",
2090 idx))
2091 break;
2092 }
2093 if (idx >= SPDIF_MAX_IDX) {
2094 printk(KERN_ERR "hda_codec: too many IEC958 outputs\n");
2095 return -EBUSY;
2096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
2098 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaib91f0802008-11-04 08:43:08 +01002099 if (!kctl)
2100 return -ENOMEM;
Takashi Iwai09f99702008-02-04 12:31:13 +01002101 kctl->id.index = idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 kctl->private_value = nid;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002103 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002104 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 return err;
2106 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002107 codec->spdif_ctls =
Andrew Paprocki3982d172007-12-19 12:13:44 +01002108 snd_hda_codec_read(codec, nid, 0,
2109 AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 codec->spdif_status = convert_to_spdif_status(codec->spdif_ctls);
2111 return 0;
2112}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002113EXPORT_SYMBOL_HDA(snd_hda_create_spdif_out_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
2115/*
Takashi Iwai9a081602008-02-12 18:37:26 +01002116 * SPDIF sharing with analog output
2117 */
2118static int spdif_share_sw_get(struct snd_kcontrol *kcontrol,
2119 struct snd_ctl_elem_value *ucontrol)
2120{
2121 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2122 ucontrol->value.integer.value[0] = mout->share_spdif;
2123 return 0;
2124}
2125
2126static int spdif_share_sw_put(struct snd_kcontrol *kcontrol,
2127 struct snd_ctl_elem_value *ucontrol)
2128{
2129 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2130 mout->share_spdif = !!ucontrol->value.integer.value[0];
2131 return 0;
2132}
2133
2134static struct snd_kcontrol_new spdif_share_sw = {
2135 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2136 .name = "IEC958 Default PCM Playback Switch",
2137 .info = snd_ctl_boolean_mono_info,
2138 .get = spdif_share_sw_get,
2139 .put = spdif_share_sw_put,
2140};
2141
2142int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
2143 struct hda_multi_out *mout)
2144{
2145 if (!mout->dig_out_nid)
2146 return 0;
2147 /* ATTENTION: here mout is passed as private_data, instead of codec */
Takashi Iwaid13bd412008-07-30 15:01:45 +02002148 return snd_hda_ctl_add(codec,
Takashi Iwai9a081602008-02-12 18:37:26 +01002149 snd_ctl_new1(&spdif_share_sw, mout));
2150}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002151EXPORT_SYMBOL_HDA(snd_hda_create_spdif_share_sw);
Takashi Iwai9a081602008-02-12 18:37:26 +01002152
2153/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 * SPDIF input
2155 */
2156
2157#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
2158
Takashi Iwai0ba21762007-04-16 11:29:14 +02002159static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
2160 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161{
2162 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2163
2164 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
2165 return 0;
2166}
2167
Takashi Iwai0ba21762007-04-16 11:29:14 +02002168static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
2169 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170{
2171 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2172 hda_nid_t nid = kcontrol->private_value;
2173 unsigned int val = !!ucontrol->value.integer.value[0];
2174 int change;
2175
Ingo Molnar62932df2006-01-16 16:34:20 +01002176 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002178 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 codec->spdif_in_enable = val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002180 snd_hda_codec_write_cache(codec, nid, 0,
2181 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 }
Ingo Molnar62932df2006-01-16 16:34:20 +01002183 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 return change;
2185}
2186
Takashi Iwai0ba21762007-04-16 11:29:14 +02002187static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
2188 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189{
2190 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2191 hda_nid_t nid = kcontrol->private_value;
2192 unsigned short val;
2193 unsigned int sbits;
2194
Andrew Paprocki3982d172007-12-19 12:13:44 +01002195 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DIGI_CONVERT_1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 sbits = convert_to_spdif_status(val);
2197 ucontrol->value.iec958.status[0] = sbits;
2198 ucontrol->value.iec958.status[1] = sbits >> 8;
2199 ucontrol->value.iec958.status[2] = sbits >> 16;
2200 ucontrol->value.iec958.status[3] = sbits >> 24;
2201 return 0;
2202}
2203
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002204static struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 {
2206 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2207 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,SWITCH),
2208 .info = snd_hda_spdif_in_switch_info,
2209 .get = snd_hda_spdif_in_switch_get,
2210 .put = snd_hda_spdif_in_switch_put,
2211 },
2212 {
2213 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2214 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2215 .name = SNDRV_CTL_NAME_IEC958("",CAPTURE,DEFAULT),
2216 .info = snd_hda_spdif_mask_info,
2217 .get = snd_hda_spdif_in_status_get,
2218 },
2219 { } /* end */
2220};
2221
2222/**
2223 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
2224 * @codec: the HDA codec
2225 * @nid: audio in widget NID
2226 *
2227 * Creates controls related with the SPDIF input.
2228 * Called from each patch supporting the SPDIF in.
2229 *
2230 * Returns 0 if successful, or a negative error code.
2231 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002232int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233{
2234 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002235 struct snd_kcontrol *kctl;
2236 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01002237 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
Takashi Iwai09f99702008-02-04 12:31:13 +01002239 for (idx = 0; idx < SPDIF_MAX_IDX; idx++) {
2240 if (!_snd_hda_find_mixer_ctl(codec, "IEC958 Capture Switch",
2241 idx))
2242 break;
2243 }
2244 if (idx >= SPDIF_MAX_IDX) {
2245 printk(KERN_ERR "hda_codec: too many IEC958 inputs\n");
2246 return -EBUSY;
2247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
2249 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaic8dcdf82009-02-06 16:21:20 +01002250 if (!kctl)
2251 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 kctl->private_value = nid;
Takashi Iwaid13bd412008-07-30 15:01:45 +02002253 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002254 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 return err;
2256 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002257 codec->spdif_in_enable =
Andrew Paprocki3982d172007-12-19 12:13:44 +01002258 snd_hda_codec_read(codec, nid, 0,
2259 AC_VERB_GET_DIGI_CONVERT_1, 0) &
Takashi Iwai0ba21762007-04-16 11:29:14 +02002260 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 return 0;
2262}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002263EXPORT_SYMBOL_HDA(snd_hda_create_spdif_in_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
Takashi Iwaicb53c622007-08-10 17:21:45 +02002265#ifdef SND_HDA_NEEDS_RESUME
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002266/*
2267 * command cache
2268 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002270/* build a 32bit cache key with the widget id and the command parameter */
2271#define build_cmd_cache_key(nid, verb) ((verb << 8) | nid)
2272#define get_cmd_cache_nid(key) ((key) & 0xff)
2273#define get_cmd_cache_cmd(key) (((key) >> 8) & 0xffff)
2274
2275/**
2276 * snd_hda_codec_write_cache - send a single command with caching
2277 * @codec: the HDA codec
2278 * @nid: NID to send the command
2279 * @direct: direct flag
2280 * @verb: the verb to send
2281 * @parm: the parameter for the verb
2282 *
2283 * Send a single command without waiting for response.
2284 *
2285 * Returns 0 if successful, or a negative error code.
2286 */
2287int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid,
2288 int direct, unsigned int verb, unsigned int parm)
2289{
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02002290 int err = snd_hda_codec_write(codec, nid, direct, verb, parm);
2291 struct hda_cache_head *c;
2292 u32 key;
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002293
Takashi Iwaiaa2936f2009-05-26 16:07:57 +02002294 if (err < 0)
2295 return err;
2296 /* parm may contain the verb stuff for get/set amp */
2297 verb = verb | (parm >> 8);
2298 parm &= 0xff;
2299 key = build_cmd_cache_key(nid, verb);
2300 mutex_lock(&codec->bus->cmd_mutex);
2301 c = get_alloc_hash(&codec->cmd_cache, key);
2302 if (c)
2303 c->val = parm;
2304 mutex_unlock(&codec->bus->cmd_mutex);
2305 return 0;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002306}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002307EXPORT_SYMBOL_HDA(snd_hda_codec_write_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002308
2309/* resume the all commands from the cache */
2310void snd_hda_codec_resume_cache(struct hda_codec *codec)
2311{
Takashi Iwai603c4012008-07-30 15:01:44 +02002312 struct hda_cache_head *buffer = codec->cmd_cache.buf.list;
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002313 int i;
2314
Takashi Iwai603c4012008-07-30 15:01:44 +02002315 for (i = 0; i < codec->cmd_cache.buf.used; i++, buffer++) {
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002316 u32 key = buffer->key;
2317 if (!key)
2318 continue;
2319 snd_hda_codec_write(codec, get_cmd_cache_nid(key), 0,
2320 get_cmd_cache_cmd(key), buffer->val);
2321 }
2322}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002323EXPORT_SYMBOL_HDA(snd_hda_codec_resume_cache);
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002324
2325/**
2326 * snd_hda_sequence_write_cache - sequence writes with caching
2327 * @codec: the HDA codec
2328 * @seq: VERB array to send
2329 *
2330 * Send the commands sequentially from the given array.
2331 * Thte commands are recorded on cache for power-save and resume.
2332 * The array must be terminated with NID=0.
2333 */
2334void snd_hda_sequence_write_cache(struct hda_codec *codec,
2335 const struct hda_verb *seq)
2336{
2337 for (; seq->nid; seq++)
2338 snd_hda_codec_write_cache(codec, seq->nid, 0, seq->verb,
2339 seq->param);
2340}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002341EXPORT_SYMBOL_HDA(snd_hda_sequence_write_cache);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002342#endif /* SND_HDA_NEEDS_RESUME */
Takashi Iwaib3ac5632007-08-10 17:03:40 +02002343
Takashi Iwai54d17402005-11-21 16:33:22 +01002344/*
2345 * set power state of the codec
2346 */
2347static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
2348 unsigned int power_state)
2349{
Takashi Iwaicb53c622007-08-10 17:21:45 +02002350 hda_nid_t nid;
2351 int i;
Takashi Iwai54d17402005-11-21 16:33:22 +01002352
2353 snd_hda_codec_write(codec, fg, 0, AC_VERB_SET_POWER_STATE,
2354 power_state);
Marc Boucherd2595d82008-01-22 15:23:30 +01002355 msleep(10); /* partial workaround for "azx_get_response timeout" */
Takashi Iwai54d17402005-11-21 16:33:22 +01002356
Takashi Iwaicb53c622007-08-10 17:21:45 +02002357 nid = codec->start_nid;
2358 for (i = 0; i < codec->num_nodes; i++, nid++) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01002359 unsigned int wcaps = get_wcaps(codec, nid);
2360 if (wcaps & AC_WCAP_POWER) {
2361 unsigned int wid_type = (wcaps & AC_WCAP_TYPE) >>
2362 AC_WCAP_TYPE_SHIFT;
Takashi Iwaia3b48c82009-04-21 13:37:29 +02002363 if (power_state == AC_PWRST_D3 &&
2364 wid_type == AC_WID_PIN) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01002365 unsigned int pincap;
2366 /*
2367 * don't power down the widget if it controls
2368 * eapd and EAPD_BTLENABLE is set.
2369 */
Takashi Iwai14bafe32009-03-23 16:35:39 +01002370 pincap = snd_hda_query_pin_caps(codec, nid);
Takashi Iwai7eba5c92007-11-14 14:53:42 +01002371 if (pincap & AC_PINCAP_EAPD) {
2372 int eapd = snd_hda_codec_read(codec,
2373 nid, 0,
2374 AC_VERB_GET_EAPD_BTLENABLE, 0);
2375 eapd &= 0x02;
Takashi Iwaia3b48c82009-04-21 13:37:29 +02002376 if (eapd)
Takashi Iwai7eba5c92007-11-14 14:53:42 +01002377 continue;
2378 }
Takashi Iwai1194b5b2007-10-10 10:04:26 +02002379 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002380 snd_hda_codec_write(codec, nid, 0,
2381 AC_VERB_SET_POWER_STATE,
2382 power_state);
Takashi Iwai1194b5b2007-10-10 10:04:26 +02002383 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002384 }
2385
Takashi Iwaicb53c622007-08-10 17:21:45 +02002386 if (power_state == AC_PWRST_D0) {
2387 unsigned long end_time;
2388 int state;
Takashi Iwai54d17402005-11-21 16:33:22 +01002389 msleep(10);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002390 /* wait until the codec reachs to D0 */
2391 end_time = jiffies + msecs_to_jiffies(500);
2392 do {
2393 state = snd_hda_codec_read(codec, fg, 0,
2394 AC_VERB_GET_POWER_STATE, 0);
2395 if (state == power_state)
2396 break;
2397 msleep(1);
2398 } while (time_after_eq(end_time, jiffies));
2399 }
Takashi Iwai54d17402005-11-21 16:33:22 +01002400}
2401
Takashi Iwai11aeff02008-07-30 15:01:46 +02002402#ifdef CONFIG_SND_HDA_HWDEP
2403/* execute additional init verbs */
2404static void hda_exec_init_verbs(struct hda_codec *codec)
2405{
2406 if (codec->init_verbs.list)
2407 snd_hda_sequence_write(codec, codec->init_verbs.list);
2408}
2409#else
2410static inline void hda_exec_init_verbs(struct hda_codec *codec) {}
2411#endif
2412
Takashi Iwaicb53c622007-08-10 17:21:45 +02002413#ifdef SND_HDA_NEEDS_RESUME
2414/*
2415 * call suspend and power-down; used both from PM and power-save
2416 */
2417static void hda_call_codec_suspend(struct hda_codec *codec)
2418{
2419 if (codec->patch_ops.suspend)
2420 codec->patch_ops.suspend(codec, PMSG_SUSPEND);
2421 hda_set_power_state(codec,
2422 codec->afg ? codec->afg : codec->mfg,
2423 AC_PWRST_D3);
2424#ifdef CONFIG_SND_HDA_POWER_SAVE
2425 cancel_delayed_work(&codec->power_work);
Takashi Iwai95e99fd2007-08-13 15:29:04 +02002426 codec->power_on = 0;
Takashi Iwaia221e282007-08-16 16:35:33 +02002427 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002428#endif
2429}
2430
2431/*
2432 * kick up codec; used both from PM and power-save
2433 */
2434static void hda_call_codec_resume(struct hda_codec *codec)
2435{
2436 hda_set_power_state(codec,
2437 codec->afg ? codec->afg : codec->mfg,
2438 AC_PWRST_D0);
Takashi Iwai3be14142009-02-20 14:11:16 +01002439 restore_pincfgs(codec); /* restore all current pin configs */
Takashi Iwai11aeff02008-07-30 15:01:46 +02002440 hda_exec_init_verbs(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002441 if (codec->patch_ops.resume)
2442 codec->patch_ops.resume(codec);
2443 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02002444 if (codec->patch_ops.init)
2445 codec->patch_ops.init(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002446 snd_hda_codec_resume_amp(codec);
2447 snd_hda_codec_resume_cache(codec);
2448 }
2449}
2450#endif /* SND_HDA_NEEDS_RESUME */
2451
Takashi Iwai54d17402005-11-21 16:33:22 +01002452
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453/**
2454 * snd_hda_build_controls - build mixer controls
2455 * @bus: the BUS
2456 *
2457 * Creates mixer controls for each codec included in the bus.
2458 *
2459 * Returns 0 if successful, otherwise a negative error code.
2460 */
Takashi Iwai1289e9e2008-11-27 15:47:11 +01002461int /*__devinit*/ snd_hda_build_controls(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002463 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
Takashi Iwai0ba21762007-04-16 11:29:14 +02002465 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002466 int err = snd_hda_codec_build_controls(codec);
Takashi Iwaif93d4612009-03-02 10:44:15 +01002467 if (err < 0) {
2468 printk(KERN_ERR "hda_codec: cannot build controls"
2469 "for #%d (error %d)\n", codec->addr, err);
2470 err = snd_hda_codec_reset(codec);
2471 if (err < 0) {
2472 printk(KERN_ERR
2473 "hda_codec: cannot revert codec\n");
2474 return err;
2475 }
2476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 }
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002478 return 0;
2479}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002480EXPORT_SYMBOL_HDA(snd_hda_build_controls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002482int snd_hda_codec_build_controls(struct hda_codec *codec)
2483{
2484 int err = 0;
Takashi Iwai11aeff02008-07-30 15:01:46 +02002485 hda_exec_init_verbs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002486 /* continue to initialize... */
2487 if (codec->patch_ops.init)
2488 err = codec->patch_ops.init(codec);
2489 if (!err && codec->patch_ops.build_controls)
2490 err = codec->patch_ops.build_controls(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002491 if (err < 0)
2492 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 return 0;
2494}
2495
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496/*
2497 * stream formats
2498 */
Takashi Iwaibefdf312005-08-22 13:57:55 +02002499struct hda_rate_tbl {
2500 unsigned int hz;
2501 unsigned int alsa_bits;
2502 unsigned int hda_fmt;
2503};
2504
2505static struct hda_rate_tbl rate_bits[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 /* rate in Hz, ALSA rate bitmask, HDA format value */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02002507
2508 /* autodetected value used in snd_hda_query_supported_pcm */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 { 8000, SNDRV_PCM_RATE_8000, 0x0500 }, /* 1/6 x 48 */
2510 { 11025, SNDRV_PCM_RATE_11025, 0x4300 }, /* 1/4 x 44 */
2511 { 16000, SNDRV_PCM_RATE_16000, 0x0200 }, /* 1/3 x 48 */
2512 { 22050, SNDRV_PCM_RATE_22050, 0x4100 }, /* 1/2 x 44 */
2513 { 32000, SNDRV_PCM_RATE_32000, 0x0a00 }, /* 2/3 x 48 */
2514 { 44100, SNDRV_PCM_RATE_44100, 0x4000 }, /* 44 */
2515 { 48000, SNDRV_PCM_RATE_48000, 0x0000 }, /* 48 */
2516 { 88200, SNDRV_PCM_RATE_88200, 0x4800 }, /* 2 x 44 */
2517 { 96000, SNDRV_PCM_RATE_96000, 0x0800 }, /* 2 x 48 */
2518 { 176400, SNDRV_PCM_RATE_176400, 0x5800 },/* 4 x 44 */
2519 { 192000, SNDRV_PCM_RATE_192000, 0x1800 }, /* 4 x 48 */
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002520#define AC_PAR_PCM_RATE_BITS 11
2521 /* up to bits 10, 384kHZ isn't supported properly */
2522
2523 /* not autodetected value */
2524 { 9600, SNDRV_PCM_RATE_KNOT, 0x0400 }, /* 1/5 x 48 */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02002525
Takashi Iwaibefdf312005-08-22 13:57:55 +02002526 { 0 } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527};
2528
2529/**
2530 * snd_hda_calc_stream_format - calculate format bitset
2531 * @rate: the sample rate
2532 * @channels: the number of channels
2533 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
2534 * @maxbps: the max. bps
2535 *
2536 * Calculate the format bitset from the given rate, channels and th PCM format.
2537 *
2538 * Return zero if invalid.
2539 */
2540unsigned int snd_hda_calc_stream_format(unsigned int rate,
2541 unsigned int channels,
2542 unsigned int format,
2543 unsigned int maxbps)
2544{
2545 int i;
2546 unsigned int val = 0;
2547
Takashi Iwaibefdf312005-08-22 13:57:55 +02002548 for (i = 0; rate_bits[i].hz; i++)
2549 if (rate_bits[i].hz == rate) {
2550 val = rate_bits[i].hda_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 break;
2552 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002553 if (!rate_bits[i].hz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 snd_printdd("invalid rate %d\n", rate);
2555 return 0;
2556 }
2557
2558 if (channels == 0 || channels > 8) {
2559 snd_printdd("invalid channels %d\n", channels);
2560 return 0;
2561 }
2562 val |= channels - 1;
2563
2564 switch (snd_pcm_format_width(format)) {
2565 case 8: val |= 0x00; break;
2566 case 16: val |= 0x10; break;
2567 case 20:
2568 case 24:
2569 case 32:
2570 if (maxbps >= 32)
2571 val |= 0x40;
2572 else if (maxbps >= 24)
2573 val |= 0x30;
2574 else
2575 val |= 0x20;
2576 break;
2577 default:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002578 snd_printdd("invalid format width %d\n",
2579 snd_pcm_format_width(format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 return 0;
2581 }
2582
2583 return val;
2584}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002585EXPORT_SYMBOL_HDA(snd_hda_calc_stream_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01002587static unsigned int get_pcm_param(struct hda_codec *codec, hda_nid_t nid)
2588{
2589 unsigned int val = 0;
2590 if (nid != codec->afg &&
2591 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD))
2592 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
2593 if (!val || val == -1)
2594 val = snd_hda_param_read(codec, codec->afg, AC_PAR_PCM);
2595 if (!val || val == -1)
2596 return 0;
2597 return val;
2598}
2599
2600static unsigned int query_pcm_param(struct hda_codec *codec, hda_nid_t nid)
2601{
2602 return query_caps_hash(codec, nid, HDA_HASH_PARPCM_KEY(nid),
2603 get_pcm_param);
2604}
2605
2606static unsigned int get_stream_param(struct hda_codec *codec, hda_nid_t nid)
2607{
2608 unsigned int streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
2609 if (!streams || streams == -1)
2610 streams = snd_hda_param_read(codec, codec->afg, AC_PAR_STREAM);
2611 if (!streams || streams == -1)
2612 return 0;
2613 return streams;
2614}
2615
2616static unsigned int query_stream_param(struct hda_codec *codec, hda_nid_t nid)
2617{
2618 return query_caps_hash(codec, nid, HDA_HASH_PARSTR_KEY(nid),
2619 get_stream_param);
2620}
2621
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622/**
2623 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
2624 * @codec: the HDA codec
2625 * @nid: NID to query
2626 * @ratesp: the pointer to store the detected rate bitflags
2627 * @formatsp: the pointer to store the detected formats
2628 * @bpsp: the pointer to store the detected format widths
2629 *
2630 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
2631 * or @bsps argument is ignored.
2632 *
2633 * Returns 0 if successful, otherwise a negative error code.
2634 */
Takashi Iwai986862bd2008-11-27 12:40:13 +01002635static int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 u32 *ratesp, u64 *formatsp, unsigned int *bpsp)
2637{
Jaroslav Kyselaee504712009-03-17 14:30:31 +01002638 unsigned int i, val, wcaps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
Jaroslav Kyselaee504712009-03-17 14:30:31 +01002640 wcaps = get_wcaps(codec, nid);
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01002641 val = query_pcm_param(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642
2643 if (ratesp) {
2644 u32 rates = 0;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002645 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 if (val & (1 << i))
Takashi Iwaibefdf312005-08-22 13:57:55 +02002647 rates |= rate_bits[i].alsa_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 }
Jaroslav Kyselaee504712009-03-17 14:30:31 +01002649 if (rates == 0) {
2650 snd_printk(KERN_ERR "hda_codec: rates == 0 "
2651 "(nid=0x%x, val=0x%x, ovrd=%i)\n",
2652 nid, val,
2653 (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0);
2654 return -EIO;
2655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 *ratesp = rates;
2657 }
2658
2659 if (formatsp || bpsp) {
2660 u64 formats = 0;
Jaroslav Kyselaee504712009-03-17 14:30:31 +01002661 unsigned int streams, bps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01002663 streams = query_stream_param(codec, nid);
2664 if (!streams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666
2667 bps = 0;
2668 if (streams & AC_SUPFMT_PCM) {
2669 if (val & AC_SUPPCM_BITS_8) {
2670 formats |= SNDRV_PCM_FMTBIT_U8;
2671 bps = 8;
2672 }
2673 if (val & AC_SUPPCM_BITS_16) {
2674 formats |= SNDRV_PCM_FMTBIT_S16_LE;
2675 bps = 16;
2676 }
2677 if (wcaps & AC_WCAP_DIGITAL) {
2678 if (val & AC_SUPPCM_BITS_32)
2679 formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
2680 if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24))
2681 formats |= SNDRV_PCM_FMTBIT_S32_LE;
2682 if (val & AC_SUPPCM_BITS_24)
2683 bps = 24;
2684 else if (val & AC_SUPPCM_BITS_20)
2685 bps = 20;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002686 } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24|
2687 AC_SUPPCM_BITS_32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 formats |= SNDRV_PCM_FMTBIT_S32_LE;
2689 if (val & AC_SUPPCM_BITS_32)
2690 bps = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 else if (val & AC_SUPPCM_BITS_24)
2692 bps = 24;
Nicolas Graziano33ef76512006-09-19 14:23:14 +02002693 else if (val & AC_SUPPCM_BITS_20)
2694 bps = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 }
2696 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002697 else if (streams == AC_SUPFMT_FLOAT32) {
2698 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
2700 bps = 32;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002701 } else if (streams == AC_SUPFMT_AC3) {
2702 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 /* temporary hack: we have still no proper support
2704 * for the direct AC3 stream...
2705 */
2706 formats |= SNDRV_PCM_FMTBIT_U8;
2707 bps = 8;
2708 }
Jaroslav Kyselaee504712009-03-17 14:30:31 +01002709 if (formats == 0) {
2710 snd_printk(KERN_ERR "hda_codec: formats == 0 "
2711 "(nid=0x%x, val=0x%x, ovrd=%i, "
2712 "streams=0x%x)\n",
2713 nid, val,
2714 (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0,
2715 streams);
2716 return -EIO;
2717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 if (formatsp)
2719 *formatsp = formats;
2720 if (bpsp)
2721 *bpsp = bps;
2722 }
2723
2724 return 0;
2725}
2726
2727/**
Takashi Iwai0ba21762007-04-16 11:29:14 +02002728 * snd_hda_is_supported_format - check whether the given node supports
2729 * the format val
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 *
2731 * Returns 1 if supported, 0 if not.
2732 */
2733int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
2734 unsigned int format)
2735{
2736 int i;
2737 unsigned int val = 0, rate, stream;
2738
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01002739 val = query_pcm_param(codec, nid);
2740 if (!val)
2741 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
2743 rate = format & 0xff00;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002744 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++)
Takashi Iwaibefdf312005-08-22 13:57:55 +02002745 if (rate_bits[i].hda_fmt == rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 if (val & (1 << i))
2747 break;
2748 return 0;
2749 }
Takashi Iwaia961f9f2007-04-12 13:08:09 +02002750 if (i >= AC_PAR_PCM_RATE_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 return 0;
2752
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01002753 stream = query_stream_param(codec, nid);
2754 if (!stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 return 0;
2756
2757 if (stream & AC_SUPFMT_PCM) {
2758 switch (format & 0xf0) {
2759 case 0x00:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002760 if (!(val & AC_SUPPCM_BITS_8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 return 0;
2762 break;
2763 case 0x10:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002764 if (!(val & AC_SUPPCM_BITS_16))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 return 0;
2766 break;
2767 case 0x20:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002768 if (!(val & AC_SUPPCM_BITS_20))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 return 0;
2770 break;
2771 case 0x30:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002772 if (!(val & AC_SUPPCM_BITS_24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 return 0;
2774 break;
2775 case 0x40:
Takashi Iwai0ba21762007-04-16 11:29:14 +02002776 if (!(val & AC_SUPPCM_BITS_32))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 return 0;
2778 break;
2779 default:
2780 return 0;
2781 }
2782 } else {
2783 /* FIXME: check for float32 and AC3? */
2784 }
2785
2786 return 1;
2787}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01002788EXPORT_SYMBOL_HDA(snd_hda_is_supported_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
2790/*
2791 * PCM stuff
2792 */
2793static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
2794 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002795 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796{
2797 return 0;
2798}
2799
2800static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
2801 struct hda_codec *codec,
2802 unsigned int stream_tag,
2803 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002804 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805{
2806 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
2807 return 0;
2808}
2809
2810static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
2811 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002812 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813{
Takashi Iwai888afa12008-03-18 09:57:50 +01002814 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 return 0;
2816}
2817
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02002818static int set_pcm_default_values(struct hda_codec *codec,
2819 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820{
Jaroslav Kyselaee504712009-03-17 14:30:31 +01002821 int err;
2822
Takashi Iwai0ba21762007-04-16 11:29:14 +02002823 /* query support PCM information from the given NID */
2824 if (info->nid && (!info->rates || !info->formats)) {
Jaroslav Kyselaee504712009-03-17 14:30:31 +01002825 err = snd_hda_query_supported_pcm(codec, info->nid,
Takashi Iwai0ba21762007-04-16 11:29:14 +02002826 info->rates ? NULL : &info->rates,
2827 info->formats ? NULL : &info->formats,
2828 info->maxbps ? NULL : &info->maxbps);
Jaroslav Kyselaee504712009-03-17 14:30:31 +01002829 if (err < 0)
2830 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 }
2832 if (info->ops.open == NULL)
2833 info->ops.open = hda_pcm_default_open_close;
2834 if (info->ops.close == NULL)
2835 info->ops.close = hda_pcm_default_open_close;
2836 if (info->ops.prepare == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02002837 if (snd_BUG_ON(!info->nid))
2838 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 info->ops.prepare = hda_pcm_default_prepare;
2840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 if (info->ops.cleanup == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02002842 if (snd_BUG_ON(!info->nid))
2843 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 info->ops.cleanup = hda_pcm_default_cleanup;
2845 }
2846 return 0;
2847}
2848
Takashi Iwai176d5332008-07-30 15:01:44 +02002849/*
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002850 * get the empty PCM device number to assign
2851 */
2852static int get_empty_pcm_device(struct hda_bus *bus, int type)
2853{
2854 static const char *dev_name[HDA_PCM_NTYPES] = {
2855 "Audio", "SPDIF", "HDMI", "Modem"
2856 };
2857 /* starting device index for each PCM type */
2858 static int dev_idx[HDA_PCM_NTYPES] = {
2859 [HDA_PCM_TYPE_AUDIO] = 0,
2860 [HDA_PCM_TYPE_SPDIF] = 1,
2861 [HDA_PCM_TYPE_HDMI] = 3,
2862 [HDA_PCM_TYPE_MODEM] = 6
2863 };
2864 /* normal audio device indices; not linear to keep compatibility */
2865 static int audio_idx[4] = { 0, 2, 4, 5 };
2866 int i, dev;
2867
2868 switch (type) {
2869 case HDA_PCM_TYPE_AUDIO:
2870 for (i = 0; i < ARRAY_SIZE(audio_idx); i++) {
2871 dev = audio_idx[i];
2872 if (!test_bit(dev, bus->pcm_dev_bits))
Takashi Iwai82ad39f2009-03-03 15:00:35 +01002873 goto ok;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002874 }
Takashi Iwai82ad39f2009-03-03 15:00:35 +01002875 snd_printk(KERN_WARNING "Too many audio devices\n");
2876 return -EAGAIN;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002877 case HDA_PCM_TYPE_SPDIF:
2878 case HDA_PCM_TYPE_HDMI:
2879 case HDA_PCM_TYPE_MODEM:
2880 dev = dev_idx[type];
2881 if (test_bit(dev, bus->pcm_dev_bits)) {
2882 snd_printk(KERN_WARNING "%s already defined\n",
2883 dev_name[type]);
2884 return -EAGAIN;
2885 }
2886 break;
2887 default:
2888 snd_printk(KERN_WARNING "Invalid PCM type %d\n", type);
2889 return -EINVAL;
2890 }
Takashi Iwai82ad39f2009-03-03 15:00:35 +01002891 ok:
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002892 set_bit(dev, bus->pcm_dev_bits);
2893 return dev;
2894}
2895
2896/*
Takashi Iwai176d5332008-07-30 15:01:44 +02002897 * attach a new PCM stream
2898 */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002899static int snd_hda_attach_pcm(struct hda_codec *codec, struct hda_pcm *pcm)
Takashi Iwai176d5332008-07-30 15:01:44 +02002900{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002901 struct hda_bus *bus = codec->bus;
Takashi Iwai176d5332008-07-30 15:01:44 +02002902 struct hda_pcm_stream *info;
2903 int stream, err;
2904
Takashi Iwaib91f0802008-11-04 08:43:08 +01002905 if (snd_BUG_ON(!pcm->name))
Takashi Iwai176d5332008-07-30 15:01:44 +02002906 return -EINVAL;
2907 for (stream = 0; stream < 2; stream++) {
2908 info = &pcm->stream[stream];
2909 if (info->substreams) {
2910 err = set_pcm_default_values(codec, info);
2911 if (err < 0)
2912 return err;
2913 }
2914 }
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002915 return bus->ops.attach_pcm(bus, codec, pcm);
Takashi Iwai176d5332008-07-30 15:01:44 +02002916}
2917
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002918/* assign all PCMs of the given codec */
2919int snd_hda_codec_build_pcms(struct hda_codec *codec)
2920{
2921 unsigned int pcm;
2922 int err;
2923
2924 if (!codec->num_pcms) {
2925 if (!codec->patch_ops.build_pcms)
2926 return 0;
2927 err = codec->patch_ops.build_pcms(codec);
Takashi Iwai6e655bf2009-03-02 10:46:03 +01002928 if (err < 0) {
2929 printk(KERN_ERR "hda_codec: cannot build PCMs"
2930 "for #%d (error %d)\n", codec->addr, err);
2931 err = snd_hda_codec_reset(codec);
2932 if (err < 0) {
2933 printk(KERN_ERR
2934 "hda_codec: cannot revert codec\n");
2935 return err;
2936 }
2937 }
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002938 }
2939 for (pcm = 0; pcm < codec->num_pcms; pcm++) {
2940 struct hda_pcm *cpcm = &codec->pcm_info[pcm];
2941 int dev;
2942
2943 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
Takashi Iwai41b5b012009-01-20 18:21:23 +01002944 continue; /* no substreams assigned */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002945
2946 if (!cpcm->pcm) {
2947 dev = get_empty_pcm_device(codec->bus, cpcm->pcm_type);
2948 if (dev < 0)
Takashi Iwai6e655bf2009-03-02 10:46:03 +01002949 continue; /* no fatal error */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002950 cpcm->device = dev;
2951 err = snd_hda_attach_pcm(codec, cpcm);
Takashi Iwai6e655bf2009-03-02 10:46:03 +01002952 if (err < 0) {
2953 printk(KERN_ERR "hda_codec: cannot attach "
2954 "PCM stream %d for codec #%d\n",
2955 dev, codec->addr);
2956 continue; /* no fatal error */
2957 }
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002958 }
2959 }
2960 return 0;
2961}
2962
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963/**
2964 * snd_hda_build_pcms - build PCM information
2965 * @bus: the BUS
2966 *
2967 * Create PCM information for each codec included in the bus.
2968 *
2969 * The build_pcms codec patch is requested to set up codec->num_pcms and
2970 * codec->pcm_info properly. The array is referred by the top-level driver
2971 * to create its PCM instances.
2972 * The allocated codec->pcm_info should be released in codec->patch_ops.free
2973 * callback.
2974 *
2975 * At least, substreams, channels_min and channels_max must be filled for
2976 * each stream. substreams = 0 indicates that the stream doesn't exist.
2977 * When rates and/or formats are zero, the supported values are queried
2978 * from the given nid. The nid is used also by the default ops.prepare
2979 * and ops.cleanup callbacks.
2980 *
2981 * The driver needs to call ops.open in its open callback. Similarly,
2982 * ops.close is supposed to be called in the close callback.
2983 * ops.prepare should be called in the prepare or hw_params callback
2984 * with the proper parameters for set up.
2985 * ops.cleanup should be called in hw_free for clean up of streams.
2986 *
2987 * This function returns 0 if successfull, or a negative error code.
2988 */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002989int __devinit snd_hda_build_pcms(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990{
Takashi Iwai0ba21762007-04-16 11:29:14 +02002991 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
Takashi Iwai0ba21762007-04-16 11:29:14 +02002993 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai529bd6c2008-11-27 14:17:01 +01002994 int err = snd_hda_codec_build_pcms(codec);
2995 if (err < 0)
2996 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 }
2998 return 0;
2999}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003000EXPORT_SYMBOL_HDA(snd_hda_build_pcms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002/**
3003 * snd_hda_check_board_config - compare the current codec with the config table
3004 * @codec: the HDA codec
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003005 * @num_configs: number of config enums
3006 * @models: array of model name strings
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 * @tbl: configuration table, terminated by null entries
3008 *
3009 * Compares the modelname or PCI subsystem id of the current codec with the
3010 * given configuration table. If a matching entry is found, returns its
3011 * config value (supposed to be 0 or positive).
3012 *
3013 * If no entries are matching, the function returns a negative value.
3014 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02003015int snd_hda_check_board_config(struct hda_codec *codec,
3016 int num_configs, const char **models,
3017 const struct snd_pci_quirk *tbl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018{
Takashi Iwaif44ac832008-07-30 15:01:45 +02003019 if (codec->modelname && models) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003020 int i;
3021 for (i = 0; i < num_configs; i++) {
3022 if (models[i] &&
Takashi Iwaif44ac832008-07-30 15:01:45 +02003023 !strcmp(codec->modelname, models[i])) {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003024 snd_printd(KERN_INFO "hda_codec: model '%s' is "
3025 "selected\n", models[i]);
3026 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 }
3028 }
3029 }
3030
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003031 if (!codec->bus->pci || !tbl)
3032 return -1;
3033
3034 tbl = snd_pci_quirk_lookup(codec->bus->pci, tbl);
3035 if (!tbl)
3036 return -1;
3037 if (tbl->value >= 0 && tbl->value < num_configs) {
Takashi Iwai62cf8722008-05-20 12:15:15 +02003038#ifdef CONFIG_SND_DEBUG_VERBOSE
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003039 char tmp[10];
3040 const char *model = NULL;
3041 if (models)
3042 model = models[tbl->value];
3043 if (!model) {
3044 sprintf(tmp, "#%d", tbl->value);
3045 model = tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 }
Takashi Iwaif5fcc132006-11-24 17:07:44 +01003047 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
3048 "for config %x:%x (%s)\n",
3049 model, tbl->subvendor, tbl->subdevice,
3050 (tbl->name ? tbl->name : "Unknown device"));
3051#endif
3052 return tbl->value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 }
3054 return -1;
3055}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003056EXPORT_SYMBOL_HDA(snd_hda_check_board_config);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
3058/**
Mauro Carvalho Chehab2eda3442008-08-11 10:18:39 +02003059 * snd_hda_check_board_codec_sid_config - compare the current codec
3060 subsystem ID with the
3061 config table
3062
3063 This is important for Gateway notebooks with SB450 HDA Audio
3064 where the vendor ID of the PCI device is:
3065 ATI Technologies Inc SB450 HDA Audio [1002:437b]
3066 and the vendor/subvendor are found only at the codec.
3067
3068 * @codec: the HDA codec
3069 * @num_configs: number of config enums
3070 * @models: array of model name strings
3071 * @tbl: configuration table, terminated by null entries
3072 *
3073 * Compares the modelname or PCI subsystem id of the current codec with the
3074 * given configuration table. If a matching entry is found, returns its
3075 * config value (supposed to be 0 or positive).
3076 *
3077 * If no entries are matching, the function returns a negative value.
3078 */
3079int snd_hda_check_board_codec_sid_config(struct hda_codec *codec,
3080 int num_configs, const char **models,
3081 const struct snd_pci_quirk *tbl)
3082{
3083 const struct snd_pci_quirk *q;
3084
3085 /* Search for codec ID */
3086 for (q = tbl; q->subvendor; q++) {
3087 unsigned long vendorid = (q->subdevice) | (q->subvendor << 16);
3088
3089 if (vendorid == codec->subsystem_id)
3090 break;
3091 }
3092
3093 if (!q->subvendor)
3094 return -1;
3095
3096 tbl = q;
3097
3098 if (tbl->value >= 0 && tbl->value < num_configs) {
3099#ifdef CONFIG_SND_DEBUG_DETECT
3100 char tmp[10];
3101 const char *model = NULL;
3102 if (models)
3103 model = models[tbl->value];
3104 if (!model) {
3105 sprintf(tmp, "#%d", tbl->value);
3106 model = tmp;
3107 }
3108 snd_printdd(KERN_INFO "hda_codec: model '%s' is selected "
3109 "for config %x:%x (%s)\n",
3110 model, tbl->subvendor, tbl->subdevice,
3111 (tbl->name ? tbl->name : "Unknown device"));
3112#endif
3113 return tbl->value;
3114 }
3115 return -1;
3116}
3117EXPORT_SYMBOL_HDA(snd_hda_check_board_codec_sid_config);
3118
3119/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 * snd_hda_add_new_ctls - create controls from the array
3121 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003122 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 *
3124 * This helper function creates and add new controls in the given array.
3125 * The array must be terminated with an empty entry as terminator.
3126 *
3127 * Returns 0 if successful, or a negative error code.
3128 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02003129int snd_hda_add_new_ctls(struct hda_codec *codec, struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130{
Takashi Iwaicb53c622007-08-10 17:21:45 +02003131 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132
3133 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01003134 struct snd_kcontrol *kctl;
3135 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003136 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01003137 return -ENOMEM;
Takashi Iwaid13bd412008-07-30 15:01:45 +02003138 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai54d17402005-11-21 16:33:22 +01003139 if (err < 0) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003140 if (!codec->addr)
Takashi Iwai54d17402005-11-21 16:33:22 +01003141 return err;
3142 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003143 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01003144 return -ENOMEM;
3145 kctl->id.device = codec->addr;
Takashi Iwaid13bd412008-07-30 15:01:45 +02003146 err = snd_hda_ctl_add(codec, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003147 if (err < 0)
Takashi Iwai54d17402005-11-21 16:33:22 +01003148 return err;
3149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 }
3151 return 0;
3152}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003153EXPORT_SYMBOL_HDA(snd_hda_add_new_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154
Takashi Iwaicb53c622007-08-10 17:21:45 +02003155#ifdef CONFIG_SND_HDA_POWER_SAVE
3156static void hda_set_power_state(struct hda_codec *codec, hda_nid_t fg,
3157 unsigned int power_state);
3158
3159static void hda_power_work(struct work_struct *work)
3160{
3161 struct hda_codec *codec =
3162 container_of(work, struct hda_codec, power_work.work);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003163 struct hda_bus *bus = codec->bus;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003164
Maxim Levitsky2e492462007-09-03 15:26:57 +02003165 if (!codec->power_on || codec->power_count) {
3166 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003167 return;
Maxim Levitsky2e492462007-09-03 15:26:57 +02003168 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02003169
3170 hda_call_codec_suspend(codec);
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003171 if (bus->ops.pm_notify)
3172 bus->ops.pm_notify(bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003173}
3174
3175static void hda_keep_power_on(struct hda_codec *codec)
3176{
3177 codec->power_count++;
3178 codec->power_on = 1;
3179}
3180
3181void snd_hda_power_up(struct hda_codec *codec)
3182{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003183 struct hda_bus *bus = codec->bus;
3184
Takashi Iwaicb53c622007-08-10 17:21:45 +02003185 codec->power_count++;
Takashi Iwaia221e282007-08-16 16:35:33 +02003186 if (codec->power_on || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02003187 return;
3188
3189 codec->power_on = 1;
Takashi Iwai33fa35e2008-11-06 16:50:40 +01003190 if (bus->ops.pm_notify)
3191 bus->ops.pm_notify(bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003192 hda_call_codec_resume(codec);
3193 cancel_delayed_work(&codec->power_work);
Takashi Iwaia221e282007-08-16 16:35:33 +02003194 codec->power_transition = 0;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003195}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003196EXPORT_SYMBOL_HDA(snd_hda_power_up);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003197
3198#define power_save(codec) \
3199 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0)
Takashi Iwaicb53c622007-08-10 17:21:45 +02003200
Takashi Iwaifee2fba2008-11-27 12:43:28 +01003201#define power_save(codec) \
3202 ((codec)->bus->power_save ? *(codec)->bus->power_save : 0)
3203
Takashi Iwaicb53c622007-08-10 17:21:45 +02003204void snd_hda_power_down(struct hda_codec *codec)
3205{
3206 --codec->power_count;
Takashi Iwaia221e282007-08-16 16:35:33 +02003207 if (!codec->power_on || codec->power_count || codec->power_transition)
Takashi Iwaicb53c622007-08-10 17:21:45 +02003208 return;
Takashi Iwaifee2fba2008-11-27 12:43:28 +01003209 if (power_save(codec)) {
Takashi Iwaia221e282007-08-16 16:35:33 +02003210 codec->power_transition = 1; /* avoid reentrance */
Takashi Iwaic107b412009-01-13 17:46:37 +01003211 queue_delayed_work(codec->bus->workq, &codec->power_work,
Takashi Iwaifee2fba2008-11-27 12:43:28 +01003212 msecs_to_jiffies(power_save(codec) * 1000));
Takashi Iwaia221e282007-08-16 16:35:33 +02003213 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02003214}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003215EXPORT_SYMBOL_HDA(snd_hda_power_down);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003216
3217int snd_hda_check_amp_list_power(struct hda_codec *codec,
3218 struct hda_loopback_check *check,
3219 hda_nid_t nid)
3220{
3221 struct hda_amp_list *p;
3222 int ch, v;
3223
3224 if (!check->amplist)
3225 return 0;
3226 for (p = check->amplist; p->nid; p++) {
3227 if (p->nid == nid)
3228 break;
3229 }
3230 if (!p->nid)
3231 return 0; /* nothing changed */
3232
3233 for (p = check->amplist; p->nid; p++) {
3234 for (ch = 0; ch < 2; ch++) {
3235 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
3236 p->idx);
3237 if (!(v & HDA_AMP_MUTE) && v > 0) {
3238 if (!check->power_on) {
3239 check->power_on = 1;
3240 snd_hda_power_up(codec);
3241 }
3242 return 1;
3243 }
3244 }
3245 }
3246 if (check->power_on) {
3247 check->power_on = 0;
3248 snd_hda_power_down(codec);
3249 }
3250 return 0;
3251}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003252EXPORT_SYMBOL_HDA(snd_hda_check_amp_list_power);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003253#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003255/*
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003256 * Channel mode helper
3257 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003258int snd_hda_ch_mode_info(struct hda_codec *codec,
3259 struct snd_ctl_elem_info *uinfo,
3260 const struct hda_channel_mode *chmode,
3261 int num_chmodes)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003262{
3263 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3264 uinfo->count = 1;
3265 uinfo->value.enumerated.items = num_chmodes;
3266 if (uinfo->value.enumerated.item >= num_chmodes)
3267 uinfo->value.enumerated.item = num_chmodes - 1;
3268 sprintf(uinfo->value.enumerated.name, "%dch",
3269 chmode[uinfo->value.enumerated.item].channels);
3270 return 0;
3271}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003272EXPORT_SYMBOL_HDA(snd_hda_ch_mode_info);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003273
Takashi Iwai0ba21762007-04-16 11:29:14 +02003274int snd_hda_ch_mode_get(struct hda_codec *codec,
3275 struct snd_ctl_elem_value *ucontrol,
3276 const struct hda_channel_mode *chmode,
3277 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003278 int max_channels)
3279{
3280 int i;
3281
3282 for (i = 0; i < num_chmodes; i++) {
3283 if (max_channels == chmode[i].channels) {
3284 ucontrol->value.enumerated.item[0] = i;
3285 break;
3286 }
3287 }
3288 return 0;
3289}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003290EXPORT_SYMBOL_HDA(snd_hda_ch_mode_get);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003291
Takashi Iwai0ba21762007-04-16 11:29:14 +02003292int snd_hda_ch_mode_put(struct hda_codec *codec,
3293 struct snd_ctl_elem_value *ucontrol,
3294 const struct hda_channel_mode *chmode,
3295 int num_chmodes,
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003296 int *max_channelsp)
3297{
3298 unsigned int mode;
3299
3300 mode = ucontrol->value.enumerated.item[0];
Takashi Iwai68ea7b22007-11-15 15:54:38 +01003301 if (mode >= num_chmodes)
3302 return -EINVAL;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003303 if (*max_channelsp == chmode[mode].channels)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003304 return 0;
3305 /* change the current channel setting */
3306 *max_channelsp = chmode[mode].channels;
3307 if (chmode[mode].sequence)
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003308 snd_hda_sequence_write_cache(codec, chmode[mode].sequence);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003309 return 1;
3310}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003311EXPORT_SYMBOL_HDA(snd_hda_ch_mode_put);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +01003312
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313/*
3314 * input MUX helper
3315 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003316int snd_hda_input_mux_info(const struct hda_input_mux *imux,
3317 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318{
3319 unsigned int index;
3320
3321 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3322 uinfo->count = 1;
3323 uinfo->value.enumerated.items = imux->num_items;
Takashi Iwai5513b0c2007-10-09 11:58:41 +02003324 if (!imux->num_items)
3325 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 index = uinfo->value.enumerated.item;
3327 if (index >= imux->num_items)
3328 index = imux->num_items - 1;
3329 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
3330 return 0;
3331}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003332EXPORT_SYMBOL_HDA(snd_hda_input_mux_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333
Takashi Iwai0ba21762007-04-16 11:29:14 +02003334int snd_hda_input_mux_put(struct hda_codec *codec,
3335 const struct hda_input_mux *imux,
3336 struct snd_ctl_elem_value *ucontrol,
3337 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 unsigned int *cur_val)
3339{
3340 unsigned int idx;
3341
Takashi Iwai5513b0c2007-10-09 11:58:41 +02003342 if (!imux->num_items)
3343 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 idx = ucontrol->value.enumerated.item[0];
3345 if (idx >= imux->num_items)
3346 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003347 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02003349 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
3350 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 *cur_val = idx;
3352 return 1;
3353}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003354EXPORT_SYMBOL_HDA(snd_hda_input_mux_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355
3356
3357/*
3358 * Multi-channel / digital-out PCM helper functions
3359 */
3360
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003361/* setup SPDIF output stream */
3362static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
3363 unsigned int stream_tag, unsigned int format)
3364{
3365 /* turn off SPDIF once; otherwise the IEC958 bits won't be updated */
Takashi Iwai2f728532008-09-25 16:32:41 +02003366 if (codec->spdif_status_reset && (codec->spdif_ctls & AC_DIG1_ENABLE))
3367 set_dig_out_convert(codec, nid,
3368 codec->spdif_ctls & ~AC_DIG1_ENABLE & 0xff,
3369 -1);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003370 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Takashi Iwai2f728532008-09-25 16:32:41 +02003371 if (codec->slave_dig_outs) {
3372 hda_nid_t *d;
3373 for (d = codec->slave_dig_outs; *d; d++)
3374 snd_hda_codec_setup_stream(codec, *d, stream_tag, 0,
3375 format);
Matthew Ranostayde51ca12008-09-07 14:31:40 -04003376 }
Takashi Iwai2f728532008-09-25 16:32:41 +02003377 /* turn on again (if needed) */
3378 if (codec->spdif_status_reset && (codec->spdif_ctls & AC_DIG1_ENABLE))
3379 set_dig_out_convert(codec, nid,
3380 codec->spdif_ctls & 0xff, -1);
3381}
Matthew Ranostayde51ca12008-09-07 14:31:40 -04003382
Takashi Iwai2f728532008-09-25 16:32:41 +02003383static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid)
3384{
3385 snd_hda_codec_cleanup_stream(codec, nid);
3386 if (codec->slave_dig_outs) {
3387 hda_nid_t *d;
3388 for (d = codec->slave_dig_outs; *d; d++)
3389 snd_hda_codec_cleanup_stream(codec, *d);
3390 }
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003391}
3392
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393/*
3394 * open the digital out in the exclusive mode
3395 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003396int snd_hda_multi_out_dig_open(struct hda_codec *codec,
3397 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398{
Ingo Molnar62932df2006-01-16 16:34:20 +01003399 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02003400 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
3401 /* already opened as analog dup; reset it once */
Takashi Iwai2f728532008-09-25 16:32:41 +02003402 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01003404 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 return 0;
3406}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003407EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003409int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
3410 struct hda_multi_out *mout,
3411 unsigned int stream_tag,
3412 unsigned int format,
3413 struct snd_pcm_substream *substream)
3414{
3415 mutex_lock(&codec->spdif_mutex);
3416 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
3417 mutex_unlock(&codec->spdif_mutex);
3418 return 0;
3419}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003420EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_prepare);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003421
Takashi Iwai9411e212009-02-13 11:32:28 +01003422int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
3423 struct hda_multi_out *mout)
3424{
3425 mutex_lock(&codec->spdif_mutex);
3426 cleanup_dig_out_stream(codec, mout->dig_out_nid);
3427 mutex_unlock(&codec->spdif_mutex);
3428 return 0;
3429}
3430EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_cleanup);
3431
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432/*
3433 * release the digital out
3434 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003435int snd_hda_multi_out_dig_close(struct hda_codec *codec,
3436 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437{
Ingo Molnar62932df2006-01-16 16:34:20 +01003438 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01003440 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 return 0;
3442}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003443EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444
3445/*
3446 * set up more restrictions for analog out
3447 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003448int snd_hda_multi_out_analog_open(struct hda_codec *codec,
3449 struct hda_multi_out *mout,
Takashi Iwai9a081602008-02-12 18:37:26 +01003450 struct snd_pcm_substream *substream,
3451 struct hda_pcm_stream *hinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452{
Takashi Iwai9a081602008-02-12 18:37:26 +01003453 struct snd_pcm_runtime *runtime = substream->runtime;
3454 runtime->hw.channels_max = mout->max_channels;
3455 if (mout->dig_out_nid) {
3456 if (!mout->analog_rates) {
3457 mout->analog_rates = hinfo->rates;
3458 mout->analog_formats = hinfo->formats;
3459 mout->analog_maxbps = hinfo->maxbps;
3460 } else {
3461 runtime->hw.rates = mout->analog_rates;
3462 runtime->hw.formats = mout->analog_formats;
3463 hinfo->maxbps = mout->analog_maxbps;
3464 }
3465 if (!mout->spdif_rates) {
3466 snd_hda_query_supported_pcm(codec, mout->dig_out_nid,
3467 &mout->spdif_rates,
3468 &mout->spdif_formats,
3469 &mout->spdif_maxbps);
3470 }
3471 mutex_lock(&codec->spdif_mutex);
3472 if (mout->share_spdif) {
Takashi Iwai022b4662009-07-03 23:03:30 +02003473 if ((runtime->hw.rates & mout->spdif_rates) &&
3474 (runtime->hw.formats & mout->spdif_formats)) {
3475 runtime->hw.rates &= mout->spdif_rates;
3476 runtime->hw.formats &= mout->spdif_formats;
3477 if (mout->spdif_maxbps < hinfo->maxbps)
3478 hinfo->maxbps = mout->spdif_maxbps;
3479 } else {
3480 mout->share_spdif = 0;
3481 /* FIXME: need notify? */
3482 }
Takashi Iwai9a081602008-02-12 18:37:26 +01003483 }
Frederik Deweerdteaa99852008-04-14 13:11:44 +02003484 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01003485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 return snd_pcm_hw_constraint_step(substream->runtime, 0,
3487 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
3488}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003489EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490
3491/*
3492 * set up the i/o for analog out
3493 * when the digital out is available, copy the front out to digital out, too.
3494 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003495int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
3496 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 unsigned int stream_tag,
3498 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003499 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500{
3501 hda_nid_t *nids = mout->dac_nids;
3502 int chs = substream->runtime->channels;
3503 int i;
3504
Ingo Molnar62932df2006-01-16 16:34:20 +01003505 mutex_lock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01003506 if (mout->dig_out_nid && mout->share_spdif &&
3507 mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 if (chs == 2 &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02003509 snd_hda_is_supported_format(codec, mout->dig_out_nid,
3510 format) &&
3511 !(codec->spdif_status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02003513 setup_dig_out_stream(codec, mout->dig_out_nid,
3514 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 } else {
3516 mout->dig_out_used = 0;
Takashi Iwai2f728532008-09-25 16:32:41 +02003517 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 }
3519 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003520 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521
3522 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003523 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
3524 0, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02003525 if (!mout->no_share_stream &&
3526 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003528 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
3529 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003530 /* extra outputs copied from front */
3531 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
Takashi Iwaid29240c2007-10-26 12:35:56 +02003532 if (!mout->no_share_stream && mout->extra_out_nid[i])
Takashi Iwai82bc9552006-03-21 11:24:42 +01003533 snd_hda_codec_setup_stream(codec,
3534 mout->extra_out_nid[i],
3535 stream_tag, 0, format);
3536
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 /* surrounds */
3538 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02003539 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003540 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3541 i * 2, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02003542 else if (!mout->no_share_stream) /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003543 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3544 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 }
3546 return 0;
3547}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003548EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549
3550/*
3551 * clean up the setting for analog out
3552 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02003553int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
3554 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555{
3556 hda_nid_t *nids = mout->dac_nids;
3557 int i;
3558
3559 for (i = 0; i < mout->num_dacs; i++)
Takashi Iwai888afa12008-03-18 09:57:50 +01003560 snd_hda_codec_cleanup_stream(codec, nids[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 if (mout->hp_nid)
Takashi Iwai888afa12008-03-18 09:57:50 +01003562 snd_hda_codec_cleanup_stream(codec, mout->hp_nid);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003563 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
3564 if (mout->extra_out_nid[i])
Takashi Iwai888afa12008-03-18 09:57:50 +01003565 snd_hda_codec_cleanup_stream(codec,
3566 mout->extra_out_nid[i]);
Ingo Molnar62932df2006-01-16 16:34:20 +01003567 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
Takashi Iwai2f728532008-09-25 16:32:41 +02003569 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570 mout->dig_out_used = 0;
3571 }
Ingo Molnar62932df2006-01-16 16:34:20 +01003572 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 return 0;
3574}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003575EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003577/*
Wu Fengguang6b345002008-10-07 14:21:41 +08003578 * Helper for automatic pin configuration
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003579 */
Kailang Yangdf694da2005-12-05 19:42:22 +01003580
Takashi Iwai12f288b2007-08-02 15:51:59 +02003581static int is_in_nid_list(hda_nid_t nid, hda_nid_t *list)
Kailang Yangdf694da2005-12-05 19:42:22 +01003582{
3583 for (; *list; list++)
3584 if (*list == nid)
3585 return 1;
3586 return 0;
3587}
3588
Steve Longerbeam81937d32007-05-08 15:33:03 +02003589
3590/*
3591 * Sort an associated group of pins according to their sequence numbers.
3592 */
3593static void sort_pins_by_sequence(hda_nid_t * pins, short * sequences,
3594 int num_pins)
3595{
3596 int i, j;
3597 short seq;
3598 hda_nid_t nid;
3599
3600 for (i = 0; i < num_pins; i++) {
3601 for (j = i + 1; j < num_pins; j++) {
3602 if (sequences[i] > sequences[j]) {
3603 seq = sequences[i];
3604 sequences[i] = sequences[j];
3605 sequences[j] = seq;
3606 nid = pins[i];
3607 pins[i] = pins[j];
3608 pins[j] = nid;
3609 }
3610 }
3611 }
3612}
3613
3614
Takashi Iwai82bc9552006-03-21 11:24:42 +01003615/*
3616 * Parse all pin widgets and store the useful pin nids to cfg
3617 *
3618 * The number of line-outs or any primary output is stored in line_outs,
3619 * and the corresponding output pins are assigned to line_out_pins[],
3620 * in the order of front, rear, CLFE, side, ...
3621 *
3622 * If more extra outputs (speaker and headphone) are found, the pins are
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003623 * assisnged to hp_pins[] and speaker_pins[], respectively. If no line-out jack
Takashi Iwai82bc9552006-03-21 11:24:42 +01003624 * is detected, one of speaker of HP pins is assigned as the primary
3625 * output, i.e. to line_out_pins[0]. So, line_outs is always positive
3626 * if any analog output exists.
3627 *
3628 * The analog input pins are assigned to input_pins array.
3629 * The digital input/output pins are assigned to dig_in_pin and dig_out_pin,
3630 * respectively.
3631 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02003632int snd_hda_parse_pin_def_config(struct hda_codec *codec,
3633 struct auto_pin_cfg *cfg,
3634 hda_nid_t *ignore_nids)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003635{
Takashi Iwai0ef6ce72008-01-22 15:35:37 +01003636 hda_nid_t nid, end_nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02003637 short seq, assoc_line_out, assoc_speaker;
3638 short sequences_line_out[ARRAY_SIZE(cfg->line_out_pins)];
3639 short sequences_speaker[ARRAY_SIZE(cfg->speaker_pins)];
Takashi Iwaif889fa92007-10-31 15:49:32 +01003640 short sequences_hp[ARRAY_SIZE(cfg->hp_pins)];
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003641
3642 memset(cfg, 0, sizeof(*cfg));
3643
Steve Longerbeam81937d32007-05-08 15:33:03 +02003644 memset(sequences_line_out, 0, sizeof(sequences_line_out));
3645 memset(sequences_speaker, 0, sizeof(sequences_speaker));
Takashi Iwaif889fa92007-10-31 15:49:32 +01003646 memset(sequences_hp, 0, sizeof(sequences_hp));
Steve Longerbeam81937d32007-05-08 15:33:03 +02003647 assoc_line_out = assoc_speaker = 0;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003648
Takashi Iwai0ef6ce72008-01-22 15:35:37 +01003649 end_nid = codec->start_nid + codec->num_nodes;
3650 for (nid = codec->start_nid; nid < end_nid; nid++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01003651 unsigned int wid_caps = get_wcaps(codec, nid);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003652 unsigned int wid_type =
3653 (wid_caps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003654 unsigned int def_conf;
3655 short assoc, loc;
3656
3657 /* read all default configuration for pin complex */
3658 if (wid_type != AC_WID_PIN)
3659 continue;
Kailang Yangdf694da2005-12-05 19:42:22 +01003660 /* ignore the given nids (e.g. pc-beep returns error) */
3661 if (ignore_nids && is_in_nid_list(nid, ignore_nids))
3662 continue;
3663
Takashi Iwaic17a1ab2009-02-23 09:28:12 +01003664 def_conf = snd_hda_codec_get_pincfg(codec, nid);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003665 if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE)
3666 continue;
3667 loc = get_defcfg_location(def_conf);
3668 switch (get_defcfg_device(def_conf)) {
3669 case AC_JACK_LINE_OUT:
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003670 seq = get_defcfg_sequence(def_conf);
3671 assoc = get_defcfg_association(def_conf);
Matthew Ranostay90da78b2008-01-24 11:48:01 +01003672
3673 if (!(wid_caps & AC_WCAP_STEREO))
3674 if (!cfg->mono_out_pin)
3675 cfg->mono_out_pin = nid;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003676 if (!assoc)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003677 continue;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003678 if (!assoc_line_out)
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003679 assoc_line_out = assoc;
3680 else if (assoc_line_out != assoc)
3681 continue;
3682 if (cfg->line_outs >= ARRAY_SIZE(cfg->line_out_pins))
3683 continue;
3684 cfg->line_out_pins[cfg->line_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02003685 sequences_line_out[cfg->line_outs] = seq;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003686 cfg->line_outs++;
3687 break;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003688 case AC_JACK_SPEAKER:
Steve Longerbeam81937d32007-05-08 15:33:03 +02003689 seq = get_defcfg_sequence(def_conf);
3690 assoc = get_defcfg_association(def_conf);
3691 if (! assoc)
3692 continue;
3693 if (! assoc_speaker)
3694 assoc_speaker = assoc;
3695 else if (assoc_speaker != assoc)
3696 continue;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003697 if (cfg->speaker_outs >= ARRAY_SIZE(cfg->speaker_pins))
3698 continue;
3699 cfg->speaker_pins[cfg->speaker_outs] = nid;
Steve Longerbeam81937d32007-05-08 15:33:03 +02003700 sequences_speaker[cfg->speaker_outs] = seq;
Takashi Iwai82bc9552006-03-21 11:24:42 +01003701 cfg->speaker_outs++;
Takashi Iwai8d88bc32005-11-17 11:09:23 +01003702 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003703 case AC_JACK_HP_OUT:
Takashi Iwaif889fa92007-10-31 15:49:32 +01003704 seq = get_defcfg_sequence(def_conf);
3705 assoc = get_defcfg_association(def_conf);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003706 if (cfg->hp_outs >= ARRAY_SIZE(cfg->hp_pins))
3707 continue;
3708 cfg->hp_pins[cfg->hp_outs] = nid;
Takashi Iwaif889fa92007-10-31 15:49:32 +01003709 sequences_hp[cfg->hp_outs] = (assoc << 4) | seq;
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003710 cfg->hp_outs++;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003711 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02003712 case AC_JACK_MIC_IN: {
3713 int preferred, alt;
3714 if (loc == AC_JACK_LOC_FRONT) {
3715 preferred = AUTO_PIN_FRONT_MIC;
3716 alt = AUTO_PIN_MIC;
3717 } else {
3718 preferred = AUTO_PIN_MIC;
3719 alt = AUTO_PIN_FRONT_MIC;
3720 }
3721 if (!cfg->input_pins[preferred])
3722 cfg->input_pins[preferred] = nid;
3723 else if (!cfg->input_pins[alt])
3724 cfg->input_pins[alt] = nid;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003725 break;
Takashi Iwai314634b2006-09-21 11:56:18 +02003726 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003727 case AC_JACK_LINE_IN:
3728 if (loc == AC_JACK_LOC_FRONT)
3729 cfg->input_pins[AUTO_PIN_FRONT_LINE] = nid;
3730 else
3731 cfg->input_pins[AUTO_PIN_LINE] = nid;
3732 break;
3733 case AC_JACK_CD:
3734 cfg->input_pins[AUTO_PIN_CD] = nid;
3735 break;
3736 case AC_JACK_AUX:
3737 cfg->input_pins[AUTO_PIN_AUX] = nid;
3738 break;
3739 case AC_JACK_SPDIF_OUT:
Takashi Iwai1b52ae72009-01-20 17:17:29 +01003740 case AC_JACK_DIG_OTHER_OUT:
Takashi Iwai0852d7a2009-02-11 11:35:15 +01003741 if (cfg->dig_outs >= ARRAY_SIZE(cfg->dig_out_pins))
3742 continue;
3743 cfg->dig_out_pins[cfg->dig_outs] = nid;
3744 cfg->dig_out_type[cfg->dig_outs] =
3745 (loc == AC_JACK_LOC_HDMI) ?
3746 HDA_PCM_TYPE_HDMI : HDA_PCM_TYPE_SPDIF;
3747 cfg->dig_outs++;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003748 break;
3749 case AC_JACK_SPDIF_IN:
Takashi Iwai1b52ae72009-01-20 17:17:29 +01003750 case AC_JACK_DIG_OTHER_IN:
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003751 cfg->dig_in_pin = nid;
Takashi Iwai2297bd62009-01-20 18:24:13 +01003752 if (loc == AC_JACK_LOC_HDMI)
3753 cfg->dig_in_type = HDA_PCM_TYPE_HDMI;
3754 else
3755 cfg->dig_in_type = HDA_PCM_TYPE_SPDIF;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003756 break;
3757 }
3758 }
3759
Takashi Iwai5832fcf2008-02-12 18:30:12 +01003760 /* FIX-UP:
3761 * If no line-out is defined but multiple HPs are found,
3762 * some of them might be the real line-outs.
3763 */
3764 if (!cfg->line_outs && cfg->hp_outs > 1) {
3765 int i = 0;
3766 while (i < cfg->hp_outs) {
3767 /* The real HPs should have the sequence 0x0f */
3768 if ((sequences_hp[i] & 0x0f) == 0x0f) {
3769 i++;
3770 continue;
3771 }
3772 /* Move it to the line-out table */
3773 cfg->line_out_pins[cfg->line_outs] = cfg->hp_pins[i];
3774 sequences_line_out[cfg->line_outs] = sequences_hp[i];
3775 cfg->line_outs++;
3776 cfg->hp_outs--;
3777 memmove(cfg->hp_pins + i, cfg->hp_pins + i + 1,
3778 sizeof(cfg->hp_pins[0]) * (cfg->hp_outs - i));
3779 memmove(sequences_hp + i - 1, sequences_hp + i,
3780 sizeof(sequences_hp[0]) * (cfg->hp_outs - i));
3781 }
3782 }
3783
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003784 /* sort by sequence */
Steve Longerbeam81937d32007-05-08 15:33:03 +02003785 sort_pins_by_sequence(cfg->line_out_pins, sequences_line_out,
3786 cfg->line_outs);
3787 sort_pins_by_sequence(cfg->speaker_pins, sequences_speaker,
3788 cfg->speaker_outs);
Takashi Iwaif889fa92007-10-31 15:49:32 +01003789 sort_pins_by_sequence(cfg->hp_pins, sequences_hp,
3790 cfg->hp_outs);
Steve Longerbeam81937d32007-05-08 15:33:03 +02003791
Takashi Iwaif889fa92007-10-31 15:49:32 +01003792 /* if we have only one mic, make it AUTO_PIN_MIC */
3793 if (!cfg->input_pins[AUTO_PIN_MIC] &&
3794 cfg->input_pins[AUTO_PIN_FRONT_MIC]) {
3795 cfg->input_pins[AUTO_PIN_MIC] =
3796 cfg->input_pins[AUTO_PIN_FRONT_MIC];
3797 cfg->input_pins[AUTO_PIN_FRONT_MIC] = 0;
3798 }
3799 /* ditto for line-in */
3800 if (!cfg->input_pins[AUTO_PIN_LINE] &&
3801 cfg->input_pins[AUTO_PIN_FRONT_LINE]) {
3802 cfg->input_pins[AUTO_PIN_LINE] =
3803 cfg->input_pins[AUTO_PIN_FRONT_LINE];
3804 cfg->input_pins[AUTO_PIN_FRONT_LINE] = 0;
3805 }
3806
Steve Longerbeam81937d32007-05-08 15:33:03 +02003807 /*
3808 * FIX-UP: if no line-outs are detected, try to use speaker or HP pin
3809 * as a primary output
3810 */
3811 if (!cfg->line_outs) {
3812 if (cfg->speaker_outs) {
3813 cfg->line_outs = cfg->speaker_outs;
3814 memcpy(cfg->line_out_pins, cfg->speaker_pins,
3815 sizeof(cfg->speaker_pins));
3816 cfg->speaker_outs = 0;
3817 memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
3818 cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
3819 } else if (cfg->hp_outs) {
3820 cfg->line_outs = cfg->hp_outs;
3821 memcpy(cfg->line_out_pins, cfg->hp_pins,
3822 sizeof(cfg->hp_pins));
3823 cfg->hp_outs = 0;
3824 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
3825 cfg->line_out_type = AUTO_PIN_HP_OUT;
3826 }
3827 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003828
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003829 /* Reorder the surround channels
3830 * ALSA sequence is front/surr/clfe/side
3831 * HDA sequence is:
3832 * 4-ch: front/surr => OK as it is
3833 * 6-ch: front/clfe/surr
Takashi Iwai9422db42007-04-20 16:11:43 +02003834 * 8-ch: front/clfe/rear/side|fc
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003835 */
3836 switch (cfg->line_outs) {
3837 case 3:
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003838 case 4:
3839 nid = cfg->line_out_pins[1];
Takashi Iwai9422db42007-04-20 16:11:43 +02003840 cfg->line_out_pins[1] = cfg->line_out_pins[2];
Takashi Iwaicb8e2f82005-07-29 11:54:32 +02003841 cfg->line_out_pins[2] = nid;
3842 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003843 }
3844
Takashi Iwai82bc9552006-03-21 11:24:42 +01003845 /*
3846 * debug prints of the parsed results
3847 */
3848 snd_printd("autoconfig: line_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3849 cfg->line_outs, cfg->line_out_pins[0], cfg->line_out_pins[1],
3850 cfg->line_out_pins[2], cfg->line_out_pins[3],
3851 cfg->line_out_pins[4]);
3852 snd_printd(" speaker_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3853 cfg->speaker_outs, cfg->speaker_pins[0],
3854 cfg->speaker_pins[1], cfg->speaker_pins[2],
3855 cfg->speaker_pins[3], cfg->speaker_pins[4]);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02003856 snd_printd(" hp_outs=%d (0x%x/0x%x/0x%x/0x%x/0x%x)\n",
3857 cfg->hp_outs, cfg->hp_pins[0],
3858 cfg->hp_pins[1], cfg->hp_pins[2],
3859 cfg->hp_pins[3], cfg->hp_pins[4]);
Matthew Ranostay90da78b2008-01-24 11:48:01 +01003860 snd_printd(" mono: mono_out=0x%x\n", cfg->mono_out_pin);
Takashi Iwai0852d7a2009-02-11 11:35:15 +01003861 if (cfg->dig_outs)
3862 snd_printd(" dig-out=0x%x/0x%x\n",
3863 cfg->dig_out_pins[0], cfg->dig_out_pins[1]);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003864 snd_printd(" inputs: mic=0x%x, fmic=0x%x, line=0x%x, fline=0x%x,"
3865 " cd=0x%x, aux=0x%x\n",
3866 cfg->input_pins[AUTO_PIN_MIC],
3867 cfg->input_pins[AUTO_PIN_FRONT_MIC],
3868 cfg->input_pins[AUTO_PIN_LINE],
3869 cfg->input_pins[AUTO_PIN_FRONT_LINE],
3870 cfg->input_pins[AUTO_PIN_CD],
3871 cfg->input_pins[AUTO_PIN_AUX]);
Takashi Iwai32d2c7f2009-02-11 11:33:13 +01003872 if (cfg->dig_in_pin)
Takashi Iwai89ce9e82009-01-20 17:15:57 +01003873 snd_printd(" dig-in=0x%x\n", cfg->dig_in_pin);
Takashi Iwai82bc9552006-03-21 11:24:42 +01003874
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003875 return 0;
3876}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003877EXPORT_SYMBOL_HDA(snd_hda_parse_pin_def_config);
Takashi Iwaie9edcee2005-06-13 14:16:38 +02003878
Takashi Iwai4a471b72005-12-07 13:56:29 +01003879/* labels for input pins */
3880const char *auto_pin_cfg_labels[AUTO_PIN_LAST] = {
3881 "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux"
3882};
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003883EXPORT_SYMBOL_HDA(auto_pin_cfg_labels);
Takashi Iwai4a471b72005-12-07 13:56:29 +01003884
3885
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886#ifdef CONFIG_PM
3887/*
3888 * power management
3889 */
3890
3891/**
3892 * snd_hda_suspend - suspend the codecs
3893 * @bus: the HDA bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 *
3895 * Returns 0 if successful.
3896 */
Takashi Iwai8dd78332009-06-02 01:16:07 +02003897int snd_hda_suspend(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898{
Takashi Iwai0ba21762007-04-16 11:29:14 +02003899 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900
Takashi Iwai0ba21762007-04-16 11:29:14 +02003901 list_for_each_entry(codec, &bus->codec_list, list) {
Takashi Iwai0b7a2e92007-08-14 15:18:26 +02003902#ifdef CONFIG_SND_HDA_POWER_SAVE
3903 if (!codec->power_on)
3904 continue;
3905#endif
Takashi Iwaicb53c622007-08-10 17:21:45 +02003906 hda_call_codec_suspend(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 }
3908 return 0;
3909}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003910EXPORT_SYMBOL_HDA(snd_hda_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911
3912/**
3913 * snd_hda_resume - resume the codecs
3914 * @bus: the HDA bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 *
3916 * Returns 0 if successful.
Takashi Iwaicb53c622007-08-10 17:21:45 +02003917 *
3918 * This fucntion is defined only when POWER_SAVE isn't set.
3919 * In the power-save mode, the codec is resumed dynamically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920 */
3921int snd_hda_resume(struct hda_bus *bus)
3922{
Takashi Iwai0ba21762007-04-16 11:29:14 +02003923 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924
Takashi Iwai0ba21762007-04-16 11:29:14 +02003925 list_for_each_entry(codec, &bus->codec_list, list) {
Maxim Levitskyd804ad92007-09-03 15:28:04 +02003926 if (snd_hda_codec_needs_resume(codec))
3927 hda_call_codec_resume(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 return 0;
3930}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003931EXPORT_SYMBOL_HDA(snd_hda_resume);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003932#endif /* CONFIG_PM */
Takashi Iwaib2e18592008-07-30 15:01:44 +02003933
3934/*
3935 * generic arrays
3936 */
3937
3938/* get a new element from the given array
3939 * if it exceeds the pre-allocated array size, re-allocate the array
3940 */
3941void *snd_array_new(struct snd_array *array)
3942{
3943 if (array->used >= array->alloced) {
3944 int num = array->alloced + array->alloc_align;
Takashi Iwaib910d9a2008-11-07 00:26:52 +01003945 void *nlist;
3946 if (snd_BUG_ON(num >= 4096))
3947 return NULL;
3948 nlist = kcalloc(num + 1, array->elem_size, GFP_KERNEL);
Takashi Iwaib2e18592008-07-30 15:01:44 +02003949 if (!nlist)
3950 return NULL;
3951 if (array->list) {
3952 memcpy(nlist, array->list,
3953 array->elem_size * array->alloced);
3954 kfree(array->list);
3955 }
3956 array->list = nlist;
3957 array->alloced = num;
3958 }
Takashi Iwaif43aa022008-11-10 16:24:26 +01003959 return snd_array_elem(array, array->used++);
Takashi Iwaib2e18592008-07-30 15:01:44 +02003960}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003961EXPORT_SYMBOL_HDA(snd_array_new);
Takashi Iwaib2e18592008-07-30 15:01:44 +02003962
3963/* free the given array elements */
3964void snd_array_free(struct snd_array *array)
3965{
3966 kfree(array->list);
3967 array->used = 0;
3968 array->alloced = 0;
3969 array->list = NULL;
3970}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003971EXPORT_SYMBOL_HDA(snd_array_free);
Takashi Iwaib2022262008-11-21 21:24:03 +01003972
3973/*
3974 * used by hda_proc.c and hda_eld.c
3975 */
3976void snd_print_pcm_rates(int pcm, char *buf, int buflen)
3977{
3978 static unsigned int rates[] = {
3979 8000, 11025, 16000, 22050, 32000, 44100, 48000, 88200,
3980 96000, 176400, 192000, 384000
3981 };
3982 int i, j;
3983
3984 for (i = 0, j = 0; i < ARRAY_SIZE(rates); i++)
3985 if (pcm & (1 << i))
3986 j += snprintf(buf + j, buflen - j, " %d", rates[i]);
3987
3988 buf[j] = '\0'; /* necessary when j == 0 */
3989}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01003990EXPORT_SYMBOL_HDA(snd_print_pcm_rates);
Takashi Iwaib2022262008-11-21 21:24:03 +01003991
3992void snd_print_pcm_bits(int pcm, char *buf, int buflen)
3993{
3994 static unsigned int bits[] = { 8, 16, 20, 24, 32 };
3995 int i, j;
3996
3997 for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++)
3998 if (pcm & (AC_SUPPCM_BITS_8 << i))
3999 j += snprintf(buf + j, buflen - j, " %d", bits[i]);
4000
4001 buf[j] = '\0'; /* necessary when j == 0 */
4002}
Takashi Iwaiff7a3262008-11-28 15:17:06 +01004003EXPORT_SYMBOL_HDA(snd_print_pcm_bits);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01004004
4005MODULE_DESCRIPTION("HDA codec core");
4006MODULE_LICENSE("GPL");