Blame view

sound/hda/local.h 1.18 KB
b24413180   Greg Kroah-Hartman   License cleanup: ...
1
  /* SPDX-License-Identifier: GPL-2.0 */
7639a06c2   Takashi Iwai   ALSA: hda - Move ...
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  /*
   * Local helper macros and functions for HD-audio core drivers
   */
  
  #ifndef __HDAC_LOCAL_H
  #define __HDAC_LOCAL_H
  
  #define get_wcaps(codec, nid) \
  	snd_hdac_read_parm(codec, nid, AC_PAR_AUDIO_WIDGET_CAP)
  
  /* get the widget type from widget capability bits */
  static inline int get_wcaps_type(unsigned int wcaps)
  {
  	if (!wcaps)
  		return -1; /* invalid type */
  	return (wcaps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
  }
9fc7c862e   Subhransu S. Prusty   ALSA: hda - add h...
19
20
21
22
23
24
25
26
27
  static inline unsigned int get_wcaps_channels(u32 wcaps)
  {
  	unsigned int chans;
  
  	chans = (wcaps & AC_WCAP_CHAN_CNT_EXT) >> 13;
  	chans = (chans + 1) * 2;
  
  	return chans;
  }
3256be653   Takashi Iwai   ALSA: hda - Add w...
28
29
  extern const struct attribute_group *hdac_dev_attr_groups[];
  int hda_widget_sysfs_init(struct hdac_device *codec);
9780ded39   Takashi Iwai   ALSA: hda: Avoid ...
30
31
  int hda_widget_sysfs_reinit(struct hdac_device *codec, hda_nid_t start_nid,
  			    int num_nodes);
3256be653   Takashi Iwai   ALSA: hda - Add w...
32
  void hda_widget_sysfs_exit(struct hdac_device *codec);
53eff75e5   Takashi Iwai   ALSA: hda: Drop e...
33
34
35
  int snd_hdac_bus_add_device(struct hdac_bus *bus, struct hdac_device *codec);
  void snd_hdac_bus_remove_device(struct hdac_bus *bus,
  				struct hdac_device *codec);
ddf7cb83b   Takashi Iwai   ALSA: hda: Unexpo...
36
37
  int snd_hdac_exec_verb(struct hdac_device *codec, unsigned int cmd,
  		       unsigned int flags, unsigned int *res);
7639a06c2   Takashi Iwai   ALSA: hda - Move ...
38
  #endif /* __HDAC_LOCAL_H */