1 // SPDX-License-Identifier: GPL-2.0-only
3 * HD-audio codec driver binding
4 * Copyright (c) Takashi Iwai <tiwai@suse.de>
7 #include <linux/init.h>
8 #include <linux/slab.h>
9 #include <linux/mutex.h>
10 #include <linux/module.h>
11 #include <linux/export.h>
13 #include <sound/core.h>
14 #include <sound/hda_codec.h>
15 #include "hda_local.h"
19 * find a matching codec id
21 static int hda_codec_match(struct hdac_device
*dev
, struct hdac_driver
*drv
)
23 struct hda_codec
*codec
= container_of(dev
, struct hda_codec
, core
);
24 struct hda_codec_driver
*driver
=
25 container_of(drv
, struct hda_codec_driver
, core
);
26 const struct hda_device_id
*list
;
27 /* check probe_id instead of vendor_id if set */
28 u32 id
= codec
->probe_id
? codec
->probe_id
: codec
->core
.vendor_id
;
29 u32 rev_id
= codec
->core
.revision_id
;
31 for (list
= driver
->id
; list
->vendor_id
; list
++) {
32 if (list
->vendor_id
== id
&&
33 (!list
->rev_id
|| list
->rev_id
== rev_id
)) {
41 /* process an unsolicited event */
42 static void hda_codec_unsol_event(struct hdac_device
*dev
, unsigned int ev
)
44 struct hda_codec
*codec
= container_of(dev
, struct hda_codec
, core
);
46 /* ignore unsol events during shutdown */
47 if (codec
->bus
->shutdown
)
50 /* ignore unsol events during system suspend/resume */
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
61 * @name: name string to set
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
);
73 /* update the mixer 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
;
84 EXPORT_SYMBOL_GPL(snd_hda_codec_set_name
);
86 static int hda_codec_driver_probe(struct device
*dev
)
88 struct hda_codec
*codec
= dev_to_hda_codec(dev
);
89 struct module
*owner
= dev
->driver
->owner
;
90 hda_codec_patch_t patch
;
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
);
109 if (!try_module_get(owner
)) {
114 patch
= (hda_codec_patch_t
)codec
->preset
->driver_data
;
118 goto error_module_put
;
121 err
= snd_hda_codec_build_pcms(codec
);
124 err
= snd_hda_codec_build_controls(codec
);
127 /* only register after the bus probe finished; otherwise it's racy */
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
;
150 static int hda_codec_driver_remove(struct device
*dev
)
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 snd_hda_codec_disconnect_pcms(codec
);
161 snd_hda_jack_tbl_disconnect(codec
);
162 if (!refcount_dec_and_test(&codec
->pcm_ref
))
163 wait_event(codec
->remove_sleep
, !refcount_read(&codec
->pcm_ref
));
164 snd_power_sync_ref(codec
->bus
->card
);
166 if (codec
->patch_ops
.free
)
167 codec
->patch_ops
.free(codec
);
168 snd_hda_codec_cleanup_for_unbind(codec
);
169 codec
->preset
= NULL
;
170 module_put(dev
->driver
->owner
);
174 static void hda_codec_driver_shutdown(struct device
*dev
)
176 snd_hda_codec_shutdown(dev_to_hda_codec(dev
));
179 int __hda_codec_driver_register(struct hda_codec_driver
*drv
, const char *name
,
180 struct module
*owner
)
182 drv
->core
.driver
.name
= name
;
183 drv
->core
.driver
.owner
= owner
;
184 drv
->core
.driver
.bus
= &snd_hda_bus_type
;
185 drv
->core
.driver
.probe
= hda_codec_driver_probe
;
186 drv
->core
.driver
.remove
= hda_codec_driver_remove
;
187 drv
->core
.driver
.shutdown
= hda_codec_driver_shutdown
;
188 drv
->core
.driver
.pm
= &hda_codec_driver_pm
;
189 drv
->core
.type
= HDA_DEV_LEGACY
;
190 drv
->core
.match
= hda_codec_match
;
191 drv
->core
.unsol_event
= hda_codec_unsol_event
;
192 return driver_register(&drv
->core
.driver
);
194 EXPORT_SYMBOL_GPL(__hda_codec_driver_register
);
196 void hda_codec_driver_unregister(struct hda_codec_driver
*drv
)
198 driver_unregister(&drv
->core
.driver
);
200 EXPORT_SYMBOL_GPL(hda_codec_driver_unregister
);
202 static inline bool codec_probed(struct hda_codec
*codec
)
204 return device_attach(hda_codec_dev(codec
)) > 0 && codec
->preset
;
207 /* try to auto-load codec module */
208 static void request_codec_module(struct hda_codec
*codec
)
212 const char *mod
= NULL
;
214 switch (codec
->probe_id
) {
215 case HDA_CODEC_ID_GENERIC_HDMI
:
216 #if IS_MODULE(CONFIG_SND_HDA_CODEC_HDMI)
217 mod
= "snd-hda-codec-hdmi";
220 case HDA_CODEC_ID_GENERIC
:
221 #if IS_MODULE(CONFIG_SND_HDA_GENERIC)
222 mod
= "snd-hda-codec-generic";
226 snd_hdac_codec_modalias(&codec
->core
, modalias
, sizeof(modalias
));
236 /* try to auto-load and bind the codec module */
237 static void codec_bind_module(struct hda_codec
*codec
)
240 request_codec_module(codec
);
241 if (codec_probed(codec
))
246 #if IS_ENABLED(CONFIG_SND_HDA_CODEC_HDMI)
247 /* if all audio out widgets are digital, let's assume the codec as a HDMI/DP */
248 static bool is_likely_hdmi_codec(struct hda_codec
*codec
)
253 * For ASoC users, if snd_hda_hdmi_codec module is denylisted and any
254 * event causes i915 enumeration to fail, ->wcaps remains uninitialized.
259 for_each_hda_codec_node(nid
, codec
) {
260 unsigned int wcaps
= get_wcaps(codec
, nid
);
261 switch (get_wcaps_type(wcaps
)) {
263 return false; /* HDMI parser supports only HDMI out */
265 if (!(wcaps
& AC_WCAP_DIGITAL
))
273 /* no HDMI codec parser support */
274 #define is_likely_hdmi_codec(codec) false
275 #endif /* CONFIG_SND_HDA_CODEC_HDMI */
277 static int codec_bind_generic(struct hda_codec
*codec
)
282 if (is_likely_hdmi_codec(codec
)) {
283 codec
->probe_id
= HDA_CODEC_ID_GENERIC_HDMI
;
284 request_codec_module(codec
);
285 if (codec_probed(codec
))
289 codec
->probe_id
= HDA_CODEC_ID_GENERIC
;
290 request_codec_module(codec
);
291 if (codec_probed(codec
))
296 #if IS_ENABLED(CONFIG_SND_HDA_GENERIC)
297 #define is_generic_config(codec) \
298 (codec->modelname && !strcmp(codec->modelname, "generic"))
300 #define is_generic_config(codec) 0
304 * snd_hda_codec_configure - (Re-)configure the HD-audio codec
305 * @codec: the HDA codec
307 * Start parsing of the given codec tree and (re-)initialize the whole
310 * Returns 0 if successful or a negative error code.
312 int snd_hda_codec_configure(struct hda_codec
*codec
)
316 if (codec
->configured
)
319 if (is_generic_config(codec
))
320 codec
->probe_id
= HDA_CODEC_ID_GENERIC
;
324 if (!device_is_registered(&codec
->core
.dev
)) {
325 err
= snd_hdac_device_register(&codec
->core
);
331 codec_bind_module(codec
);
332 if (!codec
->preset
) {
333 err
= codec_bind_generic(codec
);
335 codec_dbg(codec
, "Unable to bind the codec\n");
340 codec
->configured
= 1;
343 EXPORT_SYMBOL_GPL(snd_hda_codec_configure
);