Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Takashi Iwai | 2807314 | 2007-07-27 18:58:06 +0200 | [diff] [blame] | 27 | #include <sound/hwdep.h> |
Takashi Iwai | ed32636 | 2013-12-09 14:28:36 +0100 | [diff] [blame] | 28 | #include <sound/hda_verbs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
| 30 | /* |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 31 | * generic arrays |
| 32 | */ |
| 33 | struct 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 | |
| 41 | void *snd_array_new(struct snd_array *array); |
| 42 | void snd_array_free(struct snd_array *array); |
| 43 | static 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 | |
Takashi Iwai | f43aa02 | 2008-11-10 16:24:26 +0100 | [diff] [blame] | 50 | static inline void *snd_array_elem(struct snd_array *array, unsigned int idx) |
| 51 | { |
| 52 | return array->list + idx * array->elem_size; |
| 53 | } |
| 54 | |
| 55 | static 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 | |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 60 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | * Structures |
| 62 | */ |
| 63 | |
| 64 | struct hda_bus; |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 65 | struct hda_beep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | struct hda_codec; |
| 67 | struct hda_pcm; |
| 68 | struct hda_pcm_stream; |
| 69 | struct hda_bus_unsolicited; |
| 70 | |
| 71 | /* NID type */ |
| 72 | typedef u16 hda_nid_t; |
| 73 | |
| 74 | /* bus operators */ |
| 75 | struct hda_bus_ops { |
| 76 | /* send a single command */ |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 77 | int (*command)(struct hda_bus *bus, unsigned int cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | /* get a response from the last command */ |
Wu Fengguang | deadff1 | 2009-08-01 18:45:16 +0800 | [diff] [blame] | 79 | unsigned int (*get_response)(struct hda_bus *bus, unsigned int addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | /* free the private data */ |
| 81 | void (*private_free)(struct hda_bus *); |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 82 | /* attach a PCM stream */ |
Takashi Iwai | 33fa35e | 2008-11-06 16:50:40 +0100 | [diff] [blame] | 83 | int (*attach_pcm)(struct hda_bus *bus, struct hda_codec *codec, |
| 84 | struct hda_pcm *pcm); |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 85 | /* reset bus for retry verb */ |
| 86 | void (*bus_reset)(struct hda_bus *bus); |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 87 | #ifdef CONFIG_PM |
Joe Perches | 561de31 | 2007-12-18 13:13:47 +0100 | [diff] [blame] | 88 | /* notify power-up/down from codec to controller */ |
Takashi Iwai | 68467f5 | 2012-08-28 09:14:29 -0700 | [diff] [blame] | 89 | void (*pm_notify)(struct hda_bus *bus, bool power_up); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 90 | #endif |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | }; |
| 103 | |
| 104 | /* template to pass to the bus constructor */ |
| 105 | struct hda_bus_template { |
| 106 | void *private_data; |
| 107 | struct pci_dev *pci; |
| 108 | const char *modelname; |
Takashi Iwai | fee2fba | 2008-11-27 12:43:28 +0100 | [diff] [blame] | 109 | int *power_save; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
| 119 | struct hda_bus { |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 120 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | |
| 122 | /* copied from template */ |
| 123 | void *private_data; |
| 124 | struct pci_dev *pci; |
| 125 | const char *modelname; |
Takashi Iwai | fee2fba | 2008-11-27 12:43:28 +0100 | [diff] [blame] | 126 | int *power_save; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | struct hda_bus_ops ops; |
| 128 | |
| 129 | /* codec linked list */ |
| 130 | struct list_head codec_list; |
Mengdong Lin | 0e24dbb | 2013-11-26 23:00:51 -0500 | [diff] [blame] | 131 | unsigned int num_codecs; |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 132 | /* link caddr -> codec */ |
| 133 | struct hda_codec *caddr_tbl[HDA_MAX_CODEC_ADDRESS + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 135 | struct mutex cmd_mutex; |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 136 | struct mutex prepare_mutex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
| 138 | /* unsolicited event queue */ |
| 139 | struct hda_bus_unsolicited *unsol; |
Takashi Iwai | e8c0ee5 | 2009-02-05 07:34:28 +0100 | [diff] [blame] | 140 | char workq_name[16]; |
Takashi Iwai | 6acaed3 | 2009-01-12 10:09:24 +0100 | [diff] [blame] | 141 | struct workqueue_struct *workq; /* common workqueue for codecs */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 143 | /* assigned PCMs */ |
| 144 | DECLARE_BITMAP(pcm_dev_bits, SNDRV_PCM_DEVICES); |
| 145 | |
Takashi Iwai | 5298765 | 2008-01-16 16:09:47 +0100 | [diff] [blame] | 146 | /* misc op flags */ |
| 147 | unsigned int needs_damn_long_delay :1; |
Takashi Iwai | b20f3b8 | 2009-06-02 01:20:22 +0200 | [diff] [blame] | 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 */ |
Takashi Iwai | b94d3539 | 2008-11-21 09:08:06 +0100 | [diff] [blame] | 151 | unsigned int shutdown :1; /* being unloaded */ |
Takashi Iwai | b613291 | 2009-03-24 07:36:09 +0100 | [diff] [blame] | 152 | unsigned int rirb_error:1; /* error in codec communication */ |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 153 | unsigned int response_reset:1; /* controller was reset */ |
| 154 | unsigned int in_reset:1; /* during reset operation */ |
Wu Fengguang | 0287d97 | 2009-12-11 20:15:11 +0800 | [diff] [blame] | 155 | unsigned int power_keep_link_on:1; /* don't power off HDA link */ |
Takashi Iwai | 63e51fd | 2013-06-06 14:20:19 +0200 | [diff] [blame] | 156 | unsigned int no_response_fallback:1; /* don't fallback at RIRB error */ |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 157 | |
| 158 | int primary_dig_out_type; /* primary digital out PCM type */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
| 167 | struct hda_codec_preset { |
| 168 | unsigned int id; |
| 169 | unsigned int mask; |
| 170 | unsigned int subs; |
| 171 | unsigned int subs_mask; |
| 172 | unsigned int rev; |
Marc Boucher | ca7cfae | 2008-01-22 15:32:25 +0100 | [diff] [blame] | 173 | hda_nid_t afg, mfg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | const char *name; |
| 175 | int (*patch)(struct hda_codec *codec); |
| 176 | }; |
| 177 | |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 178 | struct 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 */ |
| 185 | int snd_hda_add_codec_preset(struct hda_codec_preset_list *preset); |
| 186 | int snd_hda_delete_codec_preset(struct hda_codec_preset_list *preset); |
| 187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | /* ops set by the preset patch */ |
| 189 | struct 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); |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 195 | void (*set_power_state)(struct hda_codec *codec, hda_nid_t fg, |
| 196 | unsigned int power_state); |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 197 | #ifdef CONFIG_PM |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 198 | int (*suspend)(struct hda_codec *codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | int (*resume)(struct hda_codec *codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 200 | int (*check_power_status)(struct hda_codec *codec, hda_nid_t nid); |
| 201 | #endif |
Takashi Iwai | fb8d1a3 | 2009-11-10 16:02:29 +0100 | [diff] [blame] | 202 | void (*reboot_notify)(struct hda_codec *codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | }; |
| 204 | |
| 205 | /* record for amp information cache */ |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 206 | struct hda_cache_head { |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 207 | u32 key:31; /* hash key */ |
| 208 | u32 dirty:1; |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 209 | u16 val; /* assigned value */ |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 210 | u16 next; |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 211 | }; |
| 212 | |
| 213 | struct hda_amp_info { |
| 214 | struct hda_cache_head head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | u32 amp_caps; /* amp capabilities */ |
Jaroslav Kysela | 7f0e2f8 | 2006-07-05 17:39:14 +0200 | [diff] [blame] | 216 | u16 vol[2]; /* current volume & mute */ |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 217 | }; |
| 218 | |
| 219 | struct hda_cache_rec { |
| 220 | u16 hash[64]; /* hash table for index */ |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 221 | struct snd_array buf; /* record entries */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | }; |
| 223 | |
| 224 | /* PCM callbacks */ |
| 225 | struct hda_pcm_ops { |
| 226 | int (*open)(struct hda_pcm_stream *info, struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 227 | struct snd_pcm_substream *substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | int (*close)(struct hda_pcm_stream *info, struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 229 | struct snd_pcm_substream *substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | int (*prepare)(struct hda_pcm_stream *info, struct hda_codec *codec, |
| 231 | unsigned int stream_tag, unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 232 | struct snd_pcm_substream *substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | int (*cleanup)(struct hda_pcm_stream *info, struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 234 | struct snd_pcm_substream *substream); |
Takashi Iwai | 2122961 | 2013-04-05 07:27:45 +0200 | [diff] [blame] | 235 | unsigned int (*get_delay)(struct hda_pcm_stream *info, |
| 236 | struct hda_codec *codec, |
| 237 | struct snd_pcm_substream *substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | }; |
| 239 | |
| 240 | /* PCM information for each substream */ |
| 241 | struct hda_pcm_stream { |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 242 | unsigned int substreams; /* number of substreams, 0 = not exist*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 */ |
Takashi Iwai | ee81abb | 2012-11-08 17:12:10 +0100 | [diff] [blame] | 249 | const struct snd_pcm_chmap_elem *chmap; /* chmap to override */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | struct hda_pcm_ops ops; |
| 251 | }; |
| 252 | |
Takashi Iwai | 7ba72ba | 2008-02-06 14:03:20 +0100 | [diff] [blame] | 253 | /* PCM types */ |
| 254 | enum { |
| 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | /* for PCM creation */ |
| 263 | struct hda_pcm { |
| 264 | char *name; |
| 265 | struct hda_pcm_stream stream[2]; |
Takashi Iwai | 7ba72ba | 2008-02-06 14:03:20 +0100 | [diff] [blame] | 266 | unsigned int pcm_type; /* HDA_PCM_TYPE_XXX */ |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 267 | int device; /* device number to assign */ |
| 268 | struct snd_pcm *pcm; /* assigned PCM instance */ |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 269 | bool own_chmap; /* codec driver provides own channel maps */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | }; |
| 271 | |
| 272 | /* codec information */ |
| 273 | struct hda_codec { |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 274 | struct device dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | struct hda_bus *bus; |
| 276 | unsigned int addr; /* codec addr*/ |
| 277 | struct list_head list; /* list point */ |
| 278 | |
| 279 | hda_nid_t afg; /* AFG node id */ |
Sasha Khapyorsky | 673b683 | 2005-08-11 11:00:16 +0200 | [diff] [blame] | 280 | hda_nid_t mfg; /* MFG node id */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
| 282 | /* ids */ |
Jaroslav Kysela | 79c944a | 2010-07-19 15:52:39 +0200 | [diff] [blame] | 283 | u8 afg_function_id; |
| 284 | u8 mfg_function_id; |
| 285 | u8 afg_unsol; |
| 286 | u8 mfg_unsol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | u32 vendor_id; |
| 288 | u32 subsystem_id; |
| 289 | u32 revision_id; |
| 290 | |
| 291 | /* detected preset */ |
| 292 | const struct hda_codec_preset *preset; |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 293 | struct module *owner; |
Takashi Iwai | b21bdd0 | 2013-11-18 12:03:56 +0100 | [diff] [blame] | 294 | int (*parser)(struct hda_codec *codec); |
Takashi Iwai | 812a2cc | 2009-05-16 10:00:49 +0200 | [diff] [blame] | 295 | const char *vendor_name; /* codec vendor name */ |
| 296 | const char *chip_name; /* codec chip name */ |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 297 | const char *modelname; /* model name for preset */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
| 299 | /* set by patch */ |
| 300 | struct hda_codec_ops patch_ops; |
| 301 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 309 | /* beep device */ |
| 310 | struct hda_beep *beep; |
Jaroslav Kysela | 2dca0bb | 2009-11-13 18:41:52 +0100 | [diff] [blame] | 311 | unsigned int beep_mode; |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 312 | |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 313 | /* widget capabilities cache */ |
| 314 | unsigned int num_nodes; |
| 315 | hda_nid_t start_nid; |
| 316 | u32 *wcaps; |
| 317 | |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 318 | struct snd_array mixers; /* list of assigned mixer elements */ |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 319 | struct snd_array nids; /* list of mapped mixer elements */ |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 320 | |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 321 | struct hda_cache_rec amp_cache; /* cache for amp access */ |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 322 | struct hda_cache_rec cmd_cache; /* cache for other commands */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 324 | struct list_head conn_list; /* linked-list of connection-list */ |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 325 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 326 | struct mutex spdif_mutex; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 327 | struct mutex control_mutex; |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 328 | struct mutex hash_mutex; |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 329 | struct snd_array spdif_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | unsigned int spdif_in_enable; /* SPDIF input enable? */ |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 331 | const hda_nid_t *slave_dig_outs; /* optional digital out slave widgets */ |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 332 | struct snd_array init_pins; /* initial (BIOS) pin configurations */ |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 333 | struct snd_array driver_pins; /* pin configs set by codec parser */ |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 334 | struct snd_array cvt_setups; /* audio convert setups */ |
Takashi Iwai | 2807314 | 2007-07-27 18:58:06 +0200 | [diff] [blame] | 335 | |
Takashi Iwai | 09b70e8 | 2013-01-10 18:21:56 +0100 | [diff] [blame] | 336 | struct mutex user_mutex; |
Takashi Iwai | b989d04 | 2014-02-25 11:54:06 +0100 | [diff] [blame] | 337 | #ifdef CONFIG_SND_HDA_RECONFIG |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 338 | struct snd_array init_verbs; /* additional init verbs */ |
Takashi Iwai | 1e1be43 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 339 | struct snd_array hints; /* additional hints */ |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 340 | struct snd_array user_pins; /* default pin configs to override */ |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 341 | #endif |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 342 | |
Takashi Iwai | 648a8d2 | 2014-02-25 10:38:13 +0100 | [diff] [blame] | 343 | #ifdef CONFIG_SND_HDA_HWDEP |
| 344 | struct snd_hwdep *hwdep; /* assigned hwdep device */ |
| 345 | #endif |
| 346 | |
Takashi Iwai | 963f803 | 2008-08-11 10:04:40 +0200 | [diff] [blame] | 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 | */ |
Takashi Iwai | 9421f95 | 2009-03-12 17:06:07 +0100 | [diff] [blame] | 352 | unsigned int pin_amp_workaround:1; /* pin out-amp takes index |
| 353 | * (e.g. Conexant codecs) |
| 354 | */ |
Michael Karcher | 4f32456 | 2012-04-06 15:34:15 +0200 | [diff] [blame] | 355 | unsigned int single_adc_amp:1; /* adc in-amp takes no index |
| 356 | * (e.g. CX20549 codec) |
| 357 | */ |
Takashi Iwai | 0e7adbe | 2010-10-25 10:37:11 +0200 | [diff] [blame] | 358 | unsigned int no_sticky_stream:1; /* no sticky-PCM stream assignment */ |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 359 | unsigned int pins_shutup:1; /* pins are shut up */ |
Takashi Iwai | 729d55b | 2009-12-25 22:49:01 +0100 | [diff] [blame] | 360 | unsigned int no_trigger_sense:1; /* don't trigger at pin-sensing */ |
Takashi Iwai | 71b1e9e | 2012-02-13 11:55:02 +0100 | [diff] [blame] | 361 | unsigned int no_jack_detect:1; /* Machine has no jack-detection */ |
Takashi Iwai | ecac3ed | 2012-12-21 15:23:01 +0100 | [diff] [blame] | 362 | unsigned int inv_eapd:1; /* broken h/w: inverted EAPD control */ |
Takashi Iwai | 9cc159c | 2012-12-21 15:31:41 +0100 | [diff] [blame] | 363 | unsigned int inv_jack_detect:1; /* broken h/w: inverted detection bit */ |
Takashi Iwai | ed36081 | 2012-08-08 17:12:52 +0200 | [diff] [blame] | 364 | unsigned int pcm_format_first:1; /* PCM format must be set first */ |
Takashi Iwai | 983f6b9 | 2012-08-28 09:18:01 -0700 | [diff] [blame] | 365 | unsigned int epss:1; /* supporting EPSS? */ |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 366 | unsigned int cached_write:1; /* write only to caches */ |
Mengdong Lin | f1aa068 | 2013-08-26 21:35:21 -0400 | [diff] [blame] | 367 | unsigned int dp_mst:1; /* support DP1.2 Multi-stream transport */ |
David Henningsson | cd26251 | 2014-01-29 10:37:10 +0100 | [diff] [blame] | 368 | unsigned int dump_coef:1; /* dump processing coefs in codec proc file */ |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 369 | #ifdef CONFIG_PM |
Takashi Iwai | a221e28 | 2007-08-16 16:35:33 +0200 | [diff] [blame] | 370 | unsigned int power_on :1; /* current (global) power-state */ |
Takashi Iwai | 4b92734 | 2012-08-28 16:39:25 -0700 | [diff] [blame] | 371 | unsigned int d3_stop_clk:1; /* support D3 operation without BCLK */ |
Takashi Iwai | a40e0a8 | 2013-11-20 12:41:20 +0100 | [diff] [blame] | 372 | unsigned int pm_up_notified:1; /* PM notified to controller */ |
Takashi Iwai | 989c318 | 2012-11-19 14:14:58 +0100 | [diff] [blame] | 373 | unsigned int in_pm:1; /* suspend/resume being performed */ |
Takashi Iwai | a2d96e7 | 2012-05-09 12:36:22 +0200 | [diff] [blame] | 374 | int power_transition; /* power-state in transition */ |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 375 | int power_count; /* current (global) power refcount */ |
| 376 | struct delayed_work power_work; /* delayed task for powerdown */ |
Takashi Iwai | a2f6309 | 2009-11-11 09:34:25 +0100 | [diff] [blame] | 377 | unsigned long power_on_acct; |
| 378 | unsigned long power_off_acct; |
| 379 | unsigned long power_jiffies; |
Takashi Iwai | 5536c6d | 2012-05-08 17:08:10 +0200 | [diff] [blame] | 380 | spinlock_t power_lock; |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 381 | #endif |
Takashi Iwai | daead53 | 2008-11-28 12:55:36 +0100 | [diff] [blame] | 382 | |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 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 | |
Takashi Iwai | daead53 | 2008-11-28 12:55:36 +0100 | [diff] [blame] | 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); |
Takashi Iwai | cd372fb | 2011-03-03 14:40:14 +0100 | [diff] [blame] | 390 | |
Takashi Iwai | 1835a0f | 2011-10-27 22:12:46 +0200 | [diff] [blame] | 391 | /* jack detection */ |
| 392 | struct snd_array jacktbl; |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 393 | unsigned long jackpoll_interval; /* In jiffies. Zero means no poll, rely on unsol events */ |
| 394 | struct delayed_work jackpoll_work; |
Takashi Iwai | 1835a0f | 2011-10-27 22:12:46 +0200 | [diff] [blame] | 395 | |
Takashi Iwai | cd372fb | 2011-03-03 14:40:14 +0100 | [diff] [blame] | 396 | #ifdef CONFIG_SND_HDA_INPUT_JACK |
| 397 | /* jack detection */ |
| 398 | struct snd_array jacks; |
| 399 | #endif |
Takashi Iwai | c9ce6b2 | 2012-12-18 18:12:44 +0100 | [diff] [blame] | 400 | |
Mengdong Lin | 7f13292 | 2013-11-29 01:48:45 -0500 | [diff] [blame] | 401 | int depop_delay; /* depop delay in ms, -1 for default delay time */ |
| 402 | |
Takashi Iwai | c9ce6b2 | 2012-12-18 18:12:44 +0100 | [diff] [blame] | 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; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | }; |
| 411 | |
| 412 | /* direction */ |
| 413 | enum { |
| 414 | HDA_INPUT, HDA_OUTPUT |
| 415 | }; |
| 416 | |
Takashi Iwai | 63e51fd | 2013-06-06 14:20:19 +0200 | [diff] [blame] | 417 | /* snd_hda_codec_read/write optional flags */ |
| 418 | #define HDA_RW_NO_RESPONSE_FALLBACK (1 << 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | |
| 420 | /* |
| 421 | * constructors |
| 422 | */ |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 423 | int snd_hda_bus_new(struct snd_card *card, const struct hda_bus_template *temp, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | struct hda_bus **busp); |
| 425 | int snd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr, |
Takashi Iwai | a1e21c9 | 2009-06-17 09:33:52 +0200 | [diff] [blame] | 426 | struct hda_codec **codecp); |
| 427 | int snd_hda_codec_configure(struct hda_codec *codec); |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 428 | int snd_hda_codec_update_widgets(struct hda_codec *codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | |
| 430 | /* |
| 431 | * low level functions |
| 432 | */ |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 433 | unsigned int snd_hda_codec_read(struct hda_codec *codec, hda_nid_t nid, |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 434 | int flags, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | unsigned int verb, unsigned int parm); |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 436 | int snd_hda_codec_write(struct hda_codec *codec, hda_nid_t nid, int flags, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | unsigned int verb, unsigned int parm); |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 438 | #define snd_hda_param_read(codec, nid, param) \ |
| 439 | snd_hda_codec_read(codec, nid, 0, AC_VERB_PARAMETERS, param) |
| 440 | int snd_hda_get_sub_nodes(struct hda_codec *codec, hda_nid_t nid, |
| 441 | hda_nid_t *start_id); |
| 442 | int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid, |
| 443 | hda_nid_t *conn_list, int max_conns); |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 444 | static inline int |
| 445 | snd_hda_get_num_conns(struct hda_codec *codec, hda_nid_t nid) |
| 446 | { |
| 447 | return snd_hda_get_connections(codec, nid, NULL, 0); |
| 448 | } |
Takashi Iwai | 4eea309 | 2013-02-07 18:18:19 +0100 | [diff] [blame] | 449 | int snd_hda_get_num_raw_conns(struct hda_codec *codec, hda_nid_t nid); |
Takashi Iwai | 9e7717c | 2011-07-11 15:42:52 +0200 | [diff] [blame] | 450 | int snd_hda_get_raw_connections(struct hda_codec *codec, hda_nid_t nid, |
| 451 | hda_nid_t *conn_list, int max_conns); |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 452 | int snd_hda_get_conn_list(struct hda_codec *codec, hda_nid_t nid, |
| 453 | const hda_nid_t **listp); |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 454 | int snd_hda_override_conn_list(struct hda_codec *codec, hda_nid_t nid, int nums, |
| 455 | const hda_nid_t *list); |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 456 | int snd_hda_get_conn_index(struct hda_codec *codec, hda_nid_t mux, |
| 457 | hda_nid_t nid, int recursive); |
Mengdong Lin | f1aa068 | 2013-08-26 21:35:21 -0400 | [diff] [blame] | 458 | int snd_hda_get_devices(struct hda_codec *codec, hda_nid_t nid, |
| 459 | u8 *dev_list, int max_devices); |
Stephen Warren | 384a48d | 2011-06-01 11:14:21 -0600 | [diff] [blame] | 460 | int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid, |
| 461 | u32 *ratesp, u64 *formatsp, unsigned int *bpsp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | |
| 463 | struct hda_verb { |
| 464 | hda_nid_t nid; |
| 465 | u32 verb; |
| 466 | u32 param; |
| 467 | }; |
| 468 | |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 469 | void snd_hda_sequence_write(struct hda_codec *codec, |
| 470 | const struct hda_verb *seq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | |
| 472 | /* unsolicited event */ |
| 473 | int snd_hda_queue_unsol_event(struct hda_bus *bus, u32 res, u32 res_ex); |
| 474 | |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 475 | /* cached write */ |
| 476 | int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid, |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 477 | int flags, unsigned int verb, unsigned int parm); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 478 | void snd_hda_sequence_write_cache(struct hda_codec *codec, |
| 479 | const struct hda_verb *seq); |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 480 | int snd_hda_codec_update_cache(struct hda_codec *codec, hda_nid_t nid, |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 481 | int flags, unsigned int verb, unsigned int parm); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 482 | void snd_hda_codec_resume_cache(struct hda_codec *codec); |
Takashi Iwai | dc870f3 | 2013-01-22 15:24:30 +0100 | [diff] [blame] | 483 | /* both for cmd & amp caches */ |
| 484 | void snd_hda_codec_flush_cache(struct hda_codec *codec); |
Takashi Iwai | 0c3d47b | 2012-12-20 11:41:54 +0100 | [diff] [blame] | 485 | |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 486 | /* the struct for codec->pin_configs */ |
| 487 | struct hda_pincfg { |
| 488 | hda_nid_t nid; |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 489 | unsigned char ctrl; /* original pin control value */ |
| 490 | unsigned char target; /* target pin control value */ |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 491 | unsigned int cfg; /* default configuration */ |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 492 | }; |
| 493 | |
| 494 | unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid); |
| 495 | int snd_hda_codec_set_pincfg(struct hda_codec *codec, hda_nid_t nid, |
| 496 | unsigned int cfg); |
| 497 | int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list, |
| 498 | hda_nid_t nid, unsigned int cfg); /* for hwdep */ |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 499 | void snd_hda_shutup_pins(struct hda_codec *codec); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 500 | |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 501 | /* SPDIF controls */ |
| 502 | struct hda_spdif_out { |
| 503 | hda_nid_t nid; /* Converter nid values relate to */ |
| 504 | unsigned int status; /* IEC958 status bits */ |
| 505 | unsigned short ctls; /* SPDIF control bits */ |
| 506 | }; |
| 507 | struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec, |
| 508 | hda_nid_t nid); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 509 | void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx); |
| 510 | void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid); |
Stephen Warren | 7c935976 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 511 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | /* |
| 513 | * Mixer |
| 514 | */ |
| 515 | int snd_hda_build_controls(struct hda_bus *bus); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 516 | int snd_hda_codec_build_controls(struct hda_codec *codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | |
| 518 | /* |
| 519 | * PCM |
| 520 | */ |
| 521 | int snd_hda_build_pcms(struct hda_bus *bus); |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 522 | int snd_hda_codec_build_pcms(struct hda_codec *codec); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 523 | |
| 524 | int snd_hda_codec_prepare(struct hda_codec *codec, |
| 525 | struct hda_pcm_stream *hinfo, |
| 526 | unsigned int stream, |
| 527 | unsigned int format, |
| 528 | struct snd_pcm_substream *substream); |
| 529 | void snd_hda_codec_cleanup(struct hda_codec *codec, |
| 530 | struct hda_pcm_stream *hinfo, |
| 531 | struct snd_pcm_substream *substream); |
| 532 | |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 533 | void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid, |
| 534 | u32 stream_tag, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | int channel_id, int format); |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 536 | void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid, |
| 537 | int do_now); |
| 538 | #define snd_hda_codec_cleanup_stream(codec, nid) \ |
| 539 | __snd_hda_codec_cleanup_stream(codec, nid, 0) |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 540 | unsigned int snd_hda_calc_stream_format(struct hda_codec *codec, |
| 541 | unsigned int rate, |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 542 | unsigned int channels, |
| 543 | unsigned int format, |
Anssi Hannula | 32c168c | 2010-08-03 13:28:57 +0300 | [diff] [blame] | 544 | unsigned int maxbps, |
| 545 | unsigned short spdif_ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid, |
| 547 | unsigned int format); |
| 548 | |
Takashi Iwai | ee81abb | 2012-11-08 17:12:10 +0100 | [diff] [blame] | 549 | extern const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps[]; |
| 550 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | /* |
| 552 | * Misc |
| 553 | */ |
| 554 | void snd_hda_get_codec_name(struct hda_codec *codec, char *name, int namelen); |
Takashi Iwai | fb8d1a3 | 2009-11-10 16:02:29 +0100 | [diff] [blame] | 555 | void snd_hda_bus_reboot_notify(struct hda_bus *bus); |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 556 | void snd_hda_codec_set_power_to_all(struct hda_codec *codec, hda_nid_t fg, |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 557 | unsigned int power_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 559 | int snd_hda_lock_devices(struct hda_bus *bus); |
| 560 | void snd_hda_unlock_devices(struct hda_bus *bus); |
| 561 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | /* |
| 563 | * power management |
| 564 | */ |
| 565 | #ifdef CONFIG_PM |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 566 | int snd_hda_suspend(struct hda_bus *bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | int snd_hda_resume(struct hda_bus *bus); |
| 568 | #endif |
| 569 | |
Takashi Iwai | 9e5341b | 2010-09-21 09:57:06 +0200 | [diff] [blame] | 570 | static inline |
| 571 | int hda_call_check_power_status(struct hda_codec *codec, hda_nid_t nid) |
| 572 | { |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 573 | #ifdef CONFIG_PM |
Takashi Iwai | 9e5341b | 2010-09-21 09:57:06 +0200 | [diff] [blame] | 574 | if (codec->patch_ops.check_power_status) |
| 575 | return codec->patch_ops.check_power_status(codec, nid); |
Takashi Iwai | ff2b7e2 | 2011-06-28 08:59:30 +0200 | [diff] [blame] | 576 | #endif |
Takashi Iwai | 9e5341b | 2010-09-21 09:57:06 +0200 | [diff] [blame] | 577 | return 0; |
| 578 | } |
Takashi Iwai | 9e5341b | 2010-09-21 09:57:06 +0200 | [diff] [blame] | 579 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 580 | /* |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 581 | * get widget information |
| 582 | */ |
| 583 | const char *snd_hda_get_jack_connectivity(u32 cfg); |
| 584 | const char *snd_hda_get_jack_type(u32 cfg); |
| 585 | const char *snd_hda_get_jack_location(u32 cfg); |
| 586 | |
| 587 | /* |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 588 | * power saving |
| 589 | */ |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 590 | #ifdef CONFIG_PM |
Takashi Iwai | c376e2c | 2012-08-14 17:12:47 +0200 | [diff] [blame] | 591 | void snd_hda_power_save(struct hda_codec *codec, int delta, bool d3wait); |
Takashi Iwai | a2f6309 | 2009-11-11 09:34:25 +0100 | [diff] [blame] | 592 | void snd_hda_update_power_acct(struct hda_codec *codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 593 | #else |
Takashi Iwai | c376e2c | 2012-08-14 17:12:47 +0200 | [diff] [blame] | 594 | static inline void snd_hda_power_save(struct hda_codec *codec, int delta, |
| 595 | bool d3wait) {} |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 596 | #endif |
| 597 | |
Takashi Iwai | c376e2c | 2012-08-14 17:12:47 +0200 | [diff] [blame] | 598 | /** |
| 599 | * snd_hda_power_up - Power-up the codec |
| 600 | * @codec: HD-audio codec |
| 601 | * |
| 602 | * Increment the power-up counter and power up the hardware really when |
| 603 | * not turned on yet. |
| 604 | */ |
| 605 | static inline void snd_hda_power_up(struct hda_codec *codec) |
| 606 | { |
| 607 | snd_hda_power_save(codec, 1, false); |
| 608 | } |
| 609 | |
| 610 | /** |
| 611 | * snd_hda_power_up_d3wait - Power-up the codec after waiting for any pending |
| 612 | * D3 transition to complete. This differs from snd_hda_power_up() when |
| 613 | * power_transition == -1. snd_hda_power_up sees this case as a nop, |
| 614 | * snd_hda_power_up_d3wait waits for the D3 transition to complete then powers |
| 615 | * back up. |
| 616 | * @codec: HD-audio codec |
| 617 | * |
| 618 | * Cancel any power down operation hapenning on the work queue, then power up. |
| 619 | */ |
| 620 | static inline void snd_hda_power_up_d3wait(struct hda_codec *codec) |
| 621 | { |
| 622 | snd_hda_power_save(codec, 1, true); |
| 623 | } |
| 624 | |
| 625 | /** |
| 626 | * snd_hda_power_down - Power-down the codec |
| 627 | * @codec: HD-audio codec |
| 628 | * |
| 629 | * Decrement the power-up counter and schedules the power-off work if |
| 630 | * the counter rearches to zero. |
| 631 | */ |
| 632 | static inline void snd_hda_power_down(struct hda_codec *codec) |
| 633 | { |
| 634 | snd_hda_power_save(codec, -1, false); |
| 635 | } |
| 636 | |
| 637 | /** |
| 638 | * snd_hda_power_sync - Synchronize the power-save status |
| 639 | * @codec: HD-audio codec |
| 640 | * |
| 641 | * Synchronize the actual power state with the power account; |
| 642 | * called when power_save parameter is changed |
| 643 | */ |
| 644 | static inline void snd_hda_power_sync(struct hda_codec *codec) |
| 645 | { |
| 646 | snd_hda_power_save(codec, 0, false); |
| 647 | } |
| 648 | |
Takashi Iwai | 4ea6fbc | 2009-06-17 09:52:54 +0200 | [diff] [blame] | 649 | #ifdef CONFIG_SND_HDA_PATCH_LOADER |
| 650 | /* |
| 651 | * patch firmware |
| 652 | */ |
Takashi Iwai | 4918cda | 2012-08-09 12:33:28 +0200 | [diff] [blame] | 653 | int snd_hda_load_patch(struct hda_bus *bus, size_t size, const void *buf); |
Takashi Iwai | 4ea6fbc | 2009-06-17 09:52:54 +0200 | [diff] [blame] | 654 | #endif |
| 655 | |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 656 | #ifdef CONFIG_SND_HDA_DSP_LOADER |
| 657 | static inline int |
| 658 | snd_hda_codec_load_dsp_prepare(struct hda_codec *codec, unsigned int format, |
| 659 | unsigned int size, |
| 660 | struct snd_dma_buffer *bufp) |
| 661 | { |
| 662 | return codec->bus->ops.load_dsp_prepare(codec->bus, format, size, bufp); |
| 663 | } |
| 664 | static inline void |
| 665 | snd_hda_codec_load_dsp_trigger(struct hda_codec *codec, bool start) |
| 666 | { |
| 667 | return codec->bus->ops.load_dsp_trigger(codec->bus, start); |
| 668 | } |
| 669 | static inline void |
| 670 | snd_hda_codec_load_dsp_cleanup(struct hda_codec *codec, |
| 671 | struct snd_dma_buffer *dmab) |
| 672 | { |
| 673 | return codec->bus->ops.load_dsp_cleanup(codec->bus, dmab); |
| 674 | } |
| 675 | #else |
| 676 | static inline int |
| 677 | snd_hda_codec_load_dsp_prepare(struct hda_codec *codec, unsigned int format, |
| 678 | unsigned int size, |
| 679 | struct snd_dma_buffer *bufp) |
| 680 | { |
Ian Minett | a3af480 | 2012-09-20 20:29:19 -0700 | [diff] [blame] | 681 | return -ENOSYS; |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 682 | } |
| 683 | static inline void |
| 684 | snd_hda_codec_load_dsp_trigger(struct hda_codec *codec, bool start) {} |
| 685 | static inline void |
| 686 | snd_hda_codec_load_dsp_cleanup(struct hda_codec *codec, |
| 687 | struct snd_dma_buffer *dmab) {} |
| 688 | #endif |
| 689 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | #endif /* __SOUND_HDA_CODEC_H */ |