local.h 791 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Local helper macros and functions for HD-audio core drivers
  3. */
  4. #ifndef __HDAC_LOCAL_H
  5. #define __HDAC_LOCAL_H
  6. #define get_wcaps(codec, nid) \
  7. snd_hdac_read_parm(codec, nid, AC_PAR_AUDIO_WIDGET_CAP)
  8. /* get the widget type from widget capability bits */
  9. static inline int get_wcaps_type(unsigned int wcaps)
  10. {
  11. if (!wcaps)
  12. return -1; /* invalid type */
  13. return (wcaps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
  14. }
  15. static inline unsigned int get_wcaps_channels(u32 wcaps)
  16. {
  17. unsigned int chans;
  18. chans = (wcaps & AC_WCAP_CHAN_CNT_EXT) >> 13;
  19. chans = (chans + 1) * 2;
  20. return chans;
  21. }
  22. extern const struct attribute_group *hdac_dev_attr_groups[];
  23. int hda_widget_sysfs_init(struct hdac_device *codec);
  24. void hda_widget_sysfs_exit(struct hdac_device *codec);
  25. #endif /* __HDAC_LOCAL_H */