2 * HD-audio codec driver binding
3 * Copyright (c) Takashi Iwai <tiwai@suse.de>
6 #include <linux/init.h>
7 #include <linux/slab.h>
8 #include <linux/mutex.h>
9 #include <linux/module.h>
10 #include <linux/export.h>
12 #include <linux/pm_runtime.h>
13 #include <sound/core.h>
14 #include "hda_codec.h"
15 #include "hda_local.h"
18 * find a matching codec id
20 static int hda_codec_match(struct hdac_device
*dev
, struct hdac_driver
*drv
)
22 struct hda_codec
*codec
= container_of(dev
, struct hda_codec
, core
);
23 struct hda_codec_driver
*driver
=
24 container_of(drv
, struct hda_codec_driver
, core
);
25 const struct hda_device_id
*list
;
26 /* check probe_id instead of vendor_id if set */
27 u32 id
= codec
->probe_id
? codec
->probe_id
: codec
->core
.vendor_id
;
28 u32 rev_id
= codec
->core
.revision_id
;
30 for (list
= driver
->id
; list
->vendor_id
; list
++) {
31 if (list
->vendor_id
== id
&&
32 (!list
->rev_id
|| list
->rev_id
== rev_id
)) {
40 /* process an unsolicited event */
41 static void hda_codec_unsol_event(struct hdac_device
*dev
, unsigned int ev
)
43 struct hda_codec
*codec
= container_of(dev
, struct hda_codec
, core
);
45 if (codec
->patch_ops
.unsol_event
)
46 codec
->patch_ops
.unsol_event(codec
, ev
);
50 * snd_hda_codec_set_name - set the codec name
51 * @codec: the HDA codec
52 * @name: name string to set
54 int snd_hda_codec_set_name(struct hda_codec
*codec
, const char *name
)
60 err
= snd_hdac_device_set_chip_name(&codec
->core
, name
);
64 /* update the mixer name */
65 if (!*codec
->card
->mixername
||
66 codec
->bus
->mixer_assigned
>= codec
->core
.addr
) {
67 snprintf(codec
->card
->mixername
,
68 sizeof(codec
->card
->mixername
), "%s %s",
69 codec
->core
.vendor_name
, codec
->core
.chip_name
);
70 codec
->bus
->mixer_assigned
= codec
->core
.addr
;
75 EXPORT_SYMBOL_GPL(snd_hda_codec_set_name
);
77 static int hda_codec_driver_probe(struct device
*dev
)
79 struct hda_codec
*codec
= dev_to_hda_codec(dev
);
80 struct module
*owner
= dev
->driver
->owner
;
81 hda_codec_patch_t patch
;
84 if (WARN_ON(!codec
->preset
))
87 err
= snd_hda_codec_set_name(codec
, codec
->preset
->name
);
90 err
= snd_hdac_regmap_init(&codec
->core
);
94 if (!try_module_get(owner
)) {
99 patch
= (hda_codec_patch_t
)codec
->preset
->driver_data
;
106 err
= snd_hda_codec_build_pcms(codec
);
109 err
= snd_hda_codec_build_controls(codec
);
112 if (codec
->card
->registered
) {
113 err
= snd_card_register(codec
->card
);
116 snd_hda_codec_register(codec
);
119 codec
->core
.lazy_cache
= true;
126 snd_hda_codec_cleanup_for_unbind(codec
);
130 static int hda_codec_driver_remove(struct device
*dev
)
132 struct hda_codec
*codec
= dev_to_hda_codec(dev
);
134 if (codec
->patch_ops
.free
)
135 codec
->patch_ops
.free(codec
);
136 snd_hda_codec_cleanup_for_unbind(codec
);
137 module_put(dev
->driver
->owner
);
141 static void hda_codec_driver_shutdown(struct device
*dev
)
143 struct hda_codec
*codec
= dev_to_hda_codec(dev
);
145 if (!pm_runtime_suspended(dev
) && codec
->patch_ops
.reboot_notify
)
146 codec
->patch_ops
.reboot_notify(codec
);
149 int __hda_codec_driver_register(struct hda_codec_driver
*drv
, const char *name
,
150 struct module
*owner
)
152 drv
->core
.driver
.name
= name
;
153 drv
->core
.driver
.owner
= owner
;
154 drv
->core
.driver
.bus
= &snd_hda_bus_type
;
155 drv
->core
.driver
.probe
= hda_codec_driver_probe
;
156 drv
->core
.driver
.remove
= hda_codec_driver_remove
;
157 drv
->core
.driver
.shutdown
= hda_codec_driver_shutdown
;
158 drv
->core
.driver
.pm
= &hda_codec_driver_pm
;
159 drv
->core
.type
= HDA_DEV_LEGACY
;
160 drv
->core
.match
= hda_codec_match
;
161 drv
->core
.unsol_event
= hda_codec_unsol_event
;
162 return driver_register(&drv
->core
.driver
);
164 EXPORT_SYMBOL_GPL(__hda_codec_driver_register
);
166 void hda_codec_driver_unregister(struct hda_codec_driver
*drv
)
168 driver_unregister(&drv
->core
.driver
);
170 EXPORT_SYMBOL_GPL(hda_codec_driver_unregister
);
172 static inline bool codec_probed(struct hda_codec
*codec
)
174 return device_attach(hda_codec_dev(codec
)) > 0 && codec
->preset
;
177 /* try to auto-load codec module */
178 static void request_codec_module(struct hda_codec
*codec
)
182 const char *mod
= NULL
;
184 switch (codec
->probe_id
) {
185 case HDA_CODEC_ID_GENERIC_HDMI
:
186 #if IS_MODULE(CONFIG_SND_HDA_CODEC_HDMI)
187 mod
= "snd-hda-codec-hdmi";
190 case HDA_CODEC_ID_GENERIC
:
191 #if IS_MODULE(CONFIG_SND_HDA_GENERIC)
192 mod
= "snd-hda-codec-generic";
196 snd_hdac_codec_modalias(&codec
->core
, modalias
, sizeof(modalias
));
206 /* try to auto-load and bind the codec module */
207 static void codec_bind_module(struct hda_codec
*codec
)
210 request_codec_module(codec
);
211 if (codec_probed(codec
))
216 #if IS_ENABLED(CONFIG_SND_HDA_CODEC_HDMI)
217 /* if all audio out widgets are digital, let's assume the codec as a HDMI/DP */
218 static bool is_likely_hdmi_codec(struct hda_codec
*codec
)
222 for_each_hda_codec_node(nid
, codec
) {
223 unsigned int wcaps
= get_wcaps(codec
, nid
);
224 switch (get_wcaps_type(wcaps
)) {
226 return false; /* HDMI parser supports only HDMI out */
228 if (!(wcaps
& AC_WCAP_DIGITAL
))
236 /* no HDMI codec parser support */
237 #define is_likely_hdmi_codec(codec) false
238 #endif /* CONFIG_SND_HDA_CODEC_HDMI */
240 static int codec_bind_generic(struct hda_codec
*codec
)
245 if (is_likely_hdmi_codec(codec
)) {
246 codec
->probe_id
= HDA_CODEC_ID_GENERIC_HDMI
;
247 request_codec_module(codec
);
248 if (codec_probed(codec
))
252 codec
->probe_id
= HDA_CODEC_ID_GENERIC
;
253 request_codec_module(codec
);
254 if (codec_probed(codec
))
259 #if IS_ENABLED(CONFIG_SND_HDA_GENERIC)
260 #define is_generic_config(codec) \
261 (codec->modelname && !strcmp(codec->modelname, "generic"))
263 #define is_generic_config(codec) 0
267 * snd_hda_codec_configure - (Re-)configure the HD-audio codec
268 * @codec: the HDA codec
270 * Start parsing of the given codec tree and (re-)initialize the whole
273 * Returns 0 if successful or a negative error code.
275 int snd_hda_codec_configure(struct hda_codec
*codec
)
279 if (is_generic_config(codec
))
280 codec
->probe_id
= HDA_CODEC_ID_GENERIC
;
284 err
= snd_hdac_device_register(&codec
->core
);
289 codec_bind_module(codec
);
290 if (!codec
->preset
) {
291 err
= codec_bind_generic(codec
);
293 codec_err(codec
, "Unable to bind the codec\n");
301 snd_hdac_device_unregister(&codec
->core
);
304 EXPORT_SYMBOL_GPL(snd_hda_codec_configure
);