1 /* SPDX-License-Identifier: GPL-2.0 */
4 * V 4 L 2 D R I V E R H E L P E R A P I
6 * Moved from videodev2.h
8 * Some commonly needed functions for drivers (v4l2-common.o module)
13 #include <linux/poll.h>
15 #include <linux/device.h>
16 #include <linux/cdev.h>
17 #include <linux/mutex.h>
18 #include <linux/videodev2.h>
20 #include <media/media-entity.h>
22 #define VIDEO_MAJOR 81
24 #define VFL_TYPE_GRABBER 0
25 #define VFL_TYPE_VBI 1
26 #define VFL_TYPE_RADIO 2
27 #define VFL_TYPE_SUBDEV 3
28 #define VFL_TYPE_SDR 4
29 #define VFL_TYPE_TOUCH 5
30 #define VFL_TYPE_MAX 6
32 /* Is this a receiver, transmitter or mem-to-mem? */
33 /* Ignored for VFL_TYPE_SUBDEV. */
38 struct v4l2_ioctl_callbacks
;
41 struct v4l2_ctrl_handler
;
43 /* Flag to mark the video_device struct as registered.
44 Drivers can clear this flag if they want to block all future
45 device access. It is cleared by video_unregister_device. */
46 #define V4L2_FL_REGISTERED (0)
47 /* file->private_data points to struct v4l2_fh */
48 #define V4L2_FL_USES_V4L2_FH (1)
50 /* Priority helper functions */
53 * struct v4l2_prio_state - stores the priority states
55 * @prios: array with elements to store the array priorities
59 * The size of @prios array matches the number of priority types defined
60 * by enum &v4l2_priority.
62 struct v4l2_prio_state
{
67 * v4l2_prio_init - initializes a struct v4l2_prio_state
69 * @global: pointer to &struct v4l2_prio_state
71 void v4l2_prio_init(struct v4l2_prio_state
*global
);
74 * v4l2_prio_change - changes the v4l2 file handler priority
76 * @global: pointer to the &struct v4l2_prio_state of the device node.
77 * @local: pointer to the desired priority, as defined by enum &v4l2_priority
78 * @new: Priority type requested, as defined by enum &v4l2_priority.
81 * This function should be used only by the V4L2 core.
83 int v4l2_prio_change(struct v4l2_prio_state
*global
, enum v4l2_priority
*local
,
84 enum v4l2_priority
new);
87 * v4l2_prio_open - Implements the priority logic for a file handler open
89 * @global: pointer to the &struct v4l2_prio_state of the device node.
90 * @local: pointer to the desired priority, as defined by enum &v4l2_priority
93 * This function should be used only by the V4L2 core.
95 void v4l2_prio_open(struct v4l2_prio_state
*global
, enum v4l2_priority
*local
);
98 * v4l2_prio_close - Implements the priority logic for a file handler close
100 * @global: pointer to the &struct v4l2_prio_state of the device node.
101 * @local: priority to be released, as defined by enum &v4l2_priority
104 * This function should be used only by the V4L2 core.
106 void v4l2_prio_close(struct v4l2_prio_state
*global
, enum v4l2_priority local
);
109 * v4l2_prio_max - Return the maximum priority, as stored at the @global array.
111 * @global: pointer to the &struct v4l2_prio_state of the device node.
114 * This function should be used only by the V4L2 core.
116 enum v4l2_priority
v4l2_prio_max(struct v4l2_prio_state
*global
);
119 * v4l2_prio_check - Implements the priority logic for a file handler close
121 * @global: pointer to the &struct v4l2_prio_state of the device node.
122 * @local: desired priority, as defined by enum &v4l2_priority local
125 * This function should be used only by the V4L2 core.
127 int v4l2_prio_check(struct v4l2_prio_state
*global
, enum v4l2_priority local
);
130 * struct v4l2_file_operations - fs operations used by a V4L2 device
132 * @owner: pointer to struct module
133 * @read: operations needed to implement the read() syscall
134 * @write: operations needed to implement the write() syscall
135 * @poll: operations needed to implement the poll() syscall
136 * @unlocked_ioctl: operations needed to implement the ioctl() syscall
137 * @compat_ioctl32: operations needed to implement the ioctl() syscall for
138 * the special case where the Kernel uses 64 bits instructions, but
139 * the userspace uses 32 bits.
140 * @get_unmapped_area: called by the mmap() syscall, used when %!CONFIG_MMU
141 * @mmap: operations needed to implement the mmap() syscall
142 * @open: operations needed to implement the open() syscall
143 * @release: operations needed to implement the release() syscall
147 * Those operations are used to implemente the fs struct file_operations
148 * at the V4L2 drivers. The V4L2 core overrides the fs ops with some
149 * extra logic needed by the subsystem.
151 struct v4l2_file_operations
{
152 struct module
*owner
;
153 ssize_t (*read
) (struct file
*, char __user
*, size_t, loff_t
*);
154 ssize_t (*write
) (struct file
*, const char __user
*, size_t, loff_t
*);
155 unsigned int (*poll
) (struct file
*, struct poll_table_struct
*);
156 long (*unlocked_ioctl
) (struct file
*, unsigned int, unsigned long);
158 long (*compat_ioctl32
) (struct file
*, unsigned int, unsigned long);
160 unsigned long (*get_unmapped_area
) (struct file
*, unsigned long,
161 unsigned long, unsigned long, unsigned long);
162 int (*mmap
) (struct file
*, struct vm_area_struct
*);
163 int (*open
) (struct file
*);
164 int (*release
) (struct file
*);
168 * Newer version of video_device, handled by videodev2.c
169 * This version moves redundant code from video device code to
174 * struct video_device - Structure used to create and manage the V4L2 device
177 * @entity: &struct media_entity
178 * @intf_devnode: pointer to &struct media_intf_devnode
179 * @pipe: &struct media_pipeline
180 * @fops: pointer to &struct v4l2_file_operations for the video device
181 * @device_caps: device capabilities as used in v4l2_capabilities
182 * @dev: &struct device for the video device
183 * @cdev: character device
184 * @v4l2_dev: pointer to &struct v4l2_device parent
185 * @dev_parent: pointer to &struct device parent
186 * @ctrl_handler: Control handler associated with this device node.
188 * @queue: &struct vb2_queue associated with this device node. May be NULL.
189 * @prio: pointer to &struct v4l2_prio_state with device's Priority state.
190 * If NULL, then v4l2_dev->prio will be used.
191 * @name: video device name
192 * @vfl_type: V4L device type
193 * @vfl_dir: V4L receiver, transmitter or m2m
194 * @minor: device node 'minor'. It is set to -1 if the registration failed
195 * @num: number of the video device node
196 * @flags: video device flags. Use bitops to set/clear/test flags
197 * @index: attribute to differentiate multiple indices on one physical device
198 * @fh_lock: Lock for all v4l2_fhs
199 * @fh_list: List of &struct v4l2_fh
200 * @dev_debug: Internal device debug flags, not for use by drivers
201 * @tvnorms: Supported tv norms
203 * @release: video device release() callback
204 * @ioctl_ops: pointer to &struct v4l2_ioctl_ops with ioctl callbacks
206 * @valid_ioctls: bitmap with the valid ioctls for this device
207 * @disable_locking: bitmap with the ioctls that don't require locking
208 * @lock: pointer to &struct mutex serialization lock
211 * Only set @dev_parent if that can't be deduced from @v4l2_dev.
216 #if defined(CONFIG_MEDIA_CONTROLLER)
217 struct media_entity entity
;
218 struct media_intf_devnode
*intf_devnode
;
219 struct media_pipeline pipe
;
221 const struct v4l2_file_operations
*fops
;
229 struct v4l2_device
*v4l2_dev
;
230 struct device
*dev_parent
;
232 struct v4l2_ctrl_handler
*ctrl_handler
;
234 struct vb2_queue
*queue
;
236 struct v4l2_prio_state
*prio
;
247 /* V4L2 file handles */
249 struct list_head fh_list
;
256 void (*release
)(struct video_device
*vdev
);
257 const struct v4l2_ioctl_ops
*ioctl_ops
;
258 DECLARE_BITMAP(valid_ioctls
, BASE_VIDIOC_PRIVATE
);
260 DECLARE_BITMAP(disable_locking
, BASE_VIDIOC_PRIVATE
);
264 #define media_entity_to_video_device(__e) \
265 container_of(__e, struct video_device, entity)
266 /* dev to video-device */
267 #define to_video_device(cd) container_of(cd, struct video_device, dev)
270 * __video_register_device - register video4linux devices
272 * @vdev: struct video_device to register
273 * @type: type of device to register
274 * @nr: which device node number is desired:
275 * (0 == /dev/video0, 1 == /dev/video1, ..., -1 == first free)
276 * @warn_if_nr_in_use: warn if the desired device node number
277 * was already in use and another number was chosen instead.
278 * @owner: module that owns the video device node
280 * The registration code assigns minor numbers and device node numbers
281 * based on the requested type and registers the new device node with
284 * This function assumes that struct video_device was zeroed when it
285 * was allocated and does not contain any stale date.
287 * An error is returned if no free minor or device node number could be
288 * found, or if the registration of the device node failed.
290 * Returns 0 on success.
292 * Valid values for @type are:
294 * - %VFL_TYPE_GRABBER - A frame grabber
295 * - %VFL_TYPE_VBI - Vertical blank data (undecoded)
296 * - %VFL_TYPE_RADIO - A radio card
297 * - %VFL_TYPE_SUBDEV - A subdevice
298 * - %VFL_TYPE_SDR - Software Defined Radio
299 * - %VFL_TYPE_TOUCH - A touch sensor
303 * This function is meant to be used only inside the V4L2 core.
304 * Drivers should use video_register_device() or
305 * video_register_device_no_warn().
307 int __must_check
__video_register_device(struct video_device
*vdev
, int type
,
308 int nr
, int warn_if_nr_in_use
, struct module
*owner
);
311 * video_register_device - register video4linux devices
313 * @vdev: struct video_device to register
314 * @type: type of device to register
315 * @nr: which device node number is desired:
316 * (0 == /dev/video0, 1 == /dev/video1, ..., -1 == first free)
318 * Internally, it calls __video_register_device(). Please see its
319 * documentation for more details.
322 * if video_register_device fails, the release() callback of
323 * &struct video_device structure is *not* called, so the caller
324 * is responsible for freeing any data. Usually that means that
325 * you video_device_release() should be called on failure.
327 static inline int __must_check
video_register_device(struct video_device
*vdev
,
330 return __video_register_device(vdev
, type
, nr
, 1, vdev
->fops
->owner
);
334 * video_register_device_no_warn - register video4linux devices
336 * @vdev: struct video_device to register
337 * @type: type of device to register
338 * @nr: which device node number is desired:
339 * (0 == /dev/video0, 1 == /dev/video1, ..., -1 == first free)
341 * This function is identical to video_register_device() except that no
342 * warning is issued if the desired device node number was already in use.
344 * Internally, it calls __video_register_device(). Please see its
345 * documentation for more details.
348 * if video_register_device fails, the release() callback of
349 * &struct video_device structure is *not* called, so the caller
350 * is responsible for freeing any data. Usually that means that
351 * you video_device_release() should be called on failure.
353 static inline int __must_check
video_register_device_no_warn(
354 struct video_device
*vdev
, int type
, int nr
)
356 return __video_register_device(vdev
, type
, nr
, 0, vdev
->fops
->owner
);
360 * video_unregister_device - Unregister video devices.
362 * @vdev: &struct video_device to register
364 * Does nothing if vdev == NULL or if video_is_registered() returns false.
366 void video_unregister_device(struct video_device
*vdev
);
369 * video_device_alloc - helper function to alloc &struct video_device
371 * Returns NULL if %-ENOMEM or a &struct video_device on success.
373 struct video_device
* __must_check
video_device_alloc(void);
376 * video_device_release - helper function to release &struct video_device
378 * @vdev: pointer to &struct video_device
380 * Can also be used for video_device->release\(\).
382 void video_device_release(struct video_device
*vdev
);
385 * video_device_release_empty - helper function to implement the
386 * video_device->release\(\) callback.
388 * @vdev: pointer to &struct video_device
390 * This release function does nothing.
392 * It should be used when the video_device is a static global struct.
395 * Having a static video_device is a dubious construction at best.
397 void video_device_release_empty(struct video_device
*vdev
);
400 * v4l2_is_known_ioctl - Checks if a given cmd is a known V4L ioctl
402 * @cmd: ioctl command
404 * returns true if cmd is a known V4L2 ioctl
406 bool v4l2_is_known_ioctl(unsigned int cmd
);
408 /** v4l2_disable_ioctl_locking - mark that a given command
409 * shouldn't use core locking
411 * @vdev: pointer to &struct video_device
412 * @cmd: ioctl command
414 static inline void v4l2_disable_ioctl_locking(struct video_device
*vdev
,
417 if (_IOC_NR(cmd
) < BASE_VIDIOC_PRIVATE
)
418 set_bit(_IOC_NR(cmd
), vdev
->disable_locking
);
422 * v4l2_disable_ioctl- mark that a given command isn't implemented.
423 * shouldn't use core locking
425 * @vdev: pointer to &struct video_device
426 * @cmd: ioctl command
428 * This function allows drivers to provide just one v4l2_ioctl_ops struct, but
429 * disable ioctls based on the specific card that is actually found.
433 * This must be called before video_register_device.
434 * See also the comments for determine_valid_ioctls().
436 static inline void v4l2_disable_ioctl(struct video_device
*vdev
,
439 if (_IOC_NR(cmd
) < BASE_VIDIOC_PRIVATE
)
440 set_bit(_IOC_NR(cmd
), vdev
->valid_ioctls
);
444 * video_get_drvdata - gets private data from &struct video_device.
446 * @vdev: pointer to &struct video_device
448 * returns a pointer to the private data
450 static inline void *video_get_drvdata(struct video_device
*vdev
)
452 return dev_get_drvdata(&vdev
->dev
);
456 * video_set_drvdata - sets private data from &struct video_device.
458 * @vdev: pointer to &struct video_device
459 * @data: private data pointer
461 static inline void video_set_drvdata(struct video_device
*vdev
, void *data
)
463 dev_set_drvdata(&vdev
->dev
, data
);
467 * video_devdata - gets &struct video_device from struct file.
469 * @file: pointer to struct file
471 struct video_device
*video_devdata(struct file
*file
);
474 * video_drvdata - gets private data from &struct video_device using the
477 * @file: pointer to struct file
479 * This is function combines both video_get_drvdata() and video_devdata()
480 * as this is used very often.
482 static inline void *video_drvdata(struct file
*file
)
484 return video_get_drvdata(video_devdata(file
));
488 * video_device_node_name - returns the video device name
490 * @vdev: pointer to &struct video_device
492 * Returns the device name string
494 static inline const char *video_device_node_name(struct video_device
*vdev
)
496 return dev_name(&vdev
->dev
);
500 * video_is_registered - returns true if the &struct video_device is registered.
503 * @vdev: pointer to &struct video_device
505 static inline int video_is_registered(struct video_device
*vdev
)
507 return test_bit(V4L2_FL_REGISTERED
, &vdev
->flags
);
510 #endif /* _V4L2_DEV_H */