1 /* 2 * hdac_i915.c - routines for sync between HD-A core and i915 display driver 3 * 4 * This program is free software; you can redistribute it and/or modify it 5 * under the terms of the GNU General Public License as published by the Free 6 * Software Foundation; either version 2 of the License, or (at your option) 7 * any later version. 8 * 9 * This program is distributed in the hope that it will be useful, but 10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 12 * for more details. 13 */ 14 15 #include <linux/init.h> 16 #include <linux/module.h> 17 #include <linux/pci.h> 18 #include <linux/component.h> 19 #include <drm/i915_component.h> 20 #include <sound/core.h> 21 #include <sound/hdaudio.h> 22 #include <sound/hda_i915.h> 23 24 static struct i915_audio_component *hdac_acomp; 25 26 int snd_hdac_set_codec_wakeup(struct hdac_bus *bus, bool enable) 27 { 28 struct i915_audio_component *acomp = bus->audio_component; 29 30 if (!acomp || !acomp->ops) 31 return -ENODEV; 32 33 if (!acomp->ops->codec_wake_override) { 34 dev_warn(bus->dev, 35 "Invalid codec wake callback\n"); 36 return 0; 37 } 38 39 dev_dbg(bus->dev, "%s codec wakeup\n", 40 enable ? "enable" : "disable"); 41 42 acomp->ops->codec_wake_override(acomp->dev, enable); 43 44 return 0; 45 } 46 EXPORT_SYMBOL_GPL(snd_hdac_set_codec_wakeup); 47 48 int snd_hdac_display_power(struct hdac_bus *bus, bool enable) 49 { 50 struct i915_audio_component *acomp = bus->audio_component; 51 52 if (!acomp || !acomp->ops) 53 return -ENODEV; 54 55 dev_dbg(bus->dev, "display power %s\n", 56 enable ? "enable" : "disable"); 57 58 if (enable) { 59 if (!bus->i915_power_refcount++) { 60 acomp->ops->get_power(acomp->dev); 61 snd_hdac_set_codec_wakeup(bus, true); 62 snd_hdac_set_codec_wakeup(bus, false); 63 } 64 } else { 65 WARN_ON(!bus->i915_power_refcount); 66 if (!--bus->i915_power_refcount) 67 acomp->ops->put_power(acomp->dev); 68 } 69 70 return 0; 71 } 72 EXPORT_SYMBOL_GPL(snd_hdac_display_power); 73 74 int snd_hdac_get_display_clk(struct hdac_bus *bus) 75 { 76 struct i915_audio_component *acomp = bus->audio_component; 77 78 if (!acomp || !acomp->ops) 79 return -ENODEV; 80 81 return acomp->ops->get_cdclk_freq(acomp->dev); 82 } 83 EXPORT_SYMBOL_GPL(snd_hdac_get_display_clk); 84 85 static int hdac_component_master_bind(struct device *dev) 86 { 87 struct i915_audio_component *acomp = hdac_acomp; 88 int ret; 89 90 ret = component_bind_all(dev, acomp); 91 if (ret < 0) 92 return ret; 93 94 if (WARN_ON(!(acomp->dev && acomp->ops && acomp->ops->get_power && 95 acomp->ops->put_power && acomp->ops->get_cdclk_freq))) { 96 ret = -EINVAL; 97 goto out_unbind; 98 } 99 100 /* 101 * Atm, we don't support dynamic unbinding initiated by the child 102 * component, so pin its containing module until we unbind. 103 */ 104 if (!try_module_get(acomp->ops->owner)) { 105 ret = -ENODEV; 106 goto out_unbind; 107 } 108 109 return 0; 110 111 out_unbind: 112 component_unbind_all(dev, acomp); 113 114 return ret; 115 } 116 117 static void hdac_component_master_unbind(struct device *dev) 118 { 119 struct i915_audio_component *acomp = hdac_acomp; 120 121 module_put(acomp->ops->owner); 122 component_unbind_all(dev, acomp); 123 WARN_ON(acomp->ops || acomp->dev); 124 } 125 126 static const struct component_master_ops hdac_component_master_ops = { 127 .bind = hdac_component_master_bind, 128 .unbind = hdac_component_master_unbind, 129 }; 130 131 static int hdac_component_master_match(struct device *dev, void *data) 132 { 133 /* i915 is the only supported component */ 134 return !strcmp(dev->driver->name, "i915"); 135 } 136 137 int snd_hdac_i915_register_notifier(const struct i915_audio_component_audio_ops *aops) 138 { 139 if (WARN_ON(!hdac_acomp)) 140 return -ENODEV; 141 142 hdac_acomp->audio_ops = aops; 143 return 0; 144 } 145 EXPORT_SYMBOL_GPL(snd_hdac_i915_register_notifier); 146 147 int snd_hdac_i915_init(struct hdac_bus *bus) 148 { 149 struct component_match *match = NULL; 150 struct device *dev = bus->dev; 151 struct i915_audio_component *acomp; 152 int ret; 153 154 acomp = kzalloc(sizeof(*acomp), GFP_KERNEL); 155 if (!acomp) 156 return -ENOMEM; 157 bus->audio_component = acomp; 158 hdac_acomp = acomp; 159 160 component_match_add(dev, &match, hdac_component_master_match, bus); 161 ret = component_master_add_with_match(dev, &hdac_component_master_ops, 162 match); 163 if (ret < 0) 164 goto out_err; 165 166 /* 167 * Atm, we don't support deferring the component binding, so make sure 168 * i915 is loaded and that the binding successfully completes. 169 */ 170 request_module("i915"); 171 172 if (!acomp->ops) { 173 ret = -ENODEV; 174 goto out_master_del; 175 } 176 dev_dbg(dev, "bound to i915 component master\n"); 177 178 return 0; 179 out_master_del: 180 component_master_del(dev, &hdac_component_master_ops); 181 out_err: 182 kfree(acomp); 183 bus->audio_component = NULL; 184 dev_err(dev, "failed to add i915 component master (%d)\n", ret); 185 186 return ret; 187 } 188 EXPORT_SYMBOL_GPL(snd_hdac_i915_init); 189 190 int snd_hdac_i915_exit(struct hdac_bus *bus) 191 { 192 struct device *dev = bus->dev; 193 struct i915_audio_component *acomp = bus->audio_component; 194 195 if (!acomp) 196 return 0; 197 198 WARN_ON(bus->i915_power_refcount); 199 if (bus->i915_power_refcount > 0 && acomp->ops) 200 acomp->ops->put_power(acomp->dev); 201 202 component_master_del(dev, &hdac_component_master_ops); 203 204 kfree(acomp); 205 bus->audio_component = NULL; 206 207 return 0; 208 } 209 EXPORT_SYMBOL_GPL(snd_hdac_i915_exit); 210