Lines Matching refs:codec
3 * HD-audio codec driver binding
19 * find a matching codec id
23 struct hda_codec *codec = container_of(dev, struct hda_codec, core);
28 u32 id = codec->probe_id ? codec->probe_id : codec->core.vendor_id;
29 u32 rev_id = codec->core.revision_id;
34 codec->preset = list;
44 struct hda_codec *codec = container_of(dev, struct hda_codec, core);
47 if (codec->bus->shutdown)
51 if (codec->core.dev.power.power_state.event != PM_EVENT_ON)
54 if (codec->patch_ops.unsol_event)
55 codec->patch_ops.unsol_event(codec, ev);
59 * snd_hda_codec_set_name - set the codec name
60 * @codec: the HDA codec
63 int snd_hda_codec_set_name(struct hda_codec *codec, const char *name)
69 err = snd_hdac_device_set_chip_name(&codec->core, name);
74 if (!*codec->card->mixername ||
75 codec->bus->mixer_assigned >= codec->core.addr) {
76 snprintf(codec->card->mixername,
77 sizeof(codec->card->mixername), "%s %s",
78 codec->core.vendor_name, codec->core.chip_name);
79 codec->bus->mixer_assigned = codec->core.addr;
88 struct hda_codec *codec = dev_to_hda_codec(dev);
93 if (codec->bus->core.ext_ops) {
94 if (WARN_ON(!codec->bus->core.ext_ops->hdev_attach))
96 return codec->bus->core.ext_ops->hdev_attach(&codec->core);
99 if (WARN_ON(!codec->preset))
102 err = snd_hda_codec_set_name(codec, codec->preset->name);
105 err = snd_hdac_regmap_init(&codec->core);
114 patch = (hda_codec_patch_t)codec->preset->driver_data;
116 err = patch(codec);
121 err = snd_hda_codec_build_pcms(codec);
124 err = snd_hda_codec_build_controls(codec);
128 if (!codec->bus->bus_probing && codec->card->registered) {
129 err = snd_card_register(codec->card);
132 snd_hda_codec_register(codec);
135 codec->core.lazy_cache = true;
139 if (codec->patch_ops.free)
140 codec->patch_ops.free(codec);
145 snd_hda_codec_cleanup_for_unbind(codec);
146 codec->preset = NULL;
152 struct hda_codec *codec = dev_to_hda_codec(dev);
154 if (codec->bus->core.ext_ops) {
155 if (WARN_ON(!codec->bus->core.ext_ops->hdev_detach))
157 return codec->bus->core.ext_ops->hdev_detach(&codec->core);
160 if (codec->patch_ops.free)
161 codec->patch_ops.free(codec);
162 snd_hda_codec_cleanup_for_unbind(codec);
163 codec->preset = NULL;
170 struct hda_codec *codec = dev_to_hda_codec(dev);
172 if (!pm_runtime_suspended(dev) && codec->patch_ops.reboot_notify)
173 codec->patch_ops.reboot_notify(codec);
199 static inline bool codec_probed(struct hda_codec *codec)
201 return device_attach(hda_codec_dev(codec)) > 0 && codec->preset;
204 /* try to auto-load codec module */
205 static void request_codec_module(struct hda_codec *codec)
211 switch (codec->probe_id) {
214 mod = "snd-hda-codec-hdmi";
219 mod = "snd-hda-codec-generic";
223 snd_hdac_codec_modalias(&codec->core, modalias, sizeof(modalias));
233 /* try to auto-load and bind the codec module */
234 static void codec_bind_module(struct hda_codec *codec)
237 request_codec_module(codec);
238 if (codec_probed(codec))
244 /* if all audio out widgets are digital, let's assume the codec as a HDMI/DP */
245 static bool is_likely_hdmi_codec(struct hda_codec *codec)
249 for_each_hda_codec_node(nid, codec) {
250 unsigned int wcaps = get_wcaps(codec, nid);
263 /* no HDMI codec parser support */
264 #define is_likely_hdmi_codec(codec) false
267 static int codec_bind_generic(struct hda_codec *codec)
269 if (codec->probe_id)
272 if (is_likely_hdmi_codec(codec)) {
273 codec->probe_id = HDA_CODEC_ID_GENERIC_HDMI;
274 request_codec_module(codec);
275 if (codec_probed(codec))
279 codec->probe_id = HDA_CODEC_ID_GENERIC;
280 request_codec_module(codec);
281 if (codec_probed(codec))
287 #define is_generic_config(codec) \
288 (codec->modelname && !strcmp(codec->modelname, "generic"))
290 #define is_generic_config(codec) 0
294 * snd_hda_codec_configure - (Re-)configure the HD-audio codec
295 * @codec: the HDA codec
297 * Start parsing of the given codec tree and (re-)initialize the whole
302 int snd_hda_codec_configure(struct hda_codec *codec)
306 if (codec->configured)
309 if (is_generic_config(codec))
310 codec->probe_id = HDA_CODEC_ID_GENERIC;
312 codec->probe_id = 0;
314 if (!device_is_registered(&codec->core.dev)) {
315 err = snd_hdac_device_register(&codec->core);
320 if (!codec->preset)
321 codec_bind_module(codec);
322 if (!codec->preset) {
323 err = codec_bind_generic(codec);
325 codec_dbg(codec, "Unable to bind the codec\n");
330 codec->configured = 1;