4 Copyright (C) 2008 Hans Verkuil <hverkuil@xs4all.nl>
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.
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.
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
21 #include <linux/types.h>
22 #include <linux/ioctl.h>
23 #include <linux/i2c.h>
24 #if defined(CONFIG_SPI)
25 #include <linux/spi/spi.h>
27 #include <linux/videodev2.h>
28 #include <media/v4l2-device.h>
29 #include <media/v4l2-ctrls.h>
31 int v4l2_device_register(struct device
*dev
, struct v4l2_device
*v4l2_dev
)
36 INIT_LIST_HEAD(&v4l2_dev
->subdevs
);
37 spin_lock_init(&v4l2_dev
->lock
);
38 mutex_init(&v4l2_dev
->ioctl_lock
);
39 v4l2_prio_init(&v4l2_dev
->prio
);
40 kref_init(&v4l2_dev
->ref
);
43 /* If dev == NULL, then name must be filled in by the caller */
44 WARN_ON(!v4l2_dev
->name
[0]);
48 /* Set name to driver name + device name if it is empty. */
49 if (!v4l2_dev
->name
[0])
50 snprintf(v4l2_dev
->name
, sizeof(v4l2_dev
->name
), "%s %s",
51 dev
->driver
->name
, dev_name(dev
));
52 if (!dev_get_drvdata(dev
))
53 dev_set_drvdata(dev
, v4l2_dev
);
56 EXPORT_SYMBOL_GPL(v4l2_device_register
);
58 static void v4l2_device_release(struct kref
*ref
)
60 struct v4l2_device
*v4l2_dev
=
61 container_of(ref
, struct v4l2_device
, ref
);
63 if (v4l2_dev
->release
)
64 v4l2_dev
->release(v4l2_dev
);
67 int v4l2_device_put(struct v4l2_device
*v4l2_dev
)
69 return kref_put(&v4l2_dev
->ref
, v4l2_device_release
);
71 EXPORT_SYMBOL_GPL(v4l2_device_put
);
73 int v4l2_device_set_name(struct v4l2_device
*v4l2_dev
, const char *basename
,
76 int num
= atomic_inc_return(instance
) - 1;
77 int len
= strlen(basename
);
79 if (basename
[len
- 1] >= '0' && basename
[len
- 1] <= '9')
80 snprintf(v4l2_dev
->name
, sizeof(v4l2_dev
->name
),
81 "%s-%d", basename
, num
);
83 snprintf(v4l2_dev
->name
, sizeof(v4l2_dev
->name
),
84 "%s%d", basename
, num
);
87 EXPORT_SYMBOL_GPL(v4l2_device_set_name
);
89 void v4l2_device_disconnect(struct v4l2_device
*v4l2_dev
)
91 if (v4l2_dev
->dev
== NULL
)
94 if (dev_get_drvdata(v4l2_dev
->dev
) == v4l2_dev
)
95 dev_set_drvdata(v4l2_dev
->dev
, NULL
);
98 EXPORT_SYMBOL_GPL(v4l2_device_disconnect
);
100 void v4l2_device_unregister(struct v4l2_device
*v4l2_dev
)
102 struct v4l2_subdev
*sd
, *next
;
104 if (v4l2_dev
== NULL
)
106 v4l2_device_disconnect(v4l2_dev
);
108 /* Unregister subdevs */
109 list_for_each_entry_safe(sd
, next
, &v4l2_dev
->subdevs
, list
) {
110 v4l2_device_unregister_subdev(sd
);
111 #if defined(CONFIG_I2C) || (defined(CONFIG_I2C_MODULE) && defined(MODULE))
112 if (sd
->flags
& V4L2_SUBDEV_FL_IS_I2C
) {
113 struct i2c_client
*client
= v4l2_get_subdevdata(sd
);
115 /* We need to unregister the i2c client explicitly.
116 We cannot rely on i2c_del_adapter to always
117 unregister clients for us, since if the i2c bus
118 is a platform bus, then it is never deleted. */
120 i2c_unregister_device(client
);
124 #if defined(CONFIG_SPI)
125 if (sd
->flags
& V4L2_SUBDEV_FL_IS_SPI
) {
126 struct spi_device
*spi
= v4l2_get_subdevdata(sd
);
129 spi_unregister_device(spi
);
135 EXPORT_SYMBOL_GPL(v4l2_device_unregister
);
137 int v4l2_device_register_subdev(struct v4l2_device
*v4l2_dev
,
138 struct v4l2_subdev
*sd
)
140 #if defined(CONFIG_MEDIA_CONTROLLER)
141 struct media_entity
*entity
= &sd
->entity
;
145 /* Check for valid input */
146 if (v4l2_dev
== NULL
|| sd
== NULL
|| !sd
->name
[0])
149 /* Warn if we apparently re-register a subdev */
150 WARN_ON(sd
->v4l2_dev
!= NULL
);
152 if (!try_module_get(sd
->owner
))
155 sd
->v4l2_dev
= v4l2_dev
;
156 if (sd
->internal_ops
&& sd
->internal_ops
->registered
) {
157 err
= sd
->internal_ops
->registered(sd
);
162 /* This just returns 0 if either of the two args is NULL */
163 err
= v4l2_ctrl_add_handler(v4l2_dev
->ctrl_handler
, sd
->ctrl_handler
);
165 if (sd
->internal_ops
&& sd
->internal_ops
->unregistered
)
166 sd
->internal_ops
->unregistered(sd
);
170 #if defined(CONFIG_MEDIA_CONTROLLER)
171 /* Register the entity. */
172 if (v4l2_dev
->mdev
) {
173 err
= media_device_register_entity(v4l2_dev
->mdev
, entity
);
175 if (sd
->internal_ops
&& sd
->internal_ops
->unregistered
)
176 sd
->internal_ops
->unregistered(sd
);
177 module_put(sd
->owner
);
183 spin_lock(&v4l2_dev
->lock
);
184 list_add_tail(&sd
->list
, &v4l2_dev
->subdevs
);
185 spin_unlock(&v4l2_dev
->lock
);
189 EXPORT_SYMBOL_GPL(v4l2_device_register_subdev
);
191 int v4l2_device_register_subdev_nodes(struct v4l2_device
*v4l2_dev
)
193 struct video_device
*vdev
;
194 struct v4l2_subdev
*sd
;
197 /* Register a device node for every subdev marked with the
198 * V4L2_SUBDEV_FL_HAS_DEVNODE flag.
200 list_for_each_entry(sd
, &v4l2_dev
->subdevs
, list
) {
201 if (!(sd
->flags
& V4L2_SUBDEV_FL_HAS_DEVNODE
))
205 strlcpy(vdev
->name
, sd
->name
, sizeof(vdev
->name
));
206 vdev
->v4l2_dev
= v4l2_dev
;
207 vdev
->fops
= &v4l2_subdev_fops
;
208 vdev
->release
= video_device_release_empty
;
209 err
= __video_register_device(vdev
, VFL_TYPE_SUBDEV
, -1, 1,
213 #if defined(CONFIG_MEDIA_CONTROLLER)
214 sd
->entity
.v4l
.major
= VIDEO_MAJOR
;
215 sd
->entity
.v4l
.minor
= vdev
->minor
;
220 EXPORT_SYMBOL_GPL(v4l2_device_register_subdev_nodes
);
222 void v4l2_device_unregister_subdev(struct v4l2_subdev
*sd
)
224 struct v4l2_device
*v4l2_dev
;
226 /* return if it isn't registered */
227 if (sd
== NULL
|| sd
->v4l2_dev
== NULL
)
230 v4l2_dev
= sd
->v4l2_dev
;
232 spin_lock(&v4l2_dev
->lock
);
234 spin_unlock(&v4l2_dev
->lock
);
236 if (sd
->internal_ops
&& sd
->internal_ops
->unregistered
)
237 sd
->internal_ops
->unregistered(sd
);
240 #if defined(CONFIG_MEDIA_CONTROLLER)
242 media_device_unregister_entity(&sd
->entity
);
244 video_unregister_device(&sd
->devnode
);
245 module_put(sd
->owner
);
247 EXPORT_SYMBOL_GPL(v4l2_device_unregister_subdev
);