Lines Matching refs:codec

109 int snd_hdac_device_register(struct hdac_device *codec);
110 void snd_hdac_device_unregister(struct hdac_device *codec);
111 int snd_hdac_device_set_chip_name(struct hdac_device *codec, const char *name);
114 int snd_hdac_refresh_widgets(struct hdac_device *codec);
115 int snd_hdac_refresh_widget_sysfs(struct hdac_device *codec);
117 unsigned int snd_hdac_make_cmd(struct hdac_device *codec, hda_nid_t nid,
119 int snd_hdac_exec_verb(struct hdac_device *codec, unsigned int cmd,
121 int snd_hdac_read(struct hdac_device *codec, hda_nid_t nid,
123 int _snd_hdac_read_parm(struct hdac_device *codec, hda_nid_t nid, int parm,
125 int snd_hdac_read_parm_uncached(struct hdac_device *codec, hda_nid_t nid,
127 int snd_hdac_override_parm(struct hdac_device *codec, hda_nid_t nid,
129 int snd_hdac_get_connections(struct hdac_device *codec, hda_nid_t nid,
131 int snd_hdac_get_sub_nodes(struct hdac_device *codec, hda_nid_t nid,
138 int snd_hdac_query_supported_pcm(struct hdac_device *codec, hda_nid_t nid,
140 bool snd_hdac_is_supported_format(struct hdac_device *codec, hda_nid_t nid,
158 static inline int snd_hdac_read_parm(struct hdac_device *codec, hda_nid_t nid, in snd_hdac_read_parm() argument
163 return _snd_hdac_read_parm(codec, nid, parm, &val) < 0 ? -1 : val; in snd_hdac_read_parm()
167 int snd_hdac_power_up(struct hdac_device *codec);
168 int snd_hdac_power_down(struct hdac_device *codec);
169 int snd_hdac_power_up_pm(struct hdac_device *codec);
170 int snd_hdac_power_down_pm(struct hdac_device *codec);
172 static inline int snd_hdac_power_up(struct hdac_device *codec) { return 0; } in snd_hdac_power_up() argument
173 static inline int snd_hdac_power_down(struct hdac_device *codec) { return 0; } in snd_hdac_power_down() argument
174 static inline int snd_hdac_power_up_pm(struct hdac_device *codec) { return 0; } in snd_hdac_power_up_pm() argument
175 static inline int snd_hdac_power_down_pm(struct hdac_device *codec) { return 0; } in snd_hdac_power_down_pm() argument
319 int snd_hdac_bus_add_device(struct hdac_bus *bus, struct hdac_device *codec);
321 struct hdac_device *codec);
323 static inline void snd_hdac_codec_link_up(struct hdac_device *codec) in snd_hdac_codec_link_up() argument
325 set_bit(codec->addr, &codec->bus->codec_powered); in snd_hdac_codec_link_up()
328 static inline void snd_hdac_codec_link_down(struct hdac_device *codec) in snd_hdac_codec_link_down() argument
330 clear_bit(codec->addr, &codec->bus->codec_powered); in snd_hdac_codec_link_down()
336 int snd_hdac_link_power(struct hdac_device *codec, bool enable);