blob: a1afda352d0886b9c89307d194f098c6331c7364 [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>
23#include <linux/i2c.h>
Dmitri Belimov85e09212010-03-23 11:23:29 -030024#if defined(CONFIG_SPI)
25#include <linux/spi/spi.h>
26#endif
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030027#include <linux/videodev2.h>
28#include <media/v4l2-device.h>
Hans Verkuil11bbc1c2010-05-16 09:24:06 -030029#include <media/v4l2-ctrls.h>
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030030
31int v4l2_device_register(struct device *dev, struct v4l2_device *v4l2_dev)
32{
Hans Verkuil3a63e4492009-02-14 11:54:23 -030033 if (v4l2_dev == NULL)
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030034 return -EINVAL;
Hans Verkuil3a63e4492009-02-14 11:54:23 -030035
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030036 INIT_LIST_HEAD(&v4l2_dev->subdevs);
37 spin_lock_init(&v4l2_dev->lock);
Hans Verkuil879aa242010-11-26 06:47:28 -030038 mutex_init(&v4l2_dev->ioctl_lock);
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030039 v4l2_dev->dev = dev;
Hans Verkuil3a63e4492009-02-14 11:54:23 -030040 if (dev == NULL) {
41 /* If dev == NULL, then name must be filled in by the caller */
42 WARN_ON(!v4l2_dev->name[0]);
43 return 0;
44 }
45
46 /* Set name to driver name + device name if it is empty. */
47 if (!v4l2_dev->name[0])
48 snprintf(v4l2_dev->name, sizeof(v4l2_dev->name), "%s %s",
Kay Sieversc3ef01c2009-03-24 16:38:22 -070049 dev->driver->name, dev_name(dev));
Laurent Pinchart95db3a62009-12-09 08:40:05 -030050 if (!dev_get_drvdata(dev))
51 dev_set_drvdata(dev, v4l2_dev);
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030052 return 0;
53}
54EXPORT_SYMBOL_GPL(v4l2_device_register);
55
Hans Verkuil102e7812009-05-02 10:12:50 -030056int v4l2_device_set_name(struct v4l2_device *v4l2_dev, const char *basename,
57 atomic_t *instance)
58{
59 int num = atomic_inc_return(instance) - 1;
60 int len = strlen(basename);
61
62 if (basename[len - 1] >= '0' && basename[len - 1] <= '9')
63 snprintf(v4l2_dev->name, sizeof(v4l2_dev->name),
64 "%s-%d", basename, num);
65 else
66 snprintf(v4l2_dev->name, sizeof(v4l2_dev->name),
67 "%s%d", basename, num);
68 return num;
69}
70EXPORT_SYMBOL_GPL(v4l2_device_set_name);
71
Hans Verkuilae6cfaa2009-03-14 08:28:45 -030072void v4l2_device_disconnect(struct v4l2_device *v4l2_dev)
73{
Laurent Pinchart95db3a62009-12-09 08:40:05 -030074 if (v4l2_dev->dev == NULL)
75 return;
76
77 if (dev_get_drvdata(v4l2_dev->dev) == v4l2_dev)
Hans Verkuilae6cfaa2009-03-14 08:28:45 -030078 dev_set_drvdata(v4l2_dev->dev, NULL);
Laurent Pinchart95db3a62009-12-09 08:40:05 -030079 v4l2_dev->dev = NULL;
Hans Verkuilae6cfaa2009-03-14 08:28:45 -030080}
81EXPORT_SYMBOL_GPL(v4l2_device_disconnect);
82
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030083void v4l2_device_unregister(struct v4l2_device *v4l2_dev)
84{
85 struct v4l2_subdev *sd, *next;
86
Hans Verkuil3a63e4492009-02-14 11:54:23 -030087 if (v4l2_dev == NULL)
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030088 return;
Hans Verkuilae6cfaa2009-03-14 08:28:45 -030089 v4l2_device_disconnect(v4l2_dev);
90
Hans Verkuil3a63e4492009-02-14 11:54:23 -030091 /* Unregister subdevs */
Hans Verkuilb5b2b7e2009-05-02 10:58:51 -030092 list_for_each_entry_safe(sd, next, &v4l2_dev->subdevs, list) {
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030093 v4l2_device_unregister_subdev(sd);
Randy Dunlapef5b5162009-06-10 11:58:22 -030094#if defined(CONFIG_I2C) || (defined(CONFIG_I2C_MODULE) && defined(MODULE))
Hans Verkuilb5b2b7e2009-05-02 10:58:51 -030095 if (sd->flags & V4L2_SUBDEV_FL_IS_I2C) {
96 struct i2c_client *client = v4l2_get_subdevdata(sd);
97
98 /* We need to unregister the i2c client explicitly.
99 We cannot rely on i2c_del_adapter to always
100 unregister clients for us, since if the i2c bus
101 is a platform bus, then it is never deleted. */
102 if (client)
103 i2c_unregister_device(client);
Hans Verkuil672dcd52011-01-11 17:48:21 -0300104 continue;
Hans Verkuilb5b2b7e2009-05-02 10:58:51 -0300105 }
Randy Dunlapb7fd6062009-05-11 13:37:41 -0300106#endif
Dmitri Belimov85e09212010-03-23 11:23:29 -0300107#if defined(CONFIG_SPI)
108 if (sd->flags & V4L2_SUBDEV_FL_IS_SPI) {
109 struct spi_device *spi = v4l2_get_subdevdata(sd);
110
111 if (spi)
112 spi_unregister_device(spi);
Hans Verkuil672dcd52011-01-11 17:48:21 -0300113 continue;
Dmitri Belimov85e09212010-03-23 11:23:29 -0300114 }
115#endif
Hans Verkuilb5b2b7e2009-05-02 10:58:51 -0300116 }
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300117}
118EXPORT_SYMBOL_GPL(v4l2_device_unregister);
119
Hans Verkuil3a63e4492009-02-14 11:54:23 -0300120int v4l2_device_register_subdev(struct v4l2_device *v4l2_dev,
Laurent Pinchart61f5db52009-12-09 08:40:08 -0300121 struct v4l2_subdev *sd)
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300122{
Laurent Pinchart61f5db52009-12-09 08:40:08 -0300123#if defined(CONFIG_MEDIA_CONTROLLER)
124 struct media_entity *entity = &sd->entity;
125#endif
Hans Verkuil11bbc1c2010-05-16 09:24:06 -0300126 int err;
127
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300128 /* Check for valid input */
Hans Verkuil3a63e4492009-02-14 11:54:23 -0300129 if (v4l2_dev == NULL || sd == NULL || !sd->name[0])
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300130 return -EINVAL;
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300131
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300132 /* Warn if we apparently re-register a subdev */
Hans Verkuilb0167602009-02-14 12:00:53 -0300133 WARN_ON(sd->v4l2_dev != NULL);
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300134
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300135 if (!try_module_get(sd->owner))
136 return -ENODEV;
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300137
Hans Verkuil45f6f842011-01-08 07:15:53 -0300138 sd->v4l2_dev = v4l2_dev;
139 if (sd->internal_ops && sd->internal_ops->registered) {
140 err = sd->internal_ops->registered(sd);
141 if (err)
142 return err;
143 }
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300144
Hans Verkuil11bbc1c2010-05-16 09:24:06 -0300145 /* This just returns 0 if either of the two args is NULL */
146 err = v4l2_ctrl_add_handler(v4l2_dev->ctrl_handler, sd->ctrl_handler);
Hans Verkuil45f6f842011-01-08 07:15:53 -0300147 if (err) {
148 if (sd->internal_ops && sd->internal_ops->unregistered)
149 sd->internal_ops->unregistered(sd);
Hans Verkuil11bbc1c2010-05-16 09:24:06 -0300150 return err;
Hans Verkuil45f6f842011-01-08 07:15:53 -0300151 }
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300152
Laurent Pinchart61f5db52009-12-09 08:40:08 -0300153#if defined(CONFIG_MEDIA_CONTROLLER)
154 /* Register the entity. */
155 if (v4l2_dev->mdev) {
156 err = media_device_register_entity(v4l2_dev->mdev, entity);
157 if (err < 0) {
158 if (sd->internal_ops && sd->internal_ops->unregistered)
159 sd->internal_ops->unregistered(sd);
160 module_put(sd->owner);
161 return err;
162 }
163 }
164#endif
165
Hans Verkuil3a63e4492009-02-14 11:54:23 -0300166 spin_lock(&v4l2_dev->lock);
167 list_add_tail(&sd->list, &v4l2_dev->subdevs);
168 spin_unlock(&v4l2_dev->lock);
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300169
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300170 return 0;
171}
172EXPORT_SYMBOL_GPL(v4l2_device_register_subdev);
173
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300174int v4l2_device_register_subdev_nodes(struct v4l2_device *v4l2_dev)
175{
176 struct video_device *vdev;
177 struct v4l2_subdev *sd;
178 int err;
179
180 /* Register a device node for every subdev marked with the
181 * V4L2_SUBDEV_FL_HAS_DEVNODE flag.
182 */
183 list_for_each_entry(sd, &v4l2_dev->subdevs, list) {
184 if (!(sd->flags & V4L2_SUBDEV_FL_HAS_DEVNODE))
185 continue;
186
187 vdev = &sd->devnode;
188 strlcpy(vdev->name, sd->name, sizeof(vdev->name));
189 vdev->v4l2_dev = v4l2_dev;
190 vdev->fops = &v4l2_subdev_fops;
191 vdev->release = video_device_release_empty;
192 err = __video_register_device(vdev, VFL_TYPE_SUBDEV, -1, 1,
193 sd->owner);
194 if (err < 0)
195 return err;
Laurent Pinchart61f5db52009-12-09 08:40:08 -0300196#if defined(CONFIG_MEDIA_CONTROLLER)
197 sd->entity.v4l.major = VIDEO_MAJOR;
198 sd->entity.v4l.minor = vdev->minor;
199#endif
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300200 }
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300201 return 0;
202}
203EXPORT_SYMBOL_GPL(v4l2_device_register_subdev_nodes);
204
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300205void v4l2_device_unregister_subdev(struct v4l2_subdev *sd)
206{
Laurent Pinchart61f5db52009-12-09 08:40:08 -0300207 struct v4l2_device *v4l2_dev;
208
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300209 /* return if it isn't registered */
Hans Verkuilb0167602009-02-14 12:00:53 -0300210 if (sd == NULL || sd->v4l2_dev == NULL)
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300211 return;
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300212
Laurent Pinchart61f5db52009-12-09 08:40:08 -0300213 v4l2_dev = sd->v4l2_dev;
214
215 spin_lock(&v4l2_dev->lock);
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300216 list_del(&sd->list);
Laurent Pinchart61f5db52009-12-09 08:40:08 -0300217 spin_unlock(&v4l2_dev->lock);
218
Hans Verkuil45f6f842011-01-08 07:15:53 -0300219 if (sd->internal_ops && sd->internal_ops->unregistered)
220 sd->internal_ops->unregistered(sd);
Hans Verkuilb0167602009-02-14 12:00:53 -0300221 sd->v4l2_dev = NULL;
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300222
Laurent Pinchart61f5db52009-12-09 08:40:08 -0300223#if defined(CONFIG_MEDIA_CONTROLLER)
224 if (v4l2_dev->mdev)
225 media_device_unregister_entity(&sd->entity);
226#endif
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300227 video_unregister_device(&sd->devnode);
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -0300228 module_put(sd->owner);
229}
230EXPORT_SYMBOL_GPL(v4l2_device_unregister_subdev);