Merge tag 'asoc-v3.14-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie...
[deliverable/linux.git] / sound / pci / hda / hda_codec.h
CommitLineData
1da177e4
LT
1/*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
4 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
9 * any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * this program; if not, write to the Free Software Foundation, Inc., 59
18 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21#ifndef __SOUND_HDA_CODEC_H
22#define __SOUND_HDA_CODEC_H
23
24#include <sound/info.h>
25#include <sound/control.h>
26#include <sound/pcm.h>
2807314d 27#include <sound/hwdep.h>
ed326363 28#include <sound/hda_verbs.h>
1da177e4 29
b2e18597
TI
30/*
31 * generic arrays
32 */
33struct snd_array {
34 unsigned int used;
35 unsigned int alloced;
36 unsigned int elem_size;
37 unsigned int alloc_align;
38 void *list;
39};
40
41void *snd_array_new(struct snd_array *array);
42void snd_array_free(struct snd_array *array);
43static inline void snd_array_init(struct snd_array *array, unsigned int size,
44 unsigned int align)
45{
46 array->elem_size = size;
47 array->alloc_align = align;
48}
49
f43aa025
TI
50static inline void *snd_array_elem(struct snd_array *array, unsigned int idx)
51{
52 return array->list + idx * array->elem_size;
53}
54
55static inline unsigned int snd_array_index(struct snd_array *array, void *ptr)
56{
57 return (unsigned long)(ptr - array->list) / array->elem_size;
58}
59
1da177e4
LT
60/*
61 * Structures
62 */
63
64struct hda_bus;
1cd2224c 65struct hda_beep;
1da177e4
LT
66struct hda_codec;
67struct hda_pcm;
68struct hda_pcm_stream;
69struct hda_bus_unsolicited;
70
71/* NID type */
72typedef u16 hda_nid_t;
73
74/* bus operators */
75struct hda_bus_ops {
76 /* send a single command */
33fa35ed 77 int (*command)(struct hda_bus *bus, unsigned int cmd);
1da177e4 78 /* get a response from the last command */
deadff16 79 unsigned int (*get_response)(struct hda_bus *bus, unsigned int addr);
1da177e4
LT
80 /* free the private data */
81 void (*private_free)(struct hda_bus *);
176d5335 82 /* attach a PCM stream */
33fa35ed
TI
83 int (*attach_pcm)(struct hda_bus *bus, struct hda_codec *codec,
84 struct hda_pcm *pcm);
8dd78330
TI
85 /* reset bus for retry verb */
86 void (*bus_reset)(struct hda_bus *bus);
83012a7c 87#ifdef CONFIG_PM
561de31a 88 /* notify power-up/down from codec to controller */
68467f51 89 void (*pm_notify)(struct hda_bus *bus, bool power_up);
cb53c626 90#endif
1d1a4564
TI
91#ifdef CONFIG_SND_HDA_DSP_LOADER
92 /* prepare DSP transfer */
93 int (*load_dsp_prepare)(struct hda_bus *bus, unsigned int format,
94 unsigned int byte_size,
95 struct snd_dma_buffer *bufp);
96 /* start/stop DSP transfer */
97 void (*load_dsp_trigger)(struct hda_bus *bus, bool start);
98 /* clean up DSP transfer */
99 void (*load_dsp_cleanup)(struct hda_bus *bus,
100 struct snd_dma_buffer *dmab);
101#endif
1da177e4
LT
102};
103
104/* template to pass to the bus constructor */
105struct hda_bus_template {
106 void *private_data;
107 struct pci_dev *pci;
108 const char *modelname;
fee2fba3 109 int *power_save;
1da177e4
LT
110 struct hda_bus_ops ops;
111};
112
113/*
114 * codec bus
115 *
116 * each controller needs to creata a hda_bus to assign the accessor.
117 * A hda_bus contains several codecs in the list codec_list.
118 */
119struct hda_bus {
c8b6bf9b 120 struct snd_card *card;
1da177e4
LT
121
122 /* copied from template */
123 void *private_data;
124 struct pci_dev *pci;
125 const char *modelname;
fee2fba3 126 int *power_save;
1da177e4
LT
127 struct hda_bus_ops ops;
128
129 /* codec linked list */
130 struct list_head codec_list;
0e24dbb7 131 unsigned int num_codecs;
d01ce99f
TI
132 /* link caddr -> codec */
133 struct hda_codec *caddr_tbl[HDA_MAX_CODEC_ADDRESS + 1];
1da177e4 134
62932df8 135 struct mutex cmd_mutex;
3f50ac6a 136 struct mutex prepare_mutex;
1da177e4
LT
137
138 /* unsolicited event queue */
139 struct hda_bus_unsolicited *unsol;
e8c0ee5d 140 char workq_name[16];
6acaed38 141 struct workqueue_struct *workq; /* common workqueue for codecs */
1da177e4 142
529bd6c4
TI
143 /* assigned PCMs */
144 DECLARE_BITMAP(pcm_dev_bits, SNDRV_PCM_DEVICES);
145
52987656
TI
146 /* misc op flags */
147 unsigned int needs_damn_long_delay :1;
b20f3b83
TI
148 unsigned int allow_bus_reset:1; /* allow bus reset at fatal error */
149 unsigned int sync_write:1; /* sync after verb write */
150 /* status for codec/controller */
b94d3539 151 unsigned int shutdown :1; /* being unloaded */
b613291f 152 unsigned int rirb_error:1; /* error in codec communication */
8dd78330
TI
153 unsigned int response_reset:1; /* controller was reset */
154 unsigned int in_reset:1; /* during reset operation */
0287d970 155 unsigned int power_keep_link_on:1; /* don't power off HDA link */
63e51fd7 156 unsigned int no_response_fallback:1; /* don't fallback at RIRB error */
ea9b43ad
TI
157
158 int primary_dig_out_type; /* primary digital out PCM type */
1da177e4
LT
159};
160
161/*
162 * codec preset
163 *
164 * Known codecs have the patch to build and set up the controls/PCMs
165 * better than the generic parser.
166 */
167struct hda_codec_preset {
168 unsigned int id;
169 unsigned int mask;
170 unsigned int subs;
171 unsigned int subs_mask;
172 unsigned int rev;
ca7cfae9 173 hda_nid_t afg, mfg;
1da177e4
LT
174 const char *name;
175 int (*patch)(struct hda_codec *codec);
176};
177
1289e9e8
TI
178struct hda_codec_preset_list {
179 const struct hda_codec_preset *preset;
180 struct module *owner;
181 struct list_head list;
182};
183
184/* initial hook */
185int snd_hda_add_codec_preset(struct hda_codec_preset_list *preset);
186int snd_hda_delete_codec_preset(struct hda_codec_preset_list *preset);
187
1da177e4
LT
188/* ops set by the preset patch */
189struct hda_codec_ops {
190 int (*build_controls)(struct hda_codec *codec);
191 int (*build_pcms)(struct hda_codec *codec);
192 int (*init)(struct hda_codec *codec);
193 void (*free)(struct hda_codec *codec);
194 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
4d7fbdbc
TI
195 void (*set_power_state)(struct hda_codec *codec, hda_nid_t fg,
196 unsigned int power_state);
2a43952a 197#ifdef CONFIG_PM
68cb2b55 198 int (*suspend)(struct hda_codec *codec);
1da177e4 199 int (*resume)(struct hda_codec *codec);
cb53c626
TI
200 int (*check_power_status)(struct hda_codec *codec, hda_nid_t nid);
201#endif
fb8d1a34 202 void (*reboot_notify)(struct hda_codec *codec);
1da177e4
LT
203};
204
205/* record for amp information cache */
01751f54 206struct hda_cache_head {
c370dd6e
TI
207 u32 key:31; /* hash key */
208 u32 dirty:1;
01751f54 209 u16 val; /* assigned value */
c370dd6e 210 u16 next;
01751f54
TI
211};
212
213struct hda_amp_info {
214 struct hda_cache_head head;
1da177e4 215 u32 amp_caps; /* amp capabilities */
7f0e2f8b 216 u16 vol[2]; /* current volume & mute */
01751f54
TI
217};
218
219struct hda_cache_rec {
220 u16 hash[64]; /* hash table for index */
603c4019 221 struct snd_array buf; /* record entries */
1da177e4
LT
222};
223
224/* PCM callbacks */
225struct hda_pcm_ops {
226 int (*open)(struct hda_pcm_stream *info, struct hda_codec *codec,
c8b6bf9b 227 struct snd_pcm_substream *substream);
1da177e4 228 int (*close)(struct hda_pcm_stream *info, struct hda_codec *codec,
c8b6bf9b 229 struct snd_pcm_substream *substream);
1da177e4
LT
230 int (*prepare)(struct hda_pcm_stream *info, struct hda_codec *codec,
231 unsigned int stream_tag, unsigned int format,
c8b6bf9b 232 struct snd_pcm_substream *substream);
1da177e4 233 int (*cleanup)(struct hda_pcm_stream *info, struct hda_codec *codec,
c8b6bf9b 234 struct snd_pcm_substream *substream);
21229613
TI
235 unsigned int (*get_delay)(struct hda_pcm_stream *info,
236 struct hda_codec *codec,
237 struct snd_pcm_substream *substream);
1da177e4
LT
238};
239
240/* PCM information for each substream */
241struct hda_pcm_stream {
d01ce99f 242 unsigned int substreams; /* number of substreams, 0 = not exist*/
1da177e4
LT
243 unsigned int channels_min; /* min. number of channels */
244 unsigned int channels_max; /* max. number of channels */
245 hda_nid_t nid; /* default NID to query rates/formats/bps, or set up */
246 u32 rates; /* supported rates */
247 u64 formats; /* supported formats (SNDRV_PCM_FMTBIT_) */
248 unsigned int maxbps; /* supported max. bit per sample */
ee81abb6 249 const struct snd_pcm_chmap_elem *chmap; /* chmap to override */
1da177e4
LT
250 struct hda_pcm_ops ops;
251};
252
7ba72ba1
TI
253/* PCM types */
254enum {
255 HDA_PCM_TYPE_AUDIO,
256 HDA_PCM_TYPE_SPDIF,
257 HDA_PCM_TYPE_HDMI,
258 HDA_PCM_TYPE_MODEM,
259 HDA_PCM_NTYPES
260};
261
1da177e4
LT
262/* for PCM creation */
263struct hda_pcm {
264 char *name;
265 struct hda_pcm_stream stream[2];
7ba72ba1 266 unsigned int pcm_type; /* HDA_PCM_TYPE_XXX */
176d5335
TI
267 int device; /* device number to assign */
268 struct snd_pcm *pcm; /* assigned PCM instance */
9c9a5175 269 bool own_chmap; /* codec driver provides own channel maps */
1da177e4
LT
270};
271
272/* codec information */
273struct hda_codec {
274 struct hda_bus *bus;
275 unsigned int addr; /* codec addr*/
276 struct list_head list; /* list point */
277
278 hda_nid_t afg; /* AFG node id */
673b683a 279 hda_nid_t mfg; /* MFG node id */
1da177e4
LT
280
281 /* ids */
79c944ad
JK
282 u8 afg_function_id;
283 u8 mfg_function_id;
284 u8 afg_unsol;
285 u8 mfg_unsol;
1da177e4
LT
286 u32 vendor_id;
287 u32 subsystem_id;
288 u32 revision_id;
289
290 /* detected preset */
291 const struct hda_codec_preset *preset;
1289e9e8 292 struct module *owner;
b21bdd0d 293 int (*parser)(struct hda_codec *codec);
812a2cca
TI
294 const char *vendor_name; /* codec vendor name */
295 const char *chip_name; /* codec chip name */
f44ac837 296 const char *modelname; /* model name for preset */
1da177e4
LT
297
298 /* set by patch */
299 struct hda_codec_ops patch_ops;
300
1da177e4
LT
301 /* PCM to create, set by patch_ops.build_pcms callback */
302 unsigned int num_pcms;
303 struct hda_pcm *pcm_info;
304
305 /* codec specific info */
306 void *spec;
307
1cd2224c
MR
308 /* beep device */
309 struct hda_beep *beep;
2dca0bba 310 unsigned int beep_mode;
1cd2224c 311
54d17403
TI
312 /* widget capabilities cache */
313 unsigned int num_nodes;
314 hda_nid_t start_nid;
315 u32 *wcaps;
316
d13bd412 317 struct snd_array mixers; /* list of assigned mixer elements */
5b0cb1d8 318 struct snd_array nids; /* list of mapped mixer elements */
d13bd412 319
01751f54 320 struct hda_cache_rec amp_cache; /* cache for amp access */
b3ac5636 321 struct hda_cache_rec cmd_cache; /* cache for other commands */
1da177e4 322
ee8e765b 323 struct list_head conn_list; /* linked-list of connection-list */
a12d3e1e 324
62932df8 325 struct mutex spdif_mutex;
5a9e02e9 326 struct mutex control_mutex;
c3b6bcc2 327 struct mutex hash_mutex;
7c935976 328 struct snd_array spdif_out;
1da177e4 329 unsigned int spdif_in_enable; /* SPDIF input enable? */
dda14410 330 const hda_nid_t *slave_dig_outs; /* optional digital out slave widgets */
3be14149 331 struct snd_array init_pins; /* initial (BIOS) pin configurations */
346ff70f 332 struct snd_array driver_pins; /* pin configs set by codec parser */
eb541337 333 struct snd_array cvt_setups; /* audio convert setups */
2807314d 334
11aeff08 335#ifdef CONFIG_SND_HDA_HWDEP
09b70e85 336 struct mutex user_mutex;
2807314d 337 struct snd_hwdep *hwdep; /* assigned hwdep device */
11aeff08 338 struct snd_array init_verbs; /* additional init verbs */
1e1be432 339 struct snd_array hints; /* additional hints */
346ff70f 340 struct snd_array user_pins; /* default pin configs to override */
11aeff08 341#endif
cb53c626 342
963f803f
TI
343 /* misc flags */
344 unsigned int spdif_status_reset :1; /* needs to toggle SPDIF for each
345 * status change
346 * (e.g. Realtek codecs)
347 */
9421f954
TI
348 unsigned int pin_amp_workaround:1; /* pin out-amp takes index
349 * (e.g. Conexant codecs)
350 */
4f32456e
MK
351 unsigned int single_adc_amp:1; /* adc in-amp takes no index
352 * (e.g. CX20549 codec)
353 */
0e7adbe2 354 unsigned int no_sticky_stream:1; /* no sticky-PCM stream assignment */
ac0547dc 355 unsigned int pins_shutup:1; /* pins are shut up */
729d55ba 356 unsigned int no_trigger_sense:1; /* don't trigger at pin-sensing */
71b1e9e4 357 unsigned int no_jack_detect:1; /* Machine has no jack-detection */
ecac3ed1 358 unsigned int inv_eapd:1; /* broken h/w: inverted EAPD control */
9cc159c6 359 unsigned int inv_jack_detect:1; /* broken h/w: inverted detection bit */
ed360813 360 unsigned int pcm_format_first:1; /* PCM format must be set first */
983f6b93 361 unsigned int epss:1; /* supporting EPSS? */
c370dd6e 362 unsigned int cached_write:1; /* write only to caches */
f1aa0684 363 unsigned int dp_mst:1; /* support DP1.2 Multi-stream transport */
83012a7c 364#ifdef CONFIG_PM
a221e287 365 unsigned int power_on :1; /* current (global) power-state */
4b927345 366 unsigned int d3_stop_clk:1; /* support D3 operation without BCLK */
a40e0a88 367 unsigned int pm_up_notified:1; /* PM notified to controller */
989c3187 368 unsigned int in_pm:1; /* suspend/resume being performed */
a2d96e77 369 int power_transition; /* power-state in transition */
cb53c626
TI
370 int power_count; /* current (global) power refcount */
371 struct delayed_work power_work; /* delayed task for powerdown */
a2f6309e
TI
372 unsigned long power_on_acct;
373 unsigned long power_off_acct;
374 unsigned long power_jiffies;
5536c6d6 375 spinlock_t power_lock;
cb53c626 376#endif
daead538 377
9419ab6b
TI
378 /* filter the requested power state per nid */
379 unsigned int (*power_filter)(struct hda_codec *codec, hda_nid_t nid,
380 unsigned int power_state);
381
daead538
TI
382 /* codec-specific additional proc output */
383 void (*proc_widget_hook)(struct snd_info_buffer *buffer,
384 struct hda_codec *codec, hda_nid_t nid);
cd372fb3 385
1835a0f9
TI
386 /* jack detection */
387 struct snd_array jacktbl;
26a6cb6c
DH
388 unsigned long jackpoll_interval; /* In jiffies. Zero means no poll, rely on unsol events */
389 struct delayed_work jackpoll_work;
1835a0f9 390
cd372fb3
TI
391#ifdef CONFIG_SND_HDA_INPUT_JACK
392 /* jack detection */
393 struct snd_array jacks;
394#endif
c9ce6b26 395
7f132927
ML
396 int depop_delay; /* depop delay in ms, -1 for default delay time */
397
c9ce6b26
TI
398 /* fix-up list */
399 int fixup_id;
400 const struct hda_fixup *fixup_list;
401 const char *fixup_name;
402
403 /* additional init verbs */
404 struct snd_array verbs;
1da177e4
LT
405};
406
407/* direction */
408enum {
409 HDA_INPUT, HDA_OUTPUT
410};
411
63e51fd7
TI
412/* snd_hda_codec_read/write optional flags */
413#define HDA_RW_NO_RESPONSE_FALLBACK (1 << 0)
1da177e4
LT
414
415/*
416 * constructors
417 */
c8b6bf9b 418int snd_hda_bus_new(struct snd_card *card, const struct hda_bus_template *temp,
1da177e4
LT
419 struct hda_bus **busp);
420int snd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr,
a1e21c90
TI
421 struct hda_codec **codecp);
422int snd_hda_codec_configure(struct hda_codec *codec);
a15d05db 423int snd_hda_codec_update_widgets(struct hda_codec *codec);
1da177e4
LT
424
425/*
426 * low level functions
427 */
d01ce99f 428unsigned int snd_hda_codec_read(struct hda_codec *codec, hda_nid_t nid,
e7ecc27e 429 int flags,
1da177e4 430 unsigned int verb, unsigned int parm);
e7ecc27e 431int snd_hda_codec_write(struct hda_codec *codec, hda_nid_t nid, int flags,
1da177e4 432 unsigned int verb, unsigned int parm);
d01ce99f
TI
433#define snd_hda_param_read(codec, nid, param) \
434 snd_hda_codec_read(codec, nid, 0, AC_VERB_PARAMETERS, param)
435int snd_hda_get_sub_nodes(struct hda_codec *codec, hda_nid_t nid,
436 hda_nid_t *start_id);
437int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid,
438 hda_nid_t *conn_list, int max_conns);
09cf03b8
TI
439static inline int
440snd_hda_get_num_conns(struct hda_codec *codec, hda_nid_t nid)
441{
442 return snd_hda_get_connections(codec, nid, NULL, 0);
443}
4eea3091 444int snd_hda_get_num_raw_conns(struct hda_codec *codec, hda_nid_t nid);
9e7717c9
TI
445int snd_hda_get_raw_connections(struct hda_codec *codec, hda_nid_t nid,
446 hda_nid_t *conn_list, int max_conns);
ee8e765b
TI
447int snd_hda_get_conn_list(struct hda_codec *codec, hda_nid_t nid,
448 const hda_nid_t **listp);
b2f934a0
TI
449int snd_hda_override_conn_list(struct hda_codec *codec, hda_nid_t nid, int nums,
450 const hda_nid_t *list);
8d087c76
TI
451int snd_hda_get_conn_index(struct hda_codec *codec, hda_nid_t mux,
452 hda_nid_t nid, int recursive);
f1aa0684
ML
453int snd_hda_get_devices(struct hda_codec *codec, hda_nid_t nid,
454 u8 *dev_list, int max_devices);
384a48d7
SW
455int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
456 u32 *ratesp, u64 *formatsp, unsigned int *bpsp);
1da177e4
LT
457
458struct hda_verb {
459 hda_nid_t nid;
460 u32 verb;
461 u32 param;
462};
463
d01ce99f
TI
464void snd_hda_sequence_write(struct hda_codec *codec,
465 const struct hda_verb *seq);
1da177e4
LT
466
467/* unsolicited event */
468int snd_hda_queue_unsol_event(struct hda_bus *bus, u32 res, u32 res_ex);
469
b3ac5636
TI
470/* cached write */
471int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid,
e7ecc27e 472 int flags, unsigned int verb, unsigned int parm);
b3ac5636
TI
473void snd_hda_sequence_write_cache(struct hda_codec *codec,
474 const struct hda_verb *seq);
a68d5a54 475int snd_hda_codec_update_cache(struct hda_codec *codec, hda_nid_t nid,
e7ecc27e 476 int flags, unsigned int verb, unsigned int parm);
b3ac5636 477void snd_hda_codec_resume_cache(struct hda_codec *codec);
dc870f38
TI
478/* both for cmd & amp caches */
479void snd_hda_codec_flush_cache(struct hda_codec *codec);
0c3d47b0 480
3be14149
TI
481/* the struct for codec->pin_configs */
482struct hda_pincfg {
483 hda_nid_t nid;
d7fdc00a
TI
484 unsigned char ctrl; /* original pin control value */
485 unsigned char target; /* target pin control value */
ac0547dc 486 unsigned int cfg; /* default configuration */
3be14149
TI
487};
488
489unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid);
490int snd_hda_codec_set_pincfg(struct hda_codec *codec, hda_nid_t nid,
491 unsigned int cfg);
492int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list,
493 hda_nid_t nid, unsigned int cfg); /* for hwdep */
92ee6162 494void snd_hda_shutup_pins(struct hda_codec *codec);
3be14149 495
7c935976
SW
496/* SPDIF controls */
497struct hda_spdif_out {
498 hda_nid_t nid; /* Converter nid values relate to */
499 unsigned int status; /* IEC958 status bits */
500 unsigned short ctls; /* SPDIF control bits */
501};
502struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec,
503 hda_nid_t nid);
74b654c9
SW
504void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx);
505void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid);
7c935976 506
1da177e4
LT
507/*
508 * Mixer
509 */
510int snd_hda_build_controls(struct hda_bus *bus);
6c1f45ea 511int snd_hda_codec_build_controls(struct hda_codec *codec);
1da177e4
LT
512
513/*
514 * PCM
515 */
516int snd_hda_build_pcms(struct hda_bus *bus);
529bd6c4 517int snd_hda_codec_build_pcms(struct hda_codec *codec);
eb541337
TI
518
519int snd_hda_codec_prepare(struct hda_codec *codec,
520 struct hda_pcm_stream *hinfo,
521 unsigned int stream,
522 unsigned int format,
523 struct snd_pcm_substream *substream);
524void snd_hda_codec_cleanup(struct hda_codec *codec,
525 struct hda_pcm_stream *hinfo,
526 struct snd_pcm_substream *substream);
527
d01ce99f
TI
528void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
529 u32 stream_tag,
1da177e4 530 int channel_id, int format);
f0cea797
TI
531void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid,
532 int do_now);
533#define snd_hda_codec_cleanup_stream(codec, nid) \
534 __snd_hda_codec_cleanup_stream(codec, nid, 0)
d01ce99f
TI
535unsigned int snd_hda_calc_stream_format(unsigned int rate,
536 unsigned int channels,
537 unsigned int format,
32c168c8
AH
538 unsigned int maxbps,
539 unsigned short spdif_ctls);
1da177e4
LT
540int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
541 unsigned int format);
542
ee81abb6
TI
543extern const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps[];
544
1da177e4
LT
545/*
546 * Misc
547 */
548void snd_hda_get_codec_name(struct hda_codec *codec, char *name, int namelen);
fb8d1a34 549void snd_hda_bus_reboot_notify(struct hda_bus *bus);
4d7fbdbc 550void snd_hda_codec_set_power_to_all(struct hda_codec *codec, hda_nid_t fg,
9419ab6b 551 unsigned int power_state);
1da177e4 552
d3d020bd
TI
553int snd_hda_lock_devices(struct hda_bus *bus);
554void snd_hda_unlock_devices(struct hda_bus *bus);
555
1da177e4
LT
556/*
557 * power management
558 */
559#ifdef CONFIG_PM
8dd78330 560int snd_hda_suspend(struct hda_bus *bus);
1da177e4
LT
561int snd_hda_resume(struct hda_bus *bus);
562#endif
563
9e5341b9
TI
564static inline
565int hda_call_check_power_status(struct hda_codec *codec, hda_nid_t nid)
566{
83012a7c 567#ifdef CONFIG_PM
9e5341b9
TI
568 if (codec->patch_ops.check_power_status)
569 return codec->patch_ops.check_power_status(codec, nid);
ff2b7e2a 570#endif
9e5341b9
TI
571 return 0;
572}
9e5341b9 573
50a9f790
MR
574/*
575 * get widget information
576 */
577const char *snd_hda_get_jack_connectivity(u32 cfg);
578const char *snd_hda_get_jack_type(u32 cfg);
579const char *snd_hda_get_jack_location(u32 cfg);
580
cb53c626
TI
581/*
582 * power saving
583 */
83012a7c 584#ifdef CONFIG_PM
c376e2c7 585void snd_hda_power_save(struct hda_codec *codec, int delta, bool d3wait);
a2f6309e 586void snd_hda_update_power_acct(struct hda_codec *codec);
cb53c626 587#else
c376e2c7
TI
588static inline void snd_hda_power_save(struct hda_codec *codec, int delta,
589 bool d3wait) {}
cb53c626
TI
590#endif
591
c376e2c7
TI
592/**
593 * snd_hda_power_up - Power-up the codec
594 * @codec: HD-audio codec
595 *
596 * Increment the power-up counter and power up the hardware really when
597 * not turned on yet.
598 */
599static inline void snd_hda_power_up(struct hda_codec *codec)
600{
601 snd_hda_power_save(codec, 1, false);
602}
603
604/**
605 * snd_hda_power_up_d3wait - Power-up the codec after waiting for any pending
606 * D3 transition to complete. This differs from snd_hda_power_up() when
607 * power_transition == -1. snd_hda_power_up sees this case as a nop,
608 * snd_hda_power_up_d3wait waits for the D3 transition to complete then powers
609 * back up.
610 * @codec: HD-audio codec
611 *
612 * Cancel any power down operation hapenning on the work queue, then power up.
613 */
614static inline void snd_hda_power_up_d3wait(struct hda_codec *codec)
615{
616 snd_hda_power_save(codec, 1, true);
617}
618
619/**
620 * snd_hda_power_down - Power-down the codec
621 * @codec: HD-audio codec
622 *
623 * Decrement the power-up counter and schedules the power-off work if
624 * the counter rearches to zero.
625 */
626static inline void snd_hda_power_down(struct hda_codec *codec)
627{
628 snd_hda_power_save(codec, -1, false);
629}
630
631/**
632 * snd_hda_power_sync - Synchronize the power-save status
633 * @codec: HD-audio codec
634 *
635 * Synchronize the actual power state with the power account;
636 * called when power_save parameter is changed
637 */
638static inline void snd_hda_power_sync(struct hda_codec *codec)
639{
640 snd_hda_power_save(codec, 0, false);
641}
642
4ea6fbc8
TI
643#ifdef CONFIG_SND_HDA_PATCH_LOADER
644/*
645 * patch firmware
646 */
4918cdab 647int snd_hda_load_patch(struct hda_bus *bus, size_t size, const void *buf);
4ea6fbc8
TI
648#endif
649
1d1a4564
TI
650#ifdef CONFIG_SND_HDA_DSP_LOADER
651static inline int
652snd_hda_codec_load_dsp_prepare(struct hda_codec *codec, unsigned int format,
653 unsigned int size,
654 struct snd_dma_buffer *bufp)
655{
656 return codec->bus->ops.load_dsp_prepare(codec->bus, format, size, bufp);
657}
658static inline void
659snd_hda_codec_load_dsp_trigger(struct hda_codec *codec, bool start)
660{
661 return codec->bus->ops.load_dsp_trigger(codec->bus, start);
662}
663static inline void
664snd_hda_codec_load_dsp_cleanup(struct hda_codec *codec,
665 struct snd_dma_buffer *dmab)
666{
667 return codec->bus->ops.load_dsp_cleanup(codec->bus, dmab);
668}
669#else
670static inline int
671snd_hda_codec_load_dsp_prepare(struct hda_codec *codec, unsigned int format,
672 unsigned int size,
673 struct snd_dma_buffer *bufp)
674{
a3af4807 675 return -ENOSYS;
1d1a4564
TI
676}
677static inline void
678snd_hda_codec_load_dsp_trigger(struct hda_codec *codec, bool start) {}
679static inline void
680snd_hda_codec_load_dsp_cleanup(struct hda_codec *codec,
681 struct snd_dma_buffer *dmab) {}
682#endif
683
ff7a3267 684#define EXPORT_SYMBOL_HDA(sym) EXPORT_SYMBOL_GPL(sym)
ff7a3267 685
1da177e4 686#endif /* __SOUND_HDA_CODEC_H */
This page took 0.56529 seconds and 5 git commands to generate.