• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * HD-audio codec driver binding
3  * Copyright (c) Takashi Iwai <tiwai@suse.de>
4  */
5 
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>
11 #include <linux/pm.h>
12 #include <linux/pm_runtime.h>
13 #include <sound/core.h>
14 #include "hda_codec.h"
15 #include "hda_local.h"
16 
17 /*
18  * find a matching codec id
19  */
hda_codec_match(struct hdac_device * dev,struct hdac_driver * drv)20 static int hda_codec_match(struct hdac_device *dev, struct hdac_driver *drv)
21 {
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;
29 
30 	for (list = driver->id; list->vendor_id; list++) {
31 		if (list->vendor_id == id &&
32 		    (!list->rev_id || list->rev_id == rev_id)) {
33 			codec->preset = list;
34 			return 1;
35 		}
36 	}
37 	return 0;
38 }
39 
40 /* process an unsolicited event */
hda_codec_unsol_event(struct hdac_device * dev,unsigned int ev)41 static void hda_codec_unsol_event(struct hdac_device *dev, unsigned int ev)
42 {
43 	struct hda_codec *codec = container_of(dev, struct hda_codec, core);
44 
45 	/* ignore unsol events during shutdown */
46 	if (codec->bus->shutdown)
47 		return;
48 
49 	/* ignore unsol events during system suspend/resume */
50 	if (codec->core.dev.power.power_state.event != PM_EVENT_ON)
51 		return;
52 
53 	if (codec->patch_ops.unsol_event)
54 		codec->patch_ops.unsol_event(codec, ev);
55 }
56 
57 /**
58  * snd_hda_codec_set_name - set the codec name
59  * @codec: the HDA codec
60  * @name: name string to set
61  */
snd_hda_codec_set_name(struct hda_codec * codec,const char * name)62 int snd_hda_codec_set_name(struct hda_codec *codec, const char *name)
63 {
64 	int err;
65 
66 	if (!name)
67 		return 0;
68 	err = snd_hdac_device_set_chip_name(&codec->core, name);
69 	if (err < 0)
70 		return err;
71 
72 	/* update the mixer name */
73 	if (!*codec->card->mixername ||
74 	    codec->bus->mixer_assigned >= codec->core.addr) {
75 		snprintf(codec->card->mixername,
76 			 sizeof(codec->card->mixername), "%s %s",
77 			 codec->core.vendor_name, codec->core.chip_name);
78 		codec->bus->mixer_assigned = codec->core.addr;
79 	}
80 
81 	return 0;
82 }
83 EXPORT_SYMBOL_GPL(snd_hda_codec_set_name);
84 
hda_codec_driver_probe(struct device * dev)85 static int hda_codec_driver_probe(struct device *dev)
86 {
87 	struct hda_codec *codec = dev_to_hda_codec(dev);
88 	struct module *owner = dev->driver->owner;
89 	hda_codec_patch_t patch;
90 	int err;
91 
92 	if (WARN_ON(!codec->preset))
93 		return -EINVAL;
94 
95 	err = snd_hda_codec_set_name(codec, codec->preset->name);
96 	if (err < 0)
97 		goto error;
98 	err = snd_hdac_regmap_init(&codec->core);
99 	if (err < 0)
100 		goto error;
101 
102 	if (!try_module_get(owner)) {
103 		err = -EINVAL;
104 		goto error;
105 	}
106 
107 	patch = (hda_codec_patch_t)codec->preset->driver_data;
108 	if (patch) {
109 		err = patch(codec);
110 		if (err < 0)
111 			goto error_module;
112 	}
113 
114 	err = snd_hda_codec_build_pcms(codec);
115 	if (err < 0)
116 		goto error_module;
117 	err = snd_hda_codec_build_controls(codec);
118 	if (err < 0)
119 		goto error_module;
120 	/* only register after the bus probe finished; otherwise it's racy */
121 	if (!codec->bus->bus_probing && codec->card->registered) {
122 		err = snd_card_register(codec->card);
123 		if (err < 0)
124 			goto error_module;
125 		snd_hda_codec_register(codec);
126 	}
127 
128 	codec->core.lazy_cache = true;
129 	return 0;
130 
131  error_module:
132 	module_put(owner);
133 
134  error:
135 	snd_hda_codec_cleanup_for_unbind(codec);
136 	return err;
137 }
138 
hda_codec_driver_remove(struct device * dev)139 static int hda_codec_driver_remove(struct device *dev)
140 {
141 	struct hda_codec *codec = dev_to_hda_codec(dev);
142 
143 	if (codec->patch_ops.free)
144 		codec->patch_ops.free(codec);
145 	snd_hda_codec_cleanup_for_unbind(codec);
146 	module_put(dev->driver->owner);
147 	return 0;
148 }
149 
hda_codec_driver_shutdown(struct device * dev)150 static void hda_codec_driver_shutdown(struct device *dev)
151 {
152 	struct hda_codec *codec = dev_to_hda_codec(dev);
153 
154 	if (!pm_runtime_suspended(dev) && codec->patch_ops.reboot_notify)
155 		codec->patch_ops.reboot_notify(codec);
156 }
157 
__hda_codec_driver_register(struct hda_codec_driver * drv,const char * name,struct module * owner)158 int __hda_codec_driver_register(struct hda_codec_driver *drv, const char *name,
159 			       struct module *owner)
160 {
161 	drv->core.driver.name = name;
162 	drv->core.driver.owner = owner;
163 	drv->core.driver.bus = &snd_hda_bus_type;
164 	drv->core.driver.probe = hda_codec_driver_probe;
165 	drv->core.driver.remove = hda_codec_driver_remove;
166 	drv->core.driver.shutdown = hda_codec_driver_shutdown;
167 	drv->core.driver.pm = &hda_codec_driver_pm;
168 	drv->core.type = HDA_DEV_LEGACY;
169 	drv->core.match = hda_codec_match;
170 	drv->core.unsol_event = hda_codec_unsol_event;
171 	return driver_register(&drv->core.driver);
172 }
173 EXPORT_SYMBOL_GPL(__hda_codec_driver_register);
174 
hda_codec_driver_unregister(struct hda_codec_driver * drv)175 void hda_codec_driver_unregister(struct hda_codec_driver *drv)
176 {
177 	driver_unregister(&drv->core.driver);
178 }
179 EXPORT_SYMBOL_GPL(hda_codec_driver_unregister);
180 
codec_probed(struct hda_codec * codec)181 static inline bool codec_probed(struct hda_codec *codec)
182 {
183 	return device_attach(hda_codec_dev(codec)) > 0 && codec->preset;
184 }
185 
186 /* try to auto-load codec module */
request_codec_module(struct hda_codec * codec)187 static void request_codec_module(struct hda_codec *codec)
188 {
189 #ifdef MODULE
190 	char modalias[32];
191 	const char *mod = NULL;
192 
193 	switch (codec->probe_id) {
194 	case HDA_CODEC_ID_GENERIC_HDMI:
195 #if IS_MODULE(CONFIG_SND_HDA_CODEC_HDMI)
196 		mod = "snd-hda-codec-hdmi";
197 #endif
198 		break;
199 	case HDA_CODEC_ID_GENERIC:
200 #if IS_MODULE(CONFIG_SND_HDA_GENERIC)
201 		mod = "snd-hda-codec-generic";
202 #endif
203 		break;
204 	default:
205 		snd_hdac_codec_modalias(&codec->core, modalias, sizeof(modalias));
206 		mod = modalias;
207 		break;
208 	}
209 
210 	if (mod)
211 		request_module(mod);
212 #endif /* MODULE */
213 }
214 
215 /* try to auto-load and bind the codec module */
codec_bind_module(struct hda_codec * codec)216 static void codec_bind_module(struct hda_codec *codec)
217 {
218 #ifdef MODULE
219 	request_codec_module(codec);
220 	if (codec_probed(codec))
221 		return;
222 #endif
223 }
224 
225 #if IS_ENABLED(CONFIG_SND_HDA_CODEC_HDMI)
226 /* if all audio out widgets are digital, let's assume the codec as a HDMI/DP */
is_likely_hdmi_codec(struct hda_codec * codec)227 static bool is_likely_hdmi_codec(struct hda_codec *codec)
228 {
229 	hda_nid_t nid;
230 
231 	for_each_hda_codec_node(nid, codec) {
232 		unsigned int wcaps = get_wcaps(codec, nid);
233 		switch (get_wcaps_type(wcaps)) {
234 		case AC_WID_AUD_IN:
235 			return false; /* HDMI parser supports only HDMI out */
236 		case AC_WID_AUD_OUT:
237 			if (!(wcaps & AC_WCAP_DIGITAL))
238 				return false;
239 			break;
240 		}
241 	}
242 	return true;
243 }
244 #else
245 /* no HDMI codec parser support */
246 #define is_likely_hdmi_codec(codec)	false
247 #endif /* CONFIG_SND_HDA_CODEC_HDMI */
248 
codec_bind_generic(struct hda_codec * codec)249 static int codec_bind_generic(struct hda_codec *codec)
250 {
251 	if (codec->probe_id)
252 		return -ENODEV;
253 
254 	if (is_likely_hdmi_codec(codec)) {
255 		codec->probe_id = HDA_CODEC_ID_GENERIC_HDMI;
256 		request_codec_module(codec);
257 		if (codec_probed(codec))
258 			return 0;
259 	}
260 
261 	codec->probe_id = HDA_CODEC_ID_GENERIC;
262 	request_codec_module(codec);
263 	if (codec_probed(codec))
264 		return 0;
265 	return -ENODEV;
266 }
267 
268 #if IS_ENABLED(CONFIG_SND_HDA_GENERIC)
269 #define is_generic_config(codec) \
270 	(codec->modelname && !strcmp(codec->modelname, "generic"))
271 #else
272 #define is_generic_config(codec)	0
273 #endif
274 
275 /**
276  * snd_hda_codec_configure - (Re-)configure the HD-audio codec
277  * @codec: the HDA codec
278  *
279  * Start parsing of the given codec tree and (re-)initialize the whole
280  * patch instance.
281  *
282  * Returns 0 if successful or a negative error code.
283  */
snd_hda_codec_configure(struct hda_codec * codec)284 int snd_hda_codec_configure(struct hda_codec *codec)
285 {
286 	int err;
287 
288 	if (is_generic_config(codec))
289 		codec->probe_id = HDA_CODEC_ID_GENERIC;
290 	else
291 		codec->probe_id = 0;
292 
293 	err = snd_hdac_device_register(&codec->core);
294 	if (err < 0)
295 		return err;
296 
297 	if (!codec->preset)
298 		codec_bind_module(codec);
299 	if (!codec->preset) {
300 		err = codec_bind_generic(codec);
301 		if (err < 0) {
302 			codec_err(codec, "Unable to bind the codec\n");
303 			goto error;
304 		}
305 	}
306 
307 	return 0;
308 
309  error:
310 	snd_hdac_device_unregister(&codec->core);
311 	return err;
312 }
313 EXPORT_SYMBOL_GPL(snd_hda_codec_configure);
314