Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * V 4 L 2 D R I V E R H E L P E R A P I |
| 4 | * |
| 5 | * Moved from videodev2.h |
| 6 | * |
| 7 | * Some commonly needed functions for drivers (v4l2-common.o module) |
| 8 | */ |
| 9 | #ifndef _V4L2_DEV_H |
| 10 | #define _V4L2_DEV_H |
| 11 | |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 12 | #include <linux/poll.h> |
| 13 | #include <linux/fs.h> |
| 14 | #include <linux/device.h> |
Hans Verkuil | 7f8ecfa | 2008-08-29 17:31:35 -0300 | [diff] [blame] | 15 | #include <linux/cdev.h> |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 16 | #include <linux/mutex.h> |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 17 | #include <linux/videodev2.h> |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 18 | |
Laurent Pinchart | 2c0ab67 | 2009-12-09 08:40:10 -0300 | [diff] [blame] | 19 | #include <media/media-entity.h> |
| 20 | |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 21 | #define VIDEO_MAJOR 81 |
Hans Verkuil | bfa8a27 | 2008-08-23 07:48:38 -0300 | [diff] [blame] | 22 | |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 23 | #define VFL_TYPE_GRABBER 0 |
| 24 | #define VFL_TYPE_VBI 1 |
| 25 | #define VFL_TYPE_RADIO 2 |
Laurent Pinchart | 2096a5d | 2009-12-09 08:38:49 -0300 | [diff] [blame] | 26 | #define VFL_TYPE_SUBDEV 3 |
Antti Palosaari | d42626b | 2013-12-11 20:03:07 -0300 | [diff] [blame] | 27 | #define VFL_TYPE_SDR 4 |
| 28 | #define VFL_TYPE_MAX 5 |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 29 | |
Hans Verkuil | 5c77879 | 2012-09-05 05:33:21 -0300 | [diff] [blame] | 30 | /* Is this a receiver, transmitter or mem-to-mem? */ |
| 31 | /* Ignored for VFL_TYPE_SUBDEV. */ |
| 32 | #define VFL_DIR_RX 0 |
| 33 | #define VFL_DIR_TX 1 |
| 34 | #define VFL_DIR_M2M 2 |
| 35 | |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 36 | struct v4l2_ioctl_callbacks; |
Hans Verkuil | bec4366 | 2008-12-30 06:58:20 -0300 | [diff] [blame] | 37 | struct video_device; |
Hans Verkuil | 9bea351 | 2008-12-23 07:35:17 -0300 | [diff] [blame] | 38 | struct v4l2_device; |
Hans Verkuil | 0996517 | 2010-08-01 14:32:42 -0300 | [diff] [blame] | 39 | struct v4l2_ctrl_handler; |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 40 | |
Laurent Pinchart | 957b4aa | 2009-11-27 13:57:22 -0300 | [diff] [blame] | 41 | /* Flag to mark the video_device struct as registered. |
| 42 | Drivers can clear this flag if they want to block all future |
| 43 | device access. It is cleared by video_unregister_device. */ |
| 44 | #define V4L2_FL_REGISTERED (0) |
Hans Verkuil | b1a873a | 2011-03-22 10:14:07 -0300 | [diff] [blame] | 45 | /* file->private_data points to struct v4l2_fh */ |
Sakari Ailus | 1babcb4 | 2010-03-23 09:25:26 -0300 | [diff] [blame] | 46 | #define V4L2_FL_USES_V4L2_FH (1) |
Hans Verkuil | dc93a70 | 2008-12-19 21:28:27 -0300 | [diff] [blame] | 47 | |
Hans Verkuil | 0226549 | 2010-12-29 10:05:02 -0300 | [diff] [blame] | 48 | /* Priority helper functions */ |
| 49 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 50 | /** |
| 51 | * struct v4l2_prio_state - stores the priority states |
| 52 | * |
| 53 | * @prios: array with elements to store the array priorities |
| 54 | * |
| 55 | * |
| 56 | * .. note:: |
| 57 | * The size of @prios array matches the number of priority types defined |
| 58 | * by :ref:`enum v4l2_priority <v4l2-priority>`. |
| 59 | */ |
Hans Verkuil | 0226549 | 2010-12-29 10:05:02 -0300 | [diff] [blame] | 60 | struct v4l2_prio_state { |
| 61 | atomic_t prios[4]; |
| 62 | }; |
| 63 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 64 | /** |
| 65 | * v4l2_prio_init - initializes a struct v4l2_prio_state |
| 66 | * |
| 67 | * @global: pointer to &struct v4l2_prio_state |
| 68 | */ |
Hans Verkuil | 0226549 | 2010-12-29 10:05:02 -0300 | [diff] [blame] | 69 | void v4l2_prio_init(struct v4l2_prio_state *global); |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 70 | |
| 71 | /** |
| 72 | * v4l2_prio_change - changes the v4l2 file handler priority |
| 73 | * |
| 74 | * @global: pointer to the &struct v4l2_prio_state of the device node. |
| 75 | * @local: pointer to the desired priority, as defined by :ref:`enum v4l2_priority <v4l2-priority>` |
| 76 | * @new: Priority type requested, as defined by :ref:`enum v4l2_priority <v4l2-priority>`. |
| 77 | * |
| 78 | * .. note:: |
| 79 | * This function should be used only by the V4L2 core. |
| 80 | */ |
Hans Verkuil | 0226549 | 2010-12-29 10:05:02 -0300 | [diff] [blame] | 81 | int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local, |
| 82 | enum v4l2_priority new); |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 83 | |
| 84 | /** |
| 85 | * v4l2_prio_open - Implements the priority logic for a file handler open |
| 86 | * |
| 87 | * @global: pointer to the &struct v4l2_prio_state of the device node. |
| 88 | * @local: pointer to the desired priority, as defined by :ref:`enum v4l2_priority <v4l2-priority>` |
| 89 | * |
| 90 | * .. note:: |
| 91 | * This function should be used only by the V4L2 core. |
| 92 | */ |
Hans Verkuil | 0226549 | 2010-12-29 10:05:02 -0300 | [diff] [blame] | 93 | void v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local); |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 94 | |
| 95 | /** |
| 96 | * v4l2_prio_close - Implements the priority logic for a file handler close |
| 97 | * |
| 98 | * @global: pointer to the &struct v4l2_prio_state of the device node. |
| 99 | * @local: priority to be released, as defined by :ref:`enum v4l2_priority <v4l2-priority>` |
| 100 | * |
| 101 | * .. note:: |
| 102 | * This function should be used only by the V4L2 core. |
| 103 | */ |
Hans Verkuil | 0226549 | 2010-12-29 10:05:02 -0300 | [diff] [blame] | 104 | void v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority local); |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 105 | |
| 106 | /** |
| 107 | * v4l2_prio_max - Return the maximum priority, as stored at the @global array. |
| 108 | * |
| 109 | * @global: pointer to the &struct v4l2_prio_state of the device node. |
| 110 | * |
| 111 | * .. note:: |
| 112 | * This function should be used only by the V4L2 core. |
| 113 | */ |
Hans Verkuil | 0226549 | 2010-12-29 10:05:02 -0300 | [diff] [blame] | 114 | enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global); |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 115 | |
| 116 | /** |
| 117 | * v4l2_prio_close - Implements the priority logic for a file handler close |
| 118 | * |
| 119 | * @global: pointer to the &struct v4l2_prio_state of the device node. |
| 120 | * @local: desired priority, as defined by :ref:`enum v4l2_priority <v4l2-priority>` local |
| 121 | * |
| 122 | * .. note:: |
| 123 | * This function should be used only by the V4L2 core. |
| 124 | */ |
Hans Verkuil | 0226549 | 2010-12-29 10:05:02 -0300 | [diff] [blame] | 125 | int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority local); |
| 126 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 127 | /** |
| 128 | * struct v4l2_file_operations - fs operations used by a V4L2 device |
| 129 | * |
| 130 | * @owner: pointer to struct module |
| 131 | * @read: operations needed to implement the read() syscall |
| 132 | * @write: operations needed to implement the write() syscall |
| 133 | * @poll: operations needed to implement the poll() syscall |
| 134 | * @unlocked_ioctl: operations needed to implement the ioctl() syscall |
| 135 | * @compat_ioctl32: operations needed to implement the ioctl() syscall for |
| 136 | * the special case where the Kernel uses 64 bits instructions, but |
| 137 | * the userspace uses 32 bits. |
| 138 | * @get_unmapped_area: called by the mmap() syscall, used when %!CONFIG_MMU |
| 139 | * @mmap: operations needed to implement the mmap() syscall |
| 140 | * @open: operations needed to implement the open() syscall |
| 141 | * @release: operations needed to implement the release() syscall |
| 142 | * |
| 143 | * .. note:: |
| 144 | * |
| 145 | * Those operations are used to implemente the fs struct file_operations |
| 146 | * at the V4L2 drivers. The V4L2 core overrides the fs ops with some |
| 147 | * extra logic needed by the subsystem. |
| 148 | */ |
Hans Verkuil | bec4366 | 2008-12-30 06:58:20 -0300 | [diff] [blame] | 149 | struct v4l2_file_operations { |
| 150 | struct module *owner; |
| 151 | ssize_t (*read) (struct file *, char __user *, size_t, loff_t *); |
| 152 | ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *); |
| 153 | unsigned int (*poll) (struct file *, struct poll_table_struct *); |
Hans Verkuil | bec4366 | 2008-12-30 06:58:20 -0300 | [diff] [blame] | 154 | long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long); |
Laurent Pinchart | b9d0aa6 | 2011-12-18 20:41:19 -0300 | [diff] [blame] | 155 | #ifdef CONFIG_COMPAT |
| 156 | long (*compat_ioctl32) (struct file *, unsigned int, unsigned long); |
| 157 | #endif |
Bob Liu | ecc6517 | 2011-05-06 05:20:09 -0300 | [diff] [blame] | 158 | unsigned long (*get_unmapped_area) (struct file *, unsigned long, |
| 159 | unsigned long, unsigned long, unsigned long); |
Hans Verkuil | bec4366 | 2008-12-30 06:58:20 -0300 | [diff] [blame] | 160 | int (*mmap) (struct file *, struct vm_area_struct *); |
| 161 | int (*open) (struct file *); |
| 162 | int (*release) (struct file *); |
| 163 | }; |
| 164 | |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 165 | /* |
| 166 | * Newer version of video_device, handled by videodev2.c |
| 167 | * This version moves redundant code from video device code to |
| 168 | * the common handler |
| 169 | */ |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 170 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 171 | /** |
| 172 | * struct video_device - Structure used to create and manage the V4L2 device |
| 173 | * nodes. |
| 174 | * |
| 175 | * @entity: &struct media_entity |
| 176 | * @intf_devnode: pointer to &struct media_intf_devnode |
| 177 | * @pipe: &struct media_pipeline |
| 178 | * @fops: pointer to &struct v4l2_file_operations for the video device |
| 179 | * @device_caps: device capabilities as used in v4l2_capabilities |
| 180 | * @dev: &struct device for the video device |
| 181 | * @cdev: character device |
| 182 | * @v4l2_dev: pointer to &struct v4l2_device parent |
| 183 | * @dev_parent: pointer to &struct device parent |
| 184 | * @ctrl_handler: Control handler associated with this device node. |
| 185 | * May be NULL. |
| 186 | * @queue: &struct vb2_queue associated with this device node. May be NULL. |
| 187 | * @prio: pointer to &struct v4l2_prio_state with device's Priority state. |
| 188 | * If NULL, then v4l2_dev->prio will be used. |
| 189 | * @name: video device name |
| 190 | * @vfl_type: V4L device type |
| 191 | * @vfl_dir: V4L receiver, transmitter or m2m |
| 192 | * @minor: device node 'minor'. It is set to -1 if the registration failed |
| 193 | * @num: number of the video device node |
| 194 | * @flags: video device flags. Use bitops to set/clear/test flags |
| 195 | * @index: attribute to differentiate multiple indices on one physical device |
| 196 | * @fh_lock: Lock for all v4l2_fhs |
| 197 | * @fh_list: List of &struct v4l2_fh |
| 198 | * @dev_debug: Internal device debug flags, not for use by drivers |
| 199 | * @tvnorms: Supported tv norms |
| 200 | * |
| 201 | * @release: video device release() callback |
| 202 | * @ioctl_ops: pointer to &struct v4l2_ioctl_ops with ioctl callbacks |
| 203 | * |
| 204 | * @valid_ioctls: bitmap with the valid ioctls for this device |
| 205 | * @disable_locking: bitmap with the ioctls that don't require locking |
| 206 | * @lock: pointer to &struct mutex serialization lock |
| 207 | * |
| 208 | * .. note:: |
| 209 | * Only set @dev_parent if that can't be deduced from @v4l2_dev. |
| 210 | */ |
| 211 | |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 212 | struct video_device |
| 213 | { |
Laurent Pinchart | 2c0ab67 | 2009-12-09 08:40:10 -0300 | [diff] [blame] | 214 | #if defined(CONFIG_MEDIA_CONTROLLER) |
| 215 | struct media_entity entity; |
Mauro Carvalho Chehab | d9c21e3 | 2015-08-24 08:47:54 -0300 | [diff] [blame] | 216 | struct media_intf_devnode *intf_devnode; |
Shuah Khan | d0a164f | 2016-02-11 21:41:25 -0200 | [diff] [blame] | 217 | struct media_pipeline pipe; |
Laurent Pinchart | 2c0ab67 | 2009-12-09 08:40:10 -0300 | [diff] [blame] | 218 | #endif |
Hans Verkuil | bec4366 | 2008-12-30 06:58:20 -0300 | [diff] [blame] | 219 | const struct v4l2_file_operations *fops; |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 220 | |
Hans Verkuil | 7bbe781 | 2016-03-01 11:57:23 -0300 | [diff] [blame] | 221 | u32 device_caps; |
| 222 | |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 223 | /* sysfs */ |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 224 | struct device dev; |
| 225 | struct cdev *cdev; |
Hans Verkuil | 9bea351 | 2008-12-23 07:35:17 -0300 | [diff] [blame] | 226 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 227 | struct v4l2_device *v4l2_dev; |
| 228 | struct device *dev_parent; |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 229 | |
Hans Verkuil | 0996517 | 2010-08-01 14:32:42 -0300 | [diff] [blame] | 230 | struct v4l2_ctrl_handler *ctrl_handler; |
| 231 | |
Hans Verkuil | 5a5adf6 | 2012-06-22 07:29:35 -0300 | [diff] [blame] | 232 | struct vb2_queue *queue; |
| 233 | |
Hans Verkuil | 0f62fd6 | 2011-02-24 10:42:24 -0300 | [diff] [blame] | 234 | struct v4l2_prio_state *prio; |
| 235 | |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 236 | /* device info */ |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 237 | char name[32]; |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 238 | int vfl_type; |
| 239 | int vfl_dir; |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 240 | int minor; |
Hans Verkuil | dd89601 | 2008-10-04 08:36:54 -0300 | [diff] [blame] | 241 | u16 num; |
Hans Verkuil | dc93a70 | 2008-12-19 21:28:27 -0300 | [diff] [blame] | 242 | unsigned long flags; |
brandon@ifup.org | 539a755 | 2008-06-20 22:58:53 -0300 | [diff] [blame] | 243 | int index; |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 244 | |
Sakari Ailus | 1babcb4 | 2010-03-23 09:25:26 -0300 | [diff] [blame] | 245 | /* V4L2 file handles */ |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 246 | spinlock_t fh_lock; |
| 247 | struct list_head fh_list; |
Sakari Ailus | 1babcb4 | 2010-03-23 09:25:26 -0300 | [diff] [blame] | 248 | |
Hans Verkuil | 17028cd | 2014-12-01 10:10:44 -0300 | [diff] [blame] | 249 | int dev_debug; |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 250 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 251 | v4l2_std_id tvnorms; |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 252 | |
| 253 | /* callbacks */ |
Hans Verkuil | dc93a70 | 2008-12-19 21:28:27 -0300 | [diff] [blame] | 254 | void (*release)(struct video_device *vdev); |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame] | 255 | const struct v4l2_ioctl_ops *ioctl_ops; |
Hans Verkuil | 48ea0be | 2012-05-10 05:36:00 -0300 | [diff] [blame] | 256 | DECLARE_BITMAP(valid_ioctls, BASE_VIDIOC_PRIVATE); |
Hans Verkuil | ee6869a | 2010-09-26 08:47:38 -0300 | [diff] [blame] | 257 | |
Hans Verkuil | 152a3a7 | 2012-05-14 11:32:48 -0300 | [diff] [blame] | 258 | DECLARE_BITMAP(disable_locking, BASE_VIDIOC_PRIVATE); |
Hans Verkuil | ee6869a | 2010-09-26 08:47:38 -0300 | [diff] [blame] | 259 | struct mutex *lock; |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 260 | }; |
| 261 | |
Laurent Pinchart | 6e3ea0e | 2011-05-02 16:21:03 -0300 | [diff] [blame] | 262 | #define media_entity_to_video_device(__e) \ |
| 263 | container_of(__e, struct video_device, entity) |
Hans Verkuil | bfa8a27 | 2008-08-23 07:48:38 -0300 | [diff] [blame] | 264 | /* dev to video-device */ |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 265 | #define to_video_device(cd) container_of(cd, struct video_device, dev) |
Linus Torvalds | e90ff92 | 2007-09-13 21:09:01 -0300 | [diff] [blame] | 266 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 267 | /** |
| 268 | * __video_register_device - register video4linux devices |
| 269 | * |
| 270 | * @vdev: struct video_device to register |
| 271 | * @type: type of device to register |
| 272 | * @nr: which device node number is desired: |
| 273 | * (0 == /dev/video0, 1 == /dev/video1, ..., -1 == first free) |
| 274 | * @warn_if_nr_in_use: warn if the desired device node number |
| 275 | * was already in use and another number was chosen instead. |
| 276 | * @owner: module that owns the video device node |
| 277 | * |
| 278 | * The registration code assigns minor numbers and device node numbers |
| 279 | * based on the requested type and registers the new device node with |
| 280 | * the kernel. |
| 281 | * |
| 282 | * This function assumes that struct video_device was zeroed when it |
| 283 | * was allocated and does not contain any stale date. |
| 284 | * |
| 285 | * An error is returned if no free minor or device node number could be |
| 286 | * found, or if the registration of the device node failed. |
| 287 | * |
| 288 | * Returns 0 on success. |
| 289 | * |
| 290 | * Valid values for @type are: |
| 291 | * |
| 292 | * - %VFL_TYPE_GRABBER - A frame grabber |
| 293 | * - %VFL_TYPE_VBI - Vertical blank data (undecoded) |
| 294 | * - %VFL_TYPE_RADIO - A radio card |
| 295 | * - %VFL_TYPE_SUBDEV - A subdevice |
| 296 | * - %VFL_TYPE_SDR - Software Defined Radio |
| 297 | * |
| 298 | * .. note:: |
| 299 | * |
| 300 | * This function is meant to be used only inside the V4L2 core. |
| 301 | * Drivers should use video_register_device() or |
| 302 | * video_register_device_no_warn(). |
| 303 | */ |
Laurent Pinchart | 2096a5d | 2009-12-09 08:38:49 -0300 | [diff] [blame] | 304 | int __must_check __video_register_device(struct video_device *vdev, int type, |
| 305 | int nr, int warn_if_nr_in_use, struct module *owner); |
| 306 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 307 | /** |
| 308 | * video_register_device - register video4linux devices |
| 309 | * |
| 310 | * @vdev: struct video_device to register |
| 311 | * @type: type of device to register |
| 312 | * @nr: which device node number is desired: |
| 313 | * (0 == /dev/video0, 1 == /dev/video1, ..., -1 == first free) |
| 314 | * |
| 315 | * Internally, it calls __video_register_device(). Please see its |
| 316 | * documentation for more details. |
| 317 | * |
| 318 | * .. note:: |
| 319 | * if video_register_device fails, the release() callback of |
| 320 | * &struct video_device structure is *not* called, so the caller |
| 321 | * is responsible for freeing any data. Usually that means that |
| 322 | * you video_device_release() should be called on failure. |
| 323 | */ |
Laurent Pinchart | 2096a5d | 2009-12-09 08:38:49 -0300 | [diff] [blame] | 324 | static inline int __must_check video_register_device(struct video_device *vdev, |
| 325 | int type, int nr) |
| 326 | { |
| 327 | return __video_register_device(vdev, type, nr, 1, vdev->fops->owner); |
| 328 | } |
Hans Verkuil | dc93a70 | 2008-12-19 21:28:27 -0300 | [diff] [blame] | 329 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 330 | /** |
| 331 | * video_register_device_no_warn - register video4linux devices |
| 332 | * |
| 333 | * @vdev: struct video_device to register |
| 334 | * @type: type of device to register |
| 335 | * @nr: which device node number is desired: |
| 336 | * (0 == /dev/video0, 1 == /dev/video1, ..., -1 == first free) |
| 337 | * |
| 338 | * This function is identical to video_register_device() except that no |
| 339 | * warning is issued if the desired device node number was already in use. |
| 340 | * |
| 341 | * Internally, it calls __video_register_device(). Please see its |
| 342 | * documentation for more details. |
| 343 | * |
| 344 | * .. note:: |
| 345 | * if video_register_device fails, the release() callback of |
| 346 | * &struct video_device structure is *not* called, so the caller |
| 347 | * is responsible for freeing any data. Usually that means that |
| 348 | * you video_device_release() should be called on failure. |
| 349 | */ |
Laurent Pinchart | 2096a5d | 2009-12-09 08:38:49 -0300 | [diff] [blame] | 350 | static inline int __must_check video_register_device_no_warn( |
| 351 | struct video_device *vdev, int type, int nr) |
| 352 | { |
| 353 | return __video_register_device(vdev, type, nr, 0, vdev->fops->owner); |
| 354 | } |
Hans Verkuil | 6b5270d | 2009-09-06 07:54:00 -0300 | [diff] [blame] | 355 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 356 | /** |
| 357 | * video_unregister_device - Unregister video devices. |
| 358 | * |
| 359 | * @vdev: &struct video_device to register |
| 360 | * |
| 361 | * Does nothing if vdev == NULL or if video_is_registered() returns false. |
| 362 | */ |
Hans Verkuil | dc93a70 | 2008-12-19 21:28:27 -0300 | [diff] [blame] | 363 | void video_unregister_device(struct video_device *vdev); |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 364 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 365 | /** |
| 366 | * video_device_alloc - helper function to alloc &struct video_device |
| 367 | * |
| 368 | * Returns NULL if %-ENOMEM or a &struct video_device on success. |
| 369 | */ |
Hans Verkuil | e138c59 | 2008-08-23 06:38:11 -0300 | [diff] [blame] | 370 | struct video_device * __must_check video_device_alloc(void); |
Hans Verkuil | bfa8a27 | 2008-08-23 07:48:38 -0300 | [diff] [blame] | 371 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 372 | /** |
| 373 | * video_device_release - helper function to release &struct video_device |
| 374 | * |
| 375 | * @vdev: pointer to &struct video_device |
| 376 | * |
Mauro Carvalho Chehab | 564aaf6 | 2016-07-23 07:12:03 -0300 | [diff] [blame] | 377 | * Can also be used for video_device->release\(\). |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 378 | */ |
Hans Verkuil | dc93a70 | 2008-12-19 21:28:27 -0300 | [diff] [blame] | 379 | void video_device_release(struct video_device *vdev); |
Hans Verkuil | bfa8a27 | 2008-08-23 07:48:38 -0300 | [diff] [blame] | 380 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 381 | /** |
| 382 | * video_device_release_empty - helper function to implement the |
Mauro Carvalho Chehab | 564aaf6 | 2016-07-23 07:12:03 -0300 | [diff] [blame] | 383 | * video_device->release\(\) callback. |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 384 | * |
| 385 | * @vdev: pointer to &struct video_device |
| 386 | * |
| 387 | * This release function does nothing. |
| 388 | * |
| 389 | * It should be used when the video_device is a static global struct. |
| 390 | * |
| 391 | * .. note:: |
| 392 | * Having a static video_device is a dubious construction at best. |
| 393 | */ |
Hans Verkuil | dc93a70 | 2008-12-19 21:28:27 -0300 | [diff] [blame] | 394 | void video_device_release_empty(struct video_device *vdev); |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 395 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 396 | /** |
| 397 | * v4l2_is_known_ioctl - Checks if a given cmd is a known V4L ioctl |
| 398 | * |
| 399 | * @cmd: ioctl command |
| 400 | * |
| 401 | * returns true if cmd is a known V4L2 ioctl |
| 402 | */ |
Hans Verkuil | 8ab75e3 | 2012-05-10 02:51:31 -0300 | [diff] [blame] | 403 | bool v4l2_is_known_ioctl(unsigned int cmd); |
| 404 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 405 | /** v4l2_disable_ioctl_locking - mark that a given command |
| 406 | * shouldn't use core locking |
| 407 | * |
| 408 | * @vdev: pointer to &struct video_device |
| 409 | * @cmd: ioctl command |
| 410 | */ |
| 411 | static inline void v4l2_disable_ioctl_locking(struct video_device *vdev, |
| 412 | unsigned int cmd) |
Hans Verkuil | 8ab75e3 | 2012-05-10 02:51:31 -0300 | [diff] [blame] | 413 | { |
| 414 | if (_IOC_NR(cmd) < BASE_VIDIOC_PRIVATE) |
Hans Verkuil | 152a3a7 | 2012-05-14 11:32:48 -0300 | [diff] [blame] | 415 | set_bit(_IOC_NR(cmd), vdev->disable_locking); |
Hans Verkuil | 8ab75e3 | 2012-05-10 02:51:31 -0300 | [diff] [blame] | 416 | } |
| 417 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 418 | /** |
| 419 | * v4l2_disable_ioctl- mark that a given command isn't implemented. |
| 420 | * shouldn't use core locking |
| 421 | * |
| 422 | * @vdev: pointer to &struct video_device |
| 423 | * @cmd: ioctl command |
| 424 | * |
| 425 | * This function allows drivers to provide just one v4l2_ioctl_ops struct, but |
| 426 | * disable ioctls based on the specific card that is actually found. |
| 427 | * |
| 428 | * .. note:: |
| 429 | * |
| 430 | * This must be called before video_register_device. |
| 431 | * See also the comments for determine_valid_ioctls(). |
| 432 | */ |
| 433 | static inline void v4l2_disable_ioctl(struct video_device *vdev, |
| 434 | unsigned int cmd) |
Hans Verkuil | 48ea0be | 2012-05-10 05:36:00 -0300 | [diff] [blame] | 435 | { |
| 436 | if (_IOC_NR(cmd) < BASE_VIDIOC_PRIVATE) |
| 437 | set_bit(_IOC_NR(cmd), vdev->valid_ioctls); |
| 438 | } |
| 439 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 440 | /** |
| 441 | * video_get_drvdata - gets private data from &struct video_device. |
| 442 | * |
| 443 | * @vdev: pointer to &struct video_device |
| 444 | * |
| 445 | * returns a pointer to the private data |
| 446 | */ |
Hans Verkuil | dc93a70 | 2008-12-19 21:28:27 -0300 | [diff] [blame] | 447 | static inline void *video_get_drvdata(struct video_device *vdev) |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 448 | { |
Hans Verkuil | dc93a70 | 2008-12-19 21:28:27 -0300 | [diff] [blame] | 449 | return dev_get_drvdata(&vdev->dev); |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 450 | } |
| 451 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 452 | /** |
| 453 | * video_set_drvdata - sets private data from &struct video_device. |
| 454 | * |
| 455 | * @vdev: pointer to &struct video_device |
| 456 | * @data: private data pointer |
| 457 | */ |
Hans Verkuil | dc93a70 | 2008-12-19 21:28:27 -0300 | [diff] [blame] | 458 | static inline void video_set_drvdata(struct video_device *vdev, void *data) |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 459 | { |
Hans Verkuil | dc93a70 | 2008-12-19 21:28:27 -0300 | [diff] [blame] | 460 | dev_set_drvdata(&vdev->dev, data); |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 461 | } |
Mauro Carvalho Chehab | 38ee04f | 2006-08-08 09:10:01 -0300 | [diff] [blame] | 462 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 463 | /** |
| 464 | * video_devdata - gets &struct video_device from struct file. |
| 465 | * |
| 466 | * @file: pointer to struct file |
| 467 | */ |
Hans Verkuil | bfa8a27 | 2008-08-23 07:48:38 -0300 | [diff] [blame] | 468 | struct video_device *video_devdata(struct file *file); |
| 469 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 470 | /** |
| 471 | * video_drvdata - gets private data from &struct video_device using the |
| 472 | * struct file. |
| 473 | * |
| 474 | * @file: pointer to struct file |
| 475 | * |
| 476 | * This is function combines both video_get_drvdata() and video_devdata() |
| 477 | * as this is used very often. |
| 478 | */ |
Hans Verkuil | bfa8a27 | 2008-08-23 07:48:38 -0300 | [diff] [blame] | 479 | static inline void *video_drvdata(struct file *file) |
| 480 | { |
| 481 | return video_get_drvdata(video_devdata(file)); |
| 482 | } |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 483 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 484 | /** |
| 485 | * video_device_node_name - returns the video device name |
| 486 | * |
| 487 | * @vdev: pointer to &struct video_device |
| 488 | * |
| 489 | * Returns the device name string |
| 490 | */ |
Laurent Pinchart | eac8ea5 | 2009-11-27 13:56:50 -0300 | [diff] [blame] | 491 | static inline const char *video_device_node_name(struct video_device *vdev) |
| 492 | { |
| 493 | return dev_name(&vdev->dev); |
| 494 | } |
| 495 | |
Mauro Carvalho Chehab | d9d3d17 | 2016-07-21 15:30:20 -0300 | [diff] [blame] | 496 | /** |
| 497 | * video_is_registered - returns true if the &struct video_device is registered. |
| 498 | * |
| 499 | * |
| 500 | * @vdev: pointer to &struct video_device |
| 501 | */ |
Laurent Pinchart | 957b4aa | 2009-11-27 13:57:22 -0300 | [diff] [blame] | 502 | static inline int video_is_registered(struct video_device *vdev) |
Hans Verkuil | dc93a70 | 2008-12-19 21:28:27 -0300 | [diff] [blame] | 503 | { |
Laurent Pinchart | 957b4aa | 2009-11-27 13:57:22 -0300 | [diff] [blame] | 504 | return test_bit(V4L2_FL_REGISTERED, &vdev->flags); |
Hans Verkuil | dc93a70 | 2008-12-19 21:28:27 -0300 | [diff] [blame] | 505 | } |
| 506 | |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 507 | #endif /* _V4L2_DEV_H */ |