Merge tag 'for-6.16-rc4-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave...
[linux-2.6-block.git] / drivers / usb / gadget / function / uvc_queue.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
cdda479f
LP
2#ifndef _UVC_QUEUE_H_
3#define _UVC_QUEUE_H_
4
284eb166 5#include <linux/list.h>
cdda479f 6#include <linux/poll.h>
284eb166
LP
7#include <linux/spinlock.h>
8
c139990e 9#include <media/videobuf2-v4l2.h>
cdda479f 10
284eb166
LP
11struct file;
12struct mutex;
13
cdda479f
LP
14/* Maximum frame size in bytes, for sanity checking. */
15#define UVC_MAX_FRAME_SIZE (16*1024*1024)
16/* Maximum number of video buffers. */
17#define UVC_MAX_VIDEO_BUFFERS 32
18
19/* ------------------------------------------------------------------------
20 * Structures.
21 */
22
23enum uvc_buffer_state {
24 UVC_BUF_STATE_IDLE = 0,
25 UVC_BUF_STATE_QUEUED = 1,
26 UVC_BUF_STATE_ACTIVE = 2,
27 UVC_BUF_STATE_DONE = 3,
28 UVC_BUF_STATE_ERROR = 4,
29};
30
31struct uvc_buffer {
2d700715 32 struct vb2_v4l2_buffer buf;
cdda479f 33 struct list_head queue;
d6925225 34
cdda479f 35 enum uvc_buffer_state state;
d6925225 36 void *mem;
e81e7f9a
MG
37 struct sg_table *sgt;
38 struct scatterlist *sg;
39 unsigned int offset;
d6925225
BS
40 unsigned int length;
41 unsigned int bytesused;
98ad0329
MG
42 /* req_payload_size: only used with isoc */
43 unsigned int req_payload_size;
cdda479f
LP
44};
45
d6925225
BS
46#define UVC_QUEUE_DISCONNECTED (1 << 0)
47#define UVC_QUEUE_DROP_INCOMPLETE (1 << 1)
cdda479f
LP
48
49struct uvc_video_queue {
d6925225 50 struct vb2_queue queue;
cdda479f 51
cdda479f
LP
52 unsigned int flags;
53 __u32 sequence;
54
cdda479f 55 unsigned int buf_used;
cdda479f 56
e81e7f9a
MG
57 bool use_sg;
58
d6925225 59 spinlock_t irqlock; /* Protects flags and irqqueue */
cdda479f
LP
60 struct list_head irqqueue;
61};
62
cdda479f
LP
63static inline int uvc_queue_streaming(struct uvc_video_queue *queue)
64{
d6925225 65 return vb2_is_streaming(&queue->queue);
cdda479f 66}
cdda479f 67
e81e7f9a 68int uvcg_queue_init(struct uvc_video_queue *queue, struct device *dev, enum v4l2_buf_type type,
d8e96c4b 69 struct mutex *lock);
3a83c16e
AP
70
71void uvcg_free_buffers(struct uvc_video_queue *queue);
72
73int uvcg_alloc_buffers(struct uvc_video_queue *queue,
74 struct v4l2_requestbuffers *rb);
75
76int uvcg_query_buffer(struct uvc_video_queue *queue, struct v4l2_buffer *buf);
77
78int uvcg_queue_buffer(struct uvc_video_queue *queue, struct v4l2_buffer *buf);
79
80int uvcg_dequeue_buffer(struct uvc_video_queue *queue,
81 struct v4l2_buffer *buf, int nonblocking);
82
c23e0cb8 83__poll_t uvcg_queue_poll(struct uvc_video_queue *queue,
3a83c16e
AP
84 struct file *file, poll_table *wait);
85
86int uvcg_queue_mmap(struct uvc_video_queue *queue, struct vm_area_struct *vma);
87
88#ifndef CONFIG_MMU
89unsigned long uvcg_queue_get_unmapped_area(struct uvc_video_queue *queue,
90 unsigned long pgoff);
91#endif /* CONFIG_MMU */
92
93void uvcg_queue_cancel(struct uvc_video_queue *queue, int disconnect);
94
95int uvcg_queue_enable(struct uvc_video_queue *queue, int enable);
96
61aa709c 97void uvcg_complete_buffer(struct uvc_video_queue *queue,
3a83c16e
AP
98 struct uvc_buffer *buf);
99
100struct uvc_buffer *uvcg_queue_head(struct uvc_video_queue *queue);
101
cdda479f
LP
102#endif /* _UVC_QUEUE_H_ */
103