blob: b3dcb845437926946c6c08ac6e76527b81db758c [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>
24#include <linux/videodev2.h>
25#include <media/v4l2-device.h>
26
27int v4l2_device_register(struct device *dev, struct v4l2_device *v4l2_dev)
28{
Hans Verkuil3a63e4492009-02-14 11:54:23 -030029 if (v4l2_dev == NULL)
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030030 return -EINVAL;
Hans Verkuil3a63e4492009-02-14 11:54:23 -030031
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030032 INIT_LIST_HEAD(&v4l2_dev->subdevs);
33 spin_lock_init(&v4l2_dev->lock);
34 v4l2_dev->dev = dev;
Hans Verkuil3a63e4492009-02-14 11:54:23 -030035 if (dev == NULL) {
36 /* If dev == NULL, then name must be filled in by the caller */
37 WARN_ON(!v4l2_dev->name[0]);
38 return 0;
39 }
40
41 /* Set name to driver name + device name if it is empty. */
42 if (!v4l2_dev->name[0])
43 snprintf(v4l2_dev->name, sizeof(v4l2_dev->name), "%s %s",
Kay Sieversc3ef01c2009-03-24 16:38:22 -070044 dev->driver->name, dev_name(dev));
Hans Verkuil3a63e4492009-02-14 11:54:23 -030045 if (dev_get_drvdata(dev))
46 v4l2_warn(v4l2_dev, "Non-NULL drvdata on register\n");
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030047 dev_set_drvdata(dev, v4l2_dev);
48 return 0;
49}
50EXPORT_SYMBOL_GPL(v4l2_device_register);
51
52void v4l2_device_unregister(struct v4l2_device *v4l2_dev)
53{
54 struct v4l2_subdev *sd, *next;
55
Hans Verkuil3a63e4492009-02-14 11:54:23 -030056 if (v4l2_dev == NULL)
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030057 return;
Hans Verkuil3a63e4492009-02-14 11:54:23 -030058 if (v4l2_dev->dev)
59 dev_set_drvdata(v4l2_dev->dev, NULL);
60 /* Unregister subdevs */
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030061 list_for_each_entry_safe(sd, next, &v4l2_dev->subdevs, list)
62 v4l2_device_unregister_subdev(sd);
63
64 v4l2_dev->dev = NULL;
65}
66EXPORT_SYMBOL_GPL(v4l2_device_unregister);
67
Hans Verkuil3a63e4492009-02-14 11:54:23 -030068int v4l2_device_register_subdev(struct v4l2_device *v4l2_dev,
69 struct v4l2_subdev *sd)
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030070{
71 /* Check for valid input */
Hans Verkuil3a63e4492009-02-14 11:54:23 -030072 if (v4l2_dev == NULL || sd == NULL || !sd->name[0])
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030073 return -EINVAL;
74 /* Warn if we apparently re-register a subdev */
Hans Verkuilb0167602009-02-14 12:00:53 -030075 WARN_ON(sd->v4l2_dev != NULL);
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030076 if (!try_module_get(sd->owner))
77 return -ENODEV;
Hans Verkuilb0167602009-02-14 12:00:53 -030078 sd->v4l2_dev = v4l2_dev;
Hans Verkuil3a63e4492009-02-14 11:54:23 -030079 spin_lock(&v4l2_dev->lock);
80 list_add_tail(&sd->list, &v4l2_dev->subdevs);
81 spin_unlock(&v4l2_dev->lock);
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030082 return 0;
83}
84EXPORT_SYMBOL_GPL(v4l2_device_register_subdev);
85
86void v4l2_device_unregister_subdev(struct v4l2_subdev *sd)
87{
88 /* return if it isn't registered */
Hans Verkuilb0167602009-02-14 12:00:53 -030089 if (sd == NULL || sd->v4l2_dev == NULL)
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030090 return;
Hans Verkuilb0167602009-02-14 12:00:53 -030091 spin_lock(&sd->v4l2_dev->lock);
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030092 list_del(&sd->list);
Hans Verkuilb0167602009-02-14 12:00:53 -030093 spin_unlock(&sd->v4l2_dev->lock);
94 sd->v4l2_dev = NULL;
Hans Verkuil2a1fcdf2008-11-29 21:36:58 -030095 module_put(sd->owner);
96}
97EXPORT_SYMBOL_GPL(v4l2_device_unregister_subdev);