2 * Universal Interface for Intel High Definition Audio Codec
4 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
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)
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
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.
21 #ifndef __SOUND_HDA_CODEC_H
22 #define __SOUND_HDA_CODEC_H
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/hdaudio.h>
30 #include <sound/hda_verbs.h>
31 #include <sound/hda_regmap.h>
41 struct hda_pcm_stream
;
45 /* send a single command */
46 int (*command
)(struct hda_bus
*bus
, unsigned int cmd
);
47 /* get a response from the last command */
48 unsigned int (*get_response
)(struct hda_bus
*bus
, unsigned int addr
);
49 /* free the private data */
50 void (*private_free
)(struct hda_bus
*);
51 /* attach a PCM stream */
52 int (*attach_pcm
)(struct hda_bus
*bus
, struct hda_codec
*codec
,
54 /* reset bus for retry verb */
55 void (*bus_reset
)(struct hda_bus
*bus
);
56 #ifdef CONFIG_SND_HDA_DSP_LOADER
57 /* prepare DSP transfer */
58 int (*load_dsp_prepare
)(struct hda_bus
*bus
, unsigned int format
,
59 unsigned int byte_size
,
60 struct snd_dma_buffer
*bufp
);
61 /* start/stop DSP transfer */
62 void (*load_dsp_trigger
)(struct hda_bus
*bus
, bool start
);
63 /* clean up DSP transfer */
64 void (*load_dsp_cleanup
)(struct hda_bus
*bus
,
65 struct snd_dma_buffer
*dmab
);
72 * each controller needs to creata a hda_bus to assign the accessor.
73 * A hda_bus contains several codecs in the list codec_list.
78 struct snd_card
*card
;
82 const char *modelname
;
83 struct hda_bus_ops ops
;
85 struct mutex prepare_mutex
;
88 DECLARE_BITMAP(pcm_dev_bits
, SNDRV_PCM_DEVICES
);
91 unsigned int needs_damn_long_delay
:1;
92 unsigned int allow_bus_reset
:1; /* allow bus reset at fatal error */
93 /* status for codec/controller */
94 unsigned int shutdown
:1; /* being unloaded */
95 unsigned int rirb_error
:1; /* error in codec communication */
96 unsigned int response_reset
:1; /* controller was reset */
97 unsigned int in_reset
:1; /* during reset operation */
98 unsigned int no_response_fallback
:1; /* don't fallback at RIRB error */
100 int primary_dig_out_type
; /* primary digital out PCM type */
106 * Known codecs have the patch to build and set up the controls/PCMs
107 * better than the generic parser.
109 struct hda_codec_preset
{
113 unsigned int subs_mask
;
117 int (*patch
)(struct hda_codec
*codec
);
120 #define HDA_CODEC_ID_GENERIC_HDMI 0x00000101
121 #define HDA_CODEC_ID_GENERIC 0x00000201
123 struct hda_codec_driver
{
124 struct hdac_driver core
;
125 const struct hda_codec_preset
*preset
;
128 int __hda_codec_driver_register(struct hda_codec_driver
*drv
, const char *name
,
129 struct module
*owner
);
130 #define hda_codec_driver_register(drv) \
131 __hda_codec_driver_register(drv, KBUILD_MODNAME, THIS_MODULE)
132 void hda_codec_driver_unregister(struct hda_codec_driver
*drv
);
133 #define module_hda_codec_driver(drv) \
134 module_driver(drv, hda_codec_driver_register, \
135 hda_codec_driver_unregister)
137 /* ops set by the preset patch */
138 struct hda_codec_ops
{
139 int (*build_controls
)(struct hda_codec
*codec
);
140 int (*build_pcms
)(struct hda_codec
*codec
);
141 int (*init
)(struct hda_codec
*codec
);
142 void (*free
)(struct hda_codec
*codec
);
143 void (*unsol_event
)(struct hda_codec
*codec
, unsigned int res
);
144 void (*set_power_state
)(struct hda_codec
*codec
, hda_nid_t fg
,
145 unsigned int power_state
);
147 int (*suspend
)(struct hda_codec
*codec
);
148 int (*resume
)(struct hda_codec
*codec
);
149 int (*check_power_status
)(struct hda_codec
*codec
, hda_nid_t nid
);
151 void (*reboot_notify
)(struct hda_codec
*codec
);
152 void (*stream_pm
)(struct hda_codec
*codec
, hda_nid_t nid
, bool on
);
157 int (*open
)(struct hda_pcm_stream
*info
, struct hda_codec
*codec
,
158 struct snd_pcm_substream
*substream
);
159 int (*close
)(struct hda_pcm_stream
*info
, struct hda_codec
*codec
,
160 struct snd_pcm_substream
*substream
);
161 int (*prepare
)(struct hda_pcm_stream
*info
, struct hda_codec
*codec
,
162 unsigned int stream_tag
, unsigned int format
,
163 struct snd_pcm_substream
*substream
);
164 int (*cleanup
)(struct hda_pcm_stream
*info
, struct hda_codec
*codec
,
165 struct snd_pcm_substream
*substream
);
166 unsigned int (*get_delay
)(struct hda_pcm_stream
*info
,
167 struct hda_codec
*codec
,
168 struct snd_pcm_substream
*substream
);
171 /* PCM information for each substream */
172 struct hda_pcm_stream
{
173 unsigned int substreams
; /* number of substreams, 0 = not exist*/
174 unsigned int channels_min
; /* min. number of channels */
175 unsigned int channels_max
; /* max. number of channels */
176 hda_nid_t nid
; /* default NID to query rates/formats/bps, or set up */
177 u32 rates
; /* supported rates */
178 u64 formats
; /* supported formats (SNDRV_PCM_FMTBIT_) */
179 unsigned int maxbps
; /* supported max. bit per sample */
180 const struct snd_pcm_chmap_elem
*chmap
; /* chmap to override */
181 struct hda_pcm_ops ops
;
193 /* for PCM creation */
196 struct hda_pcm_stream stream
[2];
197 unsigned int pcm_type
; /* HDA_PCM_TYPE_XXX */
198 int device
; /* device number to assign */
199 struct snd_pcm
*pcm
; /* assigned PCM instance */
200 bool own_chmap
; /* codec driver provides own channel maps */
202 struct hda_codec
*codec
;
204 struct list_head list
;
207 /* codec information */
209 struct hdac_device core
;
211 struct snd_card
*card
;
212 unsigned int addr
; /* codec addr*/
213 u32 probe_id
; /* overridden id for probing */
215 /* detected preset */
216 const struct hda_codec_preset
*preset
;
217 const char *modelname
; /* model name for preset */
220 struct hda_codec_ops patch_ops
;
222 /* PCM to create, set by patch_ops.build_pcms callback */
223 struct list_head pcm_list_head
;
225 /* codec specific info */
229 struct hda_beep
*beep
;
230 unsigned int beep_mode
;
232 /* widget capabilities cache */
235 struct snd_array mixers
; /* list of assigned mixer elements */
236 struct snd_array nids
; /* list of mapped mixer elements */
238 struct list_head conn_list
; /* linked-list of connection-list */
240 struct mutex spdif_mutex
;
241 struct mutex control_mutex
;
242 struct snd_array spdif_out
;
243 unsigned int spdif_in_enable
; /* SPDIF input enable? */
244 const hda_nid_t
*slave_dig_outs
; /* optional digital out slave widgets */
245 struct snd_array init_pins
; /* initial (BIOS) pin configurations */
246 struct snd_array driver_pins
; /* pin configs set by codec parser */
247 struct snd_array cvt_setups
; /* audio convert setups */
249 struct mutex user_mutex
;
250 #ifdef CONFIG_SND_HDA_RECONFIG
251 struct snd_array init_verbs
; /* additional init verbs */
252 struct snd_array hints
; /* additional hints */
253 struct snd_array user_pins
; /* default pin configs to override */
256 #ifdef CONFIG_SND_HDA_HWDEP
257 struct snd_hwdep
*hwdep
; /* assigned hwdep device */
261 unsigned int in_freeing
:1; /* being released */
262 unsigned int registered
:1; /* codec was registered */
263 unsigned int spdif_status_reset
:1; /* needs to toggle SPDIF for each
265 * (e.g. Realtek codecs)
267 unsigned int pin_amp_workaround
:1; /* pin out-amp takes index
268 * (e.g. Conexant codecs)
270 unsigned int single_adc_amp
:1; /* adc in-amp takes no index
271 * (e.g. CX20549 codec)
273 unsigned int no_sticky_stream
:1; /* no sticky-PCM stream assignment */
274 unsigned int pins_shutup
:1; /* pins are shut up */
275 unsigned int no_trigger_sense
:1; /* don't trigger at pin-sensing */
276 unsigned int no_jack_detect
:1; /* Machine has no jack-detection */
277 unsigned int inv_eapd
:1; /* broken h/w: inverted EAPD control */
278 unsigned int inv_jack_detect
:1; /* broken h/w: inverted detection bit */
279 unsigned int pcm_format_first
:1; /* PCM format must be set first */
280 unsigned int cached_write
:1; /* write only to caches */
281 unsigned int dp_mst
:1; /* support DP1.2 Multi-stream transport */
282 unsigned int dump_coef
:1; /* dump processing coefs in codec proc file */
283 unsigned int power_save_node
:1; /* advanced PM for each widget */
285 unsigned long power_on_acct
;
286 unsigned long power_off_acct
;
287 unsigned long power_jiffies
;
290 /* filter the requested power state per nid */
291 unsigned int (*power_filter
)(struct hda_codec
*codec
, hda_nid_t nid
,
292 unsigned int power_state
);
294 /* codec-specific additional proc output */
295 void (*proc_widget_hook
)(struct snd_info_buffer
*buffer
,
296 struct hda_codec
*codec
, hda_nid_t nid
);
299 struct snd_array jacktbl
;
300 unsigned long jackpoll_interval
; /* In jiffies. Zero means no poll, rely on unsol events */
301 struct delayed_work jackpoll_work
;
303 #ifdef CONFIG_SND_HDA_INPUT_JACK
305 struct snd_array jacks
;
308 int depop_delay
; /* depop delay in ms, -1 for default delay time */
312 const struct hda_fixup
*fixup_list
;
313 const char *fixup_name
;
315 /* additional init verbs */
316 struct snd_array verbs
;
319 #define dev_to_hda_codec(_dev) container_of(_dev, struct hda_codec, core.dev)
320 #define hda_codec_dev(_dev) (&(_dev)->core.dev)
322 #define list_for_each_codec(c, bus) \
323 list_for_each_entry(c, &(bus)->core.codec_list, core.list)
325 /* snd_hda_codec_read/write optional flags */
326 #define HDA_RW_NO_RESPONSE_FALLBACK (1 << 0)
331 int snd_hda_bus_new(struct snd_card
*card
, struct hda_bus
**busp
);
332 int snd_hda_codec_new(struct hda_bus
*bus
, struct snd_card
*card
,
333 unsigned int codec_addr
, struct hda_codec
**codecp
);
334 int snd_hda_codec_configure(struct hda_codec
*codec
);
335 int snd_hda_codec_update_widgets(struct hda_codec
*codec
);
338 * low level functions
340 unsigned int snd_hda_codec_read(struct hda_codec
*codec
, hda_nid_t nid
,
342 unsigned int verb
, unsigned int parm
);
343 int snd_hda_codec_write(struct hda_codec
*codec
, hda_nid_t nid
, int flags
,
344 unsigned int verb
, unsigned int parm
);
345 #define snd_hda_param_read(codec, nid, param) \
346 snd_hdac_read_parm(&(codec)->core, nid, param)
347 #define snd_hda_get_sub_nodes(codec, nid, start_nid) \
348 snd_hdac_get_sub_nodes(&(codec)->core, nid, start_nid)
349 int snd_hda_get_connections(struct hda_codec
*codec
, hda_nid_t nid
,
350 hda_nid_t
*conn_list
, int max_conns
);
352 snd_hda_get_num_conns(struct hda_codec
*codec
, hda_nid_t nid
)
354 return snd_hda_get_connections(codec
, nid
, NULL
, 0);
357 #define snd_hda_get_raw_connections(codec, nid, list, max_conns) \
358 snd_hdac_get_connections(&(codec)->core, nid, list, max_conns)
359 #define snd_hda_get_num_raw_conns(codec, nid) \
360 snd_hdac_get_connections(&(codec)->core, nid, NULL, 0);
362 int snd_hda_get_conn_list(struct hda_codec
*codec
, hda_nid_t nid
,
363 const hda_nid_t
**listp
);
364 int snd_hda_override_conn_list(struct hda_codec
*codec
, hda_nid_t nid
, int nums
,
365 const hda_nid_t
*list
);
366 int snd_hda_get_conn_index(struct hda_codec
*codec
, hda_nid_t mux
,
367 hda_nid_t nid
, int recursive
);
368 int snd_hda_get_devices(struct hda_codec
*codec
, hda_nid_t nid
,
369 u8
*dev_list
, int max_devices
);
370 int snd_hda_query_supported_pcm(struct hda_codec
*codec
, hda_nid_t nid
,
371 u32
*ratesp
, u64
*formatsp
, unsigned int *bpsp
);
379 void snd_hda_sequence_write(struct hda_codec
*codec
,
380 const struct hda_verb
*seq
);
382 /* unsolicited event */
384 snd_hda_queue_unsol_event(struct hda_bus
*bus
, u32 res
, u32 res_ex
)
386 snd_hdac_bus_queue_event(&bus
->core
, res
, res_ex
);
391 snd_hda_codec_write_cache(struct hda_codec
*codec
, hda_nid_t nid
,
392 int flags
, unsigned int verb
, unsigned int parm
)
394 return snd_hdac_regmap_write(&codec
->core
, nid
, verb
, parm
);
397 #define snd_hda_codec_update_cache(codec, nid, flags, verb, parm) \
398 snd_hda_codec_write_cache(codec, nid, flags, verb, parm)
400 /* the struct for codec->pin_configs */
403 unsigned char ctrl
; /* original pin control value */
404 unsigned char target
; /* target pin control value */
405 unsigned int cfg
; /* default configuration */
408 unsigned int snd_hda_codec_get_pincfg(struct hda_codec
*codec
, hda_nid_t nid
);
409 int snd_hda_codec_set_pincfg(struct hda_codec
*codec
, hda_nid_t nid
,
411 int snd_hda_add_pincfg(struct hda_codec
*codec
, struct snd_array
*list
,
412 hda_nid_t nid
, unsigned int cfg
); /* for hwdep */
413 void snd_hda_shutup_pins(struct hda_codec
*codec
);
416 struct hda_spdif_out
{
417 hda_nid_t nid
; /* Converter nid values relate to */
418 unsigned int status
; /* IEC958 status bits */
419 unsigned short ctls
; /* SPDIF control bits */
421 struct hda_spdif_out
*snd_hda_spdif_out_of_nid(struct hda_codec
*codec
,
423 void snd_hda_spdif_ctls_unassign(struct hda_codec
*codec
, int idx
);
424 void snd_hda_spdif_ctls_assign(struct hda_codec
*codec
, int idx
, hda_nid_t nid
);
429 int snd_hda_codec_build_controls(struct hda_codec
*codec
);
434 int snd_hda_codec_parse_pcms(struct hda_codec
*codec
);
435 int snd_hda_codec_build_pcms(struct hda_codec
*codec
);
438 struct hda_pcm
*snd_hda_codec_pcm_new(struct hda_codec
*codec
,
439 const char *fmt
, ...);
441 static inline void snd_hda_codec_pcm_get(struct hda_pcm
*pcm
)
443 kref_get(&pcm
->kref
);
445 void snd_hda_codec_pcm_put(struct hda_pcm
*pcm
);
447 int snd_hda_codec_prepare(struct hda_codec
*codec
,
448 struct hda_pcm_stream
*hinfo
,
451 struct snd_pcm_substream
*substream
);
452 void snd_hda_codec_cleanup(struct hda_codec
*codec
,
453 struct hda_pcm_stream
*hinfo
,
454 struct snd_pcm_substream
*substream
);
456 void snd_hda_codec_setup_stream(struct hda_codec
*codec
, hda_nid_t nid
,
458 int channel_id
, int format
);
459 void __snd_hda_codec_cleanup_stream(struct hda_codec
*codec
, hda_nid_t nid
,
461 #define snd_hda_codec_cleanup_stream(codec, nid) \
462 __snd_hda_codec_cleanup_stream(codec, nid, 0)
463 unsigned int snd_hda_calc_stream_format(struct hda_codec
*codec
,
465 unsigned int channels
,
468 unsigned short spdif_ctls
);
469 int snd_hda_is_supported_format(struct hda_codec
*codec
, hda_nid_t nid
,
470 unsigned int format
);
472 extern const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps
[];
477 void snd_hda_get_codec_name(struct hda_codec
*codec
, char *name
, int namelen
);
478 void snd_hda_codec_set_power_to_all(struct hda_codec
*codec
, hda_nid_t fg
,
479 unsigned int power_state
);
481 int snd_hda_lock_devices(struct hda_bus
*bus
);
482 void snd_hda_unlock_devices(struct hda_bus
*bus
);
483 void snd_hda_bus_reset(struct hda_bus
*bus
);
488 extern const struct dev_pm_ops hda_codec_driver_pm
;
491 int hda_call_check_power_status(struct hda_codec
*codec
, hda_nid_t nid
)
494 if (codec
->patch_ops
.check_power_status
)
495 return codec
->patch_ops
.check_power_status(codec
, nid
);
501 * get widget information
503 const char *snd_hda_get_jack_connectivity(u32 cfg
);
504 const char *snd_hda_get_jack_type(u32 cfg
);
505 const char *snd_hda_get_jack_location(u32 cfg
);
510 #define snd_hda_power_up(codec) snd_hdac_power_up(&(codec)->core)
511 #define snd_hda_power_up_pm(codec) snd_hdac_power_up_pm(&(codec)->core)
512 #define snd_hda_power_down(codec) snd_hdac_power_down(&(codec)->core)
513 #define snd_hda_power_down_pm(codec) snd_hdac_power_down_pm(&(codec)->core)
515 void snd_hda_set_power_save(struct hda_bus
*bus
, int delay
);
516 void snd_hda_update_power_acct(struct hda_codec
*codec
);
518 static inline void snd_hda_set_power_save(struct hda_bus
*bus
, int delay
) {}
521 #ifdef CONFIG_SND_HDA_PATCH_LOADER
525 int snd_hda_load_patch(struct hda_bus
*bus
, size_t size
, const void *buf
);
528 #ifdef CONFIG_SND_HDA_DSP_LOADER
530 snd_hda_codec_load_dsp_prepare(struct hda_codec
*codec
, unsigned int format
,
532 struct snd_dma_buffer
*bufp
)
534 return codec
->bus
->ops
.load_dsp_prepare(codec
->bus
, format
, size
, bufp
);
537 snd_hda_codec_load_dsp_trigger(struct hda_codec
*codec
, bool start
)
539 return codec
->bus
->ops
.load_dsp_trigger(codec
->bus
, start
);
542 snd_hda_codec_load_dsp_cleanup(struct hda_codec
*codec
,
543 struct snd_dma_buffer
*dmab
)
545 return codec
->bus
->ops
.load_dsp_cleanup(codec
->bus
, dmab
);
549 snd_hda_codec_load_dsp_prepare(struct hda_codec
*codec
, unsigned int format
,
551 struct snd_dma_buffer
*bufp
)
556 snd_hda_codec_load_dsp_trigger(struct hda_codec
*codec
, bool start
) {}
558 snd_hda_codec_load_dsp_cleanup(struct hda_codec
*codec
,
559 struct snd_dma_buffer
*dmab
) {}
562 #endif /* __SOUND_HDA_CODEC_H */