blob: 1f203b85a63739463a448259800b31f240359bbf [file] [log] [blame]
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -03001/*
2 V4L2 device support.
3
4 Copyright (C) 2008 Hans Verkuil <hverkuil@xs4all.nl>
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 as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#include <linux/types.h>
22#include <linux/ioctl.h>
Paul Gortmaker7a707b82011-07-03 14:03:12 -040023#include <linux/module.h>
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030024#include <linux/i2c.h>
Guennadi Liakhovetski3e0ec412011-09-13 08:07:55 -030025#include <linux/slab.h>
Dmitri Belimov85e09212010-03-23 11:23:29 -030026#if defined(CONFIG_SPI)
27#include <linux/spi/spi.h>
28#endif
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030029#include <linux/videodev2.h>
30#include <media/v4l2-device.h>
Hans Verkuil11bbc1c2010-05-16 09:24:06 -030031#include <media/v4l2-ctrls.h>
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030032
33int v4l2_device_register(struct device *dev, struct v4l2_device *v4l2_dev)
34{
Hans Verkuil3a63e4492009-02-14 11:54:23 -030035 if (v4l2_dev == NULL)
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030036 return -EINVAL;
Hans Verkuil3a63e4492009-02-14 11:54:23 -030037
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030038 INIT_LIST_HEAD(&v4l2_dev->subdevs);
39 spin_lock_init(&v4l2_dev->lock);
Hans Verkuil879aa242010-11-26 06:47:28 -030040 mutex_init(&v4l2_dev->ioctl_lock);
Hans Verkuil0f62fd62011-02-24 10:42:24 -030041 v4l2_prio_init(&v4l2_dev->prio);
Hans Verkuilbedf8bc2011-03-12 06:37:19 -030042 kref_init(&v4l2_dev->ref);
Dave Young236c5442011-09-06 09:08:08 -030043 get_device(dev);
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030044 v4l2_dev->dev = dev;
Hans Verkuil3a63e4492009-02-14 11:54:23 -030045 if (dev == NULL) {
46 /* If dev == NULL, then name must be filled in by the caller */
47 WARN_ON(!v4l2_dev->name[0]);
48 return 0;
49 }
50
51 /* Set name to driver name + device name if it is empty. */
52 if (!v4l2_dev->name[0])
53 snprintf(v4l2_dev->name, sizeof(v4l2_dev->name), "%s %s",
Kay Sieversc3ef01c2009-03-24 16:38:22 -070054 dev->driver->name, dev_name(dev));
Laurent Pinchart95db3a62009-12-09 08:40:05 -030055 if (!dev_get_drvdata(dev))
56 dev_set_drvdata(dev, v4l2_dev);
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030057 return 0;
58}
59EXPORT_SYMBOL_GPL(v4l2_device_register);
60
Hans Verkuilbedf8bc2011-03-12 06:37:19 -030061static 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
Hans Verkuil102e7812009-05-02 10:12:50 -030076int 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
Hans Verkuilae6cfaa2009-03-14 08:28:45 -030092void v4l2_device_disconnect(struct v4l2_device *v4l2_dev)
93{
Laurent Pinchart95db3a62009-12-09 08:40:05 -030094 if (v4l2_dev->dev == NULL)
95 return;
96
97 if (dev_get_drvdata(v4l2_dev->dev) == v4l2_dev)
Hans Verkuilae6cfaa2009-03-14 08:28:45 -030098 dev_set_drvdata(v4l2_dev->dev, NULL);
Dave Young236c5442011-09-06 09:08:08 -030099 put_device(v4l2_dev->dev);
Laurent Pinchart95db3a62009-12-09 08:40:05 -0300100 v4l2_dev->dev = NULL;
Hans Verkuilae6cfaa2009-03-14 08:28:45 -0300101}
102EXPORT_SYMBOL_GPL(v4l2_device_disconnect);
103
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300104void v4l2_device_unregister(struct v4l2_device *v4l2_dev)
105{
106 struct v4l2_subdev *sd, *next;
107
Hans Verkuil3a63e4492009-02-14 11:54:23 -0300108 if (v4l2_dev == NULL)
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300109 return;
Hans Verkuilae6cfaa2009-03-14 08:28:45 -0300110 v4l2_device_disconnect(v4l2_dev);
111
Hans Verkuil3a63e4492009-02-14 11:54:23 -0300112 /* Unregister subdevs */
Hans Verkuilb5b2b7e2009-05-02 10:58:51 -0300113 list_for_each_entry_safe(sd, next, &v4l2_dev->subdevs, list) {
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300114 v4l2_device_unregister_subdev(sd);
Randy Dunlapef5b5162009-06-10 11:58:22 -0300115#if defined(CONFIG_I2C) || (defined(CONFIG_I2C_MODULE) && defined(MODULE))
Hans Verkuilb5b2b7e2009-05-02 10:58:51 -0300116 if (sd->flags & V4L2_SUBDEV_FL_IS_I2C) {
117 struct i2c_client *client = v4l2_get_subdevdata(sd);
118
119 /* We need to unregister the i2c client explicitly.
120 We cannot rely on i2c_del_adapter to always
121 unregister clients for us, since if the i2c bus
122 is a platform bus, then it is never deleted. */
123 if (client)
124 i2c_unregister_device(client);
Hans Verkuil672dcd52011-01-11 17:48:21 -0300125 continue;
Hans Verkuilb5b2b7e2009-05-02 10:58:51 -0300126 }
Randy Dunlapb7fd6062009-05-11 13:37:41 -0300127#endif
Dmitri Belimov85e09212010-03-23 11:23:29 -0300128#if defined(CONFIG_SPI)
129 if (sd->flags & V4L2_SUBDEV_FL_IS_SPI) {
130 struct spi_device *spi = v4l2_get_subdevdata(sd);
131
132 if (spi)
133 spi_unregister_device(spi);
Hans Verkuil672dcd52011-01-11 17:48:21 -0300134 continue;
Dmitri Belimov85e09212010-03-23 11:23:29 -0300135 }
136#endif
Hans Verkuilb5b2b7e2009-05-02 10:58:51 -0300137 }
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300138}
139EXPORT_SYMBOL_GPL(v4l2_device_unregister);
140
Hans Verkuil3a63e4492009-02-14 11:54:23 -0300141int v4l2_device_register_subdev(struct v4l2_device *v4l2_dev,
Laurent Pinchart61f5db52009-12-09 08:40:08 -0300142 struct v4l2_subdev *sd)
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300143{
Laurent Pinchart61f5db52009-12-09 08:40:08 -0300144#if defined(CONFIG_MEDIA_CONTROLLER)
145 struct media_entity *entity = &sd->entity;
146#endif
Hans Verkuil11bbc1c2010-05-16 09:24:06 -0300147 int err;
148
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300149 /* Check for valid input */
Hans Verkuil3a63e4492009-02-14 11:54:23 -0300150 if (v4l2_dev == NULL || sd == NULL || !sd->name[0])
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300151 return -EINVAL;
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300152
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300153 /* Warn if we apparently re-register a subdev */
Hans Verkuilb0167602009-02-14 12:00:53 -0300154 WARN_ON(sd->v4l2_dev != NULL);
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300155
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300156 if (!try_module_get(sd->owner))
157 return -ENODEV;
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300158
Hans Verkuil45f6f842011-01-08 07:15:53 -0300159 sd->v4l2_dev = v4l2_dev;
160 if (sd->internal_ops && sd->internal_ops->registered) {
161 err = sd->internal_ops->registered(sd);
Laurent Pinchartb7534f002011-04-30 10:34:05 -0300162 if (err) {
163 module_put(sd->owner);
Hans Verkuil45f6f842011-01-08 07:15:53 -0300164 return err;
Laurent Pinchartb7534f002011-04-30 10:34:05 -0300165 }
Hans Verkuil45f6f842011-01-08 07:15:53 -0300166 }
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300167
Hans Verkuil11bbc1c2010-05-16 09:24:06 -0300168 /* This just returns 0 if either of the two args is NULL */
169 err = v4l2_ctrl_add_handler(v4l2_dev->ctrl_handler, sd->ctrl_handler);
Hans Verkuil45f6f842011-01-08 07:15:53 -0300170 if (err) {
171 if (sd->internal_ops && sd->internal_ops->unregistered)
172 sd->internal_ops->unregistered(sd);
Laurent Pinchartb7534f002011-04-30 10:34:05 -0300173 module_put(sd->owner);
Hans Verkuil11bbc1c2010-05-16 09:24:06 -0300174 return err;
Hans Verkuil45f6f842011-01-08 07:15:53 -0300175 }
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300176
Laurent Pinchart61f5db52009-12-09 08:40:08 -0300177#if defined(CONFIG_MEDIA_CONTROLLER)
178 /* Register the entity. */
179 if (v4l2_dev->mdev) {
180 err = media_device_register_entity(v4l2_dev->mdev, entity);
181 if (err < 0) {
182 if (sd->internal_ops && sd->internal_ops->unregistered)
183 sd->internal_ops->unregistered(sd);
184 module_put(sd->owner);
185 return err;
186 }
187 }
188#endif
189
Hans Verkuil3a63e4492009-02-14 11:54:23 -0300190 spin_lock(&v4l2_dev->lock);
191 list_add_tail(&sd->list, &v4l2_dev->subdevs);
192 spin_unlock(&v4l2_dev->lock);
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300193
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300194 return 0;
195}
196EXPORT_SYMBOL_GPL(v4l2_device_register_subdev);
197
Guennadi Liakhovetski3e0ec412011-09-13 08:07:55 -0300198static void v4l2_device_release_subdev_node(struct video_device *vdev)
199{
200 struct v4l2_subdev *sd = video_get_drvdata(vdev);
201 sd->devnode = NULL;
202 kfree(vdev);
203}
204
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300205int v4l2_device_register_subdev_nodes(struct v4l2_device *v4l2_dev)
206{
207 struct video_device *vdev;
208 struct v4l2_subdev *sd;
209 int err;
210
211 /* Register a device node for every subdev marked with the
212 * V4L2_SUBDEV_FL_HAS_DEVNODE flag.
213 */
214 list_for_each_entry(sd, &v4l2_dev->subdevs, list) {
215 if (!(sd->flags & V4L2_SUBDEV_FL_HAS_DEVNODE))
216 continue;
217
Guennadi Liakhovetski3e0ec412011-09-13 08:07:55 -0300218 vdev = kzalloc(sizeof(*vdev), GFP_KERNEL);
219 if (!vdev) {
220 err = -ENOMEM;
221 goto clean_up;
222 }
223
224 video_set_drvdata(vdev, sd);
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300225 strlcpy(vdev->name, sd->name, sizeof(vdev->name));
226 vdev->v4l2_dev = v4l2_dev;
227 vdev->fops = &v4l2_subdev_fops;
Guennadi Liakhovetski3e0ec412011-09-13 08:07:55 -0300228 vdev->release = v4l2_device_release_subdev_node;
Hans Verkuil18d171b2011-05-25 08:52:13 -0300229 vdev->ctrl_handler = sd->ctrl_handler;
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300230 err = __video_register_device(vdev, VFL_TYPE_SUBDEV, -1, 1,
231 sd->owner);
Guennadi Liakhovetski3e0ec412011-09-13 08:07:55 -0300232 if (err < 0) {
233 kfree(vdev);
234 goto clean_up;
235 }
Laurent Pinchart61f5db52009-12-09 08:40:08 -0300236#if defined(CONFIG_MEDIA_CONTROLLER)
Clemens Ladischfa5034c2011-11-05 18:42:01 -0300237 sd->entity.info.v4l.major = VIDEO_MAJOR;
238 sd->entity.info.v4l.minor = vdev->minor;
Laurent Pinchart61f5db52009-12-09 08:40:08 -0300239#endif
Guennadi Liakhovetski3e0ec412011-09-13 08:07:55 -0300240 sd->devnode = vdev;
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300241 }
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300242 return 0;
Guennadi Liakhovetski3e0ec412011-09-13 08:07:55 -0300243
244clean_up:
245 list_for_each_entry(sd, &v4l2_dev->subdevs, list) {
246 if (!sd->devnode)
247 break;
248 video_unregister_device(sd->devnode);
249 }
250
251 return err;
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300252}
253EXPORT_SYMBOL_GPL(v4l2_device_register_subdev_nodes);
254
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300255void v4l2_device_unregister_subdev(struct v4l2_subdev *sd)
256{
Laurent Pinchart61f5db52009-12-09 08:40:08 -0300257 struct v4l2_device *v4l2_dev;
258
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300259 /* return if it isn't registered */
Hans Verkuilb0167602009-02-14 12:00:53 -0300260 if (sd == NULL || sd->v4l2_dev == NULL)
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300261 return;
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300262
Laurent Pinchart61f5db52009-12-09 08:40:08 -0300263 v4l2_dev = sd->v4l2_dev;
264
265 spin_lock(&v4l2_dev->lock);
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300266 list_del(&sd->list);
Laurent Pinchart61f5db52009-12-09 08:40:08 -0300267 spin_unlock(&v4l2_dev->lock);
268
Hans Verkuil45f6f842011-01-08 07:15:53 -0300269 if (sd->internal_ops && sd->internal_ops->unregistered)
270 sd->internal_ops->unregistered(sd);
Hans Verkuilb0167602009-02-14 12:00:53 -0300271 sd->v4l2_dev = NULL;
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300272
Laurent Pinchart61f5db52009-12-09 08:40:08 -0300273#if defined(CONFIG_MEDIA_CONTROLLER)
274 if (v4l2_dev->mdev)
275 media_device_unregister_entity(&sd->entity);
276#endif
Guennadi Liakhovetski3e0ec412011-09-13 08:07:55 -0300277 video_unregister_device(sd->devnode);
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300278 module_put(sd->owner);
279}
280EXPORT_SYMBOL_GPL(v4l2_device_unregister_subdev);