Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 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> |
Paul Gortmaker | 7a707b8 | 2011-07-03 14:03:12 -0400 | [diff] [blame] | 23 | #include <linux/module.h> |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 24 | #include <linux/i2c.h> |
Guennadi Liakhovetski | 3e0ec41 | 2011-09-13 08:07:55 -0300 | [diff] [blame] | 25 | #include <linux/slab.h> |
Dmitri Belimov | 85e0921 | 2010-03-23 11:23:29 -0300 | [diff] [blame] | 26 | #if defined(CONFIG_SPI) |
| 27 | #include <linux/spi/spi.h> |
| 28 | #endif |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 29 | #include <linux/videodev2.h> |
| 30 | #include <media/v4l2-device.h> |
Hans Verkuil | 11bbc1c | 2010-05-16 09:24:06 -0300 | [diff] [blame] | 31 | #include <media/v4l2-ctrls.h> |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 32 | |
| 33 | int v4l2_device_register(struct device *dev, struct v4l2_device *v4l2_dev) |
| 34 | { |
Hans Verkuil | 3a63e449 | 2009-02-14 11:54:23 -0300 | [diff] [blame] | 35 | if (v4l2_dev == NULL) |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 36 | return -EINVAL; |
Hans Verkuil | 3a63e449 | 2009-02-14 11:54:23 -0300 | [diff] [blame] | 37 | |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 38 | INIT_LIST_HEAD(&v4l2_dev->subdevs); |
| 39 | spin_lock_init(&v4l2_dev->lock); |
Hans Verkuil | 0f62fd6 | 2011-02-24 10:42:24 -0300 | [diff] [blame] | 40 | v4l2_prio_init(&v4l2_dev->prio); |
Hans Verkuil | bedf8bc | 2011-03-12 06:37:19 -0300 | [diff] [blame] | 41 | kref_init(&v4l2_dev->ref); |
Dave Young | 236c544 | 2011-09-06 09:08:08 -0300 | [diff] [blame] | 42 | get_device(dev); |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 43 | v4l2_dev->dev = dev; |
Hans Verkuil | 3a63e449 | 2009-02-14 11:54:23 -0300 | [diff] [blame] | 44 | if (dev == NULL) { |
| 45 | /* If dev == NULL, then name must be filled in by the caller */ |
Hans Verkuil | 9e882e3 | 2013-06-12 06:04:04 -0300 | [diff] [blame] | 46 | if (WARN_ON(!v4l2_dev->name[0])) |
| 47 | return -EINVAL; |
Hans Verkuil | 3a63e449 | 2009-02-14 11:54:23 -0300 | [diff] [blame] | 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 Sievers | c3ef01c | 2009-03-24 16:38:22 -0700 | [diff] [blame] | 54 | dev->driver->name, dev_name(dev)); |
Laurent Pinchart | 95db3a6 | 2009-12-09 08:40:05 -0300 | [diff] [blame] | 55 | if (!dev_get_drvdata(dev)) |
| 56 | dev_set_drvdata(dev, v4l2_dev); |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 57 | return 0; |
| 58 | } |
| 59 | EXPORT_SYMBOL_GPL(v4l2_device_register); |
| 60 | |
Hans Verkuil | bedf8bc | 2011-03-12 06:37:19 -0300 | [diff] [blame] | 61 | static 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 | |
| 70 | int v4l2_device_put(struct v4l2_device *v4l2_dev) |
| 71 | { |
| 72 | return kref_put(&v4l2_dev->ref, v4l2_device_release); |
| 73 | } |
| 74 | EXPORT_SYMBOL_GPL(v4l2_device_put); |
| 75 | |
Hans Verkuil | 102e781 | 2009-05-02 10:12:50 -0300 | [diff] [blame] | 76 | int 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 | } |
| 90 | EXPORT_SYMBOL_GPL(v4l2_device_set_name); |
| 91 | |
Hans Verkuil | ae6cfaa | 2009-03-14 08:28:45 -0300 | [diff] [blame] | 92 | void v4l2_device_disconnect(struct v4l2_device *v4l2_dev) |
| 93 | { |
Laurent Pinchart | 95db3a6 | 2009-12-09 08:40:05 -0300 | [diff] [blame] | 94 | if (v4l2_dev->dev == NULL) |
| 95 | return; |
| 96 | |
| 97 | if (dev_get_drvdata(v4l2_dev->dev) == v4l2_dev) |
Hans Verkuil | ae6cfaa | 2009-03-14 08:28:45 -0300 | [diff] [blame] | 98 | dev_set_drvdata(v4l2_dev->dev, NULL); |
Dave Young | 236c544 | 2011-09-06 09:08:08 -0300 | [diff] [blame] | 99 | put_device(v4l2_dev->dev); |
Laurent Pinchart | 95db3a6 | 2009-12-09 08:40:05 -0300 | [diff] [blame] | 100 | v4l2_dev->dev = NULL; |
Hans Verkuil | ae6cfaa | 2009-03-14 08:28:45 -0300 | [diff] [blame] | 101 | } |
| 102 | EXPORT_SYMBOL_GPL(v4l2_device_disconnect); |
| 103 | |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 104 | void v4l2_device_unregister(struct v4l2_device *v4l2_dev) |
| 105 | { |
| 106 | struct v4l2_subdev *sd, *next; |
| 107 | |
Hans Verkuil | 9e882e3 | 2013-06-12 06:04:04 -0300 | [diff] [blame] | 108 | /* Just return if v4l2_dev is NULL or if it was already |
| 109 | * unregistered before. */ |
| 110 | if (v4l2_dev == NULL || !v4l2_dev->name[0]) |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 111 | return; |
Hans Verkuil | ae6cfaa | 2009-03-14 08:28:45 -0300 | [diff] [blame] | 112 | v4l2_device_disconnect(v4l2_dev); |
| 113 | |
Hans Verkuil | 3a63e449 | 2009-02-14 11:54:23 -0300 | [diff] [blame] | 114 | /* Unregister subdevs */ |
Hans Verkuil | b5b2b7e | 2009-05-02 10:58:51 -0300 | [diff] [blame] | 115 | list_for_each_entry_safe(sd, next, &v4l2_dev->subdevs, list) { |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 116 | v4l2_device_unregister_subdev(sd); |
Peter Senna Tschudin | 7b34be7 | 2013-01-20 01:32:56 -0300 | [diff] [blame] | 117 | #if IS_ENABLED(CONFIG_I2C) |
Hans Verkuil | b5b2b7e | 2009-05-02 10:58:51 -0300 | [diff] [blame] | 118 | if (sd->flags & V4L2_SUBDEV_FL_IS_I2C) { |
| 119 | struct i2c_client *client = v4l2_get_subdevdata(sd); |
| 120 | |
Tommi Franttila | 0d51ebd | 2015-11-12 07:01:07 -0200 | [diff] [blame] | 121 | /* |
| 122 | * We need to unregister the i2c client |
| 123 | * explicitly. We cannot rely on |
| 124 | * i2c_del_adapter to always unregister |
| 125 | * clients for us, since if the i2c bus is a |
| 126 | * platform bus, then it is never deleted. |
| 127 | * |
| 128 | * Device tree or ACPI based devices must not |
| 129 | * be unregistered as they have not been |
| 130 | * registered by us, and would not be |
| 131 | * re-created by just probing the V4L2 driver. |
| 132 | */ |
| 133 | if (client && |
| 134 | !client->dev.of_node && !client->dev.fwnode) |
Hans Verkuil | b5b2b7e | 2009-05-02 10:58:51 -0300 | [diff] [blame] | 135 | i2c_unregister_device(client); |
Hans Verkuil | 672dcd5 | 2011-01-11 17:48:21 -0300 | [diff] [blame] | 136 | continue; |
Hans Verkuil | b5b2b7e | 2009-05-02 10:58:51 -0300 | [diff] [blame] | 137 | } |
Randy Dunlap | b7fd606 | 2009-05-11 13:37:41 -0300 | [diff] [blame] | 138 | #endif |
Dmitri Belimov | 85e0921 | 2010-03-23 11:23:29 -0300 | [diff] [blame] | 139 | #if defined(CONFIG_SPI) |
| 140 | if (sd->flags & V4L2_SUBDEV_FL_IS_SPI) { |
| 141 | struct spi_device *spi = v4l2_get_subdevdata(sd); |
| 142 | |
Tommi Franttila | 0d51ebd | 2015-11-12 07:01:07 -0200 | [diff] [blame] | 143 | if (spi && !spi->dev.of_node && !spi->dev.fwnode) |
Dmitri Belimov | 85e0921 | 2010-03-23 11:23:29 -0300 | [diff] [blame] | 144 | spi_unregister_device(spi); |
Hans Verkuil | 672dcd5 | 2011-01-11 17:48:21 -0300 | [diff] [blame] | 145 | continue; |
Dmitri Belimov | 85e0921 | 2010-03-23 11:23:29 -0300 | [diff] [blame] | 146 | } |
| 147 | #endif |
Hans Verkuil | b5b2b7e | 2009-05-02 10:58:51 -0300 | [diff] [blame] | 148 | } |
Hans Verkuil | 9e882e3 | 2013-06-12 06:04:04 -0300 | [diff] [blame] | 149 | /* Mark as unregistered, thus preventing duplicate unregistrations */ |
| 150 | v4l2_dev->name[0] = '\0'; |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 151 | } |
| 152 | EXPORT_SYMBOL_GPL(v4l2_device_unregister); |
| 153 | |
Hans Verkuil | 3a63e449 | 2009-02-14 11:54:23 -0300 | [diff] [blame] | 154 | int v4l2_device_register_subdev(struct v4l2_device *v4l2_dev, |
Laurent Pinchart | 61f5db5 | 2009-12-09 08:40:08 -0300 | [diff] [blame] | 155 | struct v4l2_subdev *sd) |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 156 | { |
Laurent Pinchart | 61f5db5 | 2009-12-09 08:40:08 -0300 | [diff] [blame] | 157 | #if defined(CONFIG_MEDIA_CONTROLLER) |
| 158 | struct media_entity *entity = &sd->entity; |
| 159 | #endif |
Hans Verkuil | 11bbc1c | 2010-05-16 09:24:06 -0300 | [diff] [blame] | 160 | int err; |
| 161 | |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 162 | /* Check for valid input */ |
Hans Verkuil | 3a63e449 | 2009-02-14 11:54:23 -0300 | [diff] [blame] | 163 | if (v4l2_dev == NULL || sd == NULL || !sd->name[0]) |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 164 | return -EINVAL; |
Laurent Pinchart | 2096a5d | 2009-12-09 08:38:49 -0300 | [diff] [blame] | 165 | |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 166 | /* Warn if we apparently re-register a subdev */ |
Hans Verkuil | b016760 | 2009-02-14 12:00:53 -0300 | [diff] [blame] | 167 | WARN_ON(sd->v4l2_dev != NULL); |
Laurent Pinchart | 2096a5d | 2009-12-09 08:38:49 -0300 | [diff] [blame] | 168 | |
Sakari Ailus | b2a06ae | 2013-12-12 09:36:46 -0300 | [diff] [blame] | 169 | /* |
| 170 | * The reason to acquire the module here is to avoid unloading |
| 171 | * a module of sub-device which is registered to a media |
| 172 | * device. To make it possible to unload modules for media |
| 173 | * devices that also register sub-devices, do not |
| 174 | * try_module_get() such sub-device owners. |
| 175 | */ |
| 176 | sd->owner_v4l2_dev = v4l2_dev->dev && v4l2_dev->dev->driver && |
| 177 | sd->owner == v4l2_dev->dev->driver->owner; |
| 178 | |
| 179 | if (!sd->owner_v4l2_dev && !try_module_get(sd->owner)) |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 180 | return -ENODEV; |
Laurent Pinchart | 2096a5d | 2009-12-09 08:38:49 -0300 | [diff] [blame] | 181 | |
Hans Verkuil | 45f6f84 | 2011-01-08 07:15:53 -0300 | [diff] [blame] | 182 | sd->v4l2_dev = v4l2_dev; |
| 183 | if (sd->internal_ops && sd->internal_ops->registered) { |
| 184 | err = sd->internal_ops->registered(sd); |
Laurent Pinchart | 317efce | 2012-11-24 21:35:48 -0300 | [diff] [blame] | 185 | if (err) |
| 186 | goto error_module; |
Hans Verkuil | 45f6f84 | 2011-01-08 07:15:53 -0300 | [diff] [blame] | 187 | } |
Laurent Pinchart | 2096a5d | 2009-12-09 08:38:49 -0300 | [diff] [blame] | 188 | |
Hans Verkuil | 11bbc1c | 2010-05-16 09:24:06 -0300 | [diff] [blame] | 189 | /* This just returns 0 if either of the two args is NULL */ |
Hans Verkuil | 34a6b7d | 2012-09-14 07:15:03 -0300 | [diff] [blame] | 190 | err = v4l2_ctrl_add_handler(v4l2_dev->ctrl_handler, sd->ctrl_handler, NULL); |
Laurent Pinchart | 317efce | 2012-11-24 21:35:48 -0300 | [diff] [blame] | 191 | if (err) |
| 192 | goto error_unregister; |
Laurent Pinchart | 2096a5d | 2009-12-09 08:38:49 -0300 | [diff] [blame] | 193 | |
Laurent Pinchart | 61f5db5 | 2009-12-09 08:40:08 -0300 | [diff] [blame] | 194 | #if defined(CONFIG_MEDIA_CONTROLLER) |
| 195 | /* Register the entity. */ |
| 196 | if (v4l2_dev->mdev) { |
| 197 | err = media_device_register_entity(v4l2_dev->mdev, entity); |
Laurent Pinchart | 317efce | 2012-11-24 21:35:48 -0300 | [diff] [blame] | 198 | if (err < 0) |
| 199 | goto error_unregister; |
Laurent Pinchart | 61f5db5 | 2009-12-09 08:40:08 -0300 | [diff] [blame] | 200 | } |
| 201 | #endif |
| 202 | |
Hans Verkuil | 3a63e449 | 2009-02-14 11:54:23 -0300 | [diff] [blame] | 203 | spin_lock(&v4l2_dev->lock); |
| 204 | list_add_tail(&sd->list, &v4l2_dev->subdevs); |
| 205 | spin_unlock(&v4l2_dev->lock); |
Laurent Pinchart | 2096a5d | 2009-12-09 08:38:49 -0300 | [diff] [blame] | 206 | |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 207 | return 0; |
Laurent Pinchart | 317efce | 2012-11-24 21:35:48 -0300 | [diff] [blame] | 208 | |
| 209 | error_unregister: |
| 210 | if (sd->internal_ops && sd->internal_ops->unregistered) |
| 211 | sd->internal_ops->unregistered(sd); |
| 212 | error_module: |
Sakari Ailus | b2a06ae | 2013-12-12 09:36:46 -0300 | [diff] [blame] | 213 | if (!sd->owner_v4l2_dev) |
| 214 | module_put(sd->owner); |
Laurent Pinchart | 317efce | 2012-11-24 21:35:48 -0300 | [diff] [blame] | 215 | sd->v4l2_dev = NULL; |
| 216 | return err; |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 217 | } |
| 218 | EXPORT_SYMBOL_GPL(v4l2_device_register_subdev); |
| 219 | |
Guennadi Liakhovetski | 3e0ec41 | 2011-09-13 08:07:55 -0300 | [diff] [blame] | 220 | static void v4l2_device_release_subdev_node(struct video_device *vdev) |
| 221 | { |
| 222 | struct v4l2_subdev *sd = video_get_drvdata(vdev); |
| 223 | sd->devnode = NULL; |
| 224 | kfree(vdev); |
| 225 | } |
| 226 | |
Laurent Pinchart | 2096a5d | 2009-12-09 08:38:49 -0300 | [diff] [blame] | 227 | int v4l2_device_register_subdev_nodes(struct v4l2_device *v4l2_dev) |
| 228 | { |
| 229 | struct video_device *vdev; |
| 230 | struct v4l2_subdev *sd; |
| 231 | int err; |
| 232 | |
| 233 | /* Register a device node for every subdev marked with the |
| 234 | * V4L2_SUBDEV_FL_HAS_DEVNODE flag. |
| 235 | */ |
| 236 | list_for_each_entry(sd, &v4l2_dev->subdevs, list) { |
| 237 | if (!(sd->flags & V4L2_SUBDEV_FL_HAS_DEVNODE)) |
| 238 | continue; |
| 239 | |
Guennadi Liakhovetski | 3e0ec41 | 2011-09-13 08:07:55 -0300 | [diff] [blame] | 240 | vdev = kzalloc(sizeof(*vdev), GFP_KERNEL); |
| 241 | if (!vdev) { |
| 242 | err = -ENOMEM; |
| 243 | goto clean_up; |
| 244 | } |
| 245 | |
| 246 | video_set_drvdata(vdev, sd); |
Laurent Pinchart | 2096a5d | 2009-12-09 08:38:49 -0300 | [diff] [blame] | 247 | strlcpy(vdev->name, sd->name, sizeof(vdev->name)); |
| 248 | vdev->v4l2_dev = v4l2_dev; |
| 249 | vdev->fops = &v4l2_subdev_fops; |
Guennadi Liakhovetski | 3e0ec41 | 2011-09-13 08:07:55 -0300 | [diff] [blame] | 250 | vdev->release = v4l2_device_release_subdev_node; |
Hans Verkuil | 18d171b | 2011-05-25 08:52:13 -0300 | [diff] [blame] | 251 | vdev->ctrl_handler = sd->ctrl_handler; |
Laurent Pinchart | 2096a5d | 2009-12-09 08:38:49 -0300 | [diff] [blame] | 252 | err = __video_register_device(vdev, VFL_TYPE_SUBDEV, -1, 1, |
| 253 | sd->owner); |
Guennadi Liakhovetski | 3e0ec41 | 2011-09-13 08:07:55 -0300 | [diff] [blame] | 254 | if (err < 0) { |
| 255 | kfree(vdev); |
| 256 | goto clean_up; |
| 257 | } |
Laurent Pinchart | 61f5db5 | 2009-12-09 08:40:08 -0300 | [diff] [blame] | 258 | #if defined(CONFIG_MEDIA_CONTROLLER) |
Mauro Carvalho Chehab | e31a0ba | 2015-01-02 12:18:23 -0300 | [diff] [blame] | 259 | sd->entity.info.dev.major = VIDEO_MAJOR; |
| 260 | sd->entity.info.dev.minor = vdev->minor; |
Laurent Pinchart | 61f5db5 | 2009-12-09 08:40:08 -0300 | [diff] [blame] | 261 | #endif |
Guennadi Liakhovetski | 3e0ec41 | 2011-09-13 08:07:55 -0300 | [diff] [blame] | 262 | sd->devnode = vdev; |
Laurent Pinchart | 2096a5d | 2009-12-09 08:38:49 -0300 | [diff] [blame] | 263 | } |
Laurent Pinchart | 2096a5d | 2009-12-09 08:38:49 -0300 | [diff] [blame] | 264 | return 0; |
Guennadi Liakhovetski | 3e0ec41 | 2011-09-13 08:07:55 -0300 | [diff] [blame] | 265 | |
| 266 | clean_up: |
| 267 | list_for_each_entry(sd, &v4l2_dev->subdevs, list) { |
| 268 | if (!sd->devnode) |
| 269 | break; |
| 270 | video_unregister_device(sd->devnode); |
| 271 | } |
| 272 | |
| 273 | return err; |
Laurent Pinchart | 2096a5d | 2009-12-09 08:38:49 -0300 | [diff] [blame] | 274 | } |
| 275 | EXPORT_SYMBOL_GPL(v4l2_device_register_subdev_nodes); |
| 276 | |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 277 | void v4l2_device_unregister_subdev(struct v4l2_subdev *sd) |
| 278 | { |
Laurent Pinchart | 61f5db5 | 2009-12-09 08:40:08 -0300 | [diff] [blame] | 279 | struct v4l2_device *v4l2_dev; |
| 280 | |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 281 | /* return if it isn't registered */ |
Hans Verkuil | b016760 | 2009-02-14 12:00:53 -0300 | [diff] [blame] | 282 | if (sd == NULL || sd->v4l2_dev == NULL) |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 283 | return; |
Laurent Pinchart | 2096a5d | 2009-12-09 08:38:49 -0300 | [diff] [blame] | 284 | |
Laurent Pinchart | 61f5db5 | 2009-12-09 08:40:08 -0300 | [diff] [blame] | 285 | v4l2_dev = sd->v4l2_dev; |
| 286 | |
| 287 | spin_lock(&v4l2_dev->lock); |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 288 | list_del(&sd->list); |
Laurent Pinchart | 61f5db5 | 2009-12-09 08:40:08 -0300 | [diff] [blame] | 289 | spin_unlock(&v4l2_dev->lock); |
| 290 | |
Hans Verkuil | 45f6f84 | 2011-01-08 07:15:53 -0300 | [diff] [blame] | 291 | if (sd->internal_ops && sd->internal_ops->unregistered) |
| 292 | sd->internal_ops->unregistered(sd); |
Hans Verkuil | b016760 | 2009-02-14 12:00:53 -0300 | [diff] [blame] | 293 | sd->v4l2_dev = NULL; |
Laurent Pinchart | 2096a5d | 2009-12-09 08:38:49 -0300 | [diff] [blame] | 294 | |
Laurent Pinchart | 61f5db5 | 2009-12-09 08:40:08 -0300 | [diff] [blame] | 295 | #if defined(CONFIG_MEDIA_CONTROLLER) |
Sylwester Nawrocki | c2efd3e | 2013-05-09 08:29:33 -0300 | [diff] [blame] | 296 | if (v4l2_dev->mdev) { |
| 297 | media_entity_remove_links(&sd->entity); |
Laurent Pinchart | 61f5db5 | 2009-12-09 08:40:08 -0300 | [diff] [blame] | 298 | media_device_unregister_entity(&sd->entity); |
Sylwester Nawrocki | c2efd3e | 2013-05-09 08:29:33 -0300 | [diff] [blame] | 299 | } |
Laurent Pinchart | 61f5db5 | 2009-12-09 08:40:08 -0300 | [diff] [blame] | 300 | #endif |
Guennadi Liakhovetski | 3e0ec41 | 2011-09-13 08:07:55 -0300 | [diff] [blame] | 301 | video_unregister_device(sd->devnode); |
Sakari Ailus | b2a06ae | 2013-12-12 09:36:46 -0300 | [diff] [blame] | 302 | if (!sd->owner_v4l2_dev) |
| 303 | module_put(sd->owner); |
Hans Verkuil | 2a1fcdf | 2008-11-29 21:36:58 -0300 | [diff] [blame] | 304 | } |
| 305 | EXPORT_SYMBOL_GPL(v4l2_device_unregister_subdev); |