Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 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> |
Takashi Iwai | 59ed1ea | 2015-02-18 15:39:59 +0100 | [diff] [blame] | 11 | #include <linux/pm.h> |
Takashi Iwai | b2a0baf | 2015-03-05 17:21:32 +0100 | [diff] [blame] | 12 | #include <linux/pm_runtime.h> |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 13 | #include <sound/core.h> |
| 14 | #include "hda_codec.h" |
| 15 | #include "hda_local.h" |
| 16 | |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 17 | /* |
| 18 | * find a matching codec preset |
| 19 | */ |
Takashi Iwai | e3d280f | 2015-02-17 21:46:37 +0100 | [diff] [blame] | 20 | static int hda_codec_match(struct hdac_device *dev, struct hdac_driver *drv) |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 21 | { |
Takashi Iwai | e3d280f | 2015-02-17 21:46:37 +0100 | [diff] [blame] | 22 | struct hda_codec *codec = container_of(dev, struct hda_codec, core); |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 23 | struct hda_codec_driver *driver = |
Takashi Iwai | e3d280f | 2015-02-17 21:46:37 +0100 | [diff] [blame] | 24 | container_of(drv, struct hda_codec_driver, core); |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 25 | const struct hda_codec_preset *preset; |
| 26 | /* check probe_id instead of vendor_id if set */ |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 27 | u32 id = codec->probe_id ? codec->probe_id : codec->core.vendor_id; |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 28 | |
| 29 | for (preset = driver->preset; preset->id; preset++) { |
| 30 | u32 mask = preset->mask; |
| 31 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 32 | if (preset->afg && preset->afg != codec->core.afg) |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 33 | continue; |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 34 | if (preset->mfg && preset->mfg != codec->core.mfg) |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 35 | continue; |
| 36 | if (!mask) |
| 37 | mask = ~0; |
| 38 | if (preset->id == (id & mask) && |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 39 | (!preset->rev || preset->rev == codec->core.revision_id)) { |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 40 | codec->preset = preset; |
| 41 | return 1; |
| 42 | } |
| 43 | } |
| 44 | return 0; |
| 45 | } |
| 46 | |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 47 | /* process an unsolicited event */ |
| 48 | static void hda_codec_unsol_event(struct hdac_device *dev, unsigned int ev) |
| 49 | { |
| 50 | struct hda_codec *codec = container_of(dev, struct hda_codec, core); |
| 51 | |
| 52 | if (codec->patch_ops.unsol_event) |
| 53 | codec->patch_ops.unsol_event(codec, ev); |
| 54 | } |
| 55 | |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 56 | /* reset the codec name from the preset */ |
| 57 | static int codec_refresh_name(struct hda_codec *codec, const char *name) |
| 58 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 59 | if (name) { |
| 60 | kfree(codec->core.chip_name); |
| 61 | codec->core.chip_name = kstrdup(name, GFP_KERNEL); |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 62 | } |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 63 | return codec->core.chip_name ? 0 : -ENOMEM; |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | static int hda_codec_driver_probe(struct device *dev) |
| 67 | { |
| 68 | struct hda_codec *codec = dev_to_hda_codec(dev); |
| 69 | struct module *owner = dev->driver->owner; |
| 70 | int err; |
| 71 | |
| 72 | if (WARN_ON(!codec->preset)) |
| 73 | return -EINVAL; |
| 74 | |
| 75 | err = codec_refresh_name(codec, codec->preset->name); |
| 76 | if (err < 0) |
| 77 | goto error; |
| 78 | |
| 79 | if (!try_module_get(owner)) { |
| 80 | err = -EINVAL; |
| 81 | goto error; |
| 82 | } |
| 83 | |
| 84 | err = codec->preset->patch(codec); |
Takashi Iwai | bcd9655 | 2015-02-27 20:44:54 +0100 | [diff] [blame] | 85 | if (err < 0) |
| 86 | goto error_module; |
| 87 | |
| 88 | err = snd_hda_codec_build_pcms(codec); |
| 89 | if (err < 0) |
| 90 | goto error_module; |
| 91 | err = snd_hda_codec_build_controls(codec); |
| 92 | if (err < 0) |
| 93 | goto error_module; |
| 94 | if (codec->card->registered) { |
| 95 | err = snd_card_register(codec->card); |
| 96 | if (err < 0) |
| 97 | goto error_module; |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | return 0; |
| 101 | |
Takashi Iwai | bcd9655 | 2015-02-27 20:44:54 +0100 | [diff] [blame] | 102 | error_module: |
| 103 | module_put(owner); |
| 104 | |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 105 | error: |
Takashi Iwai | bcd9655 | 2015-02-27 20:44:54 +0100 | [diff] [blame] | 106 | snd_hda_codec_cleanup_for_unbind(codec); |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 107 | return err; |
| 108 | } |
| 109 | |
| 110 | static int hda_codec_driver_remove(struct device *dev) |
| 111 | { |
| 112 | struct hda_codec *codec = dev_to_hda_codec(dev); |
| 113 | |
| 114 | if (codec->patch_ops.free) |
| 115 | codec->patch_ops.free(codec); |
Takashi Iwai | 9a6246f | 2015-02-27 18:17:28 +0100 | [diff] [blame] | 116 | snd_hda_codec_cleanup_for_unbind(codec); |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 117 | module_put(dev->driver->owner); |
| 118 | return 0; |
| 119 | } |
| 120 | |
Takashi Iwai | b2a0baf | 2015-03-05 17:21:32 +0100 | [diff] [blame] | 121 | static void hda_codec_driver_shutdown(struct device *dev) |
| 122 | { |
| 123 | struct hda_codec *codec = dev_to_hda_codec(dev); |
| 124 | |
| 125 | if (!pm_runtime_suspended(dev) && codec->patch_ops.reboot_notify) |
| 126 | codec->patch_ops.reboot_notify(codec); |
| 127 | } |
| 128 | |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 129 | int __hda_codec_driver_register(struct hda_codec_driver *drv, const char *name, |
| 130 | struct module *owner) |
| 131 | { |
Takashi Iwai | e3d280f | 2015-02-17 21:46:37 +0100 | [diff] [blame] | 132 | drv->core.driver.name = name; |
| 133 | drv->core.driver.owner = owner; |
| 134 | drv->core.driver.bus = &snd_hda_bus_type; |
| 135 | drv->core.driver.probe = hda_codec_driver_probe; |
| 136 | drv->core.driver.remove = hda_codec_driver_remove; |
| 137 | drv->core.driver.shutdown = hda_codec_driver_shutdown; |
| 138 | drv->core.driver.pm = &hda_codec_driver_pm; |
| 139 | drv->core.type = HDA_DEV_LEGACY; |
| 140 | drv->core.match = hda_codec_match; |
Takashi Iwai | d068ebc | 2015-03-02 23:22:59 +0100 | [diff] [blame] | 141 | drv->core.unsol_event = hda_codec_unsol_event; |
Takashi Iwai | e3d280f | 2015-02-17 21:46:37 +0100 | [diff] [blame] | 142 | return driver_register(&drv->core.driver); |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 143 | } |
| 144 | EXPORT_SYMBOL_GPL(__hda_codec_driver_register); |
| 145 | |
| 146 | void hda_codec_driver_unregister(struct hda_codec_driver *drv) |
| 147 | { |
Takashi Iwai | e3d280f | 2015-02-17 21:46:37 +0100 | [diff] [blame] | 148 | driver_unregister(&drv->core.driver); |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 149 | } |
| 150 | EXPORT_SYMBOL_GPL(hda_codec_driver_unregister); |
| 151 | |
| 152 | static inline bool codec_probed(struct hda_codec *codec) |
| 153 | { |
| 154 | return device_attach(hda_codec_dev(codec)) > 0 && codec->preset; |
| 155 | } |
| 156 | |
| 157 | /* try to auto-load and bind the codec module */ |
| 158 | static void codec_bind_module(struct hda_codec *codec) |
| 159 | { |
| 160 | #ifdef MODULE |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 161 | request_module("snd-hda-codec-id:%08x", codec->core.vendor_id); |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 162 | if (codec_probed(codec)) |
| 163 | return; |
| 164 | request_module("snd-hda-codec-id:%04x*", |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 165 | (codec->core.vendor_id >> 16) & 0xffff); |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 166 | if (codec_probed(codec)) |
| 167 | return; |
| 168 | #endif |
| 169 | } |
| 170 | |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 171 | #if IS_ENABLED(CONFIG_SND_HDA_CODEC_HDMI) |
| 172 | /* if all audio out widgets are digital, let's assume the codec as a HDMI/DP */ |
| 173 | static bool is_likely_hdmi_codec(struct hda_codec *codec) |
| 174 | { |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 175 | hda_nid_t nid; |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 176 | |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 177 | for_each_hda_codec_node(nid, codec) { |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 178 | unsigned int wcaps = get_wcaps(codec, nid); |
| 179 | switch (get_wcaps_type(wcaps)) { |
| 180 | case AC_WID_AUD_IN: |
| 181 | return false; /* HDMI parser supports only HDMI out */ |
| 182 | case AC_WID_AUD_OUT: |
| 183 | if (!(wcaps & AC_WCAP_DIGITAL)) |
| 184 | return false; |
| 185 | break; |
| 186 | } |
| 187 | } |
| 188 | return true; |
| 189 | } |
| 190 | #else |
| 191 | /* no HDMI codec parser support */ |
| 192 | #define is_likely_hdmi_codec(codec) false |
| 193 | #endif /* CONFIG_SND_HDA_CODEC_HDMI */ |
| 194 | |
| 195 | static int codec_bind_generic(struct hda_codec *codec) |
| 196 | { |
| 197 | if (codec->probe_id) |
| 198 | return -ENODEV; |
| 199 | |
| 200 | if (is_likely_hdmi_codec(codec)) { |
| 201 | codec->probe_id = HDA_CODEC_ID_GENERIC_HDMI; |
| 202 | #if IS_MODULE(CONFIG_SND_HDA_CODEC_HDMI) |
| 203 | request_module("snd-hda-codec-hdmi"); |
| 204 | #endif |
| 205 | if (codec_probed(codec)) |
| 206 | return 0; |
| 207 | } |
| 208 | |
| 209 | codec->probe_id = HDA_CODEC_ID_GENERIC; |
| 210 | #if IS_MODULE(CONFIG_SND_HDA_GENERIC) |
| 211 | request_module("snd-hda-codec-generic"); |
| 212 | #endif |
| 213 | if (codec_probed(codec)) |
| 214 | return 0; |
| 215 | return -ENODEV; |
| 216 | } |
| 217 | |
| 218 | #if IS_ENABLED(CONFIG_SND_HDA_GENERIC) |
| 219 | #define is_generic_config(codec) \ |
| 220 | (codec->modelname && !strcmp(codec->modelname, "generic")) |
| 221 | #else |
| 222 | #define is_generic_config(codec) 0 |
| 223 | #endif |
| 224 | |
| 225 | /** |
| 226 | * snd_hda_codec_configure - (Re-)configure the HD-audio codec |
| 227 | * @codec: the HDA codec |
| 228 | * |
| 229 | * Start parsing of the given codec tree and (re-)initialize the whole |
| 230 | * patch instance. |
| 231 | * |
| 232 | * Returns 0 if successful or a negative error code. |
| 233 | */ |
| 234 | int snd_hda_codec_configure(struct hda_codec *codec) |
| 235 | { |
| 236 | int err; |
| 237 | |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 238 | if (is_generic_config(codec)) |
| 239 | codec->probe_id = HDA_CODEC_ID_GENERIC; |
| 240 | else |
| 241 | codec->probe_id = 0; |
| 242 | |
Takashi Iwai | 3256be6 | 2015-02-24 14:59:42 +0100 | [diff] [blame^] | 243 | err = snd_hdac_device_register(&codec->core); |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 244 | if (err < 0) |
| 245 | return err; |
| 246 | |
| 247 | if (!codec->preset) |
| 248 | codec_bind_module(codec); |
| 249 | if (!codec->preset) { |
| 250 | err = codec_bind_generic(codec); |
| 251 | if (err < 0) { |
| 252 | codec_err(codec, "Unable to bind the codec\n"); |
| 253 | goto error; |
| 254 | } |
| 255 | } |
| 256 | |
| 257 | /* audio codec should override the mixer name */ |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 258 | if (codec->core.afg || !*codec->card->mixername) |
Takashi Iwai | 6efdd85 | 2015-02-27 16:09:22 +0100 | [diff] [blame] | 259 | snprintf(codec->card->mixername, |
Takashi Iwai | 7639a06 | 2015-03-03 10:07:24 +0100 | [diff] [blame] | 260 | sizeof(codec->card->mixername), "%s %s", |
| 261 | codec->core.vendor_name, codec->core.chip_name); |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 262 | return 0; |
| 263 | |
| 264 | error: |
Takashi Iwai | 3256be6 | 2015-02-24 14:59:42 +0100 | [diff] [blame^] | 265 | snd_hdac_device_unregister(&codec->core); |
Takashi Iwai | d8a766a | 2015-02-17 15:25:37 +0100 | [diff] [blame] | 266 | return err; |
| 267 | } |
| 268 | EXPORT_SYMBOL_GPL(snd_hda_codec_configure); |