blob: eb9b518876e8e83d9b5fdaf4013601ebfeeefa93 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/* SPDX-License-Identifier: GPL-2.0 */
2/*
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
13#include <linux/poll.h>
14#include <linux/fs.h>
15#include <linux/device.h>
16#include <linux/cdev.h>
17#include <linux/mutex.h>
18#include <linux/videodev2.h>
19#include <linux/android_kabi.h>
20
21#include <media/media-entity.h>
22
23#define VIDEO_MAJOR 81
24
25/**
26 * enum vfl_devnode_type - type of V4L2 device node
27 *
28 * @VFL_TYPE_VIDEO: for video input/output devices
29 * @VFL_TYPE_GRABBER: deprecated, same as VFL_TYPE_VIDEO
30 * @VFL_TYPE_VBI: for vertical blank data (i.e. closed captions, teletext)
31 * @VFL_TYPE_RADIO: for radio tuners
32 * @VFL_TYPE_SUBDEV: for V4L2 subdevices
33 * @VFL_TYPE_SDR: for Software Defined Radio tuners
34 * @VFL_TYPE_TOUCH: for touch sensors
35 * @VFL_TYPE_MAX: number of VFL types, must always be last in the enum
36 */
37enum vfl_devnode_type {
38 VFL_TYPE_VIDEO,
39 VFL_TYPE_GRABBER = VFL_TYPE_VIDEO,
40 VFL_TYPE_VBI,
41 VFL_TYPE_RADIO,
42 VFL_TYPE_SUBDEV,
43 VFL_TYPE_SDR,
44 VFL_TYPE_TOUCH,
45 VFL_TYPE_MAX /* Shall be the last one */
46};
47
48/**
49 * enum vfl_direction - Identifies if a &struct video_device corresponds
50 * to a receiver, a transmitter or a mem-to-mem device.
51 *
52 * @VFL_DIR_RX: device is a receiver.
53 * @VFL_DIR_TX: device is a transmitter.
54 * @VFL_DIR_M2M: device is a memory to memory device.
55 *
56 * Note: Ignored if &enum vfl_devnode_type is %VFL_TYPE_SUBDEV.
57 */
58enum vfl_devnode_direction {
59 VFL_DIR_RX,
60 VFL_DIR_TX,
61 VFL_DIR_M2M,
62};
63
64struct v4l2_ioctl_callbacks;
65struct video_device;
66struct v4l2_device;
67struct v4l2_ctrl_handler;
68
69/**
70 * enum v4l2_video_device_flags - Flags used by &struct video_device
71 *
72 * @V4L2_FL_REGISTERED:
73 * indicates that a &struct video_device is registered.
74 * Drivers can clear this flag if they want to block all future
75 * device access. It is cleared by video_unregister_device.
76 * @V4L2_FL_USES_V4L2_FH:
77 * indicates that file->private_data points to &struct v4l2_fh.
78 * This flag is set by the core when v4l2_fh_init() is called.
79 * All new drivers should use it.
80 * @V4L2_FL_QUIRK_INVERTED_CROP:
81 * some old M2M drivers use g/s_crop/cropcap incorrectly: crop and
82 * compose are swapped. If this flag is set, then the selection
83 * targets are swapped in the g/s_crop/cropcap functions in v4l2-ioctl.c.
84 * This allows those drivers to correctly implement the selection API,
85 * but the old crop API will still work as expected in order to preserve
86 * backwards compatibility.
87 * Never set this flag for new drivers.
88 */
89enum v4l2_video_device_flags {
90 V4L2_FL_REGISTERED = 0,
91 V4L2_FL_USES_V4L2_FH = 1,
92 V4L2_FL_QUIRK_INVERTED_CROP = 2,
93};
94
95/* Priority helper functions */
96
97/**
98 * struct v4l2_prio_state - stores the priority states
99 *
100 * @prios: array with elements to store the array priorities
101 *
102 *
103 * .. note::
104 * The size of @prios array matches the number of priority types defined
105 * by enum &v4l2_priority.
106 */
107struct v4l2_prio_state {
108 atomic_t prios[4];
109};
110
111/**
112 * v4l2_prio_init - initializes a struct v4l2_prio_state
113 *
114 * @global: pointer to &struct v4l2_prio_state
115 */
116void v4l2_prio_init(struct v4l2_prio_state *global);
117
118/**
119 * v4l2_prio_change - changes the v4l2 file handler priority
120 *
121 * @global: pointer to the &struct v4l2_prio_state of the device node.
122 * @local: pointer to the desired priority, as defined by enum &v4l2_priority
123 * @new: Priority type requested, as defined by enum &v4l2_priority.
124 *
125 * .. note::
126 * This function should be used only by the V4L2 core.
127 */
128int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local,
129 enum v4l2_priority new);
130
131/**
132 * v4l2_prio_open - Implements the priority logic for a file handler open
133 *
134 * @global: pointer to the &struct v4l2_prio_state of the device node.
135 * @local: pointer to the desired priority, as defined by enum &v4l2_priority
136 *
137 * .. note::
138 * This function should be used only by the V4L2 core.
139 */
140void v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local);
141
142/**
143 * v4l2_prio_close - Implements the priority logic for a file handler close
144 *
145 * @global: pointer to the &struct v4l2_prio_state of the device node.
146 * @local: priority to be released, as defined by enum &v4l2_priority
147 *
148 * .. note::
149 * This function should be used only by the V4L2 core.
150 */
151void v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority local);
152
153/**
154 * v4l2_prio_max - Return the maximum priority, as stored at the @global array.
155 *
156 * @global: pointer to the &struct v4l2_prio_state of the device node.
157 *
158 * .. note::
159 * This function should be used only by the V4L2 core.
160 */
161enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global);
162
163/**
164 * v4l2_prio_check - Implements the priority logic for a file handler close
165 *
166 * @global: pointer to the &struct v4l2_prio_state of the device node.
167 * @local: desired priority, as defined by enum &v4l2_priority local
168 *
169 * .. note::
170 * This function should be used only by the V4L2 core.
171 */
172int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority local);
173
174/**
175 * struct v4l2_file_operations - fs operations used by a V4L2 device
176 *
177 * @owner: pointer to struct module
178 * @read: operations needed to implement the read() syscall
179 * @write: operations needed to implement the write() syscall
180 * @poll: operations needed to implement the poll() syscall
181 * @unlocked_ioctl: operations needed to implement the ioctl() syscall
182 * @compat_ioctl32: operations needed to implement the ioctl() syscall for
183 * the special case where the Kernel uses 64 bits instructions, but
184 * the userspace uses 32 bits.
185 * @get_unmapped_area: called by the mmap() syscall, used when %!CONFIG_MMU
186 * @mmap: operations needed to implement the mmap() syscall
187 * @open: operations needed to implement the open() syscall
188 * @release: operations needed to implement the release() syscall
189 *
190 * .. note::
191 *
192 * Those operations are used to implemente the fs struct file_operations
193 * at the V4L2 drivers. The V4L2 core overrides the fs ops with some
194 * extra logic needed by the subsystem.
195 */
196struct v4l2_file_operations {
197 struct module *owner;
198 ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
199 ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
200 __poll_t (*poll) (struct file *, struct poll_table_struct *);
201 long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
202#ifdef CONFIG_COMPAT
203 long (*compat_ioctl32) (struct file *, unsigned int, unsigned long);
204#endif
205 unsigned long (*get_unmapped_area) (struct file *, unsigned long,
206 unsigned long, unsigned long, unsigned long);
207 int (*mmap) (struct file *, struct vm_area_struct *);
208 int (*open) (struct file *);
209 int (*release) (struct file *);
210
211 ANDROID_KABI_RESERVE(1);
212};
213
214/*
215 * Newer version of video_device, handled by videodev2.c
216 * This version moves redundant code from video device code to
217 * the common handler
218 */
219
220/**
221 * struct video_device - Structure used to create and manage the V4L2 device
222 * nodes.
223 *
224 * @entity: &struct media_entity
225 * @intf_devnode: pointer to &struct media_intf_devnode
226 * @pipe: &struct media_pipeline
227 * @fops: pointer to &struct v4l2_file_operations for the video device
228 * @device_caps: device capabilities as used in v4l2_capabilities
229 * @dev: &struct device for the video device
230 * @cdev: character device
231 * @v4l2_dev: pointer to &struct v4l2_device parent
232 * @dev_parent: pointer to &struct device parent
233 * @ctrl_handler: Control handler associated with this device node.
234 * May be NULL.
235 * @queue: &struct vb2_queue associated with this device node. May be NULL.
236 * @prio: pointer to &struct v4l2_prio_state with device's Priority state.
237 * If NULL, then v4l2_dev->prio will be used.
238 * @name: video device name
239 * @vfl_type: V4L device type, as defined by &enum vfl_devnode_type
240 * @vfl_dir: V4L receiver, transmitter or m2m
241 * @minor: device node 'minor'. It is set to -1 if the registration failed
242 * @num: number of the video device node
243 * @flags: video device flags. Use bitops to set/clear/test flags.
244 * Contains a set of &enum v4l2_video_device_flags.
245 * @index: attribute to differentiate multiple indices on one physical device
246 * @fh_lock: Lock for all v4l2_fhs
247 * @fh_list: List of &struct v4l2_fh
248 * @dev_debug: Internal device debug flags, not for use by drivers
249 * @tvnorms: Supported tv norms
250 *
251 * @release: video device release() callback
252 * @ioctl_ops: pointer to &struct v4l2_ioctl_ops with ioctl callbacks
253 *
254 * @valid_ioctls: bitmap with the valid ioctls for this device
255 * @lock: pointer to &struct mutex serialization lock
256 *
257 * .. note::
258 * Only set @dev_parent if that can't be deduced from @v4l2_dev.
259 */
260
261struct video_device
262{
263#if defined(CONFIG_MEDIA_CONTROLLER)
264 struct media_entity entity;
265 struct media_intf_devnode *intf_devnode;
266 struct media_pipeline pipe;
267#endif
268 const struct v4l2_file_operations *fops;
269
270 u32 device_caps;
271
272 /* sysfs */
273 struct device dev;
274 struct cdev *cdev;
275
276 struct v4l2_device *v4l2_dev;
277 struct device *dev_parent;
278
279 struct v4l2_ctrl_handler *ctrl_handler;
280
281 struct vb2_queue *queue;
282
283 struct v4l2_prio_state *prio;
284
285 /* device info */
286 char name[32];
287 enum vfl_devnode_type vfl_type;
288 enum vfl_devnode_direction vfl_dir;
289 int minor;
290 u16 num;
291 unsigned long flags;
292 int index;
293
294 /* V4L2 file handles */
295 spinlock_t fh_lock;
296 struct list_head fh_list;
297
298 int dev_debug;
299
300 v4l2_std_id tvnorms;
301
302 /* callbacks */
303 void (*release)(struct video_device *vdev);
304 const struct v4l2_ioctl_ops *ioctl_ops;
305 DECLARE_BITMAP(valid_ioctls, BASE_VIDIOC_PRIVATE);
306
307 struct mutex *lock;
308
309 ANDROID_KABI_RESERVE(1);
310 ANDROID_KABI_RESERVE(2);
311};
312
313/**
314 * media_entity_to_video_device - Returns a &struct video_device from
315 * the &struct media_entity embedded on it.
316 *
317 * @__entity: pointer to &struct media_entity
318 */
319#define media_entity_to_video_device(__entity) \
320 container_of(__entity, struct video_device, entity)
321
322/**
323 * to_video_device - Returns a &struct video_device from the
324 * &struct device embedded on it.
325 *
326 * @cd: pointer to &struct device
327 */
328#define to_video_device(cd) container_of(cd, struct video_device, dev)
329
330/**
331 * __video_register_device - register video4linux devices
332 *
333 * @vdev: struct video_device to register
334 * @type: type of device to register, as defined by &enum vfl_devnode_type
335 * @nr: which device node number is desired:
336 * (0 == /dev/video0, 1 == /dev/video1, ..., -1 == first free)
337 * @warn_if_nr_in_use: warn if the desired device node number
338 * was already in use and another number was chosen instead.
339 * @owner: module that owns the video device node
340 *
341 * The registration code assigns minor numbers and device node numbers
342 * based on the requested type and registers the new device node with
343 * the kernel.
344 *
345 * This function assumes that struct video_device was zeroed when it
346 * was allocated and does not contain any stale date.
347 *
348 * An error is returned if no free minor or device node number could be
349 * found, or if the registration of the device node failed.
350 *
351 * Returns 0 on success.
352 *
353 * .. note::
354 *
355 * This function is meant to be used only inside the V4L2 core.
356 * Drivers should use video_register_device() or
357 * video_register_device_no_warn().
358 */
359int __must_check __video_register_device(struct video_device *vdev,
360 enum vfl_devnode_type type,
361 int nr, int warn_if_nr_in_use,
362 struct module *owner);
363
364/**
365 * video_register_device - register video4linux devices
366 *
367 * @vdev: struct video_device to register
368 * @type: type of device to register, as defined by &enum vfl_devnode_type
369 * @nr: which device node number is desired:
370 * (0 == /dev/video0, 1 == /dev/video1, ..., -1 == first free)
371 *
372 * Internally, it calls __video_register_device(). Please see its
373 * documentation for more details.
374 *
375 * .. note::
376 * if video_register_device fails, the release() callback of
377 * &struct video_device structure is *not* called, so the caller
378 * is responsible for freeing any data. Usually that means that
379 * you video_device_release() should be called on failure.
380 */
381static inline int __must_check video_register_device(struct video_device *vdev,
382 enum vfl_devnode_type type,
383 int nr)
384{
385 return __video_register_device(vdev, type, nr, 1, vdev->fops->owner);
386}
387
388/**
389 * video_register_device_no_warn - register video4linux devices
390 *
391 * @vdev: struct video_device to register
392 * @type: type of device to register, as defined by &enum vfl_devnode_type
393 * @nr: which device node number is desired:
394 * (0 == /dev/video0, 1 == /dev/video1, ..., -1 == first free)
395 *
396 * This function is identical to video_register_device() except that no
397 * warning is issued if the desired device node number was already in use.
398 *
399 * Internally, it calls __video_register_device(). Please see its
400 * documentation for more details.
401 *
402 * .. note::
403 * if video_register_device fails, the release() callback of
404 * &struct video_device structure is *not* called, so the caller
405 * is responsible for freeing any data. Usually that means that
406 * you video_device_release() should be called on failure.
407 */
408static inline int __must_check
409video_register_device_no_warn(struct video_device *vdev,
410 enum vfl_devnode_type type, int nr)
411{
412 return __video_register_device(vdev, type, nr, 0, vdev->fops->owner);
413}
414
415/**
416 * video_unregister_device - Unregister video devices.
417 *
418 * @vdev: &struct video_device to register
419 *
420 * Does nothing if vdev == NULL or if video_is_registered() returns false.
421 */
422void video_unregister_device(struct video_device *vdev);
423
424/**
425 * video_device_alloc - helper function to alloc &struct video_device
426 *
427 * Returns NULL if %-ENOMEM or a &struct video_device on success.
428 */
429struct video_device * __must_check video_device_alloc(void);
430
431/**
432 * video_device_release - helper function to release &struct video_device
433 *
434 * @vdev: pointer to &struct video_device
435 *
436 * Can also be used for video_device->release\(\).
437 */
438void video_device_release(struct video_device *vdev);
439
440/**
441 * video_device_release_empty - helper function to implement the
442 * video_device->release\(\) callback.
443 *
444 * @vdev: pointer to &struct video_device
445 *
446 * This release function does nothing.
447 *
448 * It should be used when the video_device is a static global struct.
449 *
450 * .. note::
451 * Having a static video_device is a dubious construction at best.
452 */
453void video_device_release_empty(struct video_device *vdev);
454
455/**
456 * v4l2_disable_ioctl- mark that a given command isn't implemented.
457 * shouldn't use core locking
458 *
459 * @vdev: pointer to &struct video_device
460 * @cmd: ioctl command
461 *
462 * This function allows drivers to provide just one v4l2_ioctl_ops struct, but
463 * disable ioctls based on the specific card that is actually found.
464 *
465 * .. note::
466 *
467 * This must be called before video_register_device.
468 * See also the comments for determine_valid_ioctls().
469 */
470static inline void v4l2_disable_ioctl(struct video_device *vdev,
471 unsigned int cmd)
472{
473 if (_IOC_NR(cmd) < BASE_VIDIOC_PRIVATE)
474 set_bit(_IOC_NR(cmd), vdev->valid_ioctls);
475}
476
477/**
478 * video_get_drvdata - gets private data from &struct video_device.
479 *
480 * @vdev: pointer to &struct video_device
481 *
482 * returns a pointer to the private data
483 */
484static inline void *video_get_drvdata(struct video_device *vdev)
485{
486 return dev_get_drvdata(&vdev->dev);
487}
488
489/**
490 * video_set_drvdata - sets private data from &struct video_device.
491 *
492 * @vdev: pointer to &struct video_device
493 * @data: private data pointer
494 */
495static inline void video_set_drvdata(struct video_device *vdev, void *data)
496{
497 dev_set_drvdata(&vdev->dev, data);
498}
499
500/**
501 * video_devdata - gets &struct video_device from struct file.
502 *
503 * @file: pointer to struct file
504 */
505struct video_device *video_devdata(struct file *file);
506
507/**
508 * video_drvdata - gets private data from &struct video_device using the
509 * struct file.
510 *
511 * @file: pointer to struct file
512 *
513 * This is function combines both video_get_drvdata() and video_devdata()
514 * as this is used very often.
515 */
516static inline void *video_drvdata(struct file *file)
517{
518 return video_get_drvdata(video_devdata(file));
519}
520
521/**
522 * video_device_node_name - returns the video device name
523 *
524 * @vdev: pointer to &struct video_device
525 *
526 * Returns the device name string
527 */
528static inline const char *video_device_node_name(struct video_device *vdev)
529{
530 return dev_name(&vdev->dev);
531}
532
533/**
534 * video_is_registered - returns true if the &struct video_device is registered.
535 *
536 *
537 * @vdev: pointer to &struct video_device
538 */
539static inline int video_is_registered(struct video_device *vdev)
540{
541 return test_bit(V4L2_FL_REGISTERED, &vdev->flags);
542}
543
544#endif /* _V4L2_DEV_H */