blob: a4b224d92572eb65bae882b3502af05d92331682 [file] [log] [blame]
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -03001/*
2 * V4L2 asynchronous subdevice registration API
3 *
4 * Copyright (C) 2012-2013, Guennadi Liakhovetski <g.liakhovetski@gmx.de>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/device.h>
12#include <linux/err.h>
13#include <linux/i2c.h>
14#include <linux/list.h>
15#include <linux/module.h>
16#include <linux/mutex.h>
17#include <linux/platform_device.h>
18#include <linux/slab.h>
19#include <linux/types.h>
20
21#include <media/v4l2-async.h>
22#include <media/v4l2-device.h>
23#include <media/v4l2-subdev.h>
24
Sakari Ailus86217652015-06-11 12:18:01 -070025static bool match_i2c(struct v4l2_subdev *sd, struct v4l2_async_subdev *asd)
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -030026{
Guennadi Liakhovetskife05e142013-06-24 05:13:51 -030027#if IS_ENABLED(CONFIG_I2C)
Sakari Ailus86217652015-06-11 12:18:01 -070028 struct i2c_client *client = i2c_verify_client(sd->dev);
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -030029 return client &&
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -030030 asd->match.i2c.adapter_id == client->adapter->nr &&
31 asd->match.i2c.address == client->addr;
Guennadi Liakhovetskife05e142013-06-24 05:13:51 -030032#else
33 return false;
34#endif
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -030035}
36
Sakari Ailus86217652015-06-11 12:18:01 -070037static bool match_devname(struct v4l2_subdev *sd,
38 struct v4l2_async_subdev *asd)
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -030039{
Sakari Ailus86217652015-06-11 12:18:01 -070040 return !strcmp(asd->match.device_name.name, dev_name(sd->dev));
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -030041}
42
Sakari Ailus86217652015-06-11 12:18:01 -070043static bool match_of(struct v4l2_subdev *sd, struct v4l2_async_subdev *asd)
Sylwester Nawrockie7359f82013-07-19 12:21:29 -030044{
Sakari Ailus86217652015-06-11 12:18:01 -070045 return sd->of_node == asd->match.of.node;
46}
47
48static bool match_custom(struct v4l2_subdev *sd, struct v4l2_async_subdev *asd)
49{
50 if (!asd->match.custom.match)
51 /* Match always */
52 return true;
53
54 return asd->match.custom.match(sd->dev, asd);
Sylwester Nawrockie7359f82013-07-19 12:21:29 -030055}
56
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -030057static LIST_HEAD(subdev_list);
58static LIST_HEAD(notifier_list);
59static DEFINE_MUTEX(list_lock);
60
61static struct v4l2_async_subdev *v4l2_async_belongs(struct v4l2_async_notifier *notifier,
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -030062 struct v4l2_subdev *sd)
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -030063{
Sakari Ailus86217652015-06-11 12:18:01 -070064 bool (*match)(struct v4l2_subdev *, struct v4l2_async_subdev *);
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -030065 struct v4l2_async_subdev *asd;
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -030066
67 list_for_each_entry(asd, &notifier->waiting, list) {
68 /* bus_type has been verified valid before */
Sylwester Nawrockicfca7642013-07-19 12:14:46 -030069 switch (asd->match_type) {
70 case V4L2_ASYNC_MATCH_CUSTOM:
Sakari Ailus86217652015-06-11 12:18:01 -070071 match = match_custom;
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -030072 break;
Sylwester Nawrockicfca7642013-07-19 12:14:46 -030073 case V4L2_ASYNC_MATCH_DEVNAME:
74 match = match_devname;
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -030075 break;
Sylwester Nawrockicfca7642013-07-19 12:14:46 -030076 case V4L2_ASYNC_MATCH_I2C:
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -030077 match = match_i2c;
78 break;
Sylwester Nawrockie7359f82013-07-19 12:21:29 -030079 case V4L2_ASYNC_MATCH_OF:
80 match = match_of;
81 break;
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -030082 default:
83 /* Cannot happen, unless someone breaks us */
84 WARN_ON(true);
85 return NULL;
86 }
87
88 /* match cannot be NULL here */
Sakari Ailus86217652015-06-11 12:18:01 -070089 if (match(sd, asd))
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -030090 return asd;
91 }
92
93 return NULL;
94}
95
96static int v4l2_async_test_notify(struct v4l2_async_notifier *notifier,
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -030097 struct v4l2_subdev *sd,
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -030098 struct v4l2_async_subdev *asd)
99{
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300100 int ret;
101
102 /* Remove from the waiting list */
103 list_del(&asd->list);
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300104 sd->asd = asd;
105 sd->notifier = notifier;
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300106
107 if (notifier->bound) {
108 ret = notifier->bound(notifier, sd, asd);
109 if (ret < 0)
110 return ret;
111 }
112 /* Move from the global subdevice list to notifier's done */
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300113 list_move(&sd->async_list, &notifier->done);
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300114
115 ret = v4l2_device_register_subdev(notifier->v4l2_dev, sd);
116 if (ret < 0) {
117 if (notifier->unbind)
118 notifier->unbind(notifier, sd, asd);
119 return ret;
120 }
121
Javier Martinez Canillas7c3e1ec2016-02-05 17:09:52 -0200122 ret = v4l2_subdev_call(sd, core, registered_async);
Javier Martinez Canillasc574b752016-02-16 18:03:21 -0200123 if (ret < 0 && ret != -ENOIOCTLCMD) {
Javier Martinez Canillas7c3e1ec2016-02-05 17:09:52 -0200124 if (notifier->unbind)
125 notifier->unbind(notifier, sd, asd);
126 return ret;
127 }
128
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300129 if (list_empty(&notifier->waiting) && notifier->complete)
130 return notifier->complete(notifier);
131
132 return 0;
133}
134
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300135static void v4l2_async_cleanup(struct v4l2_subdev *sd)
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300136{
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300137 v4l2_device_unregister_subdev(sd);
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300138 /* Subdevice driver will reprobe and put the subdev back onto the list */
139 list_del_init(&sd->async_list);
140 sd->asd = NULL;
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300141 sd->dev = NULL;
142}
143
144int v4l2_async_notifier_register(struct v4l2_device *v4l2_dev,
145 struct v4l2_async_notifier *notifier)
146{
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300147 struct v4l2_subdev *sd, *tmp;
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300148 struct v4l2_async_subdev *asd;
149 int i;
150
151 if (!notifier->num_subdevs || notifier->num_subdevs > V4L2_MAX_SUBDEVS)
152 return -EINVAL;
153
154 notifier->v4l2_dev = v4l2_dev;
155 INIT_LIST_HEAD(&notifier->waiting);
156 INIT_LIST_HEAD(&notifier->done);
157
158 for (i = 0; i < notifier->num_subdevs; i++) {
Sylwester Nawrockie8419d02013-07-19 12:31:10 -0300159 asd = notifier->subdevs[i];
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300160
Sylwester Nawrockicfca7642013-07-19 12:14:46 -0300161 switch (asd->match_type) {
162 case V4L2_ASYNC_MATCH_CUSTOM:
163 case V4L2_ASYNC_MATCH_DEVNAME:
164 case V4L2_ASYNC_MATCH_I2C:
Sylwester Nawrockie7359f82013-07-19 12:21:29 -0300165 case V4L2_ASYNC_MATCH_OF:
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300166 break;
167 default:
168 dev_err(notifier->v4l2_dev ? notifier->v4l2_dev->dev : NULL,
Sylwester Nawrockicfca7642013-07-19 12:14:46 -0300169 "Invalid match type %u on %p\n",
170 asd->match_type, asd);
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300171 return -EINVAL;
172 }
173 list_add_tail(&asd->list, &notifier->waiting);
174 }
175
176 mutex_lock(&list_lock);
177
178 /* Keep also completed notifiers on the list */
179 list_add(&notifier->list, &notifier_list);
180
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300181 list_for_each_entry_safe(sd, tmp, &subdev_list, async_list) {
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300182 int ret;
183
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300184 asd = v4l2_async_belongs(notifier, sd);
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300185 if (!asd)
186 continue;
187
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300188 ret = v4l2_async_test_notify(notifier, sd, asd);
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300189 if (ret < 0) {
190 mutex_unlock(&list_lock);
191 return ret;
192 }
193 }
194
195 mutex_unlock(&list_lock);
196
197 return 0;
198}
199EXPORT_SYMBOL(v4l2_async_notifier_register);
200
201void v4l2_async_notifier_unregister(struct v4l2_async_notifier *notifier)
202{
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300203 struct v4l2_subdev *sd, *tmp;
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300204 unsigned int notif_n_subdev = notifier->num_subdevs;
205 unsigned int n_subdev = min(notif_n_subdev, V4L2_MAX_SUBDEVS);
Mauro Carvalho Chehab24e9a472013-11-02 06:20:16 -0300206 struct device **dev;
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300207 int i = 0;
208
Laurent Pinchart8e3fbfe2013-07-03 07:49:06 -0300209 if (!notifier->v4l2_dev)
210 return;
211
Mauro Carvalho Chehab24e9a472013-11-02 06:20:16 -0300212 dev = kmalloc(n_subdev * sizeof(*dev), GFP_KERNEL);
213 if (!dev) {
214 dev_err(notifier->v4l2_dev->dev,
215 "Failed to allocate device cache!\n");
216 }
217
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300218 mutex_lock(&list_lock);
219
220 list_del(&notifier->list);
221
Sylwester Nawrockiceedcc42013-07-31 13:10:18 -0300222 list_for_each_entry_safe(sd, tmp, &notifier->done, async_list) {
Mauro Carvalho Chehab24e9a472013-11-02 06:20:16 -0300223 struct device *d;
224
225 d = get_device(sd->dev);
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300226
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300227 v4l2_async_cleanup(sd);
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300228
229 /* If we handled USB devices, we'd have to lock the parent too */
Mauro Carvalho Chehab24e9a472013-11-02 06:20:16 -0300230 device_release_driver(d);
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300231
232 if (notifier->unbind)
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300233 notifier->unbind(notifier, sd, sd->asd);
Mauro Carvalho Chehab24e9a472013-11-02 06:20:16 -0300234
235 /*
236 * Store device at the device cache, in order to call
237 * put_device() on the final step
238 */
239 if (dev)
240 dev[i++] = d;
241 else
242 put_device(d);
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300243 }
244
245 mutex_unlock(&list_lock);
246
Mauro Carvalho Chehab24e9a472013-11-02 06:20:16 -0300247 /*
248 * Call device_attach() to reprobe devices
249 *
250 * NOTE: If dev allocation fails, i is 0, and the whole loop won't be
251 * executed.
252 */
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300253 while (i--) {
254 struct device *d = dev[i];
255
256 if (d && device_attach(d) < 0) {
257 const char *name = "(none)";
258 int lock = device_trylock(d);
259
260 if (lock && d->driver)
261 name = d->driver->name;
262 dev_err(d, "Failed to re-probe to %s\n", name);
263 if (lock)
264 device_unlock(d);
265 }
266 put_device(d);
267 }
Mauro Carvalho Chehab24e9a472013-11-02 06:20:16 -0300268 kfree(dev);
Laurent Pinchart8e3fbfe2013-07-03 07:49:06 -0300269
270 notifier->v4l2_dev = NULL;
271
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300272 /*
273 * Don't care about the waiting list, it is initialised and populated
274 * upon notifier registration.
275 */
276}
277EXPORT_SYMBOL(v4l2_async_notifier_unregister);
278
279int v4l2_async_register_subdev(struct v4l2_subdev *sd)
280{
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300281 struct v4l2_async_notifier *notifier;
282
Sakari Ailus86217652015-06-11 12:18:01 -0700283 /*
284 * No reference taken. The reference is held by the device
285 * (struct v4l2_subdev.dev), and async sub-device does not
286 * exist independently of the device at any point of time.
287 */
288 if (!sd->of_node && sd->dev)
289 sd->of_node = sd->dev->of_node;
290
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300291 mutex_lock(&list_lock);
292
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300293 INIT_LIST_HEAD(&sd->async_list);
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300294
295 list_for_each_entry(notifier, &notifier_list, list) {
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300296 struct v4l2_async_subdev *asd = v4l2_async_belongs(notifier, sd);
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300297 if (asd) {
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300298 int ret = v4l2_async_test_notify(notifier, sd, asd);
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300299 mutex_unlock(&list_lock);
300 return ret;
301 }
302 }
303
304 /* None matched, wait for hot-plugging */
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300305 list_add(&sd->async_list, &subdev_list);
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300306
307 mutex_unlock(&list_lock);
308
309 return 0;
310}
311EXPORT_SYMBOL(v4l2_async_register_subdev);
312
313void v4l2_async_unregister_subdev(struct v4l2_subdev *sd)
314{
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300315 struct v4l2_async_notifier *notifier = sd->notifier;
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300316
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300317 if (!sd->asd) {
318 if (!list_empty(&sd->async_list))
319 v4l2_async_cleanup(sd);
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300320 return;
321 }
322
323 mutex_lock(&list_lock);
324
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300325 list_add(&sd->asd->list, &notifier->waiting);
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300326
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300327 v4l2_async_cleanup(sd);
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300328
329 if (notifier->unbind)
Sylwester Nawrockib426b3a2013-07-22 08:01:33 -0300330 notifier->unbind(notifier, sd, sd->asd);
Guennadi Liakhovetskie9e31042013-01-08 07:06:31 -0300331
332 mutex_unlock(&list_lock);
333}
334EXPORT_SYMBOL(v4l2_async_unregister_subdev);