diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2008-11-29 19:36:58 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-12-30 06:38:37 -0500 |
commit | 2a1fcdf08230522bd5024f91da24aaa6e8d81f59 (patch) | |
tree | 03781d767920d0569e6441ff9c74186d50f70a23 /drivers/media/video/v4l2-device.c | |
parent | 07b1747c8d0bb463311f9dd05d4c013765abe2eb (diff) |
V4L/DVB (9820): v4l2: add v4l2_device and v4l2_subdev structs to the v4l2 framework.
Start implementing a proper v4l2 framework as discussed during the
Linux Plumbers Conference 2008.
Introduces v4l2_device (for device instances) and v4l2_subdev (representing
sub-device instances).
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Reviewed-by: Laurent Pinchart <laurent.pinchart@skynet.be>
Reviewed-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Reviewed-by: Andy Walls <awalls@radix.net>
Reviewed-by: David Brownell <david-b@pacbell.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/v4l2-device.c')
-rw-r--r-- | drivers/media/video/v4l2-device.c | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/drivers/media/video/v4l2-device.c b/drivers/media/video/v4l2-device.c new file mode 100644 index 000000000000..9eefde031597 --- /dev/null +++ b/drivers/media/video/v4l2-device.c | |||
@@ -0,0 +1,86 @@ | |||
1 | /* | ||
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 | |||
27 | int v4l2_device_register(struct device *dev, struct v4l2_device *v4l2_dev) | ||
28 | { | ||
29 | if (dev == NULL || v4l2_dev == NULL) | ||
30 | return -EINVAL; | ||
31 | /* Warn if we apparently re-register a device */ | ||
32 | WARN_ON(dev_get_drvdata(dev)); | ||
33 | INIT_LIST_HEAD(&v4l2_dev->subdevs); | ||
34 | spin_lock_init(&v4l2_dev->lock); | ||
35 | v4l2_dev->dev = dev; | ||
36 | snprintf(v4l2_dev->name, sizeof(v4l2_dev->name), "%s %s", | ||
37 | dev->driver->name, dev->bus_id); | ||
38 | dev_set_drvdata(dev, v4l2_dev); | ||
39 | return 0; | ||
40 | } | ||
41 | EXPORT_SYMBOL_GPL(v4l2_device_register); | ||
42 | |||
43 | void v4l2_device_unregister(struct v4l2_device *v4l2_dev) | ||
44 | { | ||
45 | struct v4l2_subdev *sd, *next; | ||
46 | |||
47 | if (v4l2_dev == NULL || v4l2_dev->dev == NULL) | ||
48 | return; | ||
49 | dev_set_drvdata(v4l2_dev->dev, NULL); | ||
50 | /* unregister subdevs */ | ||
51 | list_for_each_entry_safe(sd, next, &v4l2_dev->subdevs, list) | ||
52 | v4l2_device_unregister_subdev(sd); | ||
53 | |||
54 | v4l2_dev->dev = NULL; | ||
55 | } | ||
56 | EXPORT_SYMBOL_GPL(v4l2_device_unregister); | ||
57 | |||
58 | int v4l2_device_register_subdev(struct v4l2_device *dev, struct v4l2_subdev *sd) | ||
59 | { | ||
60 | /* Check for valid input */ | ||
61 | if (dev == NULL || sd == NULL || !sd->name[0]) | ||
62 | return -EINVAL; | ||
63 | /* Warn if we apparently re-register a subdev */ | ||
64 | WARN_ON(sd->dev); | ||
65 | if (!try_module_get(sd->owner)) | ||
66 | return -ENODEV; | ||
67 | sd->dev = dev; | ||
68 | spin_lock(&dev->lock); | ||
69 | list_add_tail(&sd->list, &dev->subdevs); | ||
70 | spin_unlock(&dev->lock); | ||
71 | return 0; | ||
72 | } | ||
73 | EXPORT_SYMBOL_GPL(v4l2_device_register_subdev); | ||
74 | |||
75 | void v4l2_device_unregister_subdev(struct v4l2_subdev *sd) | ||
76 | { | ||
77 | /* return if it isn't registered */ | ||
78 | if (sd == NULL || sd->dev == NULL) | ||
79 | return; | ||
80 | spin_lock(&sd->dev->lock); | ||
81 | list_del(&sd->list); | ||
82 | spin_unlock(&sd->dev->lock); | ||
83 | sd->dev = NULL; | ||
84 | module_put(sd->owner); | ||
85 | } | ||
86 | EXPORT_SYMBOL_GPL(v4l2_device_unregister_subdev); | ||