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