1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright 2021 Google Inc.
5 * The DP AUX bus is used for devices that are connected over a DisplayPort
6 * AUX bus. The devices on the far side of the bus are referred to as
7 * endpoints in this code.
9 * Commonly there is only one device connected to the DP AUX bus: a panel.
10 * Though historically panels (even DP panels) have been modeled as simple
11 * platform devices, putting them under the DP AUX bus allows the panel driver
12 * to perform transactions on that bus.
15 #include <linux/init.h>
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/of_device.h>
19 #include <linux/pm_domain.h>
20 #include <linux/pm_runtime.h>
22 #include <drm/drm_dp_aux_bus.h>
23 #include <drm/drm_dp_helper.h>
26 * dp_aux_ep_match() - The match function for the dp_aux_bus.
27 * @dev: The device to match.
28 * @drv: The driver to try to match against.
30 * At the moment, we just match on device tree.
32 * Return: True if this driver matches this device; false otherwise.
34 static int dp_aux_ep_match(struct device *dev, struct device_driver *drv)
36 return !!of_match_device(drv->of_match_table, dev);
40 * dp_aux_ep_probe() - The probe function for the dp_aux_bus.
41 * @dev: The device to probe.
43 * Calls through to the endpoint driver probe.
45 * Return: 0 if no error or negative error code.
47 static int dp_aux_ep_probe(struct device *dev)
49 struct dp_aux_ep_driver *aux_ep_drv = to_dp_aux_ep_drv(dev->driver);
50 struct dp_aux_ep_device *aux_ep = to_dp_aux_ep_dev(dev);
53 ret = dev_pm_domain_attach(dev, true);
55 return dev_err_probe(dev, ret, "Failed to attach to PM Domain\n");
57 ret = aux_ep_drv->probe(aux_ep);
59 dev_pm_domain_detach(dev, true);
65 * dp_aux_ep_remove() - The remove function for the dp_aux_bus.
66 * @dev: The device to remove.
68 * Calls through to the endpoint driver remove.
70 * Return: 0 if no error or negative error code.
72 static int dp_aux_ep_remove(struct device *dev)
74 struct dp_aux_ep_driver *aux_ep_drv = to_dp_aux_ep_drv(dev->driver);
75 struct dp_aux_ep_device *aux_ep = to_dp_aux_ep_dev(dev);
77 if (aux_ep_drv->remove)
78 aux_ep_drv->remove(aux_ep);
79 dev_pm_domain_detach(dev, true);
85 * dp_aux_ep_shutdown() - The shutdown function for the dp_aux_bus.
86 * @dev: The device to shutdown.
88 * Calls through to the endpoint driver shutdown.
90 static void dp_aux_ep_shutdown(struct device *dev)
92 struct dp_aux_ep_driver *aux_ep_drv;
97 aux_ep_drv = to_dp_aux_ep_drv(dev->driver);
98 if (aux_ep_drv->shutdown)
99 aux_ep_drv->shutdown(to_dp_aux_ep_dev(dev));
102 static struct bus_type dp_aux_bus_type = {
104 .match = dp_aux_ep_match,
105 .probe = dp_aux_ep_probe,
106 .remove = dp_aux_ep_remove,
107 .shutdown = dp_aux_ep_shutdown,
110 static ssize_t modalias_show(struct device *dev,
111 struct device_attribute *attr, char *buf)
113 return of_device_modalias(dev, buf, PAGE_SIZE);
115 static DEVICE_ATTR_RO(modalias);
117 static struct attribute *dp_aux_ep_dev_attrs[] = {
118 &dev_attr_modalias.attr,
121 ATTRIBUTE_GROUPS(dp_aux_ep_dev);
124 * dp_aux_ep_dev_release() - Free memory for the dp_aux_ep device
125 * @dev: The device to free.
127 * Return: 0 if no error or negative error code.
129 static void dp_aux_ep_dev_release(struct device *dev)
131 kfree(to_dp_aux_ep_dev(dev));
134 static struct device_type dp_aux_device_type_type = {
135 .groups = dp_aux_ep_dev_groups,
136 .uevent = of_device_uevent_modalias,
137 .release = dp_aux_ep_dev_release,
141 * of_dp_aux_ep_destroy() - Destroy an DP AUX endpoint device
142 * @dev: The device to destroy.
145 * This is just used as a callback by of_dp_aux_depopulate_ep_devices() and
146 * is called for _all_ of the child devices of the device providing the AUX bus.
147 * We'll only act on those that are of type "dp_aux_bus_type".
149 * This function is effectively an inverse of what's in the loop
150 * in of_dp_aux_populate_ep_devices().
152 * Return: 0 if no error or negative error code.
154 static int of_dp_aux_ep_destroy(struct device *dev, void *data)
156 struct device_node *np = dev->of_node;
158 if (dev->bus != &dp_aux_bus_type)
161 if (!of_node_check_flag(np, OF_POPULATED))
164 of_node_clear_flag(np, OF_POPULATED);
167 device_unregister(dev);
173 * of_dp_aux_depopulate_ep_devices() - Undo of_dp_aux_populate_ep_devices
174 * @aux: The AUX channel whose devices we want to depopulate
176 * This will destroy all devices that were created
177 * by of_dp_aux_populate_ep_devices().
179 void of_dp_aux_depopulate_ep_devices(struct drm_dp_aux *aux)
181 device_for_each_child_reverse(aux->dev, NULL, of_dp_aux_ep_destroy);
183 EXPORT_SYMBOL_GPL(of_dp_aux_depopulate_ep_devices);
186 * of_dp_aux_populate_ep_devices() - Populate the endpoint devices on the DP AUX
187 * @aux: The AUX channel whose devices we want to populate. It is required that
188 * drm_dp_aux_init() has already been called for this AUX channel.
190 * This will populate all the devices under the "aux-bus" node of the device
191 * providing the AUX channel (AKA aux->dev).
193 * When this function finishes, it is _possible_ (but not guaranteed) that
194 * our sub-devices will have finished probing. It should be noted that if our
195 * sub-devices return -EPROBE_DEFER that we will not return any error codes
196 * ourselves but our sub-devices will _not_ have actually probed successfully
197 * yet. There may be other cases (maybe added in the future?) where sub-devices
198 * won't have been probed yet when this function returns, so it's best not to
201 * If this function succeeds you should later make sure you call
202 * of_dp_aux_depopulate_ep_devices() to undo it, or just use the devm version
205 * Return: 0 if no error or negative error code.
207 int of_dp_aux_populate_ep_devices(struct drm_dp_aux *aux)
209 struct device_node *bus, *np;
210 struct dp_aux_ep_device *aux_ep;
213 /* drm_dp_aux_init() should have been called already; warn if not */
214 WARN_ON_ONCE(!aux->ddc.algo);
216 if (!aux->dev->of_node)
219 bus = of_get_child_by_name(aux->dev->of_node, "aux-bus");
223 for_each_available_child_of_node(bus, np) {
224 if (of_node_test_and_set_flag(np, OF_POPULATED))
227 aux_ep = kzalloc(sizeof(*aux_ep), GFP_KERNEL);
232 aux_ep->dev.parent = aux->dev;
233 aux_ep->dev.bus = &dp_aux_bus_type;
234 aux_ep->dev.type = &dp_aux_device_type_type;
235 aux_ep->dev.of_node = of_node_get(np);
236 dev_set_name(&aux_ep->dev, "aux-%s", dev_name(aux->dev));
238 ret = device_register(&aux_ep->dev);
240 dev_err(aux->dev, "Failed to create AUX EP for %pOF: %d\n", np, ret);
241 of_node_clear_flag(np, OF_POPULATED);
245 * As per docs of device_register(), call this instead
246 * of kfree() directly for error cases.
248 put_device(&aux_ep->dev);
251 * Following in the footsteps of of_i2c_register_devices(),
252 * we won't fail the whole function here--we'll just
253 * continue registering any other devices we find.
263 static void of_dp_aux_depopulate_ep_devices_void(void *data)
265 of_dp_aux_depopulate_ep_devices(data);
269 * devm_of_dp_aux_populate_ep_devices() - devm wrapper for of_dp_aux_populate_ep_devices()
270 * @aux: The AUX channel whose devices we want to populate
272 * Handles freeing w/ devm on the device "aux->dev".
274 * Return: 0 if no error or negative error code.
276 int devm_of_dp_aux_populate_ep_devices(struct drm_dp_aux *aux)
280 ret = of_dp_aux_populate_ep_devices(aux);
284 return devm_add_action_or_reset(aux->dev,
285 of_dp_aux_depopulate_ep_devices_void,
288 EXPORT_SYMBOL_GPL(devm_of_dp_aux_populate_ep_devices);
290 int __dp_aux_dp_driver_register(struct dp_aux_ep_driver *drv, struct module *owner)
292 drv->driver.owner = owner;
293 drv->driver.bus = &dp_aux_bus_type;
295 return driver_register(&drv->driver);
297 EXPORT_SYMBOL_GPL(__dp_aux_dp_driver_register);
299 void dp_aux_dp_driver_unregister(struct dp_aux_ep_driver *drv)
301 driver_unregister(&drv->driver);
303 EXPORT_SYMBOL_GPL(dp_aux_dp_driver_unregister);
305 static int __init dp_aux_bus_init(void)
309 ret = bus_register(&dp_aux_bus_type);
316 static void __exit dp_aux_bus_exit(void)
318 bus_unregister(&dp_aux_bus_type);
321 subsys_initcall(dp_aux_bus_init);
322 module_exit(dp_aux_bus_exit);
325 MODULE_DESCRIPTION("DRM DisplayPort AUX bus");
326 MODULE_LICENSE("GPL v2");