1 // SPDX-License-Identifier: GPL-2.0+
3 * uvc_gadget.h -- USB Video Class Gadget driver
5 * Copyright (C) 2009-2010
6 * Laurent Pinchart (laurent.pinchart@ideasonboard.com)
10 #define _UVC_GADGET_H_
12 #include <linux/ioctl.h>
13 #include <linux/types.h>
14 #include <linux/usb/ch9.h>
16 #define UVC_EVENT_FIRST (V4L2_EVENT_PRIVATE_START + 0)
17 #define UVC_EVENT_CONNECT (V4L2_EVENT_PRIVATE_START + 0)
18 #define UVC_EVENT_DISCONNECT (V4L2_EVENT_PRIVATE_START + 1)
19 #define UVC_EVENT_STREAMON (V4L2_EVENT_PRIVATE_START + 2)
20 #define UVC_EVENT_STREAMOFF (V4L2_EVENT_PRIVATE_START + 3)
21 #define UVC_EVENT_SETUP (V4L2_EVENT_PRIVATE_START + 4)
22 #define UVC_EVENT_DATA (V4L2_EVENT_PRIVATE_START + 5)
23 #define UVC_EVENT_LAST (V4L2_EVENT_PRIVATE_START + 5)
25 struct uvc_request_data
{
32 enum usb_device_speed speed
;
33 struct usb_ctrlrequest req
;
34 struct uvc_request_data data
;
38 #define UVCIOC_SEND_RESPONSE _IOW('U', 1, struct uvc_request_data)
40 #define UVC_INTF_CONTROL 0
41 #define UVC_INTF_STREAMING 1
43 /* ------------------------------------------------------------------------
44 * Debugging, printing and logging
49 #include <linux/usb.h> /* For usb_endpoint_* */
50 #include <linux/usb/composite.h>
51 #include <linux/usb/gadget.h>
52 #include <linux/videodev2.h>
53 #include <media/v4l2-fh.h>
54 #include <media/v4l2-device.h>
56 #include "uvc_queue.h"
58 #define UVC_TRACE_PROBE (1 << 0)
59 #define UVC_TRACE_DESCR (1 << 1)
60 #define UVC_TRACE_CONTROL (1 << 2)
61 #define UVC_TRACE_FORMAT (1 << 3)
62 #define UVC_TRACE_CAPTURE (1 << 4)
63 #define UVC_TRACE_CALLS (1 << 5)
64 #define UVC_TRACE_IOCTL (1 << 6)
65 #define UVC_TRACE_FRAME (1 << 7)
66 #define UVC_TRACE_SUSPEND (1 << 8)
67 #define UVC_TRACE_STATUS (1 << 9)
69 #define UVC_WARN_MINMAX 0
70 #define UVC_WARN_PROBE_DEF 1
72 extern unsigned int uvc_gadget_trace_param
;
74 #define uvc_trace(flag, msg...) \
76 if (uvc_gadget_trace_param & flag) \
77 printk(KERN_DEBUG "uvcvideo: " msg); \
80 #define uvc_warn_once(dev, warn, msg...) \
82 if (!test_and_set_bit(warn, &dev->warnings)) \
83 printk(KERN_INFO "uvcvideo: " msg); \
86 #define uvc_printk(level, msg...) \
87 printk(level "uvcvideo: " msg)
89 /* ------------------------------------------------------------------------
90 * Driver specific constants
93 #define UVC_NUM_REQUESTS 4
94 #define UVC_MAX_REQUEST_SIZE 64
95 #define UVC_MAX_EVENTS 4
97 /* ------------------------------------------------------------------------
104 /* Frame parameters */
109 unsigned int imagesize
;
110 struct mutex mutex
; /* protects frame parameters */
113 unsigned int req_size
;
114 struct usb_request
*req
[UVC_NUM_REQUESTS
];
115 __u8
*req_buffer
[UVC_NUM_REQUESTS
];
116 struct list_head req_free
;
119 void (*encode
) (struct usb_request
*req
, struct uvc_video
*video
,
120 struct uvc_buffer
*buf
);
122 /* Context data used by the completion handler */
124 __u32 max_payload_size
;
126 struct uvc_video_queue queue
;
131 UVC_STATE_DISCONNECTED
,
137 struct video_device vdev
;
138 struct v4l2_device v4l2_dev
;
139 enum uvc_state state
;
140 struct usb_function func
;
141 struct uvc_video video
;
145 const struct uvc_descriptor_header
* const *fs_control
;
146 const struct uvc_descriptor_header
* const *ss_control
;
147 const struct uvc_descriptor_header
* const *fs_streaming
;
148 const struct uvc_descriptor_header
* const *hs_streaming
;
149 const struct uvc_descriptor_header
* const *ss_streaming
;
152 unsigned int control_intf
;
153 struct usb_ep
*control_ep
;
154 struct usb_request
*control_req
;
157 unsigned int streaming_intf
;
160 unsigned int event_length
;
161 unsigned int event_setup_out
: 1;
164 static inline struct uvc_device
*to_uvc(struct usb_function
*f
)
166 return container_of(f
, struct uvc_device
, func
);
169 struct uvc_file_handle
{
171 struct uvc_video
*device
;
174 #define to_uvc_file_handle(handle) \
175 container_of(handle, struct uvc_file_handle, vfh)
177 /* ------------------------------------------------------------------------
181 extern void uvc_function_setup_continue(struct uvc_device
*uvc
);
182 extern void uvc_endpoint_stream(struct uvc_device
*dev
);
184 extern void uvc_function_connect(struct uvc_device
*uvc
);
185 extern void uvc_function_disconnect(struct uvc_device
*uvc
);
187 #endif /* __KERNEL__ */
189 #endif /* _UVC_GADGET_H_ */