blob: 3a66e78e8e3b73ca803dc5cc542016f309ce1ef0 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -03002/*
3 *
4 * V 4 L 2 D R I V E R H E L P E R A P I
5 *
6 * Moved from videodev2.h
7 *
8 * Some commonly needed functions for drivers (v4l2-common.o module)
9 */
10#ifndef _V4L2_DEV_H
11#define _V4L2_DEV_H
12
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030013#include <linux/poll.h>
14#include <linux/fs.h>
15#include <linux/device.h>
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -030016#include <linux/cdev.h>
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030017#include <linux/mutex.h>
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030018#include <linux/videodev2.h>
Greg Kroah-Hartman37485a32021-07-02 15:58:26 +020019#include <linux/android_kabi.h>
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030020
Laurent Pinchart2c0ab672009-12-09 08:40:10 -030021#include <media/media-entity.h>
22
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030023#define VIDEO_MAJOR 81
Hans Verkuilbfa8a272008-08-23 07:48:38 -030024
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -040025/**
26 * enum vfl_devnode_type - type of V4L2 device node
27 *
Hans Verkuil238e4a52020-02-03 12:41:09 +010028 * @VFL_TYPE_VIDEO: for video input/output devices
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -040029 * @VFL_TYPE_VBI: for vertical blank data (i.e. closed captions, teletext)
30 * @VFL_TYPE_RADIO: for radio tuners
31 * @VFL_TYPE_SUBDEV: for V4L2 subdevices
32 * @VFL_TYPE_SDR: for Software Defined Radio tuners
33 * @VFL_TYPE_TOUCH: for touch sensors
Hans Verkuil5bc37442018-05-03 08:47:10 -040034 * @VFL_TYPE_MAX: number of VFL types, must always be last in the enum
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -040035 */
36enum vfl_devnode_type {
Hans Verkuil238e4a52020-02-03 12:41:09 +010037 VFL_TYPE_VIDEO,
Mauro Carvalho Chehaba95845b2018-04-05 06:51:15 -030038 VFL_TYPE_VBI,
39 VFL_TYPE_RADIO,
40 VFL_TYPE_SUBDEV,
41 VFL_TYPE_SDR,
42 VFL_TYPE_TOUCH,
43 VFL_TYPE_MAX /* Shall be the last one */
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -040044};
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030045
Mauro Carvalho Chehab468fde02017-10-05 13:52:19 -040046/**
47 * enum vfl_direction - Identifies if a &struct video_device corresponds
48 * to a receiver, a transmitter or a mem-to-mem device.
49 *
50 * @VFL_DIR_RX: device is a receiver.
51 * @VFL_DIR_TX: device is a transmitter.
52 * @VFL_DIR_M2M: device is a memory to memory device.
53 *
54 * Note: Ignored if &enum vfl_devnode_type is %VFL_TYPE_SUBDEV.
55 */
56enum vfl_devnode_direction {
57 VFL_DIR_RX,
58 VFL_DIR_TX,
59 VFL_DIR_M2M,
60};
Hans Verkuil5c778792012-09-05 05:33:21 -030061
Hans Verkuila3998102008-07-21 02:57:38 -030062struct v4l2_ioctl_callbacks;
Hans Verkuilbec43662008-12-30 06:58:20 -030063struct video_device;
Hans Verkuil9bea3512008-12-23 07:35:17 -030064struct v4l2_device;
Hans Verkuil09965172010-08-01 14:32:42 -030065struct v4l2_ctrl_handler;
Hans Verkuila3998102008-07-21 02:57:38 -030066
Mauro Carvalho Chehab63b31ff2017-10-05 14:05:25 -040067/**
68 * enum v4l2_video_device_flags - Flags used by &struct video_device
69 *
70 * @V4L2_FL_REGISTERED:
Mauro Carvalho Chehab4a3fad72018-01-04 06:47:28 -050071 * indicates that a &struct video_device is registered.
Mauro Carvalho Chehab63b31ff2017-10-05 14:05:25 -040072 * Drivers can clear this flag if they want to block all future
73 * device access. It is cleared by video_unregister_device.
74 * @V4L2_FL_USES_V4L2_FH:
75 * indicates that file->private_data points to &struct v4l2_fh.
76 * This flag is set by the core when v4l2_fh_init() is called.
77 * All new drivers should use it.
Hans Verkuil8cbd94b2018-10-04 16:44:01 -040078 * @V4L2_FL_QUIRK_INVERTED_CROP:
79 * some old M2M drivers use g/s_crop/cropcap incorrectly: crop and
80 * compose are swapped. If this flag is set, then the selection
81 * targets are swapped in the g/s_crop/cropcap functions in v4l2-ioctl.c.
82 * This allows those drivers to correctly implement the selection API,
83 * but the old crop API will still work as expected in order to preserve
84 * backwards compatibility.
85 * Never set this flag for new drivers.
Jacopo Mondif75c4312020-05-07 17:12:50 +020086 * @V4L2_FL_SUBDEV_RO_DEVNODE:
87 * indicates that the video device node is registered in read-only mode.
88 * The flag only applies to device nodes registered for sub-devices, it is
89 * set by the core when the sub-devices device nodes are registered with
90 * v4l2_device_register_ro_subdev_nodes() and used by the sub-device ioctl
91 * handler to restrict access to some ioctl calls.
Mauro Carvalho Chehab63b31ff2017-10-05 14:05:25 -040092 */
93enum v4l2_video_device_flags {
Hans Verkuil8cbd94b2018-10-04 16:44:01 -040094 V4L2_FL_REGISTERED = 0,
95 V4L2_FL_USES_V4L2_FH = 1,
96 V4L2_FL_QUIRK_INVERTED_CROP = 2,
Jacopo Mondif75c4312020-05-07 17:12:50 +020097 V4L2_FL_SUBDEV_RO_DEVNODE = 3,
Mauro Carvalho Chehab63b31ff2017-10-05 14:05:25 -040098};
Hans Verkuildc93a702008-12-19 21:28:27 -030099
Hans Verkuil02265492010-12-29 10:05:02 -0300100/* Priority helper functions */
101
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300102/**
103 * struct v4l2_prio_state - stores the priority states
104 *
105 * @prios: array with elements to store the array priorities
106 *
107 *
108 * .. note::
109 * The size of @prios array matches the number of priority types defined
Mauro Carvalho Chehabffa04412016-08-29 18:40:21 -0300110 * by enum &v4l2_priority.
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300111 */
Hans Verkuil02265492010-12-29 10:05:02 -0300112struct v4l2_prio_state {
113 atomic_t prios[4];
114};
115
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300116/**
117 * v4l2_prio_init - initializes a struct v4l2_prio_state
118 *
119 * @global: pointer to &struct v4l2_prio_state
120 */
Hans Verkuil02265492010-12-29 10:05:02 -0300121void v4l2_prio_init(struct v4l2_prio_state *global);
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300122
123/**
124 * v4l2_prio_change - changes the v4l2 file handler priority
125 *
126 * @global: pointer to the &struct v4l2_prio_state of the device node.
Mauro Carvalho Chehabffa04412016-08-29 18:40:21 -0300127 * @local: pointer to the desired priority, as defined by enum &v4l2_priority
128 * @new: Priority type requested, as defined by enum &v4l2_priority.
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300129 *
130 * .. note::
131 * This function should be used only by the V4L2 core.
132 */
Hans Verkuil02265492010-12-29 10:05:02 -0300133int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local,
134 enum v4l2_priority new);
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300135
136/**
137 * v4l2_prio_open - Implements the priority logic for a file handler open
138 *
139 * @global: pointer to the &struct v4l2_prio_state of the device node.
Mauro Carvalho Chehabffa04412016-08-29 18:40:21 -0300140 * @local: pointer to the desired priority, as defined by enum &v4l2_priority
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300141 *
142 * .. note::
143 * This function should be used only by the V4L2 core.
144 */
Hans Verkuil02265492010-12-29 10:05:02 -0300145void v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local);
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300146
147/**
148 * v4l2_prio_close - Implements the priority logic for a file handler close
149 *
150 * @global: pointer to the &struct v4l2_prio_state of the device node.
Mauro Carvalho Chehabffa04412016-08-29 18:40:21 -0300151 * @local: priority to be released, as defined by enum &v4l2_priority
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300152 *
153 * .. note::
154 * This function should be used only by the V4L2 core.
155 */
Hans Verkuil02265492010-12-29 10:05:02 -0300156void v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority local);
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300157
158/**
159 * v4l2_prio_max - Return the maximum priority, as stored at the @global array.
160 *
161 * @global: pointer to the &struct v4l2_prio_state of the device node.
162 *
163 * .. note::
164 * This function should be used only by the V4L2 core.
165 */
Hans Verkuil02265492010-12-29 10:05:02 -0300166enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global);
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300167
168/**
Mauro Carvalho Chehabe383ce02016-09-22 07:59:03 -0300169 * v4l2_prio_check - Implements the priority logic for a file handler close
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300170 *
171 * @global: pointer to the &struct v4l2_prio_state of the device node.
Mauro Carvalho Chehabffa04412016-08-29 18:40:21 -0300172 * @local: desired priority, as defined by enum &v4l2_priority local
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300173 *
174 * .. note::
175 * This function should be used only by the V4L2 core.
176 */
Hans Verkuil02265492010-12-29 10:05:02 -0300177int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority local);
178
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300179/**
180 * struct v4l2_file_operations - fs operations used by a V4L2 device
181 *
182 * @owner: pointer to struct module
183 * @read: operations needed to implement the read() syscall
184 * @write: operations needed to implement the write() syscall
185 * @poll: operations needed to implement the poll() syscall
186 * @unlocked_ioctl: operations needed to implement the ioctl() syscall
187 * @compat_ioctl32: operations needed to implement the ioctl() syscall for
188 * the special case where the Kernel uses 64 bits instructions, but
189 * the userspace uses 32 bits.
190 * @get_unmapped_area: called by the mmap() syscall, used when %!CONFIG_MMU
191 * @mmap: operations needed to implement the mmap() syscall
192 * @open: operations needed to implement the open() syscall
193 * @release: operations needed to implement the release() syscall
194 *
195 * .. note::
196 *
197 * Those operations are used to implemente the fs struct file_operations
198 * at the V4L2 drivers. The V4L2 core overrides the fs ops with some
199 * extra logic needed by the subsystem.
200 */
Hans Verkuilbec43662008-12-30 06:58:20 -0300201struct v4l2_file_operations {
202 struct module *owner;
203 ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
204 ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
Al Viroa3f86832017-07-02 22:22:01 -0400205 __poll_t (*poll) (struct file *, struct poll_table_struct *);
Hans Verkuilbec43662008-12-30 06:58:20 -0300206 long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
Laurent Pinchartb9d0aa62011-12-18 20:41:19 -0300207#ifdef CONFIG_COMPAT
208 long (*compat_ioctl32) (struct file *, unsigned int, unsigned long);
209#endif
Bob Liuecc65172011-05-06 05:20:09 -0300210 unsigned long (*get_unmapped_area) (struct file *, unsigned long,
211 unsigned long, unsigned long, unsigned long);
Hans Verkuilbec43662008-12-30 06:58:20 -0300212 int (*mmap) (struct file *, struct vm_area_struct *);
213 int (*open) (struct file *);
214 int (*release) (struct file *);
Greg Kroah-Hartman37485a32021-07-02 15:58:26 +0200215
216 ANDROID_KABI_RESERVE(1);
Hans Verkuilbec43662008-12-30 06:58:20 -0300217};
218
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300219/*
220 * Newer version of video_device, handled by videodev2.c
Mauro Carvalho Chehab4a3fad72018-01-04 06:47:28 -0500221 * This version moves redundant code from video device code to
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300222 * the common handler
223 */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300224
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300225/**
226 * struct video_device - Structure used to create and manage the V4L2 device
227 * nodes.
228 *
229 * @entity: &struct media_entity
230 * @intf_devnode: pointer to &struct media_intf_devnode
231 * @pipe: &struct media_pipeline
232 * @fops: pointer to &struct v4l2_file_operations for the video device
233 * @device_caps: device capabilities as used in v4l2_capabilities
234 * @dev: &struct device for the video device
235 * @cdev: character device
236 * @v4l2_dev: pointer to &struct v4l2_device parent
237 * @dev_parent: pointer to &struct device parent
238 * @ctrl_handler: Control handler associated with this device node.
239 * May be NULL.
240 * @queue: &struct vb2_queue associated with this device node. May be NULL.
241 * @prio: pointer to &struct v4l2_prio_state with device's Priority state.
242 * If NULL, then v4l2_dev->prio will be used.
243 * @name: video device name
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -0400244 * @vfl_type: V4L device type, as defined by &enum vfl_devnode_type
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300245 * @vfl_dir: V4L receiver, transmitter or m2m
246 * @minor: device node 'minor'. It is set to -1 if the registration failed
247 * @num: number of the video device node
Mauro Carvalho Chehab63b31ff2017-10-05 14:05:25 -0400248 * @flags: video device flags. Use bitops to set/clear/test flags.
249 * Contains a set of &enum v4l2_video_device_flags.
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300250 * @index: attribute to differentiate multiple indices on one physical device
251 * @fh_lock: Lock for all v4l2_fhs
252 * @fh_list: List of &struct v4l2_fh
253 * @dev_debug: Internal device debug flags, not for use by drivers
254 * @tvnorms: Supported tv norms
255 *
256 * @release: video device release() callback
257 * @ioctl_ops: pointer to &struct v4l2_ioctl_ops with ioctl callbacks
258 *
259 * @valid_ioctls: bitmap with the valid ioctls for this device
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300260 * @lock: pointer to &struct mutex serialization lock
261 *
262 * .. note::
263 * Only set @dev_parent if that can't be deduced from @v4l2_dev.
264 */
265
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300266struct video_device
267{
Laurent Pinchart2c0ab672009-12-09 08:40:10 -0300268#if defined(CONFIG_MEDIA_CONTROLLER)
269 struct media_entity entity;
Mauro Carvalho Chehabd9c21e32015-08-24 08:47:54 -0300270 struct media_intf_devnode *intf_devnode;
Shuah Khand0a164f2016-02-11 21:41:25 -0200271 struct media_pipeline pipe;
Laurent Pinchart2c0ab672009-12-09 08:40:10 -0300272#endif
Hans Verkuilbec43662008-12-30 06:58:20 -0300273 const struct v4l2_file_operations *fops;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300274
Hans Verkuil7bbe7812016-03-01 11:57:23 -0300275 u32 device_caps;
276
Kay Sievers54bd5b62007-10-08 16:26:13 -0300277 /* sysfs */
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300278 struct device dev;
279 struct cdev *cdev;
Hans Verkuil9bea3512008-12-23 07:35:17 -0300280
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300281 struct v4l2_device *v4l2_dev;
282 struct device *dev_parent;
Kay Sievers54bd5b62007-10-08 16:26:13 -0300283
Hans Verkuil09965172010-08-01 14:32:42 -0300284 struct v4l2_ctrl_handler *ctrl_handler;
285
Hans Verkuil5a5adf62012-06-22 07:29:35 -0300286 struct vb2_queue *queue;
287
Hans Verkuil0f62fd62011-02-24 10:42:24 -0300288 struct v4l2_prio_state *prio;
289
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300290 /* device info */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300291 char name[32];
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -0400292 enum vfl_devnode_type vfl_type;
Mauro Carvalho Chehab468fde02017-10-05 13:52:19 -0400293 enum vfl_devnode_direction vfl_dir;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300294 int minor;
Hans Verkuildd896012008-10-04 08:36:54 -0300295 u16 num;
Hans Verkuildc93a702008-12-19 21:28:27 -0300296 unsigned long flags;
brandon@ifup.org539a7552008-06-20 22:58:53 -0300297 int index;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300298
Sakari Ailus1babcb42010-03-23 09:25:26 -0300299 /* V4L2 file handles */
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300300 spinlock_t fh_lock;
301 struct list_head fh_list;
Sakari Ailus1babcb42010-03-23 09:25:26 -0300302
Hans Verkuil17028cd2014-12-01 10:10:44 -0300303 int dev_debug;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300304
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300305 v4l2_std_id tvnorms;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300306
307 /* callbacks */
Hans Verkuildc93a702008-12-19 21:28:27 -0300308 void (*release)(struct video_device *vdev);
Hans Verkuila3998102008-07-21 02:57:38 -0300309 const struct v4l2_ioctl_ops *ioctl_ops;
Hans Verkuil48ea0be2012-05-10 05:36:00 -0300310 DECLARE_BITMAP(valid_ioctls, BASE_VIDIOC_PRIVATE);
Hans Verkuilee6869a2010-09-26 08:47:38 -0300311
Hans Verkuilee6869a2010-09-26 08:47:38 -0300312 struct mutex *lock;
Greg Kroah-Hartman37485a32021-07-02 15:58:26 +0200313
314 ANDROID_KABI_RESERVE(1);
315 ANDROID_KABI_RESERVE(2);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300316};
317
Mauro Carvalho Chehab69b925c2017-09-28 09:34:54 -0400318/**
319 * media_entity_to_video_device - Returns a &struct video_device from
320 * the &struct media_entity embedded on it.
321 *
Niklas Söderlund7b73ce92018-01-25 08:08:52 -0500322 * @__entity: pointer to &struct media_entity
Mauro Carvalho Chehab69b925c2017-09-28 09:34:54 -0400323 */
Niklas Söderlund7b73ce92018-01-25 08:08:52 -0500324#define media_entity_to_video_device(__entity) \
325 container_of(__entity, struct video_device, entity)
Mauro Carvalho Chehab69b925c2017-09-28 09:34:54 -0400326
327/**
328 * to_video_device - Returns a &struct video_device from the
329 * &struct device embedded on it.
330 *
331 * @cd: pointer to &struct device
332 */
Hans Verkuil22a04f12008-07-20 06:35:02 -0300333#define to_video_device(cd) container_of(cd, struct video_device, dev)
Linus Torvaldse90ff922007-09-13 21:09:01 -0300334
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300335/**
336 * __video_register_device - register video4linux devices
337 *
338 * @vdev: struct video_device to register
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -0400339 * @type: type of device to register, as defined by &enum vfl_devnode_type
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300340 * @nr: which device node number is desired:
Mauro Carvalho Chehab4a3fad72018-01-04 06:47:28 -0500341 * (0 == /dev/video0, 1 == /dev/video1, ..., -1 == first free)
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300342 * @warn_if_nr_in_use: warn if the desired device node number
343 * was already in use and another number was chosen instead.
344 * @owner: module that owns the video device node
345 *
346 * The registration code assigns minor numbers and device node numbers
347 * based on the requested type and registers the new device node with
348 * the kernel.
349 *
350 * This function assumes that struct video_device was zeroed when it
351 * was allocated and does not contain any stale date.
352 *
353 * An error is returned if no free minor or device node number could be
354 * found, or if the registration of the device node failed.
355 *
356 * Returns 0 on success.
357 *
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300358 * .. note::
359 *
360 * This function is meant to be used only inside the V4L2 core.
361 * Drivers should use video_register_device() or
362 * video_register_device_no_warn().
363 */
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -0400364int __must_check __video_register_device(struct video_device *vdev,
365 enum vfl_devnode_type type,
366 int nr, int warn_if_nr_in_use,
367 struct module *owner);
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300368
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300369/**
370 * video_register_device - register video4linux devices
371 *
372 * @vdev: struct video_device to register
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -0400373 * @type: type of device to register, as defined by &enum vfl_devnode_type
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300374 * @nr: which device node number is desired:
Mauro Carvalho Chehab4a3fad72018-01-04 06:47:28 -0500375 * (0 == /dev/video0, 1 == /dev/video1, ..., -1 == first free)
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300376 *
377 * Internally, it calls __video_register_device(). Please see its
378 * documentation for more details.
379 *
380 * .. note::
Mauro Carvalho Chehab4a3fad72018-01-04 06:47:28 -0500381 * if video_register_device fails, the release() callback of
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300382 * &struct video_device structure is *not* called, so the caller
383 * is responsible for freeing any data. Usually that means that
384 * you video_device_release() should be called on failure.
385 */
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300386static inline int __must_check video_register_device(struct video_device *vdev,
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -0400387 enum vfl_devnode_type type,
388 int nr)
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300389{
390 return __video_register_device(vdev, type, nr, 1, vdev->fops->owner);
391}
Hans Verkuildc93a702008-12-19 21:28:27 -0300392
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300393/**
394 * video_register_device_no_warn - register video4linux devices
395 *
396 * @vdev: struct video_device to register
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -0400397 * @type: type of device to register, as defined by &enum vfl_devnode_type
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300398 * @nr: which device node number is desired:
Mauro Carvalho Chehab4a3fad72018-01-04 06:47:28 -0500399 * (0 == /dev/video0, 1 == /dev/video1, ..., -1 == first free)
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300400 *
401 * This function is identical to video_register_device() except that no
402 * warning is issued if the desired device node number was already in use.
403 *
404 * Internally, it calls __video_register_device(). Please see its
405 * documentation for more details.
406 *
407 * .. note::
Mauro Carvalho Chehab4a3fad72018-01-04 06:47:28 -0500408 * if video_register_device fails, the release() callback of
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300409 * &struct video_device structure is *not* called, so the caller
410 * is responsible for freeing any data. Usually that means that
411 * you video_device_release() should be called on failure.
412 */
Mauro Carvalho Chehab4839c582017-09-28 18:39:32 -0400413static inline int __must_check
414video_register_device_no_warn(struct video_device *vdev,
415 enum vfl_devnode_type type, int nr)
Laurent Pinchart2096a5d2009-12-09 08:38:49 -0300416{
417 return __video_register_device(vdev, type, nr, 0, vdev->fops->owner);
418}
Hans Verkuil6b5270d2009-09-06 07:54:00 -0300419
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300420/**
421 * video_unregister_device - Unregister video devices.
422 *
423 * @vdev: &struct video_device to register
424 *
425 * Does nothing if vdev == NULL or if video_is_registered() returns false.
426 */
Hans Verkuildc93a702008-12-19 21:28:27 -0300427void video_unregister_device(struct video_device *vdev);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300428
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300429/**
430 * video_device_alloc - helper function to alloc &struct video_device
431 *
432 * Returns NULL if %-ENOMEM or a &struct video_device on success.
433 */
Hans Verkuile138c592008-08-23 06:38:11 -0300434struct video_device * __must_check video_device_alloc(void);
Hans Verkuilbfa8a272008-08-23 07:48:38 -0300435
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300436/**
437 * video_device_release - helper function to release &struct video_device
438 *
439 * @vdev: pointer to &struct video_device
440 *
Mauro Carvalho Chehab564aaf62016-07-23 07:12:03 -0300441 * Can also be used for video_device->release\(\).
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300442 */
Hans Verkuildc93a702008-12-19 21:28:27 -0300443void video_device_release(struct video_device *vdev);
Hans Verkuilbfa8a272008-08-23 07:48:38 -0300444
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300445/**
446 * video_device_release_empty - helper function to implement the
Mauro Carvalho Chehab4a3fad72018-01-04 06:47:28 -0500447 * video_device->release\(\) callback.
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300448 *
449 * @vdev: pointer to &struct video_device
450 *
451 * This release function does nothing.
452 *
453 * It should be used when the video_device is a static global struct.
454 *
455 * .. note::
456 * Having a static video_device is a dubious construction at best.
457 */
Hans Verkuildc93a702008-12-19 21:28:27 -0300458void video_device_release_empty(struct video_device *vdev);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300459
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300460/**
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300461 * v4l2_disable_ioctl- mark that a given command isn't implemented.
462 * shouldn't use core locking
463 *
464 * @vdev: pointer to &struct video_device
465 * @cmd: ioctl command
466 *
467 * This function allows drivers to provide just one v4l2_ioctl_ops struct, but
468 * disable ioctls based on the specific card that is actually found.
469 *
470 * .. note::
471 *
472 * This must be called before video_register_device.
473 * See also the comments for determine_valid_ioctls().
474 */
475static inline void v4l2_disable_ioctl(struct video_device *vdev,
476 unsigned int cmd)
Hans Verkuil48ea0be2012-05-10 05:36:00 -0300477{
478 if (_IOC_NR(cmd) < BASE_VIDIOC_PRIVATE)
479 set_bit(_IOC_NR(cmd), vdev->valid_ioctls);
480}
481
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300482/**
483 * video_get_drvdata - gets private data from &struct video_device.
484 *
485 * @vdev: pointer to &struct video_device
486 *
487 * returns a pointer to the private data
488 */
Hans Verkuildc93a702008-12-19 21:28:27 -0300489static inline void *video_get_drvdata(struct video_device *vdev)
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300490{
Hans Verkuildc93a702008-12-19 21:28:27 -0300491 return dev_get_drvdata(&vdev->dev);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300492}
493
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300494/**
495 * video_set_drvdata - sets private data from &struct video_device.
496 *
497 * @vdev: pointer to &struct video_device
498 * @data: private data pointer
499 */
Hans Verkuildc93a702008-12-19 21:28:27 -0300500static inline void video_set_drvdata(struct video_device *vdev, void *data)
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300501{
Hans Verkuildc93a702008-12-19 21:28:27 -0300502 dev_set_drvdata(&vdev->dev, data);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300503}
Mauro Carvalho Chehab38ee04f2006-08-08 09:10:01 -0300504
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300505/**
506 * video_devdata - gets &struct video_device from struct file.
507 *
508 * @file: pointer to struct file
509 */
Hans Verkuilbfa8a272008-08-23 07:48:38 -0300510struct video_device *video_devdata(struct file *file);
511
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300512/**
513 * video_drvdata - gets private data from &struct video_device using the
514 * struct file.
515 *
516 * @file: pointer to struct file
517 *
518 * This is function combines both video_get_drvdata() and video_devdata()
519 * as this is used very often.
520 */
Hans Verkuilbfa8a272008-08-23 07:48:38 -0300521static inline void *video_drvdata(struct file *file)
522{
523 return video_get_drvdata(video_devdata(file));
524}
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300525
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300526/**
527 * video_device_node_name - returns the video device name
528 *
529 * @vdev: pointer to &struct video_device
530 *
531 * Returns the device name string
532 */
Laurent Pincharteac8ea52009-11-27 13:56:50 -0300533static inline const char *video_device_node_name(struct video_device *vdev)
534{
535 return dev_name(&vdev->dev);
536}
537
Mauro Carvalho Chehabd9d3d172016-07-21 15:30:20 -0300538/**
539 * video_is_registered - returns true if the &struct video_device is registered.
540 *
541 *
542 * @vdev: pointer to &struct video_device
543 */
Laurent Pinchart957b4aa2009-11-27 13:57:22 -0300544static inline int video_is_registered(struct video_device *vdev)
Hans Verkuildc93a702008-12-19 21:28:27 -0300545{
Laurent Pinchart957b4aa2009-11-27 13:57:22 -0300546 return test_bit(V4L2_FL_REGISTERED, &vdev->flags);
Hans Verkuildc93a702008-12-19 21:28:27 -0300547}
548
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300549#endif /* _V4L2_DEV_H */