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 | |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame^] | 24 | #include <linux/kref.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <sound/info.h> |
| 26 | #include <sound/control.h> |
| 27 | #include <sound/pcm.h> |
Takashi Iwai | 2807314 | 2007-07-27 18:58:06 +0200 | [diff] [blame] | 28 | #include <sound/hwdep.h> |
Takashi Iwai | ed32636 | 2013-12-09 14:28:36 +0100 | [diff] [blame] | 29 | #include <sound/hda_verbs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
| 31 | /* |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 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 | |
Takashi Iwai | f43aa02 | 2008-11-10 16:24:26 +0100 | [diff] [blame] | 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 | |
Takashi Iwai | b2e1859 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 61 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | * Structures |
| 63 | */ |
| 64 | |
| 65 | struct hda_bus; |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 66 | struct hda_beep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | struct hda_codec; |
| 68 | struct hda_pcm; |
| 69 | struct hda_pcm_stream; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | }; |
| 99 | |
Takashi Iwai | 922c88a | 2015-02-17 14:46:40 +0100 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 { |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 117 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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; |
Mengdong Lin | 0e24dbb | 2013-11-26 23:00:51 -0500 | [diff] [blame] | 126 | unsigned int num_codecs; |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 127 | /* link caddr -> codec */ |
| 128 | struct hda_codec *caddr_tbl[HDA_MAX_CODEC_ADDRESS + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 130 | struct mutex cmd_mutex; |
Takashi Iwai | 3f50ac6 | 2010-08-20 09:44:36 +0200 | [diff] [blame] | 131 | struct mutex prepare_mutex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
| 133 | /* unsolicited event queue */ |
Takashi Iwai | 922c88a | 2015-02-17 14:46:40 +0100 | [diff] [blame] | 134 | struct hda_bus_unsolicited unsol; |
Takashi Iwai | e8c0ee5 | 2009-02-05 07:34:28 +0100 | [diff] [blame] | 135 | char workq_name[16]; |
Takashi Iwai | 6acaed3 | 2009-01-12 10:09:24 +0100 | [diff] [blame] | 136 | struct workqueue_struct *workq; /* common workqueue for codecs */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 138 | /* assigned PCMs */ |
| 139 | DECLARE_BITMAP(pcm_dev_bits, SNDRV_PCM_DEVICES); |
| 140 | |
Takashi Iwai | 5298765 | 2008-01-16 16:09:47 +0100 | [diff] [blame] | 141 | /* misc op flags */ |
| 142 | unsigned int needs_damn_long_delay :1; |
Takashi Iwai | b20f3b8 | 2009-06-02 01:20:22 +0200 | [diff] [blame] | 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 */ |
Takashi Iwai | b94d3539 | 2008-11-21 09:08:06 +0100 | [diff] [blame] | 146 | unsigned int shutdown :1; /* being unloaded */ |
Takashi Iwai | b613291 | 2009-03-24 07:36:09 +0100 | [diff] [blame] | 147 | unsigned int rirb_error:1; /* error in codec communication */ |
Takashi Iwai | 8dd7833 | 2009-06-02 01:16:07 +0200 | [diff] [blame] | 148 | unsigned int response_reset:1; /* controller was reset */ |
| 149 | unsigned int in_reset:1; /* during reset operation */ |
Takashi Iwai | 63e51fd | 2013-06-06 14:20:19 +0200 | [diff] [blame] | 150 | unsigned int no_response_fallback:1; /* don't fallback at RIRB error */ |
Takashi Iwai | ea9b43a | 2013-02-12 17:02:41 +0100 | [diff] [blame] | 151 | |
| 152 | int primary_dig_out_type; /* primary digital out PCM type */ |
Takashi Iwai | 55ed9cd | 2015-02-19 17:35:32 +0100 | [diff] [blame] | 153 | unsigned long codec_powered; /* bit flags of powered codecs */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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; |
Marc Boucher | ca7cfae | 2008-01-22 15:32:25 +0100 | [diff] [blame] | 168 | hda_nid_t afg, mfg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | const char *name; |
| 170 | int (*patch)(struct hda_codec *codec); |
| 171 | }; |
| 172 | |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 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; |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 178 | const struct hda_codec_preset *preset; |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 179 | }; |
| 180 | |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 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) |
Takashi Iwai | 1289e9e | 2008-11-27 15:47:11 +0100 | [diff] [blame] | 189 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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); |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 197 | void (*set_power_state)(struct hda_codec *codec, hda_nid_t fg, |
| 198 | unsigned int power_state); |
Takashi Iwai | 2a43952 | 2011-07-26 09:52:50 +0200 | [diff] [blame] | 199 | #ifdef CONFIG_PM |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 200 | int (*suspend)(struct hda_codec *codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | int (*resume)(struct hda_codec *codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 202 | int (*check_power_status)(struct hda_codec *codec, hda_nid_t nid); |
| 203 | #endif |
Takashi Iwai | fb8d1a3 | 2009-11-10 16:02:29 +0100 | [diff] [blame] | 204 | void (*reboot_notify)(struct hda_codec *codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | }; |
| 206 | |
| 207 | /* record for amp information cache */ |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 208 | struct hda_cache_head { |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 209 | u32 key:31; /* hash key */ |
| 210 | u32 dirty:1; |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 211 | u16 val; /* assigned value */ |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 212 | u16 next; |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 213 | }; |
| 214 | |
| 215 | struct hda_amp_info { |
| 216 | struct hda_cache_head head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | u32 amp_caps; /* amp capabilities */ |
Jaroslav Kysela | 7f0e2f8 | 2006-07-05 17:39:14 +0200 | [diff] [blame] | 218 | u16 vol[2]; /* current volume & mute */ |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 219 | }; |
| 220 | |
| 221 | struct hda_cache_rec { |
| 222 | u16 hash[64]; /* hash table for index */ |
Takashi Iwai | 603c401 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 223 | struct snd_array buf; /* record entries */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | }; |
| 225 | |
| 226 | /* PCM callbacks */ |
| 227 | struct hda_pcm_ops { |
| 228 | int (*open)(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 (*close)(struct hda_pcm_stream *info, struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 231 | struct snd_pcm_substream *substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | int (*prepare)(struct hda_pcm_stream *info, struct hda_codec *codec, |
| 233 | unsigned int stream_tag, unsigned int format, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 234 | struct snd_pcm_substream *substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | int (*cleanup)(struct hda_pcm_stream *info, struct hda_codec *codec, |
Takashi Iwai | c8b6bf9 | 2005-11-17 14:57:47 +0100 | [diff] [blame] | 236 | struct snd_pcm_substream *substream); |
Takashi Iwai | 2122961 | 2013-04-05 07:27:45 +0200 | [diff] [blame] | 237 | unsigned int (*get_delay)(struct hda_pcm_stream *info, |
| 238 | struct hda_codec *codec, |
| 239 | struct snd_pcm_substream *substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | }; |
| 241 | |
| 242 | /* PCM information for each substream */ |
| 243 | struct hda_pcm_stream { |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 244 | unsigned int substreams; /* number of substreams, 0 = not exist*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 */ |
Takashi Iwai | ee81abb | 2012-11-08 17:12:10 +0100 | [diff] [blame] | 251 | const struct snd_pcm_chmap_elem *chmap; /* chmap to override */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | struct hda_pcm_ops ops; |
| 253 | }; |
| 254 | |
Takashi Iwai | 7ba72ba | 2008-02-06 14:03:20 +0100 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | /* for PCM creation */ |
| 265 | struct hda_pcm { |
| 266 | char *name; |
| 267 | struct hda_pcm_stream stream[2]; |
Takashi Iwai | 7ba72ba | 2008-02-06 14:03:20 +0100 | [diff] [blame] | 268 | unsigned int pcm_type; /* HDA_PCM_TYPE_XXX */ |
Takashi Iwai | 176d533 | 2008-07-30 15:01:44 +0200 | [diff] [blame] | 269 | int device; /* device number to assign */ |
| 270 | struct snd_pcm *pcm; /* assigned PCM instance */ |
Takashi Iwai | 9c9a517 | 2012-07-31 11:35:35 +0200 | [diff] [blame] | 271 | bool own_chmap; /* codec driver provides own channel maps */ |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame^] | 272 | /* private: */ |
| 273 | struct hda_codec *codec; |
| 274 | struct kref kref; |
| 275 | struct list_head list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | }; |
| 277 | |
| 278 | /* codec information */ |
| 279 | struct hda_codec { |
Takashi Iwai | 13aeaf6 | 2014-02-25 07:53:47 +0100 | [diff] [blame] | 280 | struct device dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | struct hda_bus *bus; |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 282 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | unsigned int addr; /* codec addr*/ |
| 284 | struct list_head list; /* list point */ |
| 285 | |
| 286 | hda_nid_t afg; /* AFG node id */ |
Sasha Khapyorsky | 673b683 | 2005-08-11 11:00:16 +0200 | [diff] [blame] | 287 | hda_nid_t mfg; /* MFG node id */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | |
| 289 | /* ids */ |
Jaroslav Kysela | 79c944a | 2010-07-19 15:52:39 +0200 | [diff] [blame] | 290 | u8 afg_function_id; |
| 291 | u8 mfg_function_id; |
| 292 | u8 afg_unsol; |
| 293 | u8 mfg_unsol; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | u32 vendor_id; |
| 295 | u32 subsystem_id; |
| 296 | u32 revision_id; |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 297 | u32 probe_id; /* overridden id for probing */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
| 299 | /* detected preset */ |
| 300 | const struct hda_codec_preset *preset; |
Takashi Iwai | 812a2cc | 2009-05-16 10:00:49 +0200 | [diff] [blame] | 301 | const char *vendor_name; /* codec vendor name */ |
| 302 | const char *chip_name; /* codec chip name */ |
Takashi Iwai | f44ac83 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 303 | const char *modelname; /* model name for preset */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | |
| 305 | /* set by patch */ |
| 306 | struct hda_codec_ops patch_ops; |
| 307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | /* PCM to create, set by patch_ops.build_pcms callback */ |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame^] | 309 | struct list_head pcm_list_head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | |
| 311 | /* codec specific info */ |
| 312 | void *spec; |
| 313 | |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 314 | /* beep device */ |
| 315 | struct hda_beep *beep; |
Jaroslav Kysela | 2dca0bb | 2009-11-13 18:41:52 +0100 | [diff] [blame] | 316 | unsigned int beep_mode; |
Matthew Ranostay | 1cd2224 | 2008-07-18 18:20:52 +0200 | [diff] [blame] | 317 | |
Takashi Iwai | 54d1740 | 2005-11-21 16:33:22 +0100 | [diff] [blame] | 318 | /* widget capabilities cache */ |
| 319 | unsigned int num_nodes; |
| 320 | hda_nid_t start_nid; |
| 321 | u32 *wcaps; |
| 322 | |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 323 | struct snd_array mixers; /* list of assigned mixer elements */ |
Jaroslav Kysela | 5b0cb1d | 2009-12-08 16:13:32 +0100 | [diff] [blame] | 324 | struct snd_array nids; /* list of mapped mixer elements */ |
Takashi Iwai | d13bd41 | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 325 | |
Takashi Iwai | 01751f5 | 2007-08-10 16:59:39 +0200 | [diff] [blame] | 326 | struct hda_cache_rec amp_cache; /* cache for amp access */ |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 327 | struct hda_cache_rec cmd_cache; /* cache for other commands */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 329 | struct list_head conn_list; /* linked-list of connection-list */ |
Takashi Iwai | a12d3e1 | 2011-04-07 15:55:15 +0200 | [diff] [blame] | 330 | |
Ingo Molnar | 62932df | 2006-01-16 16:34:20 +0100 | [diff] [blame] | 331 | struct mutex spdif_mutex; |
Wu Fengguang | 5a9e02e | 2009-01-09 16:45:24 +0800 | [diff] [blame] | 332 | struct mutex control_mutex; |
Takashi Iwai | c3b6bcc | 2012-05-10 16:11:15 +0200 | [diff] [blame] | 333 | struct mutex hash_mutex; |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 334 | struct snd_array spdif_out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | unsigned int spdif_in_enable; /* SPDIF input enable? */ |
Takashi Iwai | dda1441 | 2011-05-02 11:29:30 +0200 | [diff] [blame] | 336 | const hda_nid_t *slave_dig_outs; /* optional digital out slave widgets */ |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 337 | struct snd_array init_pins; /* initial (BIOS) pin configurations */ |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 338 | struct snd_array driver_pins; /* pin configs set by codec parser */ |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 339 | struct snd_array cvt_setups; /* audio convert setups */ |
Takashi Iwai | 2807314 | 2007-07-27 18:58:06 +0200 | [diff] [blame] | 340 | |
Takashi Iwai | 09b70e8 | 2013-01-10 18:21:56 +0100 | [diff] [blame] | 341 | struct mutex user_mutex; |
Takashi Iwai | b989d04 | 2014-02-25 11:54:06 +0100 | [diff] [blame] | 342 | #ifdef CONFIG_SND_HDA_RECONFIG |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 343 | struct snd_array init_verbs; /* additional init verbs */ |
Takashi Iwai | 1e1be43 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 344 | struct snd_array hints; /* additional hints */ |
Takashi Iwai | 346ff70 | 2009-02-23 09:42:57 +0100 | [diff] [blame] | 345 | struct snd_array user_pins; /* default pin configs to override */ |
Takashi Iwai | 11aeff0 | 2008-07-30 15:01:46 +0200 | [diff] [blame] | 346 | #endif |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 347 | |
Takashi Iwai | 648a8d2 | 2014-02-25 10:38:13 +0100 | [diff] [blame] | 348 | #ifdef CONFIG_SND_HDA_HWDEP |
| 349 | struct snd_hwdep *hwdep; /* assigned hwdep device */ |
| 350 | #endif |
| 351 | |
Takashi Iwai | 963f803 | 2008-08-11 10:04:40 +0200 | [diff] [blame] | 352 | /* misc flags */ |
| 353 | unsigned int spdif_status_reset :1; /* needs to toggle SPDIF for each |
| 354 | * status change |
| 355 | * (e.g. Realtek codecs) |
| 356 | */ |
Takashi Iwai | 9421f95 | 2009-03-12 17:06:07 +0100 | [diff] [blame] | 357 | unsigned int pin_amp_workaround:1; /* pin out-amp takes index |
| 358 | * (e.g. Conexant codecs) |
| 359 | */ |
Michael Karcher | 4f32456 | 2012-04-06 15:34:15 +0200 | [diff] [blame] | 360 | unsigned int single_adc_amp:1; /* adc in-amp takes no index |
| 361 | * (e.g. CX20549 codec) |
| 362 | */ |
Takashi Iwai | 0e7adbe | 2010-10-25 10:37:11 +0200 | [diff] [blame] | 363 | unsigned int no_sticky_stream:1; /* no sticky-PCM stream assignment */ |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 364 | unsigned int pins_shutup:1; /* pins are shut up */ |
Takashi Iwai | 729d55b | 2009-12-25 22:49:01 +0100 | [diff] [blame] | 365 | unsigned int no_trigger_sense:1; /* don't trigger at pin-sensing */ |
Takashi Iwai | 71b1e9e | 2012-02-13 11:55:02 +0100 | [diff] [blame] | 366 | unsigned int no_jack_detect:1; /* Machine has no jack-detection */ |
Takashi Iwai | ecac3ed | 2012-12-21 15:23:01 +0100 | [diff] [blame] | 367 | unsigned int inv_eapd:1; /* broken h/w: inverted EAPD control */ |
Takashi Iwai | 9cc159c | 2012-12-21 15:31:41 +0100 | [diff] [blame] | 368 | unsigned int inv_jack_detect:1; /* broken h/w: inverted detection bit */ |
Takashi Iwai | ed36081 | 2012-08-08 17:12:52 +0200 | [diff] [blame] | 369 | unsigned int pcm_format_first:1; /* PCM format must be set first */ |
Takashi Iwai | 983f6b9 | 2012-08-28 09:18:01 -0700 | [diff] [blame] | 370 | unsigned int epss:1; /* supporting EPSS? */ |
Takashi Iwai | c370dd6 | 2012-12-13 18:30:04 +0100 | [diff] [blame] | 371 | unsigned int cached_write:1; /* write only to caches */ |
Mengdong Lin | f1aa068 | 2013-08-26 21:35:21 -0400 | [diff] [blame] | 372 | unsigned int dp_mst:1; /* support DP1.2 Multi-stream transport */ |
David Henningsson | cd26251 | 2014-01-29 10:37:10 +0100 | [diff] [blame] | 373 | unsigned int dump_coef:1; /* dump processing coefs in codec proc file */ |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 374 | #ifdef CONFIG_PM |
Takashi Iwai | 4b92734 | 2012-08-28 16:39:25 -0700 | [diff] [blame] | 375 | unsigned int d3_stop_clk:1; /* support D3 operation without BCLK */ |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 376 | atomic_t in_pm; /* suspend/resume being performed */ |
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 | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 380 | #endif |
Takashi Iwai | daead53 | 2008-11-28 12:55:36 +0100 | [diff] [blame] | 381 | |
Takashi Iwai | 9419ab6 | 2013-01-24 17:23:35 +0100 | [diff] [blame] | 382 | /* filter the requested power state per nid */ |
| 383 | unsigned int (*power_filter)(struct hda_codec *codec, hda_nid_t nid, |
| 384 | unsigned int power_state); |
| 385 | |
Takashi Iwai | daead53 | 2008-11-28 12:55:36 +0100 | [diff] [blame] | 386 | /* codec-specific additional proc output */ |
| 387 | void (*proc_widget_hook)(struct snd_info_buffer *buffer, |
| 388 | struct hda_codec *codec, hda_nid_t nid); |
Takashi Iwai | cd372fb | 2011-03-03 14:40:14 +0100 | [diff] [blame] | 389 | |
Takashi Iwai | 1835a0f | 2011-10-27 22:12:46 +0200 | [diff] [blame] | 390 | /* jack detection */ |
| 391 | struct snd_array jacktbl; |
David Henningsson | 26a6cb6 | 2012-10-09 15:04:21 +0200 | [diff] [blame] | 392 | unsigned long jackpoll_interval; /* In jiffies. Zero means no poll, rely on unsol events */ |
| 393 | struct delayed_work jackpoll_work; |
Takashi Iwai | 1835a0f | 2011-10-27 22:12:46 +0200 | [diff] [blame] | 394 | |
Takashi Iwai | cd372fb | 2011-03-03 14:40:14 +0100 | [diff] [blame] | 395 | #ifdef CONFIG_SND_HDA_INPUT_JACK |
| 396 | /* jack detection */ |
| 397 | struct snd_array jacks; |
| 398 | #endif |
Takashi Iwai | c9ce6b2 | 2012-12-18 18:12:44 +0100 | [diff] [blame] | 399 | |
Mengdong Lin | 7f13292 | 2013-11-29 01:48:45 -0500 | [diff] [blame] | 400 | int depop_delay; /* depop delay in ms, -1 for default delay time */ |
| 401 | |
Takashi Iwai | c9ce6b2 | 2012-12-18 18:12:44 +0100 | [diff] [blame] | 402 | /* fix-up list */ |
| 403 | int fixup_id; |
| 404 | const struct hda_fixup *fixup_list; |
| 405 | const char *fixup_name; |
| 406 | |
| 407 | /* additional init verbs */ |
| 408 | struct snd_array verbs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | }; |
| 410 | |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 411 | #define dev_to_hda_codec(_dev) container_of(_dev, struct hda_codec, dev) |
| 412 | #define hda_codec_dev(_dev) (&(_dev)->dev) |
| 413 | |
| 414 | extern struct bus_type snd_hda_bus_type; |
| 415 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | /* direction */ |
| 417 | enum { |
| 418 | HDA_INPUT, HDA_OUTPUT |
| 419 | }; |
| 420 | |
Takashi Iwai | 63e51fd | 2013-06-06 14:20:19 +0200 | [diff] [blame] | 421 | /* snd_hda_codec_read/write optional flags */ |
| 422 | #define HDA_RW_NO_RESPONSE_FALLBACK (1 << 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | |
| 424 | /* |
| 425 | * constructors |
| 426 | */ |
Takashi Iwai | ef74497 | 2015-02-17 13:56:29 +0100 | [diff] [blame] | 427 | int snd_hda_bus_new(struct snd_card *card, struct hda_bus **busp); |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 428 | int snd_hda_codec_new(struct hda_bus *bus, struct snd_card *card, |
| 429 | unsigned int codec_addr, struct hda_codec **codecp); |
Takashi Iwai | a1e21c9 | 2009-06-17 09:33:52 +0200 | [diff] [blame] | 430 | int snd_hda_codec_configure(struct hda_codec *codec); |
Mengdong Lin | a15d05d | 2013-02-08 17:09:31 -0500 | [diff] [blame] | 431 | int snd_hda_codec_update_widgets(struct hda_codec *codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | |
| 433 | /* |
| 434 | * low level functions |
| 435 | */ |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 436 | 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] | 437 | int flags, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | unsigned int verb, unsigned int parm); |
Takashi Iwai | e7ecc27 | 2013-06-06 14:00:23 +0200 | [diff] [blame] | 439 | 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] | 440 | unsigned int verb, unsigned int parm); |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 441 | #define snd_hda_param_read(codec, nid, param) \ |
| 442 | snd_hda_codec_read(codec, nid, 0, AC_VERB_PARAMETERS, param) |
| 443 | int snd_hda_get_sub_nodes(struct hda_codec *codec, hda_nid_t nid, |
| 444 | hda_nid_t *start_id); |
| 445 | int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid, |
| 446 | hda_nid_t *conn_list, int max_conns); |
Takashi Iwai | 09cf03b | 2012-05-19 17:21:25 +0200 | [diff] [blame] | 447 | static inline int |
| 448 | snd_hda_get_num_conns(struct hda_codec *codec, hda_nid_t nid) |
| 449 | { |
| 450 | return snd_hda_get_connections(codec, nid, NULL, 0); |
| 451 | } |
Takashi Iwai | 4eea309 | 2013-02-07 18:18:19 +0100 | [diff] [blame] | 452 | 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] | 453 | int snd_hda_get_raw_connections(struct hda_codec *codec, hda_nid_t nid, |
| 454 | hda_nid_t *conn_list, int max_conns); |
Takashi Iwai | ee8e765 | 2013-01-03 15:25:11 +0100 | [diff] [blame] | 455 | int snd_hda_get_conn_list(struct hda_codec *codec, hda_nid_t nid, |
| 456 | const hda_nid_t **listp); |
Takashi Iwai | b2f934a | 2011-07-04 16:23:26 +0200 | [diff] [blame] | 457 | int snd_hda_override_conn_list(struct hda_codec *codec, hda_nid_t nid, int nums, |
| 458 | const hda_nid_t *list); |
Takashi Iwai | 8d087c7 | 2011-06-28 12:45:47 +0200 | [diff] [blame] | 459 | int snd_hda_get_conn_index(struct hda_codec *codec, hda_nid_t mux, |
| 460 | hda_nid_t nid, int recursive); |
Mengdong Lin | f1aa068 | 2013-08-26 21:35:21 -0400 | [diff] [blame] | 461 | int snd_hda_get_devices(struct hda_codec *codec, hda_nid_t nid, |
| 462 | u8 *dev_list, int max_devices); |
Stephen Warren | 384a48d | 2011-06-01 11:14:21 -0600 | [diff] [blame] | 463 | int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid, |
| 464 | u32 *ratesp, u64 *formatsp, unsigned int *bpsp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | |
| 466 | struct hda_verb { |
| 467 | hda_nid_t nid; |
| 468 | u32 verb; |
| 469 | u32 param; |
| 470 | }; |
| 471 | |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 472 | void snd_hda_sequence_write(struct hda_codec *codec, |
| 473 | const struct hda_verb *seq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | |
| 475 | /* unsolicited event */ |
| 476 | int snd_hda_queue_unsol_event(struct hda_bus *bus, u32 res, u32 res_ex); |
| 477 | |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 478 | /* cached write */ |
| 479 | 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] | 480 | int flags, unsigned int verb, unsigned int parm); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 481 | void snd_hda_sequence_write_cache(struct hda_codec *codec, |
| 482 | const struct hda_verb *seq); |
Takashi Iwai | a68d5a5 | 2010-03-30 18:03:44 +0200 | [diff] [blame] | 483 | 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] | 484 | int flags, unsigned int verb, unsigned int parm); |
Takashi Iwai | b3ac563 | 2007-08-10 17:03:40 +0200 | [diff] [blame] | 485 | void snd_hda_codec_resume_cache(struct hda_codec *codec); |
Takashi Iwai | dc870f3 | 2013-01-22 15:24:30 +0100 | [diff] [blame] | 486 | /* both for cmd & amp caches */ |
| 487 | void snd_hda_codec_flush_cache(struct hda_codec *codec); |
Takashi Iwai | 0c3d47b | 2012-12-20 11:41:54 +0100 | [diff] [blame] | 488 | |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 489 | /* the struct for codec->pin_configs */ |
| 490 | struct hda_pincfg { |
| 491 | hda_nid_t nid; |
Takashi Iwai | d7fdc00 | 2013-01-10 08:38:04 +0100 | [diff] [blame] | 492 | unsigned char ctrl; /* original pin control value */ |
| 493 | unsigned char target; /* target pin control value */ |
Takashi Iwai | ac0547d | 2010-07-05 16:50:13 +0200 | [diff] [blame] | 494 | unsigned int cfg; /* default configuration */ |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 495 | }; |
| 496 | |
| 497 | unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid); |
| 498 | int snd_hda_codec_set_pincfg(struct hda_codec *codec, hda_nid_t nid, |
| 499 | unsigned int cfg); |
| 500 | int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list, |
| 501 | hda_nid_t nid, unsigned int cfg); /* for hwdep */ |
Takashi Iwai | 92ee616 | 2009-12-27 11:18:59 +0100 | [diff] [blame] | 502 | void snd_hda_shutup_pins(struct hda_codec *codec); |
Takashi Iwai | 3be1414 | 2009-02-20 14:11:16 +0100 | [diff] [blame] | 503 | |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 504 | /* SPDIF controls */ |
| 505 | struct hda_spdif_out { |
| 506 | hda_nid_t nid; /* Converter nid values relate to */ |
| 507 | unsigned int status; /* IEC958 status bits */ |
| 508 | unsigned short ctls; /* SPDIF control bits */ |
| 509 | }; |
| 510 | struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec, |
| 511 | hda_nid_t nid); |
Stephen Warren | 74b654c | 2011-06-01 11:14:18 -0600 | [diff] [blame] | 512 | void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx); |
| 513 | void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid); |
Stephen Warren | 7c93597 | 2011-06-01 11:14:17 -0600 | [diff] [blame] | 514 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | /* |
| 516 | * Mixer |
| 517 | */ |
| 518 | int snd_hda_build_controls(struct hda_bus *bus); |
Takashi Iwai | 6c1f45e | 2008-07-30 15:01:45 +0200 | [diff] [blame] | 519 | int snd_hda_codec_build_controls(struct hda_codec *codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | |
| 521 | /* |
| 522 | * PCM |
| 523 | */ |
| 524 | int snd_hda_build_pcms(struct hda_bus *bus); |
Takashi Iwai | 1a4ba30 | 2015-02-24 11:50:11 +0100 | [diff] [blame] | 525 | int snd_hda_codec_parse_pcms(struct hda_codec *codec); |
Takashi Iwai | 529bd6c | 2008-11-27 14:17:01 +0100 | [diff] [blame] | 526 | int snd_hda_codec_build_pcms(struct hda_codec *codec); |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 527 | |
Takashi Iwai | bbbc7e8 | 2015-02-27 17:43:19 +0100 | [diff] [blame^] | 528 | __printf(2, 3) |
| 529 | struct hda_pcm *snd_hda_codec_pcm_new(struct hda_codec *codec, |
| 530 | const char *fmt, ...); |
| 531 | |
| 532 | static inline void snd_hda_codec_pcm_get(struct hda_pcm *pcm) |
| 533 | { |
| 534 | kref_get(&pcm->kref); |
| 535 | } |
| 536 | void snd_hda_codec_pcm_put(struct hda_pcm *pcm); |
| 537 | |
Takashi Iwai | eb54133 | 2010-08-06 13:48:11 +0200 | [diff] [blame] | 538 | int snd_hda_codec_prepare(struct hda_codec *codec, |
| 539 | struct hda_pcm_stream *hinfo, |
| 540 | unsigned int stream, |
| 541 | unsigned int format, |
| 542 | struct snd_pcm_substream *substream); |
| 543 | void snd_hda_codec_cleanup(struct hda_codec *codec, |
| 544 | struct hda_pcm_stream *hinfo, |
| 545 | struct snd_pcm_substream *substream); |
| 546 | |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 547 | void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid, |
| 548 | u32 stream_tag, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | int channel_id, int format); |
Takashi Iwai | f0cea79 | 2010-08-13 11:56:53 +0200 | [diff] [blame] | 550 | void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid, |
| 551 | int do_now); |
| 552 | #define snd_hda_codec_cleanup_stream(codec, nid) \ |
| 553 | __snd_hda_codec_cleanup_stream(codec, nid, 0) |
Takashi Iwai | 6194b99 | 2014-06-06 18:12:16 +0200 | [diff] [blame] | 554 | unsigned int snd_hda_calc_stream_format(struct hda_codec *codec, |
| 555 | unsigned int rate, |
Takashi Iwai | d01ce99 | 2007-07-27 16:52:19 +0200 | [diff] [blame] | 556 | unsigned int channels, |
| 557 | unsigned int format, |
Anssi Hannula | 32c168c | 2010-08-03 13:28:57 +0300 | [diff] [blame] | 558 | unsigned int maxbps, |
| 559 | unsigned short spdif_ctls); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid, |
| 561 | unsigned int format); |
| 562 | |
Takashi Iwai | ee81abb | 2012-11-08 17:12:10 +0100 | [diff] [blame] | 563 | extern const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps[]; |
| 564 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | /* |
| 566 | * Misc |
| 567 | */ |
| 568 | 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] | 569 | void snd_hda_bus_reboot_notify(struct hda_bus *bus); |
Takashi Iwai | 4d7fbdb | 2011-07-26 10:33:10 +0200 | [diff] [blame] | 570 | 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] | 571 | unsigned int power_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 572 | |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 573 | int snd_hda_lock_devices(struct hda_bus *bus); |
| 574 | void snd_hda_unlock_devices(struct hda_bus *bus); |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 575 | void snd_hda_bus_reset(struct hda_bus *bus); |
Takashi Iwai | d3d020b | 2012-04-26 12:11:44 +0200 | [diff] [blame] | 576 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | /* |
| 578 | * power management |
| 579 | */ |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 580 | extern const struct dev_pm_ops hda_codec_driver_pm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | |
Takashi Iwai | 9e5341b | 2010-09-21 09:57:06 +0200 | [diff] [blame] | 582 | static inline |
| 583 | int hda_call_check_power_status(struct hda_codec *codec, hda_nid_t nid) |
| 584 | { |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 585 | #ifdef CONFIG_PM |
Takashi Iwai | 9e5341b | 2010-09-21 09:57:06 +0200 | [diff] [blame] | 586 | if (codec->patch_ops.check_power_status) |
| 587 | return codec->patch_ops.check_power_status(codec, nid); |
Takashi Iwai | ff2b7e2 | 2011-06-28 08:59:30 +0200 | [diff] [blame] | 588 | #endif |
Takashi Iwai | 9e5341b | 2010-09-21 09:57:06 +0200 | [diff] [blame] | 589 | return 0; |
| 590 | } |
Takashi Iwai | 9e5341b | 2010-09-21 09:57:06 +0200 | [diff] [blame] | 591 | |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 592 | /* |
Matthew Ranostay | 50a9f79 | 2008-10-25 01:05:45 -0400 | [diff] [blame] | 593 | * get widget information |
| 594 | */ |
| 595 | const char *snd_hda_get_jack_connectivity(u32 cfg); |
| 596 | const char *snd_hda_get_jack_type(u32 cfg); |
| 597 | const char *snd_hda_get_jack_location(u32 cfg); |
| 598 | |
| 599 | /* |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 600 | * power saving |
| 601 | */ |
Takashi Iwai | 83012a7 | 2012-08-24 18:38:08 +0200 | [diff] [blame] | 602 | #ifdef CONFIG_PM |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 603 | void snd_hda_power_up(struct hda_codec *codec); |
| 604 | void snd_hda_power_down(struct hda_codec *codec); |
Takashi Iwai | bb57392 | 2015-02-20 09:26:04 +0100 | [diff] [blame] | 605 | void snd_hda_set_power_save(struct hda_bus *bus, int delay); |
Takashi Iwai | a2f6309 | 2009-11-11 09:34:25 +0100 | [diff] [blame] | 606 | void snd_hda_update_power_acct(struct hda_codec *codec); |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 607 | #else |
Takashi Iwai | cc72da7 | 2015-02-19 16:00:22 +0100 | [diff] [blame] | 608 | static inline void snd_hda_power_up(struct hda_codec *codec) {} |
| 609 | static inline void snd_hda_power_down(struct hda_codec *codec) {} |
Takashi Iwai | bb57392 | 2015-02-20 09:26:04 +0100 | [diff] [blame] | 610 | static inline void snd_hda_set_power_save(struct hda_bus *bus, int delay) {} |
Takashi Iwai | cb53c62 | 2007-08-10 17:21:45 +0200 | [diff] [blame] | 611 | #endif |
| 612 | |
Takashi Iwai | 4ea6fbc | 2009-06-17 09:52:54 +0200 | [diff] [blame] | 613 | #ifdef CONFIG_SND_HDA_PATCH_LOADER |
| 614 | /* |
| 615 | * patch firmware |
| 616 | */ |
Takashi Iwai | 4918cda | 2012-08-09 12:33:28 +0200 | [diff] [blame] | 617 | 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] | 618 | #endif |
| 619 | |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 620 | #ifdef CONFIG_SND_HDA_DSP_LOADER |
| 621 | static inline int |
| 622 | snd_hda_codec_load_dsp_prepare(struct hda_codec *codec, unsigned int format, |
| 623 | unsigned int size, |
| 624 | struct snd_dma_buffer *bufp) |
| 625 | { |
| 626 | return codec->bus->ops.load_dsp_prepare(codec->bus, format, size, bufp); |
| 627 | } |
| 628 | static inline void |
| 629 | snd_hda_codec_load_dsp_trigger(struct hda_codec *codec, bool start) |
| 630 | { |
| 631 | return codec->bus->ops.load_dsp_trigger(codec->bus, start); |
| 632 | } |
| 633 | static inline void |
| 634 | snd_hda_codec_load_dsp_cleanup(struct hda_codec *codec, |
| 635 | struct snd_dma_buffer *dmab) |
| 636 | { |
| 637 | return codec->bus->ops.load_dsp_cleanup(codec->bus, dmab); |
| 638 | } |
| 639 | #else |
| 640 | static inline int |
| 641 | snd_hda_codec_load_dsp_prepare(struct hda_codec *codec, unsigned int format, |
| 642 | unsigned int size, |
| 643 | struct snd_dma_buffer *bufp) |
| 644 | { |
Ian Minett | a3af480 | 2012-09-20 20:29:19 -0700 | [diff] [blame] | 645 | return -ENOSYS; |
Takashi Iwai | 1d1a456 | 2012-09-20 20:29:13 -0700 | [diff] [blame] | 646 | } |
| 647 | static inline void |
| 648 | snd_hda_codec_load_dsp_trigger(struct hda_codec *codec, bool start) {} |
| 649 | static inline void |
| 650 | snd_hda_codec_load_dsp_cleanup(struct hda_codec *codec, |
| 651 | struct snd_dma_buffer *dmab) {} |
| 652 | #endif |
| 653 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | #endif /* __SOUND_HDA_CODEC_H */ |