ALSA: hda - Clear pcm pointer assigned to hda_pcm at device removal
[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;
1da177e4
LT
69
70/* NID type */
71typedef u16 hda_nid_t;
72
73/* bus operators */
74struct hda_bus_ops {
75 /* send a single command */
33fa35ed 76 int (*command)(struct hda_bus *bus, unsigned int cmd);
1da177e4 77 /* get a response from the last command */
deadff16 78 unsigned int (*get_response)(struct hda_bus *bus, unsigned int addr);
1da177e4
LT
79 /* free the private data */
80 void (*private_free)(struct hda_bus *);
176d5335 81 /* attach a PCM stream */
33fa35ed
TI
82 int (*attach_pcm)(struct hda_bus *bus, struct hda_codec *codec,
83 struct hda_pcm *pcm);
8dd78330
TI
84 /* reset bus for retry verb */
85 void (*bus_reset)(struct hda_bus *bus);
1d1a4564
TI
86#ifdef CONFIG_SND_HDA_DSP_LOADER
87 /* prepare DSP transfer */
88 int (*load_dsp_prepare)(struct hda_bus *bus, unsigned int format,
89 unsigned int byte_size,
90 struct snd_dma_buffer *bufp);
91 /* start/stop DSP transfer */
92 void (*load_dsp_trigger)(struct hda_bus *bus, bool start);
93 /* clean up DSP transfer */
94 void (*load_dsp_cleanup)(struct hda_bus *bus,
95 struct snd_dma_buffer *dmab);
96#endif
1da177e4
LT
97};
98
922c88a8
TI
99/* unsolicited event handler */
100#define HDA_UNSOL_QUEUE_SIZE 64
101struct hda_bus_unsolicited {
102 /* ring buffer */
103 u32 queue[HDA_UNSOL_QUEUE_SIZE * 2];
104 unsigned int rp, wp;
105 /* workqueue */
106 struct work_struct work;
107};
108
1da177e4
LT
109/*
110 * codec bus
111 *
112 * each controller needs to creata a hda_bus to assign the accessor.
113 * A hda_bus contains several codecs in the list codec_list.
114 */
115struct hda_bus {
c8b6bf9b 116 struct snd_card *card;
1da177e4 117
1da177e4
LT
118 void *private_data;
119 struct pci_dev *pci;
120 const char *modelname;
121 struct hda_bus_ops ops;
122
123 /* codec linked list */
124 struct list_head codec_list;
0e24dbb7 125 unsigned int num_codecs;
d01ce99f
TI
126 /* link caddr -> codec */
127 struct hda_codec *caddr_tbl[HDA_MAX_CODEC_ADDRESS + 1];
1da177e4 128
62932df8 129 struct mutex cmd_mutex;
3f50ac6a 130 struct mutex prepare_mutex;
1da177e4
LT
131
132 /* unsolicited event queue */
922c88a8 133 struct hda_bus_unsolicited unsol;
e8c0ee5d 134 char workq_name[16];
6acaed38 135 struct workqueue_struct *workq; /* common workqueue for codecs */
1da177e4 136
529bd6c4
TI
137 /* assigned PCMs */
138 DECLARE_BITMAP(pcm_dev_bits, SNDRV_PCM_DEVICES);
139
52987656
TI
140 /* misc op flags */
141 unsigned int needs_damn_long_delay :1;
b20f3b83
TI
142 unsigned int allow_bus_reset:1; /* allow bus reset at fatal error */
143 unsigned int sync_write:1; /* sync after verb write */
144 /* status for codec/controller */
b94d3539 145 unsigned int shutdown :1; /* being unloaded */
b613291f 146 unsigned int rirb_error:1; /* error in codec communication */
8dd78330
TI
147 unsigned int response_reset:1; /* controller was reset */
148 unsigned int in_reset:1; /* during reset operation */
63e51fd7 149 unsigned int no_response_fallback:1; /* don't fallback at RIRB error */
ea9b43ad
TI
150
151 int primary_dig_out_type; /* primary digital out PCM type */
55ed9cd1 152 unsigned long codec_powered; /* bit flags of powered codecs */
1da177e4
LT
153};
154
155/*
156 * codec preset
157 *
158 * Known codecs have the patch to build and set up the controls/PCMs
159 * better than the generic parser.
160 */
161struct hda_codec_preset {
162 unsigned int id;
163 unsigned int mask;
164 unsigned int subs;
165 unsigned int subs_mask;
166 unsigned int rev;
ca7cfae9 167 hda_nid_t afg, mfg;
1da177e4
LT
168 const char *name;
169 int (*patch)(struct hda_codec *codec);
170};
171
d8a766a1
TI
172#define HDA_CODEC_ID_GENERIC_HDMI 0x00000101
173#define HDA_CODEC_ID_GENERIC 0x00000201
174
175struct hda_codec_driver {
176 struct device_driver driver;
1289e9e8 177 const struct hda_codec_preset *preset;
1289e9e8
TI
178};
179
d8a766a1
TI
180int __hda_codec_driver_register(struct hda_codec_driver *drv, const char *name,
181 struct module *owner);
182#define hda_codec_driver_register(drv) \
183 __hda_codec_driver_register(drv, KBUILD_MODNAME, THIS_MODULE)
184void hda_codec_driver_unregister(struct hda_codec_driver *drv);
185#define module_hda_codec_driver(drv) \
186 module_driver(drv, hda_codec_driver_register, \
187 hda_codec_driver_unregister)
1289e9e8 188
1da177e4
LT
189/* ops set by the preset patch */
190struct hda_codec_ops {
191 int (*build_controls)(struct hda_codec *codec);
192 int (*build_pcms)(struct hda_codec *codec);
193 int (*init)(struct hda_codec *codec);
194 void (*free)(struct hda_codec *codec);
195 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
4d7fbdbc
TI
196 void (*set_power_state)(struct hda_codec *codec, hda_nid_t fg,
197 unsigned int power_state);
2a43952a 198#ifdef CONFIG_PM
68cb2b55 199 int (*suspend)(struct hda_codec *codec);
1da177e4 200 int (*resume)(struct hda_codec *codec);
cb53c626
TI
201 int (*check_power_status)(struct hda_codec *codec, hda_nid_t nid);
202#endif
fb8d1a34 203 void (*reboot_notify)(struct hda_codec *codec);
1da177e4
LT
204};
205
206/* record for amp information cache */
01751f54 207struct hda_cache_head {
c370dd6e
TI
208 u32 key:31; /* hash key */
209 u32 dirty:1;
01751f54 210 u16 val; /* assigned value */
c370dd6e 211 u16 next;
01751f54
TI
212};
213
214struct hda_amp_info {
215 struct hda_cache_head head;
1da177e4 216 u32 amp_caps; /* amp capabilities */
7f0e2f8b 217 u16 vol[2]; /* current volume & mute */
01751f54
TI
218};
219
220struct hda_cache_rec {
221 u16 hash[64]; /* hash table for index */
603c4019 222 struct snd_array buf; /* record entries */
1da177e4
LT
223};
224
225/* PCM callbacks */
226struct hda_pcm_ops {
227 int (*open)(struct hda_pcm_stream *info, struct hda_codec *codec,
c8b6bf9b 228 struct snd_pcm_substream *substream);
1da177e4 229 int (*close)(struct hda_pcm_stream *info, struct hda_codec *codec,
c8b6bf9b 230 struct snd_pcm_substream *substream);
1da177e4
LT
231 int (*prepare)(struct hda_pcm_stream *info, struct hda_codec *codec,
232 unsigned int stream_tag, unsigned int format,
c8b6bf9b 233 struct snd_pcm_substream *substream);
1da177e4 234 int (*cleanup)(struct hda_pcm_stream *info, struct hda_codec *codec,
c8b6bf9b 235 struct snd_pcm_substream *substream);
21229613
TI
236 unsigned int (*get_delay)(struct hda_pcm_stream *info,
237 struct hda_codec *codec,
238 struct snd_pcm_substream *substream);
1da177e4
LT
239};
240
241/* PCM information for each substream */
242struct hda_pcm_stream {
d01ce99f 243 unsigned int substreams; /* number of substreams, 0 = not exist*/
1da177e4
LT
244 unsigned int channels_min; /* min. number of channels */
245 unsigned int channels_max; /* max. number of channels */
246 hda_nid_t nid; /* default NID to query rates/formats/bps, or set up */
247 u32 rates; /* supported rates */
248 u64 formats; /* supported formats (SNDRV_PCM_FMTBIT_) */
249 unsigned int maxbps; /* supported max. bit per sample */
ee81abb6 250 const struct snd_pcm_chmap_elem *chmap; /* chmap to override */
1da177e4
LT
251 struct hda_pcm_ops ops;
252};
253
7ba72ba1
TI
254/* PCM types */
255enum {
256 HDA_PCM_TYPE_AUDIO,
257 HDA_PCM_TYPE_SPDIF,
258 HDA_PCM_TYPE_HDMI,
259 HDA_PCM_TYPE_MODEM,
260 HDA_PCM_NTYPES
261};
262
1da177e4
LT
263/* for PCM creation */
264struct hda_pcm {
265 char *name;
266 struct hda_pcm_stream stream[2];
7ba72ba1 267 unsigned int pcm_type; /* HDA_PCM_TYPE_XXX */
176d5335
TI
268 int device; /* device number to assign */
269 struct snd_pcm *pcm; /* assigned PCM instance */
9c9a5175 270 bool own_chmap; /* codec driver provides own channel maps */
1da177e4
LT
271};
272
273/* codec information */
274struct hda_codec {
13aeaf68 275 struct device dev;
1da177e4
LT
276 struct hda_bus *bus;
277 unsigned int addr; /* codec addr*/
278 struct list_head list; /* list point */
279
280 hda_nid_t afg; /* AFG node id */
673b683a 281 hda_nid_t mfg; /* MFG node id */
1da177e4
LT
282
283 /* ids */
79c944ad
JK
284 u8 afg_function_id;
285 u8 mfg_function_id;
286 u8 afg_unsol;
287 u8 mfg_unsol;
1da177e4
LT
288 u32 vendor_id;
289 u32 subsystem_id;
290 u32 revision_id;
d8a766a1 291 u32 probe_id; /* overridden id for probing */
1da177e4
LT
292
293 /* detected preset */
294 const struct hda_codec_preset *preset;
812a2cca
TI
295 const char *vendor_name; /* codec vendor name */
296 const char *chip_name; /* codec chip name */
f44ac837 297 const char *modelname; /* model name for preset */
1da177e4
LT
298
299 /* set by patch */
300 struct hda_codec_ops patch_ops;
301
1da177e4
LT
302 /* PCM to create, set by patch_ops.build_pcms callback */
303 unsigned int num_pcms;
304 struct hda_pcm *pcm_info;
305
306 /* codec specific info */
307 void *spec;
308
1cd2224c
MR
309 /* beep device */
310 struct hda_beep *beep;
2dca0bba 311 unsigned int beep_mode;
1cd2224c 312
54d17403
TI
313 /* widget capabilities cache */
314 unsigned int num_nodes;
315 hda_nid_t start_nid;
316 u32 *wcaps;
317
d13bd412 318 struct snd_array mixers; /* list of assigned mixer elements */
5b0cb1d8 319 struct snd_array nids; /* list of mapped mixer elements */
d13bd412 320
01751f54 321 struct hda_cache_rec amp_cache; /* cache for amp access */
b3ac5636 322 struct hda_cache_rec cmd_cache; /* cache for other commands */
1da177e4 323
ee8e765b 324 struct list_head conn_list; /* linked-list of connection-list */
a12d3e1e 325
62932df8 326 struct mutex spdif_mutex;
5a9e02e9 327 struct mutex control_mutex;
c3b6bcc2 328 struct mutex hash_mutex;
7c935976 329 struct snd_array spdif_out;
1da177e4 330 unsigned int spdif_in_enable; /* SPDIF input enable? */
dda14410 331 const hda_nid_t *slave_dig_outs; /* optional digital out slave widgets */
3be14149 332 struct snd_array init_pins; /* initial (BIOS) pin configurations */
346ff70f 333 struct snd_array driver_pins; /* pin configs set by codec parser */
eb541337 334 struct snd_array cvt_setups; /* audio convert setups */
2807314d 335
09b70e85 336 struct mutex user_mutex;
b989d044 337#ifdef CONFIG_SND_HDA_RECONFIG
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
648a8d27
TI
343#ifdef CONFIG_SND_HDA_HWDEP
344 struct snd_hwdep *hwdep; /* assigned hwdep device */
345#endif
346
963f803f
TI
347 /* misc flags */
348 unsigned int spdif_status_reset :1; /* needs to toggle SPDIF for each
349 * status change
350 * (e.g. Realtek codecs)
351 */
9421f954
TI
352 unsigned int pin_amp_workaround:1; /* pin out-amp takes index
353 * (e.g. Conexant codecs)
354 */
4f32456e
MK
355 unsigned int single_adc_amp:1; /* adc in-amp takes no index
356 * (e.g. CX20549 codec)
357 */
0e7adbe2 358 unsigned int no_sticky_stream:1; /* no sticky-PCM stream assignment */
ac0547dc 359 unsigned int pins_shutup:1; /* pins are shut up */
729d55ba 360 unsigned int no_trigger_sense:1; /* don't trigger at pin-sensing */
71b1e9e4 361 unsigned int no_jack_detect:1; /* Machine has no jack-detection */
ecac3ed1 362 unsigned int inv_eapd:1; /* broken h/w: inverted EAPD control */
9cc159c6 363 unsigned int inv_jack_detect:1; /* broken h/w: inverted detection bit */
ed360813 364 unsigned int pcm_format_first:1; /* PCM format must be set first */
983f6b93 365 unsigned int epss:1; /* supporting EPSS? */
c370dd6e 366 unsigned int cached_write:1; /* write only to caches */
f1aa0684 367 unsigned int dp_mst:1; /* support DP1.2 Multi-stream transport */
cd262518 368 unsigned int dump_coef:1; /* dump processing coefs in codec proc file */
83012a7c 369#ifdef CONFIG_PM
4b927345 370 unsigned int d3_stop_clk:1; /* support D3 operation without BCLK */
cc72da7d 371 atomic_t in_pm; /* suspend/resume being performed */
a2f6309e
TI
372 unsigned long power_on_acct;
373 unsigned long power_off_acct;
374 unsigned long power_jiffies;
cb53c626 375#endif
daead538 376
9419ab6b
TI
377 /* filter the requested power state per nid */
378 unsigned int (*power_filter)(struct hda_codec *codec, hda_nid_t nid,
379 unsigned int power_state);
380
daead538
TI
381 /* codec-specific additional proc output */
382 void (*proc_widget_hook)(struct snd_info_buffer *buffer,
383 struct hda_codec *codec, hda_nid_t nid);
cd372fb3 384
1835a0f9
TI
385 /* jack detection */
386 struct snd_array jacktbl;
26a6cb6c
DH
387 unsigned long jackpoll_interval; /* In jiffies. Zero means no poll, rely on unsol events */
388 struct delayed_work jackpoll_work;
1835a0f9 389
cd372fb3
TI
390#ifdef CONFIG_SND_HDA_INPUT_JACK
391 /* jack detection */
392 struct snd_array jacks;
393#endif
c9ce6b26 394
7f132927
ML
395 int depop_delay; /* depop delay in ms, -1 for default delay time */
396
c9ce6b26
TI
397 /* fix-up list */
398 int fixup_id;
399 const struct hda_fixup *fixup_list;
400 const char *fixup_name;
401
402 /* additional init verbs */
403 struct snd_array verbs;
1da177e4
LT
404};
405
d8a766a1
TI
406#define dev_to_hda_codec(_dev) container_of(_dev, struct hda_codec, dev)
407#define hda_codec_dev(_dev) (&(_dev)->dev)
408
409extern struct bus_type snd_hda_bus_type;
410
1da177e4
LT
411/* direction */
412enum {
413 HDA_INPUT, HDA_OUTPUT
414};
415
63e51fd7
TI
416/* snd_hda_codec_read/write optional flags */
417#define HDA_RW_NO_RESPONSE_FALLBACK (1 << 0)
1da177e4
LT
418
419/*
420 * constructors
421 */
ef744978 422int snd_hda_bus_new(struct snd_card *card, struct hda_bus **busp);
1da177e4 423int snd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr,
a1e21c90
TI
424 struct hda_codec **codecp);
425int snd_hda_codec_configure(struct hda_codec *codec);
a15d05db 426int snd_hda_codec_update_widgets(struct hda_codec *codec);
1da177e4
LT
427
428/*
429 * low level functions
430 */
d01ce99f 431unsigned int snd_hda_codec_read(struct hda_codec *codec, hda_nid_t nid,
e7ecc27e 432 int flags,
1da177e4 433 unsigned int verb, unsigned int parm);
e7ecc27e 434int snd_hda_codec_write(struct hda_codec *codec, hda_nid_t nid, int flags,
1da177e4 435 unsigned int verb, unsigned int parm);
d01ce99f
TI
436#define snd_hda_param_read(codec, nid, param) \
437 snd_hda_codec_read(codec, nid, 0, AC_VERB_PARAMETERS, param)
438int snd_hda_get_sub_nodes(struct hda_codec *codec, hda_nid_t nid,
439 hda_nid_t *start_id);
440int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid,
441 hda_nid_t *conn_list, int max_conns);
09cf03b8
TI
442static inline int
443snd_hda_get_num_conns(struct hda_codec *codec, hda_nid_t nid)
444{
445 return snd_hda_get_connections(codec, nid, NULL, 0);
446}
4eea3091 447int snd_hda_get_num_raw_conns(struct hda_codec *codec, hda_nid_t nid);
9e7717c9
TI
448int snd_hda_get_raw_connections(struct hda_codec *codec, hda_nid_t nid,
449 hda_nid_t *conn_list, int max_conns);
ee8e765b
TI
450int snd_hda_get_conn_list(struct hda_codec *codec, hda_nid_t nid,
451 const hda_nid_t **listp);
b2f934a0
TI
452int snd_hda_override_conn_list(struct hda_codec *codec, hda_nid_t nid, int nums,
453 const hda_nid_t *list);
8d087c76
TI
454int snd_hda_get_conn_index(struct hda_codec *codec, hda_nid_t mux,
455 hda_nid_t nid, int recursive);
f1aa0684
ML
456int snd_hda_get_devices(struct hda_codec *codec, hda_nid_t nid,
457 u8 *dev_list, int max_devices);
384a48d7
SW
458int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
459 u32 *ratesp, u64 *formatsp, unsigned int *bpsp);
1da177e4
LT
460
461struct hda_verb {
462 hda_nid_t nid;
463 u32 verb;
464 u32 param;
465};
466
d01ce99f
TI
467void snd_hda_sequence_write(struct hda_codec *codec,
468 const struct hda_verb *seq);
1da177e4
LT
469
470/* unsolicited event */
471int snd_hda_queue_unsol_event(struct hda_bus *bus, u32 res, u32 res_ex);
472
b3ac5636
TI
473/* cached write */
474int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid,
e7ecc27e 475 int flags, unsigned int verb, unsigned int parm);
b3ac5636
TI
476void snd_hda_sequence_write_cache(struct hda_codec *codec,
477 const struct hda_verb *seq);
a68d5a54 478int snd_hda_codec_update_cache(struct hda_codec *codec, hda_nid_t nid,
e7ecc27e 479 int flags, unsigned int verb, unsigned int parm);
b3ac5636 480void snd_hda_codec_resume_cache(struct hda_codec *codec);
dc870f38
TI
481/* both for cmd & amp caches */
482void snd_hda_codec_flush_cache(struct hda_codec *codec);
0c3d47b0 483
3be14149
TI
484/* the struct for codec->pin_configs */
485struct hda_pincfg {
486 hda_nid_t nid;
d7fdc00a
TI
487 unsigned char ctrl; /* original pin control value */
488 unsigned char target; /* target pin control value */
ac0547dc 489 unsigned int cfg; /* default configuration */
3be14149
TI
490};
491
492unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid);
493int snd_hda_codec_set_pincfg(struct hda_codec *codec, hda_nid_t nid,
494 unsigned int cfg);
495int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list,
496 hda_nid_t nid, unsigned int cfg); /* for hwdep */
92ee6162 497void snd_hda_shutup_pins(struct hda_codec *codec);
3be14149 498
7c935976
SW
499/* SPDIF controls */
500struct hda_spdif_out {
501 hda_nid_t nid; /* Converter nid values relate to */
502 unsigned int status; /* IEC958 status bits */
503 unsigned short ctls; /* SPDIF control bits */
504};
505struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec,
506 hda_nid_t nid);
74b654c9
SW
507void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx);
508void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid);
7c935976 509
1da177e4
LT
510/*
511 * Mixer
512 */
513int snd_hda_build_controls(struct hda_bus *bus);
6c1f45ea 514int snd_hda_codec_build_controls(struct hda_codec *codec);
1da177e4
LT
515
516/*
517 * PCM
518 */
519int snd_hda_build_pcms(struct hda_bus *bus);
529bd6c4 520int snd_hda_codec_build_pcms(struct hda_codec *codec);
eb541337
TI
521
522int snd_hda_codec_prepare(struct hda_codec *codec,
523 struct hda_pcm_stream *hinfo,
524 unsigned int stream,
525 unsigned int format,
526 struct snd_pcm_substream *substream);
527void snd_hda_codec_cleanup(struct hda_codec *codec,
528 struct hda_pcm_stream *hinfo,
529 struct snd_pcm_substream *substream);
530
d01ce99f
TI
531void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
532 u32 stream_tag,
1da177e4 533 int channel_id, int format);
f0cea797
TI
534void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid,
535 int do_now);
536#define snd_hda_codec_cleanup_stream(codec, nid) \
537 __snd_hda_codec_cleanup_stream(codec, nid, 0)
6194b99d
TI
538unsigned int snd_hda_calc_stream_format(struct hda_codec *codec,
539 unsigned int rate,
d01ce99f
TI
540 unsigned int channels,
541 unsigned int format,
32c168c8
AH
542 unsigned int maxbps,
543 unsigned short spdif_ctls);
1da177e4
LT
544int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
545 unsigned int format);
546
ee81abb6
TI
547extern const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps[];
548
1da177e4
LT
549/*
550 * Misc
551 */
552void snd_hda_get_codec_name(struct hda_codec *codec, char *name, int namelen);
fb8d1a34 553void snd_hda_bus_reboot_notify(struct hda_bus *bus);
4d7fbdbc 554void snd_hda_codec_set_power_to_all(struct hda_codec *codec, hda_nid_t fg,
9419ab6b 555 unsigned int power_state);
1da177e4 556
d3d020bd
TI
557int snd_hda_lock_devices(struct hda_bus *bus);
558void snd_hda_unlock_devices(struct hda_bus *bus);
59ed1ead 559void snd_hda_bus_reset(struct hda_bus *bus);
d3d020bd 560
1da177e4
LT
561/*
562 * power management
563 */
59ed1ead 564extern const struct dev_pm_ops hda_codec_driver_pm;
1da177e4 565
9e5341b9
TI
566static inline
567int hda_call_check_power_status(struct hda_codec *codec, hda_nid_t nid)
568{
83012a7c 569#ifdef CONFIG_PM
9e5341b9
TI
570 if (codec->patch_ops.check_power_status)
571 return codec->patch_ops.check_power_status(codec, nid);
ff2b7e2a 572#endif
9e5341b9
TI
573 return 0;
574}
9e5341b9 575
50a9f790
MR
576/*
577 * get widget information
578 */
579const char *snd_hda_get_jack_connectivity(u32 cfg);
580const char *snd_hda_get_jack_type(u32 cfg);
581const char *snd_hda_get_jack_location(u32 cfg);
582
cb53c626
TI
583/*
584 * power saving
585 */
83012a7c 586#ifdef CONFIG_PM
cc72da7d
TI
587void snd_hda_power_up(struct hda_codec *codec);
588void snd_hda_power_down(struct hda_codec *codec);
bb573928 589void snd_hda_set_power_save(struct hda_bus *bus, int delay);
a2f6309e 590void snd_hda_update_power_acct(struct hda_codec *codec);
cb53c626 591#else
cc72da7d
TI
592static inline void snd_hda_power_up(struct hda_codec *codec) {}
593static inline void snd_hda_power_down(struct hda_codec *codec) {}
bb573928 594static inline void snd_hda_set_power_save(struct hda_bus *bus, int delay) {}
cb53c626
TI
595#endif
596
4ea6fbc8
TI
597#ifdef CONFIG_SND_HDA_PATCH_LOADER
598/*
599 * patch firmware
600 */
4918cdab 601int snd_hda_load_patch(struct hda_bus *bus, size_t size, const void *buf);
4ea6fbc8
TI
602#endif
603
1d1a4564
TI
604#ifdef CONFIG_SND_HDA_DSP_LOADER
605static inline int
606snd_hda_codec_load_dsp_prepare(struct hda_codec *codec, unsigned int format,
607 unsigned int size,
608 struct snd_dma_buffer *bufp)
609{
610 return codec->bus->ops.load_dsp_prepare(codec->bus, format, size, bufp);
611}
612static inline void
613snd_hda_codec_load_dsp_trigger(struct hda_codec *codec, bool start)
614{
615 return codec->bus->ops.load_dsp_trigger(codec->bus, start);
616}
617static inline void
618snd_hda_codec_load_dsp_cleanup(struct hda_codec *codec,
619 struct snd_dma_buffer *dmab)
620{
621 return codec->bus->ops.load_dsp_cleanup(codec->bus, dmab);
622}
623#else
624static inline int
625snd_hda_codec_load_dsp_prepare(struct hda_codec *codec, unsigned int format,
626 unsigned int size,
627 struct snd_dma_buffer *bufp)
628{
a3af4807 629 return -ENOSYS;
1d1a4564
TI
630}
631static inline void
632snd_hda_codec_load_dsp_trigger(struct hda_codec *codec, bool start) {}
633static inline void
634snd_hda_codec_load_dsp_cleanup(struct hda_codec *codec,
635 struct snd_dma_buffer *dmab) {}
636#endif
637
1da177e4 638#endif /* __SOUND_HDA_CODEC_H */
This page took 0.581963 seconds and 5 git commands to generate.