1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21#include <linux/types.h>
22#include <linux/ioctl.h>
23#include <linux/module.h>
24#include <linux/i2c.h>
25#include <linux/slab.h>
26#if defined(CONFIG_SPI)
27#include <linux/spi/spi.h>
28#endif
29#include <linux/videodev2.h>
30#include <media/v4l2-device.h>
31#include <media/v4l2-ctrls.h>
32
33int v4l2_device_register(struct device *dev, struct v4l2_device *v4l2_dev)
34{
35 if (v4l2_dev == NULL)
36 return -EINVAL;
37
38 INIT_LIST_HEAD(&v4l2_dev->subdevs);
39 spin_lock_init(&v4l2_dev->lock);
40 v4l2_prio_init(&v4l2_dev->prio);
41 kref_init(&v4l2_dev->ref);
42 get_device(dev);
43 v4l2_dev->dev = dev;
44 if (dev == NULL) {
45
46 if (WARN_ON(!v4l2_dev->name[0]))
47 return -EINVAL;
48 return 0;
49 }
50
51
52 if (!v4l2_dev->name[0])
53 snprintf(v4l2_dev->name, sizeof(v4l2_dev->name), "%s %s",
54 dev->driver->name, dev_name(dev));
55 if (!dev_get_drvdata(dev))
56 dev_set_drvdata(dev, v4l2_dev);
57 return 0;
58}
59EXPORT_SYMBOL_GPL(v4l2_device_register);
60
61static void v4l2_device_release(struct kref *ref)
62{
63 struct v4l2_device *v4l2_dev =
64 container_of(ref, struct v4l2_device, ref);
65
66 if (v4l2_dev->release)
67 v4l2_dev->release(v4l2_dev);
68}
69
70int v4l2_device_put(struct v4l2_device *v4l2_dev)
71{
72 return kref_put(&v4l2_dev->ref, v4l2_device_release);
73}
74EXPORT_SYMBOL_GPL(v4l2_device_put);
75
76int v4l2_device_set_name(struct v4l2_device *v4l2_dev, const char *basename,
77 atomic_t *instance)
78{
79 int num = atomic_inc_return(instance) - 1;
80 int len = strlen(basename);
81
82 if (basename[len - 1] >= '0' && basename[len - 1] <= '9')
83 snprintf(v4l2_dev->name, sizeof(v4l2_dev->name),
84 "%s-%d", basename, num);
85 else
86 snprintf(v4l2_dev->name, sizeof(v4l2_dev->name),
87 "%s%d", basename, num);
88 return num;
89}
90EXPORT_SYMBOL_GPL(v4l2_device_set_name);
91
92void v4l2_device_disconnect(struct v4l2_device *v4l2_dev)
93{
94 if (v4l2_dev->dev == NULL)
95 return;
96
97 if (dev_get_drvdata(v4l2_dev->dev) == v4l2_dev)
98 dev_set_drvdata(v4l2_dev->dev, NULL);
99 put_device(v4l2_dev->dev);
100 v4l2_dev->dev = NULL;
101}
102EXPORT_SYMBOL_GPL(v4l2_device_disconnect);
103
104void v4l2_device_unregister(struct v4l2_device *v4l2_dev)
105{
106 struct v4l2_subdev *sd, *next;
107
108
109
110 if (v4l2_dev == NULL || !v4l2_dev->name[0])
111 return;
112 v4l2_device_disconnect(v4l2_dev);
113
114
115 list_for_each_entry_safe(sd, next, &v4l2_dev->subdevs, list) {
116 v4l2_device_unregister_subdev(sd);
117#if IS_ENABLED(CONFIG_I2C)
118 if (sd->flags & V4L2_SUBDEV_FL_IS_I2C) {
119 struct i2c_client *client = v4l2_get_subdevdata(sd);
120
121
122
123
124
125
126
127
128
129
130
131
132
133 if (client &&
134 !client->dev.of_node && !client->dev.fwnode)
135 i2c_unregister_device(client);
136 continue;
137 }
138#endif
139#if defined(CONFIG_SPI)
140 if (sd->flags & V4L2_SUBDEV_FL_IS_SPI) {
141 struct spi_device *spi = v4l2_get_subdevdata(sd);
142
143 if (spi && !spi->dev.of_node && !spi->dev.fwnode)
144 spi_unregister_device(spi);
145 continue;
146 }
147#endif
148 }
149
150 v4l2_dev->name[0] = '\0';
151}
152EXPORT_SYMBOL_GPL(v4l2_device_unregister);
153
154int v4l2_device_register_subdev(struct v4l2_device *v4l2_dev,
155 struct v4l2_subdev *sd)
156{
157#if defined(CONFIG_MEDIA_CONTROLLER)
158 struct media_entity *entity = &sd->entity;
159#endif
160 int err;
161
162
163 if (!v4l2_dev || !sd || sd->v4l2_dev || !sd->name[0])
164 return -EINVAL;
165
166
167
168
169
170
171
172
173 sd->owner_v4l2_dev = v4l2_dev->dev && v4l2_dev->dev->driver &&
174 sd->owner == v4l2_dev->dev->driver->owner;
175
176 if (!sd->owner_v4l2_dev && !try_module_get(sd->owner))
177 return -ENODEV;
178
179 sd->v4l2_dev = v4l2_dev;
180
181 err = v4l2_ctrl_add_handler(v4l2_dev->ctrl_handler, sd->ctrl_handler, NULL);
182 if (err)
183 goto error_module;
184
185#if defined(CONFIG_MEDIA_CONTROLLER)
186
187 if (v4l2_dev->mdev) {
188 err = media_device_register_entity(v4l2_dev->mdev, entity);
189 if (err < 0)
190 goto error_module;
191 }
192#endif
193
194 if (sd->internal_ops && sd->internal_ops->registered) {
195 err = sd->internal_ops->registered(sd);
196 if (err)
197 goto error_unregister;
198 }
199
200 spin_lock(&v4l2_dev->lock);
201 list_add_tail(&sd->list, &v4l2_dev->subdevs);
202 spin_unlock(&v4l2_dev->lock);
203
204 return 0;
205
206error_unregister:
207#if defined(CONFIG_MEDIA_CONTROLLER)
208 media_device_unregister_entity(entity);
209#endif
210error_module:
211 if (!sd->owner_v4l2_dev)
212 module_put(sd->owner);
213 sd->v4l2_dev = NULL;
214 return err;
215}
216EXPORT_SYMBOL_GPL(v4l2_device_register_subdev);
217
218static void v4l2_device_release_subdev_node(struct video_device *vdev)
219{
220 struct v4l2_subdev *sd = video_get_drvdata(vdev);
221 sd->devnode = NULL;
222 kfree(vdev);
223}
224
225int v4l2_device_register_subdev_nodes(struct v4l2_device *v4l2_dev)
226{
227 struct video_device *vdev;
228 struct v4l2_subdev *sd;
229 int err;
230
231
232
233
234 list_for_each_entry(sd, &v4l2_dev->subdevs, list) {
235 if (!(sd->flags & V4L2_SUBDEV_FL_HAS_DEVNODE))
236 continue;
237
238 vdev = kzalloc(sizeof(*vdev), GFP_KERNEL);
239 if (!vdev) {
240 err = -ENOMEM;
241 goto clean_up;
242 }
243
244 video_set_drvdata(vdev, sd);
245 strlcpy(vdev->name, sd->name, sizeof(vdev->name));
246 vdev->v4l2_dev = v4l2_dev;
247 vdev->fops = &v4l2_subdev_fops;
248 vdev->release = v4l2_device_release_subdev_node;
249 vdev->ctrl_handler = sd->ctrl_handler;
250 err = __video_register_device(vdev, VFL_TYPE_SUBDEV, -1, 1,
251 sd->owner);
252 if (err < 0) {
253 kfree(vdev);
254 goto clean_up;
255 }
256#if defined(CONFIG_MEDIA_CONTROLLER)
257 sd->entity.info.dev.major = VIDEO_MAJOR;
258 sd->entity.info.dev.minor = vdev->minor;
259
260
261 if (vdev->v4l2_dev->mdev) {
262 struct media_link *link;
263
264 link = media_create_intf_link(&sd->entity,
265 &vdev->intf_devnode->intf,
266 MEDIA_LNK_FL_ENABLED);
267 if (!link) {
268 err = -ENOMEM;
269 goto clean_up;
270 }
271 }
272#endif
273 sd->devnode = vdev;
274 }
275 return 0;
276
277clean_up:
278 list_for_each_entry(sd, &v4l2_dev->subdevs, list) {
279 if (!sd->devnode)
280 break;
281 video_unregister_device(sd->devnode);
282 }
283
284 return err;
285}
286EXPORT_SYMBOL_GPL(v4l2_device_register_subdev_nodes);
287
288void v4l2_device_unregister_subdev(struct v4l2_subdev *sd)
289{
290 struct v4l2_device *v4l2_dev;
291
292
293 if (sd == NULL || sd->v4l2_dev == NULL)
294 return;
295
296 v4l2_dev = sd->v4l2_dev;
297
298 spin_lock(&v4l2_dev->lock);
299 list_del(&sd->list);
300 spin_unlock(&v4l2_dev->lock);
301
302 if (sd->internal_ops && sd->internal_ops->unregistered)
303 sd->internal_ops->unregistered(sd);
304 sd->v4l2_dev = NULL;
305
306#if defined(CONFIG_MEDIA_CONTROLLER)
307 if (v4l2_dev->mdev) {
308
309
310
311
312 media_device_unregister_entity(&sd->entity);
313 }
314#endif
315 video_unregister_device(sd->devnode);
316 if (!sd->owner_v4l2_dev)
317 module_put(sd->owner);
318}
319EXPORT_SYMBOL_GPL(v4l2_device_unregister_subdev);
320