blob: 896ba142e8bc05dd7d2ecd8c7156ad9e8e15342e [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Takashi Iwai7639a062015-03-03 10:07:24 +01002/*
3 * Local helper macros and functions for HD-audio core drivers
4 */
5
6#ifndef __HDAC_LOCAL_H
7#define __HDAC_LOCAL_H
8
9#define get_wcaps(codec, nid) \
10 snd_hdac_read_parm(codec, nid, AC_PAR_AUDIO_WIDGET_CAP)
11
12/* get the widget type from widget capability bits */
13static inline int get_wcaps_type(unsigned int wcaps)
14{
15 if (!wcaps)
16 return -1; /* invalid type */
17 return (wcaps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
18}
19
Subhransu S. Prusty9fc7c862016-04-14 10:07:29 +053020static inline unsigned int get_wcaps_channels(u32 wcaps)
21{
22 unsigned int chans;
23
24 chans = (wcaps & AC_WCAP_CHAN_CNT_EXT) >> 13;
25 chans = (chans + 1) * 2;
26
27 return chans;
28}
29
Takashi Iwai3256be62015-02-24 14:59:42 +010030extern const struct attribute_group *hdac_dev_attr_groups[];
31int hda_widget_sysfs_init(struct hdac_device *codec);
Takashi Iwai9780ded2017-10-18 15:51:59 +020032int hda_widget_sysfs_reinit(struct hdac_device *codec, hda_nid_t start_nid,
33 int num_nodes);
Takashi Iwai3256be62015-02-24 14:59:42 +010034void hda_widget_sysfs_exit(struct hdac_device *codec);
35
Takashi Iwai53eff752019-08-14 18:27:08 +020036int snd_hdac_bus_add_device(struct hdac_bus *bus, struct hdac_device *codec);
37void snd_hdac_bus_remove_device(struct hdac_bus *bus,
38 struct hdac_device *codec);
Takashi Iwaib9f2d352020-05-16 08:28:54 +020039void snd_hdac_bus_queue_event(struct hdac_bus *bus, u32 res, u32 res_ex);
40int snd_hdac_bus_exec_verb(struct hdac_bus *bus, unsigned int addr,
41 unsigned int cmd, unsigned int *res);
Takashi Iwai53eff752019-08-14 18:27:08 +020042
Takashi Iwaiddf7cb82019-08-14 19:59:44 +020043int snd_hdac_exec_verb(struct hdac_device *codec, unsigned int cmd,
44 unsigned int flags, unsigned int *res);
45
Takashi Iwai7639a062015-03-03 10:07:24 +010046#endif /* __HDAC_LOCAL_H */