xref: /openbmc/linux/drivers/usb/gadget/function/f_uvc.c (revision d182bf156c4cb8b08ce4a75e82b3357b14a4382d)
15fd54aceSGreg Kroah-Hartman // SPDX-License-Identifier: GPL-2.0+
200a2430fSAndrzej Pietrasiewicz /*
300a2430fSAndrzej Pietrasiewicz  *	uvc_gadget.c  --  USB Video Class Gadget driver
400a2430fSAndrzej Pietrasiewicz  *
500a2430fSAndrzej Pietrasiewicz  *	Copyright (C) 2009-2010
600a2430fSAndrzej Pietrasiewicz  *	    Laurent Pinchart (laurent.pinchart@ideasonboard.com)
700a2430fSAndrzej Pietrasiewicz  */
800a2430fSAndrzej Pietrasiewicz 
900a2430fSAndrzej Pietrasiewicz #include <linux/device.h>
1000a2430fSAndrzej Pietrasiewicz #include <linux/errno.h>
1100a2430fSAndrzej Pietrasiewicz #include <linux/fs.h>
12284eb166SLaurent Pinchart #include <linux/kernel.h>
1300a2430fSAndrzej Pietrasiewicz #include <linux/list.h>
14284eb166SLaurent Pinchart #include <linux/module.h>
1500a2430fSAndrzej Pietrasiewicz #include <linux/mutex.h>
1600a2430fSAndrzej Pietrasiewicz #include <linux/string.h>
1700a2430fSAndrzej Pietrasiewicz #include <linux/usb/ch9.h>
1800a2430fSAndrzej Pietrasiewicz #include <linux/usb/gadget.h>
19284eb166SLaurent Pinchart #include <linux/usb/g_uvc.h>
2000a2430fSAndrzej Pietrasiewicz #include <linux/usb/video.h>
2100a2430fSAndrzej Pietrasiewicz #include <linux/vmalloc.h>
2200a2430fSAndrzej Pietrasiewicz #include <linux/wait.h>
2300a2430fSAndrzej Pietrasiewicz 
2400a2430fSAndrzej Pietrasiewicz #include <media/v4l2-dev.h>
2500a2430fSAndrzej Pietrasiewicz #include <media/v4l2-event.h>
2600a2430fSAndrzej Pietrasiewicz 
2700a2430fSAndrzej Pietrasiewicz #include "uvc.h"
2846919a23SAndrzej Pietrasiewicz #include "uvc_configfs.h"
293a83c16eSAndrzej Pietrasiewicz #include "uvc_v4l2.h"
303a83c16eSAndrzej Pietrasiewicz #include "uvc_video.h"
3100a2430fSAndrzej Pietrasiewicz 
3200a2430fSAndrzej Pietrasiewicz unsigned int uvc_gadget_trace_param;
3320970d82SLaurent Pinchart module_param_named(trace, uvc_gadget_trace_param, uint, 0644);
3420970d82SLaurent Pinchart MODULE_PARM_DESC(trace, "Trace level bitmask");
3500a2430fSAndrzej Pietrasiewicz 
3600a2430fSAndrzej Pietrasiewicz /* --------------------------------------------------------------------------
3700a2430fSAndrzej Pietrasiewicz  * Function descriptors
3800a2430fSAndrzej Pietrasiewicz  */
3900a2430fSAndrzej Pietrasiewicz 
4000a2430fSAndrzej Pietrasiewicz /* string IDs are assigned dynamically */
4100a2430fSAndrzej Pietrasiewicz 
4200a2430fSAndrzej Pietrasiewicz static struct usb_string uvc_en_us_strings[] = {
43324e4f85SDan Vacura 	/* [UVC_STRING_CONTROL_IDX].s = DYNAMIC, */
4400a2430fSAndrzej Pietrasiewicz 	[UVC_STRING_STREAMING_IDX].s = "Video Streaming",
4500a2430fSAndrzej Pietrasiewicz 	{  }
4600a2430fSAndrzej Pietrasiewicz };
4700a2430fSAndrzej Pietrasiewicz 
4800a2430fSAndrzej Pietrasiewicz static struct usb_gadget_strings uvc_stringtab = {
4900a2430fSAndrzej Pietrasiewicz 	.language = 0x0409,	/* en-us */
5000a2430fSAndrzej Pietrasiewicz 	.strings = uvc_en_us_strings,
5100a2430fSAndrzej Pietrasiewicz };
5200a2430fSAndrzej Pietrasiewicz 
5300a2430fSAndrzej Pietrasiewicz static struct usb_gadget_strings *uvc_function_strings[] = {
5400a2430fSAndrzej Pietrasiewicz 	&uvc_stringtab,
5500a2430fSAndrzej Pietrasiewicz 	NULL,
5600a2430fSAndrzej Pietrasiewicz };
5700a2430fSAndrzej Pietrasiewicz 
5800a2430fSAndrzej Pietrasiewicz #define UVC_INTF_VIDEO_CONTROL			0
5900a2430fSAndrzej Pietrasiewicz #define UVC_INTF_VIDEO_STREAMING		1
6000a2430fSAndrzej Pietrasiewicz 
6100a2430fSAndrzej Pietrasiewicz #define UVC_STATUS_MAX_PACKET_SIZE		16	/* 16 bytes status */
6200a2430fSAndrzej Pietrasiewicz 
636d11ed76SAndrzej Pietrasiewicz static struct usb_interface_assoc_descriptor uvc_iad = {
6400a2430fSAndrzej Pietrasiewicz 	.bLength		= sizeof(uvc_iad),
6500a2430fSAndrzej Pietrasiewicz 	.bDescriptorType	= USB_DT_INTERFACE_ASSOCIATION,
6600a2430fSAndrzej Pietrasiewicz 	.bFirstInterface	= 0,
6700a2430fSAndrzej Pietrasiewicz 	.bInterfaceCount	= 2,
6800a2430fSAndrzej Pietrasiewicz 	.bFunctionClass		= USB_CLASS_VIDEO,
6900a2430fSAndrzej Pietrasiewicz 	.bFunctionSubClass	= UVC_SC_VIDEO_INTERFACE_COLLECTION,
7000a2430fSAndrzej Pietrasiewicz 	.bFunctionProtocol	= 0x00,
7100a2430fSAndrzej Pietrasiewicz 	.iFunction		= 0,
7200a2430fSAndrzej Pietrasiewicz };
7300a2430fSAndrzej Pietrasiewicz 
746d11ed76SAndrzej Pietrasiewicz static struct usb_interface_descriptor uvc_control_intf = {
7500a2430fSAndrzej Pietrasiewicz 	.bLength		= USB_DT_INTERFACE_SIZE,
7600a2430fSAndrzej Pietrasiewicz 	.bDescriptorType	= USB_DT_INTERFACE,
7700a2430fSAndrzej Pietrasiewicz 	.bInterfaceNumber	= UVC_INTF_VIDEO_CONTROL,
7800a2430fSAndrzej Pietrasiewicz 	.bAlternateSetting	= 0,
7900a2430fSAndrzej Pietrasiewicz 	.bNumEndpoints		= 1,
8000a2430fSAndrzej Pietrasiewicz 	.bInterfaceClass	= USB_CLASS_VIDEO,
8100a2430fSAndrzej Pietrasiewicz 	.bInterfaceSubClass	= UVC_SC_VIDEOCONTROL,
8200a2430fSAndrzej Pietrasiewicz 	.bInterfaceProtocol	= 0x00,
8300a2430fSAndrzej Pietrasiewicz 	.iInterface		= 0,
8400a2430fSAndrzej Pietrasiewicz };
8500a2430fSAndrzej Pietrasiewicz 
866d11ed76SAndrzej Pietrasiewicz static struct usb_endpoint_descriptor uvc_control_ep = {
8700a2430fSAndrzej Pietrasiewicz 	.bLength		= USB_DT_ENDPOINT_SIZE,
8800a2430fSAndrzej Pietrasiewicz 	.bDescriptorType	= USB_DT_ENDPOINT,
8900a2430fSAndrzej Pietrasiewicz 	.bEndpointAddress	= USB_DIR_IN,
9000a2430fSAndrzej Pietrasiewicz 	.bmAttributes		= USB_ENDPOINT_XFER_INT,
9100a2430fSAndrzej Pietrasiewicz 	.wMaxPacketSize		= cpu_to_le16(UVC_STATUS_MAX_PACKET_SIZE),
9200a2430fSAndrzej Pietrasiewicz 	.bInterval		= 8,
9300a2430fSAndrzej Pietrasiewicz };
9400a2430fSAndrzej Pietrasiewicz 
956d11ed76SAndrzej Pietrasiewicz static struct usb_ss_ep_comp_descriptor uvc_ss_control_comp = {
9600a2430fSAndrzej Pietrasiewicz 	.bLength		= sizeof(uvc_ss_control_comp),
9700a2430fSAndrzej Pietrasiewicz 	.bDescriptorType	= USB_DT_SS_ENDPOINT_COMP,
9800a2430fSAndrzej Pietrasiewicz 	/* The following 3 values can be tweaked if necessary. */
9900a2430fSAndrzej Pietrasiewicz 	.bMaxBurst		= 0,
10000a2430fSAndrzej Pietrasiewicz 	.bmAttributes		= 0,
10100a2430fSAndrzej Pietrasiewicz 	.wBytesPerInterval	= cpu_to_le16(UVC_STATUS_MAX_PACKET_SIZE),
10200a2430fSAndrzej Pietrasiewicz };
10300a2430fSAndrzej Pietrasiewicz 
1046d11ed76SAndrzej Pietrasiewicz static struct uvc_control_endpoint_descriptor uvc_control_cs_ep = {
10500a2430fSAndrzej Pietrasiewicz 	.bLength		= UVC_DT_CONTROL_ENDPOINT_SIZE,
10600a2430fSAndrzej Pietrasiewicz 	.bDescriptorType	= USB_DT_CS_ENDPOINT,
10700a2430fSAndrzej Pietrasiewicz 	.bDescriptorSubType	= UVC_EP_INTERRUPT,
10800a2430fSAndrzej Pietrasiewicz 	.wMaxTransferSize	= cpu_to_le16(UVC_STATUS_MAX_PACKET_SIZE),
10900a2430fSAndrzej Pietrasiewicz };
11000a2430fSAndrzej Pietrasiewicz 
1116d11ed76SAndrzej Pietrasiewicz static struct usb_interface_descriptor uvc_streaming_intf_alt0 = {
11200a2430fSAndrzej Pietrasiewicz 	.bLength		= USB_DT_INTERFACE_SIZE,
11300a2430fSAndrzej Pietrasiewicz 	.bDescriptorType	= USB_DT_INTERFACE,
11400a2430fSAndrzej Pietrasiewicz 	.bInterfaceNumber	= UVC_INTF_VIDEO_STREAMING,
11500a2430fSAndrzej Pietrasiewicz 	.bAlternateSetting	= 0,
11600a2430fSAndrzej Pietrasiewicz 	.bNumEndpoints		= 0,
11700a2430fSAndrzej Pietrasiewicz 	.bInterfaceClass	= USB_CLASS_VIDEO,
11800a2430fSAndrzej Pietrasiewicz 	.bInterfaceSubClass	= UVC_SC_VIDEOSTREAMING,
11900a2430fSAndrzej Pietrasiewicz 	.bInterfaceProtocol	= 0x00,
12000a2430fSAndrzej Pietrasiewicz 	.iInterface		= 0,
12100a2430fSAndrzej Pietrasiewicz };
12200a2430fSAndrzej Pietrasiewicz 
1236d11ed76SAndrzej Pietrasiewicz static struct usb_interface_descriptor uvc_streaming_intf_alt1 = {
12400a2430fSAndrzej Pietrasiewicz 	.bLength		= USB_DT_INTERFACE_SIZE,
12500a2430fSAndrzej Pietrasiewicz 	.bDescriptorType	= USB_DT_INTERFACE,
12600a2430fSAndrzej Pietrasiewicz 	.bInterfaceNumber	= UVC_INTF_VIDEO_STREAMING,
12700a2430fSAndrzej Pietrasiewicz 	.bAlternateSetting	= 1,
12800a2430fSAndrzej Pietrasiewicz 	.bNumEndpoints		= 1,
12900a2430fSAndrzej Pietrasiewicz 	.bInterfaceClass	= USB_CLASS_VIDEO,
13000a2430fSAndrzej Pietrasiewicz 	.bInterfaceSubClass	= UVC_SC_VIDEOSTREAMING,
13100a2430fSAndrzej Pietrasiewicz 	.bInterfaceProtocol	= 0x00,
13200a2430fSAndrzej Pietrasiewicz 	.iInterface		= 0,
13300a2430fSAndrzej Pietrasiewicz };
13400a2430fSAndrzej Pietrasiewicz 
1356d11ed76SAndrzej Pietrasiewicz static struct usb_endpoint_descriptor uvc_fs_streaming_ep = {
13600a2430fSAndrzej Pietrasiewicz 	.bLength		= USB_DT_ENDPOINT_SIZE,
13700a2430fSAndrzej Pietrasiewicz 	.bDescriptorType	= USB_DT_ENDPOINT,
13800a2430fSAndrzej Pietrasiewicz 	.bEndpointAddress	= USB_DIR_IN,
13900a2430fSAndrzej Pietrasiewicz 	.bmAttributes		= USB_ENDPOINT_SYNC_ASYNC
14000a2430fSAndrzej Pietrasiewicz 				| USB_ENDPOINT_XFER_ISOC,
141c5d337a3SLaurent Pinchart 	/*
142c5d337a3SLaurent Pinchart 	 * The wMaxPacketSize and bInterval values will be initialized from
14300a2430fSAndrzej Pietrasiewicz 	 * module parameters.
14400a2430fSAndrzej Pietrasiewicz 	 */
14500a2430fSAndrzej Pietrasiewicz };
14600a2430fSAndrzej Pietrasiewicz 
1476d11ed76SAndrzej Pietrasiewicz static struct usb_endpoint_descriptor uvc_hs_streaming_ep = {
14800a2430fSAndrzej Pietrasiewicz 	.bLength		= USB_DT_ENDPOINT_SIZE,
14900a2430fSAndrzej Pietrasiewicz 	.bDescriptorType	= USB_DT_ENDPOINT,
15000a2430fSAndrzej Pietrasiewicz 	.bEndpointAddress	= USB_DIR_IN,
15100a2430fSAndrzej Pietrasiewicz 	.bmAttributes		= USB_ENDPOINT_SYNC_ASYNC
15200a2430fSAndrzej Pietrasiewicz 				| USB_ENDPOINT_XFER_ISOC,
153c5d337a3SLaurent Pinchart 	/*
154c5d337a3SLaurent Pinchart 	 * The wMaxPacketSize and bInterval values will be initialized from
15500a2430fSAndrzej Pietrasiewicz 	 * module parameters.
15600a2430fSAndrzej Pietrasiewicz 	 */
15700a2430fSAndrzej Pietrasiewicz };
15800a2430fSAndrzej Pietrasiewicz 
1596d11ed76SAndrzej Pietrasiewicz static struct usb_endpoint_descriptor uvc_ss_streaming_ep = {
16000a2430fSAndrzej Pietrasiewicz 	.bLength		= USB_DT_ENDPOINT_SIZE,
16100a2430fSAndrzej Pietrasiewicz 	.bDescriptorType	= USB_DT_ENDPOINT,
16200a2430fSAndrzej Pietrasiewicz 
16300a2430fSAndrzej Pietrasiewicz 	.bEndpointAddress	= USB_DIR_IN,
16400a2430fSAndrzej Pietrasiewicz 	.bmAttributes		= USB_ENDPOINT_SYNC_ASYNC
16500a2430fSAndrzej Pietrasiewicz 				| USB_ENDPOINT_XFER_ISOC,
166c5d337a3SLaurent Pinchart 	/*
167c5d337a3SLaurent Pinchart 	 * The wMaxPacketSize and bInterval values will be initialized from
16800a2430fSAndrzej Pietrasiewicz 	 * module parameters.
16900a2430fSAndrzej Pietrasiewicz 	 */
17000a2430fSAndrzej Pietrasiewicz };
17100a2430fSAndrzej Pietrasiewicz 
1726d11ed76SAndrzej Pietrasiewicz static struct usb_ss_ep_comp_descriptor uvc_ss_streaming_comp = {
17300a2430fSAndrzej Pietrasiewicz 	.bLength		= sizeof(uvc_ss_streaming_comp),
17400a2430fSAndrzej Pietrasiewicz 	.bDescriptorType	= USB_DT_SS_ENDPOINT_COMP,
175c5d337a3SLaurent Pinchart 	/*
176c5d337a3SLaurent Pinchart 	 * The bMaxBurst, bmAttributes and wBytesPerInterval values will be
17700a2430fSAndrzej Pietrasiewicz 	 * initialized from module parameters.
17800a2430fSAndrzej Pietrasiewicz 	 */
17900a2430fSAndrzej Pietrasiewicz };
18000a2430fSAndrzej Pietrasiewicz 
18100a2430fSAndrzej Pietrasiewicz static const struct usb_descriptor_header * const uvc_fs_streaming[] = {
18200a2430fSAndrzej Pietrasiewicz 	(struct usb_descriptor_header *) &uvc_streaming_intf_alt1,
18300a2430fSAndrzej Pietrasiewicz 	(struct usb_descriptor_header *) &uvc_fs_streaming_ep,
18400a2430fSAndrzej Pietrasiewicz 	NULL,
18500a2430fSAndrzej Pietrasiewicz };
18600a2430fSAndrzej Pietrasiewicz 
18700a2430fSAndrzej Pietrasiewicz static const struct usb_descriptor_header * const uvc_hs_streaming[] = {
18800a2430fSAndrzej Pietrasiewicz 	(struct usb_descriptor_header *) &uvc_streaming_intf_alt1,
18900a2430fSAndrzej Pietrasiewicz 	(struct usb_descriptor_header *) &uvc_hs_streaming_ep,
19000a2430fSAndrzej Pietrasiewicz 	NULL,
19100a2430fSAndrzej Pietrasiewicz };
19200a2430fSAndrzej Pietrasiewicz 
19300a2430fSAndrzej Pietrasiewicz static const struct usb_descriptor_header * const uvc_ss_streaming[] = {
19400a2430fSAndrzej Pietrasiewicz 	(struct usb_descriptor_header *) &uvc_streaming_intf_alt1,
19500a2430fSAndrzej Pietrasiewicz 	(struct usb_descriptor_header *) &uvc_ss_streaming_ep,
19600a2430fSAndrzej Pietrasiewicz 	(struct usb_descriptor_header *) &uvc_ss_streaming_comp,
19700a2430fSAndrzej Pietrasiewicz 	NULL,
19800a2430fSAndrzej Pietrasiewicz };
19900a2430fSAndrzej Pietrasiewicz 
20000a2430fSAndrzej Pietrasiewicz /* --------------------------------------------------------------------------
20100a2430fSAndrzej Pietrasiewicz  * Control requests
20200a2430fSAndrzej Pietrasiewicz  */
20300a2430fSAndrzej Pietrasiewicz 
20400a2430fSAndrzej Pietrasiewicz static void
20500a2430fSAndrzej Pietrasiewicz uvc_function_ep0_complete(struct usb_ep *ep, struct usb_request *req)
20600a2430fSAndrzej Pietrasiewicz {
20700a2430fSAndrzej Pietrasiewicz 	struct uvc_device *uvc = req->context;
20800a2430fSAndrzej Pietrasiewicz 	struct v4l2_event v4l2_event;
20900a2430fSAndrzej Pietrasiewicz 	struct uvc_event *uvc_event = (void *)&v4l2_event.u.data;
21000a2430fSAndrzej Pietrasiewicz 
21100a2430fSAndrzej Pietrasiewicz 	if (uvc->event_setup_out) {
21200a2430fSAndrzej Pietrasiewicz 		uvc->event_setup_out = 0;
21300a2430fSAndrzej Pietrasiewicz 
21400a2430fSAndrzej Pietrasiewicz 		memset(&v4l2_event, 0, sizeof(v4l2_event));
21500a2430fSAndrzej Pietrasiewicz 		v4l2_event.type = UVC_EVENT_DATA;
21600a2430fSAndrzej Pietrasiewicz 		uvc_event->data.length = req->actual;
21700a2430fSAndrzej Pietrasiewicz 		memcpy(&uvc_event->data.data, req->buf, req->actual);
218dbe98b30SHans Verkuil 		v4l2_event_queue(&uvc->vdev, &v4l2_event);
21900a2430fSAndrzej Pietrasiewicz 	}
22000a2430fSAndrzej Pietrasiewicz }
22100a2430fSAndrzej Pietrasiewicz 
22200a2430fSAndrzej Pietrasiewicz static int
22300a2430fSAndrzej Pietrasiewicz uvc_function_setup(struct usb_function *f, const struct usb_ctrlrequest *ctrl)
22400a2430fSAndrzej Pietrasiewicz {
22500a2430fSAndrzej Pietrasiewicz 	struct uvc_device *uvc = to_uvc(f);
22600a2430fSAndrzej Pietrasiewicz 	struct v4l2_event v4l2_event;
22700a2430fSAndrzej Pietrasiewicz 	struct uvc_event *uvc_event = (void *)&v4l2_event.u.data;
228*d182bf15SMichael Grzeschik 	unsigned int interface = le16_to_cpu(ctrl->wIndex) & 0xff;
229*d182bf15SMichael Grzeschik 	struct usb_ctrlrequest *mctrl;
23000a2430fSAndrzej Pietrasiewicz 
23100a2430fSAndrzej Pietrasiewicz 	if ((ctrl->bRequestType & USB_TYPE_MASK) != USB_TYPE_CLASS) {
232dc0f755bSLaurent Pinchart 		uvcg_info(f, "invalid request type\n");
23300a2430fSAndrzej Pietrasiewicz 		return -EINVAL;
23400a2430fSAndrzej Pietrasiewicz 	}
23500a2430fSAndrzej Pietrasiewicz 
23600a2430fSAndrzej Pietrasiewicz 	/* Stall too big requests. */
23700a2430fSAndrzej Pietrasiewicz 	if (le16_to_cpu(ctrl->wLength) > UVC_MAX_REQUEST_SIZE)
23800a2430fSAndrzej Pietrasiewicz 		return -EINVAL;
23900a2430fSAndrzej Pietrasiewicz 
240c5d337a3SLaurent Pinchart 	/*
241c5d337a3SLaurent Pinchart 	 * Tell the complete callback to generate an event for the next request
24226a029f2SLaurent Pinchart 	 * that will be enqueued by UVCIOC_SEND_RESPONSE.
24326a029f2SLaurent Pinchart 	 */
24426a029f2SLaurent Pinchart 	uvc->event_setup_out = !(ctrl->bRequestType & USB_DIR_IN);
24526a029f2SLaurent Pinchart 	uvc->event_length = le16_to_cpu(ctrl->wLength);
24626a029f2SLaurent Pinchart 
24700a2430fSAndrzej Pietrasiewicz 	memset(&v4l2_event, 0, sizeof(v4l2_event));
24800a2430fSAndrzej Pietrasiewicz 	v4l2_event.type = UVC_EVENT_SETUP;
24900a2430fSAndrzej Pietrasiewicz 	memcpy(&uvc_event->req, ctrl, sizeof(uvc_event->req));
250*d182bf15SMichael Grzeschik 
251*d182bf15SMichael Grzeschik 	/* check for the interface number, fixup the interface number in
252*d182bf15SMichael Grzeschik 	 * the ctrl request so the userspace doesn't have to bother with
253*d182bf15SMichael Grzeschik 	 * offset and configfs parsing
254*d182bf15SMichael Grzeschik 	 */
255*d182bf15SMichael Grzeschik 	mctrl = &uvc_event->req;
256*d182bf15SMichael Grzeschik 	mctrl->wIndex &= ~cpu_to_le16(0xff);
257*d182bf15SMichael Grzeschik 	if (interface == uvc->streaming_intf)
258*d182bf15SMichael Grzeschik 		mctrl->wIndex = cpu_to_le16(UVC_STRING_STREAMING_IDX);
259*d182bf15SMichael Grzeschik 
260dbe98b30SHans Verkuil 	v4l2_event_queue(&uvc->vdev, &v4l2_event);
26100a2430fSAndrzej Pietrasiewicz 
26200a2430fSAndrzej Pietrasiewicz 	return 0;
26300a2430fSAndrzej Pietrasiewicz }
26400a2430fSAndrzej Pietrasiewicz 
26500a2430fSAndrzej Pietrasiewicz void uvc_function_setup_continue(struct uvc_device *uvc)
26600a2430fSAndrzej Pietrasiewicz {
26700a2430fSAndrzej Pietrasiewicz 	struct usb_composite_dev *cdev = uvc->func.config->cdev;
26800a2430fSAndrzej Pietrasiewicz 
26900a2430fSAndrzej Pietrasiewicz 	usb_composite_setup_continue(cdev);
27000a2430fSAndrzej Pietrasiewicz }
27100a2430fSAndrzej Pietrasiewicz 
27200a2430fSAndrzej Pietrasiewicz static int
27300a2430fSAndrzej Pietrasiewicz uvc_function_get_alt(struct usb_function *f, unsigned interface)
27400a2430fSAndrzej Pietrasiewicz {
27500a2430fSAndrzej Pietrasiewicz 	struct uvc_device *uvc = to_uvc(f);
27600a2430fSAndrzej Pietrasiewicz 
277dc0f755bSLaurent Pinchart 	uvcg_info(f, "%s(%u)\n", __func__, interface);
27800a2430fSAndrzej Pietrasiewicz 
27900a2430fSAndrzej Pietrasiewicz 	if (interface == uvc->control_intf)
28000a2430fSAndrzej Pietrasiewicz 		return 0;
28100a2430fSAndrzej Pietrasiewicz 	else if (interface != uvc->streaming_intf)
28200a2430fSAndrzej Pietrasiewicz 		return -EINVAL;
28300a2430fSAndrzej Pietrasiewicz 	else
284d62bf8c1SRobert Baldyga 		return uvc->video.ep->enabled ? 1 : 0;
28500a2430fSAndrzej Pietrasiewicz }
28600a2430fSAndrzej Pietrasiewicz 
28700a2430fSAndrzej Pietrasiewicz static int
28800a2430fSAndrzej Pietrasiewicz uvc_function_set_alt(struct usb_function *f, unsigned interface, unsigned alt)
28900a2430fSAndrzej Pietrasiewicz {
29000a2430fSAndrzej Pietrasiewicz 	struct uvc_device *uvc = to_uvc(f);
291c92bae75SFelipe Balbi 	struct usb_composite_dev *cdev = f->config->cdev;
29200a2430fSAndrzej Pietrasiewicz 	struct v4l2_event v4l2_event;
29300a2430fSAndrzej Pietrasiewicz 	struct uvc_event *uvc_event = (void *)&v4l2_event.u.data;
29400a2430fSAndrzej Pietrasiewicz 	int ret;
29500a2430fSAndrzej Pietrasiewicz 
296dc0f755bSLaurent Pinchart 	uvcg_info(f, "%s(%u, %u)\n", __func__, interface, alt);
29700a2430fSAndrzej Pietrasiewicz 
29800a2430fSAndrzej Pietrasiewicz 	if (interface == uvc->control_intf) {
29900a2430fSAndrzej Pietrasiewicz 		if (alt)
30000a2430fSAndrzej Pietrasiewicz 			return -EINVAL;
30100a2430fSAndrzej Pietrasiewicz 
302dc0f755bSLaurent Pinchart 		uvcg_info(f, "reset UVC Control\n");
30362e37078SFelipe Balbi 		usb_ep_disable(uvc->control_ep);
30462e37078SFelipe Balbi 
30562e37078SFelipe Balbi 		if (!uvc->control_ep->desc)
30662e37078SFelipe Balbi 			if (config_ep_by_speed(cdev->gadget, f, uvc->control_ep))
30762e37078SFelipe Balbi 				return -EINVAL;
30862e37078SFelipe Balbi 
30962e37078SFelipe Balbi 		usb_ep_enable(uvc->control_ep);
31062e37078SFelipe Balbi 
31100a2430fSAndrzej Pietrasiewicz 		if (uvc->state == UVC_STATE_DISCONNECTED) {
31200a2430fSAndrzej Pietrasiewicz 			memset(&v4l2_event, 0, sizeof(v4l2_event));
31300a2430fSAndrzej Pietrasiewicz 			v4l2_event.type = UVC_EVENT_CONNECT;
314c92bae75SFelipe Balbi 			uvc_event->speed = cdev->gadget->speed;
315dbe98b30SHans Verkuil 			v4l2_event_queue(&uvc->vdev, &v4l2_event);
31600a2430fSAndrzej Pietrasiewicz 
31700a2430fSAndrzej Pietrasiewicz 			uvc->state = UVC_STATE_CONNECTED;
31800a2430fSAndrzej Pietrasiewicz 		}
31900a2430fSAndrzej Pietrasiewicz 
32000a2430fSAndrzej Pietrasiewicz 		return 0;
32100a2430fSAndrzej Pietrasiewicz 	}
32200a2430fSAndrzej Pietrasiewicz 
32300a2430fSAndrzej Pietrasiewicz 	if (interface != uvc->streaming_intf)
32400a2430fSAndrzej Pietrasiewicz 		return -EINVAL;
32500a2430fSAndrzej Pietrasiewicz 
32600a2430fSAndrzej Pietrasiewicz 	/* TODO
32700a2430fSAndrzej Pietrasiewicz 	if (usb_endpoint_xfer_bulk(&uvc->desc.vs_ep))
32800a2430fSAndrzej Pietrasiewicz 		return alt ? -EINVAL : 0;
32900a2430fSAndrzej Pietrasiewicz 	*/
33000a2430fSAndrzej Pietrasiewicz 
33100a2430fSAndrzej Pietrasiewicz 	switch (alt) {
33200a2430fSAndrzej Pietrasiewicz 	case 0:
33300a2430fSAndrzej Pietrasiewicz 		if (uvc->state != UVC_STATE_STREAMING)
33400a2430fSAndrzej Pietrasiewicz 			return 0;
33500a2430fSAndrzej Pietrasiewicz 
336d62bf8c1SRobert Baldyga 		if (uvc->video.ep)
33700a2430fSAndrzej Pietrasiewicz 			usb_ep_disable(uvc->video.ep);
33800a2430fSAndrzej Pietrasiewicz 
33900a2430fSAndrzej Pietrasiewicz 		memset(&v4l2_event, 0, sizeof(v4l2_event));
34000a2430fSAndrzej Pietrasiewicz 		v4l2_event.type = UVC_EVENT_STREAMOFF;
341dbe98b30SHans Verkuil 		v4l2_event_queue(&uvc->vdev, &v4l2_event);
34200a2430fSAndrzej Pietrasiewicz 
34300a2430fSAndrzej Pietrasiewicz 		uvc->state = UVC_STATE_CONNECTED;
34400a2430fSAndrzej Pietrasiewicz 		return 0;
34500a2430fSAndrzej Pietrasiewicz 
34600a2430fSAndrzej Pietrasiewicz 	case 1:
34700a2430fSAndrzej Pietrasiewicz 		if (uvc->state != UVC_STATE_CONNECTED)
34800a2430fSAndrzej Pietrasiewicz 			return 0;
34900a2430fSAndrzej Pietrasiewicz 
350c92bae75SFelipe Balbi 		if (!uvc->video.ep)
351c92bae75SFelipe Balbi 			return -EINVAL;
352c92bae75SFelipe Balbi 
353dc0f755bSLaurent Pinchart 		uvcg_info(f, "reset UVC\n");
354c92bae75SFelipe Balbi 		usb_ep_disable(uvc->video.ep);
355c92bae75SFelipe Balbi 
35600a2430fSAndrzej Pietrasiewicz 		ret = config_ep_by_speed(f->config->cdev->gadget,
35700a2430fSAndrzej Pietrasiewicz 				&(uvc->func), uvc->video.ep);
35800a2430fSAndrzej Pietrasiewicz 		if (ret)
35900a2430fSAndrzej Pietrasiewicz 			return ret;
36000a2430fSAndrzej Pietrasiewicz 		usb_ep_enable(uvc->video.ep);
36100a2430fSAndrzej Pietrasiewicz 
36200a2430fSAndrzej Pietrasiewicz 		memset(&v4l2_event, 0, sizeof(v4l2_event));
36300a2430fSAndrzej Pietrasiewicz 		v4l2_event.type = UVC_EVENT_STREAMON;
364dbe98b30SHans Verkuil 		v4l2_event_queue(&uvc->vdev, &v4l2_event);
36500a2430fSAndrzej Pietrasiewicz 		return USB_GADGET_DELAYED_STATUS;
36600a2430fSAndrzej Pietrasiewicz 
36700a2430fSAndrzej Pietrasiewicz 	default:
36800a2430fSAndrzej Pietrasiewicz 		return -EINVAL;
36900a2430fSAndrzej Pietrasiewicz 	}
37000a2430fSAndrzej Pietrasiewicz }
37100a2430fSAndrzej Pietrasiewicz 
37200a2430fSAndrzej Pietrasiewicz static void
37300a2430fSAndrzej Pietrasiewicz uvc_function_disable(struct usb_function *f)
37400a2430fSAndrzej Pietrasiewicz {
37500a2430fSAndrzej Pietrasiewicz 	struct uvc_device *uvc = to_uvc(f);
37600a2430fSAndrzej Pietrasiewicz 	struct v4l2_event v4l2_event;
37700a2430fSAndrzej Pietrasiewicz 
378dc0f755bSLaurent Pinchart 	uvcg_info(f, "%s()\n", __func__);
37900a2430fSAndrzej Pietrasiewicz 
38000a2430fSAndrzej Pietrasiewicz 	memset(&v4l2_event, 0, sizeof(v4l2_event));
38100a2430fSAndrzej Pietrasiewicz 	v4l2_event.type = UVC_EVENT_DISCONNECT;
382dbe98b30SHans Verkuil 	v4l2_event_queue(&uvc->vdev, &v4l2_event);
38300a2430fSAndrzej Pietrasiewicz 
38400a2430fSAndrzej Pietrasiewicz 	uvc->state = UVC_STATE_DISCONNECTED;
385e3122f5fSFelipe Balbi 
386e3122f5fSFelipe Balbi 	usb_ep_disable(uvc->video.ep);
387e3122f5fSFelipe Balbi 	usb_ep_disable(uvc->control_ep);
38800a2430fSAndrzej Pietrasiewicz }
38900a2430fSAndrzej Pietrasiewicz 
39000a2430fSAndrzej Pietrasiewicz /* --------------------------------------------------------------------------
39100a2430fSAndrzej Pietrasiewicz  * Connection / disconnection
39200a2430fSAndrzej Pietrasiewicz  */
39300a2430fSAndrzej Pietrasiewicz 
39400a2430fSAndrzej Pietrasiewicz void
39500a2430fSAndrzej Pietrasiewicz uvc_function_connect(struct uvc_device *uvc)
39600a2430fSAndrzej Pietrasiewicz {
39700a2430fSAndrzej Pietrasiewicz 	int ret;
39800a2430fSAndrzej Pietrasiewicz 
39900a2430fSAndrzej Pietrasiewicz 	if ((ret = usb_function_activate(&uvc->func)) < 0)
400dc0f755bSLaurent Pinchart 		uvcg_info(&uvc->func, "UVC connect failed with %d\n", ret);
40100a2430fSAndrzej Pietrasiewicz }
40200a2430fSAndrzej Pietrasiewicz 
40300a2430fSAndrzej Pietrasiewicz void
40400a2430fSAndrzej Pietrasiewicz uvc_function_disconnect(struct uvc_device *uvc)
40500a2430fSAndrzej Pietrasiewicz {
40600a2430fSAndrzej Pietrasiewicz 	int ret;
40700a2430fSAndrzej Pietrasiewicz 
40800a2430fSAndrzej Pietrasiewicz 	if ((ret = usb_function_deactivate(&uvc->func)) < 0)
409dc0f755bSLaurent Pinchart 		uvcg_info(&uvc->func, "UVC disconnect failed with %d\n", ret);
41000a2430fSAndrzej Pietrasiewicz }
41100a2430fSAndrzej Pietrasiewicz 
41200a2430fSAndrzej Pietrasiewicz /* --------------------------------------------------------------------------
41300a2430fSAndrzej Pietrasiewicz  * USB probe and disconnect
41400a2430fSAndrzej Pietrasiewicz  */
41500a2430fSAndrzej Pietrasiewicz 
416d7af78b9SKieran Bingham static ssize_t function_name_show(struct device *dev,
417d7af78b9SKieran Bingham 				  struct device_attribute *attr, char *buf)
418d7af78b9SKieran Bingham {
419d7af78b9SKieran Bingham 	struct uvc_device *uvc = dev_get_drvdata(dev);
420d7af78b9SKieran Bingham 
421d7af78b9SKieran Bingham 	return sprintf(buf, "%s\n", uvc->func.fi->group.cg_item.ci_name);
422d7af78b9SKieran Bingham }
423d7af78b9SKieran Bingham 
424d7af78b9SKieran Bingham static DEVICE_ATTR_RO(function_name);
425d7af78b9SKieran Bingham 
42600a2430fSAndrzej Pietrasiewicz static int
42700a2430fSAndrzej Pietrasiewicz uvc_register_video(struct uvc_device *uvc)
42800a2430fSAndrzej Pietrasiewicz {
42900a2430fSAndrzej Pietrasiewicz 	struct usb_composite_dev *cdev = uvc->func.config->cdev;
430d7af78b9SKieran Bingham 	int ret;
43100a2430fSAndrzej Pietrasiewicz 
43200a2430fSAndrzej Pietrasiewicz 	/* TODO reference counting. */
433a15e17acSNathan Chancellor 	memset(&uvc->vdev, 0, sizeof(uvc->vdev));
434dbe98b30SHans Verkuil 	uvc->vdev.v4l2_dev = &uvc->v4l2_dev;
435b9b82d3dSMichael Grzeschik 	uvc->vdev.v4l2_dev->dev = &cdev->gadget->dev;
436dbe98b30SHans Verkuil 	uvc->vdev.fops = &uvc_v4l2_fops;
437dbe98b30SHans Verkuil 	uvc->vdev.ioctl_ops = &uvc_v4l2_ioctl_ops;
438dbe98b30SHans Verkuil 	uvc->vdev.release = video_device_release_empty;
439dbe98b30SHans Verkuil 	uvc->vdev.vfl_dir = VFL_DIR_TX;
440dbe98b30SHans Verkuil 	uvc->vdev.lock = &uvc->video.mutex;
4411397e3ecSHans Verkuil 	uvc->vdev.device_caps = V4L2_CAP_VIDEO_OUTPUT | V4L2_CAP_STREAMING;
442b7db5733SWolfram Sang 	strscpy(uvc->vdev.name, cdev->gadget->name, sizeof(uvc->vdev.name));
44300a2430fSAndrzej Pietrasiewicz 
444dbe98b30SHans Verkuil 	video_set_drvdata(&uvc->vdev, uvc);
44500a2430fSAndrzej Pietrasiewicz 
4460ceba550SHans Verkuil 	ret = video_register_device(&uvc->vdev, VFL_TYPE_VIDEO, -1);
447d7af78b9SKieran Bingham 	if (ret < 0)
448d7af78b9SKieran Bingham 		return ret;
449d7af78b9SKieran Bingham 
450d7af78b9SKieran Bingham 	ret = device_create_file(&uvc->vdev.dev, &dev_attr_function_name);
451d7af78b9SKieran Bingham 	if (ret < 0) {
452d7af78b9SKieran Bingham 		video_unregister_device(&uvc->vdev);
453d7af78b9SKieran Bingham 		return ret;
454d7af78b9SKieran Bingham 	}
455d7af78b9SKieran Bingham 
456d7af78b9SKieran Bingham 	return 0;
45700a2430fSAndrzej Pietrasiewicz }
45800a2430fSAndrzej Pietrasiewicz 
45900a2430fSAndrzej Pietrasiewicz #define UVC_COPY_DESCRIPTOR(mem, dst, desc) \
46000a2430fSAndrzej Pietrasiewicz 	do { \
46100a2430fSAndrzej Pietrasiewicz 		memcpy(mem, desc, (desc)->bLength); \
46200a2430fSAndrzej Pietrasiewicz 		*(dst)++ = mem; \
46300a2430fSAndrzej Pietrasiewicz 		mem += (desc)->bLength; \
46400a2430fSAndrzej Pietrasiewicz 	} while (0);
46500a2430fSAndrzej Pietrasiewicz 
46600a2430fSAndrzej Pietrasiewicz #define UVC_COPY_DESCRIPTORS(mem, dst, src) \
46700a2430fSAndrzej Pietrasiewicz 	do { \
46800a2430fSAndrzej Pietrasiewicz 		const struct usb_descriptor_header * const *__src; \
46900a2430fSAndrzej Pietrasiewicz 		for (__src = src; *__src; ++__src) { \
47000a2430fSAndrzej Pietrasiewicz 			memcpy(mem, *__src, (*__src)->bLength); \
47100a2430fSAndrzej Pietrasiewicz 			*dst++ = mem; \
47200a2430fSAndrzej Pietrasiewicz 			mem += (*__src)->bLength; \
47300a2430fSAndrzej Pietrasiewicz 		} \
47400a2430fSAndrzej Pietrasiewicz 	} while (0)
47500a2430fSAndrzej Pietrasiewicz 
4766d11ed76SAndrzej Pietrasiewicz static struct usb_descriptor_header **
47700a2430fSAndrzej Pietrasiewicz uvc_copy_descriptors(struct uvc_device *uvc, enum usb_device_speed speed)
47800a2430fSAndrzej Pietrasiewicz {
47900a2430fSAndrzej Pietrasiewicz 	struct uvc_input_header_descriptor *uvc_streaming_header;
48000a2430fSAndrzej Pietrasiewicz 	struct uvc_header_descriptor *uvc_control_header;
48100a2430fSAndrzej Pietrasiewicz 	const struct uvc_descriptor_header * const *uvc_control_desc;
48200a2430fSAndrzej Pietrasiewicz 	const struct uvc_descriptor_header * const *uvc_streaming_cls;
48300a2430fSAndrzej Pietrasiewicz 	const struct usb_descriptor_header * const *uvc_streaming_std;
48400a2430fSAndrzej Pietrasiewicz 	const struct usb_descriptor_header * const *src;
48500a2430fSAndrzej Pietrasiewicz 	struct usb_descriptor_header **dst;
48600a2430fSAndrzej Pietrasiewicz 	struct usb_descriptor_header **hdr;
48700a2430fSAndrzej Pietrasiewicz 	unsigned int control_size;
48800a2430fSAndrzej Pietrasiewicz 	unsigned int streaming_size;
48900a2430fSAndrzej Pietrasiewicz 	unsigned int n_desc;
49000a2430fSAndrzej Pietrasiewicz 	unsigned int bytes;
49100a2430fSAndrzej Pietrasiewicz 	void *mem;
49200a2430fSAndrzej Pietrasiewicz 
49300a2430fSAndrzej Pietrasiewicz 	switch (speed) {
49400a2430fSAndrzej Pietrasiewicz 	case USB_SPEED_SUPER:
49500a2430fSAndrzej Pietrasiewicz 		uvc_control_desc = uvc->desc.ss_control;
49600a2430fSAndrzej Pietrasiewicz 		uvc_streaming_cls = uvc->desc.ss_streaming;
49700a2430fSAndrzej Pietrasiewicz 		uvc_streaming_std = uvc_ss_streaming;
49800a2430fSAndrzej Pietrasiewicz 		break;
49900a2430fSAndrzej Pietrasiewicz 
50000a2430fSAndrzej Pietrasiewicz 	case USB_SPEED_HIGH:
50100a2430fSAndrzej Pietrasiewicz 		uvc_control_desc = uvc->desc.fs_control;
50200a2430fSAndrzej Pietrasiewicz 		uvc_streaming_cls = uvc->desc.hs_streaming;
50300a2430fSAndrzej Pietrasiewicz 		uvc_streaming_std = uvc_hs_streaming;
50400a2430fSAndrzej Pietrasiewicz 		break;
50500a2430fSAndrzej Pietrasiewicz 
50600a2430fSAndrzej Pietrasiewicz 	case USB_SPEED_FULL:
50700a2430fSAndrzej Pietrasiewicz 	default:
50800a2430fSAndrzej Pietrasiewicz 		uvc_control_desc = uvc->desc.fs_control;
50900a2430fSAndrzej Pietrasiewicz 		uvc_streaming_cls = uvc->desc.fs_streaming;
51000a2430fSAndrzej Pietrasiewicz 		uvc_streaming_std = uvc_fs_streaming;
51100a2430fSAndrzej Pietrasiewicz 		break;
51200a2430fSAndrzej Pietrasiewicz 	}
51300a2430fSAndrzej Pietrasiewicz 
5146c25955eSAndrzej Pietrasiewicz 	if (!uvc_control_desc || !uvc_streaming_cls)
5156c25955eSAndrzej Pietrasiewicz 		return ERR_PTR(-ENODEV);
5166c25955eSAndrzej Pietrasiewicz 
517c5d337a3SLaurent Pinchart 	/*
518c5d337a3SLaurent Pinchart 	 * Descriptors layout
51900a2430fSAndrzej Pietrasiewicz 	 *
52000a2430fSAndrzej Pietrasiewicz 	 * uvc_iad
52100a2430fSAndrzej Pietrasiewicz 	 * uvc_control_intf
52200a2430fSAndrzej Pietrasiewicz 	 * Class-specific UVC control descriptors
52300a2430fSAndrzej Pietrasiewicz 	 * uvc_control_ep
52400a2430fSAndrzej Pietrasiewicz 	 * uvc_control_cs_ep
52500a2430fSAndrzej Pietrasiewicz 	 * uvc_ss_control_comp (for SS only)
52600a2430fSAndrzej Pietrasiewicz 	 * uvc_streaming_intf_alt0
52700a2430fSAndrzej Pietrasiewicz 	 * Class-specific UVC streaming descriptors
52800a2430fSAndrzej Pietrasiewicz 	 * uvc_{fs|hs}_streaming
52900a2430fSAndrzej Pietrasiewicz 	 */
53000a2430fSAndrzej Pietrasiewicz 
53100a2430fSAndrzej Pietrasiewicz 	/* Count descriptors and compute their size. */
53200a2430fSAndrzej Pietrasiewicz 	control_size = 0;
53300a2430fSAndrzej Pietrasiewicz 	streaming_size = 0;
53400a2430fSAndrzej Pietrasiewicz 	bytes = uvc_iad.bLength + uvc_control_intf.bLength
53500a2430fSAndrzej Pietrasiewicz 	      + uvc_control_ep.bLength + uvc_control_cs_ep.bLength
53600a2430fSAndrzej Pietrasiewicz 	      + uvc_streaming_intf_alt0.bLength;
53700a2430fSAndrzej Pietrasiewicz 
53800a2430fSAndrzej Pietrasiewicz 	if (speed == USB_SPEED_SUPER) {
53900a2430fSAndrzej Pietrasiewicz 		bytes += uvc_ss_control_comp.bLength;
54000a2430fSAndrzej Pietrasiewicz 		n_desc = 6;
54100a2430fSAndrzej Pietrasiewicz 	} else {
54200a2430fSAndrzej Pietrasiewicz 		n_desc = 5;
54300a2430fSAndrzej Pietrasiewicz 	}
54400a2430fSAndrzej Pietrasiewicz 
54500a2430fSAndrzej Pietrasiewicz 	for (src = (const struct usb_descriptor_header **)uvc_control_desc;
54600a2430fSAndrzej Pietrasiewicz 	     *src; ++src) {
54700a2430fSAndrzej Pietrasiewicz 		control_size += (*src)->bLength;
54800a2430fSAndrzej Pietrasiewicz 		bytes += (*src)->bLength;
54900a2430fSAndrzej Pietrasiewicz 		n_desc++;
55000a2430fSAndrzej Pietrasiewicz 	}
55100a2430fSAndrzej Pietrasiewicz 	for (src = (const struct usb_descriptor_header **)uvc_streaming_cls;
55200a2430fSAndrzej Pietrasiewicz 	     *src; ++src) {
55300a2430fSAndrzej Pietrasiewicz 		streaming_size += (*src)->bLength;
55400a2430fSAndrzej Pietrasiewicz 		bytes += (*src)->bLength;
55500a2430fSAndrzej Pietrasiewicz 		n_desc++;
55600a2430fSAndrzej Pietrasiewicz 	}
55700a2430fSAndrzej Pietrasiewicz 	for (src = uvc_streaming_std; *src; ++src) {
55800a2430fSAndrzej Pietrasiewicz 		bytes += (*src)->bLength;
55900a2430fSAndrzej Pietrasiewicz 		n_desc++;
56000a2430fSAndrzej Pietrasiewicz 	}
56100a2430fSAndrzej Pietrasiewicz 
56200a2430fSAndrzej Pietrasiewicz 	mem = kmalloc((n_desc + 1) * sizeof(*src) + bytes, GFP_KERNEL);
56300a2430fSAndrzej Pietrasiewicz 	if (mem == NULL)
56400a2430fSAndrzej Pietrasiewicz 		return NULL;
56500a2430fSAndrzej Pietrasiewicz 
56600a2430fSAndrzej Pietrasiewicz 	hdr = mem;
56700a2430fSAndrzej Pietrasiewicz 	dst = mem;
56800a2430fSAndrzej Pietrasiewicz 	mem += (n_desc + 1) * sizeof(*src);
56900a2430fSAndrzej Pietrasiewicz 
57000a2430fSAndrzej Pietrasiewicz 	/* Copy the descriptors. */
57100a2430fSAndrzej Pietrasiewicz 	UVC_COPY_DESCRIPTOR(mem, dst, &uvc_iad);
57200a2430fSAndrzej Pietrasiewicz 	UVC_COPY_DESCRIPTOR(mem, dst, &uvc_control_intf);
57300a2430fSAndrzej Pietrasiewicz 
57400a2430fSAndrzej Pietrasiewicz 	uvc_control_header = mem;
57500a2430fSAndrzej Pietrasiewicz 	UVC_COPY_DESCRIPTORS(mem, dst,
57600a2430fSAndrzej Pietrasiewicz 		(const struct usb_descriptor_header **)uvc_control_desc);
57700a2430fSAndrzej Pietrasiewicz 	uvc_control_header->wTotalLength = cpu_to_le16(control_size);
57800a2430fSAndrzej Pietrasiewicz 	uvc_control_header->bInCollection = 1;
57900a2430fSAndrzej Pietrasiewicz 	uvc_control_header->baInterfaceNr[0] = uvc->streaming_intf;
58000a2430fSAndrzej Pietrasiewicz 
58100a2430fSAndrzej Pietrasiewicz 	UVC_COPY_DESCRIPTOR(mem, dst, &uvc_control_ep);
58200a2430fSAndrzej Pietrasiewicz 	if (speed == USB_SPEED_SUPER)
58300a2430fSAndrzej Pietrasiewicz 		UVC_COPY_DESCRIPTOR(mem, dst, &uvc_ss_control_comp);
58400a2430fSAndrzej Pietrasiewicz 
58500a2430fSAndrzej Pietrasiewicz 	UVC_COPY_DESCRIPTOR(mem, dst, &uvc_control_cs_ep);
58600a2430fSAndrzej Pietrasiewicz 	UVC_COPY_DESCRIPTOR(mem, dst, &uvc_streaming_intf_alt0);
58700a2430fSAndrzej Pietrasiewicz 
58800a2430fSAndrzej Pietrasiewicz 	uvc_streaming_header = mem;
58900a2430fSAndrzej Pietrasiewicz 	UVC_COPY_DESCRIPTORS(mem, dst,
59000a2430fSAndrzej Pietrasiewicz 		(const struct usb_descriptor_header**)uvc_streaming_cls);
59100a2430fSAndrzej Pietrasiewicz 	uvc_streaming_header->wTotalLength = cpu_to_le16(streaming_size);
59200a2430fSAndrzej Pietrasiewicz 	uvc_streaming_header->bEndpointAddress = uvc->video.ep->address;
59300a2430fSAndrzej Pietrasiewicz 
59400a2430fSAndrzej Pietrasiewicz 	UVC_COPY_DESCRIPTORS(mem, dst, uvc_streaming_std);
59500a2430fSAndrzej Pietrasiewicz 
59600a2430fSAndrzej Pietrasiewicz 	*dst = NULL;
59700a2430fSAndrzej Pietrasiewicz 	return hdr;
59800a2430fSAndrzej Pietrasiewicz }
59900a2430fSAndrzej Pietrasiewicz 
6006d11ed76SAndrzej Pietrasiewicz static int
60100a2430fSAndrzej Pietrasiewicz uvc_function_bind(struct usb_configuration *c, struct usb_function *f)
60200a2430fSAndrzej Pietrasiewicz {
60300a2430fSAndrzej Pietrasiewicz 	struct usb_composite_dev *cdev = c->cdev;
60400a2430fSAndrzej Pietrasiewicz 	struct uvc_device *uvc = to_uvc(f);
60513443799SAndrzej Pietrasiewicz 	struct usb_string *us;
60600a2430fSAndrzej Pietrasiewicz 	unsigned int max_packet_mult;
60700a2430fSAndrzej Pietrasiewicz 	unsigned int max_packet_size;
60800a2430fSAndrzej Pietrasiewicz 	struct usb_ep *ep;
6096d11ed76SAndrzej Pietrasiewicz 	struct f_uvc_opts *opts;
61000a2430fSAndrzej Pietrasiewicz 	int ret = -EINVAL;
61100a2430fSAndrzej Pietrasiewicz 
612dc0f755bSLaurent Pinchart 	uvcg_info(f, "%s()\n", __func__);
61300a2430fSAndrzej Pietrasiewicz 
614bbea6de1SAndrzej Pietrasiewicz 	opts = fi_to_f_uvc_opts(f->fi);
615c5d337a3SLaurent Pinchart 	/* Sanity check the streaming endpoint module parameters. */
6166d11ed76SAndrzej Pietrasiewicz 	opts->streaming_interval = clamp(opts->streaming_interval, 1U, 16U);
6176d11ed76SAndrzej Pietrasiewicz 	opts->streaming_maxpacket = clamp(opts->streaming_maxpacket, 1U, 3072U);
6186d11ed76SAndrzej Pietrasiewicz 	opts->streaming_maxburst = min(opts->streaming_maxburst, 15U);
6196d11ed76SAndrzej Pietrasiewicz 
62016bb05d9SRoger Quadros 	/* For SS, wMaxPacketSize has to be 1024 if bMaxBurst is not 0 */
62116bb05d9SRoger Quadros 	if (opts->streaming_maxburst &&
62216bb05d9SRoger Quadros 	    (opts->streaming_maxpacket % 1024) != 0) {
62316bb05d9SRoger Quadros 		opts->streaming_maxpacket = roundup(opts->streaming_maxpacket, 1024);
624dc0f755bSLaurent Pinchart 		uvcg_info(f, "overriding streaming_maxpacket to %d\n",
62516bb05d9SRoger Quadros 			  opts->streaming_maxpacket);
62616bb05d9SRoger Quadros 	}
62716bb05d9SRoger Quadros 
628c5d337a3SLaurent Pinchart 	/*
629c5d337a3SLaurent Pinchart 	 * Fill in the FS/HS/SS Video Streaming specific descriptors from the
6306d11ed76SAndrzej Pietrasiewicz 	 * module parameters.
6316d11ed76SAndrzej Pietrasiewicz 	 *
6326d11ed76SAndrzej Pietrasiewicz 	 * NOTE: We assume that the user knows what they are doing and won't
6336d11ed76SAndrzej Pietrasiewicz 	 * give parameters that their UDC doesn't support.
6346d11ed76SAndrzej Pietrasiewicz 	 */
6356d11ed76SAndrzej Pietrasiewicz 	if (opts->streaming_maxpacket <= 1024) {
6366d11ed76SAndrzej Pietrasiewicz 		max_packet_mult = 1;
6376d11ed76SAndrzej Pietrasiewicz 		max_packet_size = opts->streaming_maxpacket;
6386d11ed76SAndrzej Pietrasiewicz 	} else if (opts->streaming_maxpacket <= 2048) {
6396d11ed76SAndrzej Pietrasiewicz 		max_packet_mult = 2;
6406d11ed76SAndrzej Pietrasiewicz 		max_packet_size = opts->streaming_maxpacket / 2;
6416d11ed76SAndrzej Pietrasiewicz 	} else {
6426d11ed76SAndrzej Pietrasiewicz 		max_packet_mult = 3;
6436d11ed76SAndrzej Pietrasiewicz 		max_packet_size = opts->streaming_maxpacket / 3;
6446d11ed76SAndrzej Pietrasiewicz 	}
6456d11ed76SAndrzej Pietrasiewicz 
6466d11ed76SAndrzej Pietrasiewicz 	uvc_fs_streaming_ep.wMaxPacketSize =
647e102609fSLaurent Pinchart 		cpu_to_le16(min(opts->streaming_maxpacket, 1023U));
6486d11ed76SAndrzej Pietrasiewicz 	uvc_fs_streaming_ep.bInterval = opts->streaming_interval;
6496d11ed76SAndrzej Pietrasiewicz 
650e102609fSLaurent Pinchart 	uvc_hs_streaming_ep.wMaxPacketSize =
651e102609fSLaurent Pinchart 		cpu_to_le16(max_packet_size | ((max_packet_mult - 1) << 11));
65226adde04SPawel Laszczak 
65326adde04SPawel Laszczak 	/* A high-bandwidth endpoint must specify a bInterval value of 1 */
65426adde04SPawel Laszczak 	if (max_packet_mult > 1)
65526adde04SPawel Laszczak 		uvc_hs_streaming_ep.bInterval = 1;
65626adde04SPawel Laszczak 	else
6576d11ed76SAndrzej Pietrasiewicz 		uvc_hs_streaming_ep.bInterval = opts->streaming_interval;
6586d11ed76SAndrzej Pietrasiewicz 
659e102609fSLaurent Pinchart 	uvc_ss_streaming_ep.wMaxPacketSize = cpu_to_le16(max_packet_size);
6606d11ed76SAndrzej Pietrasiewicz 	uvc_ss_streaming_ep.bInterval = opts->streaming_interval;
6616d11ed76SAndrzej Pietrasiewicz 	uvc_ss_streaming_comp.bmAttributes = max_packet_mult - 1;
6626d11ed76SAndrzej Pietrasiewicz 	uvc_ss_streaming_comp.bMaxBurst = opts->streaming_maxburst;
6636d11ed76SAndrzej Pietrasiewicz 	uvc_ss_streaming_comp.wBytesPerInterval =
664e102609fSLaurent Pinchart 		cpu_to_le16(max_packet_size * max_packet_mult *
66509424c50SRoger Quadros 			    (opts->streaming_maxburst + 1));
66600a2430fSAndrzej Pietrasiewicz 
66700a2430fSAndrzej Pietrasiewicz 	/* Allocate endpoints. */
66800a2430fSAndrzej Pietrasiewicz 	ep = usb_ep_autoconfig(cdev->gadget, &uvc_control_ep);
66900a2430fSAndrzej Pietrasiewicz 	if (!ep) {
670dc0f755bSLaurent Pinchart 		uvcg_info(f, "Unable to allocate control EP\n");
67100a2430fSAndrzej Pietrasiewicz 		goto error;
67200a2430fSAndrzej Pietrasiewicz 	}
67300a2430fSAndrzej Pietrasiewicz 	uvc->control_ep = ep;
67400a2430fSAndrzej Pietrasiewicz 
67500a2430fSAndrzej Pietrasiewicz 	if (gadget_is_superspeed(c->cdev->gadget))
67600a2430fSAndrzej Pietrasiewicz 		ep = usb_ep_autoconfig_ss(cdev->gadget, &uvc_ss_streaming_ep,
67700a2430fSAndrzej Pietrasiewicz 					  &uvc_ss_streaming_comp);
67800a2430fSAndrzej Pietrasiewicz 	else if (gadget_is_dualspeed(cdev->gadget))
67900a2430fSAndrzej Pietrasiewicz 		ep = usb_ep_autoconfig(cdev->gadget, &uvc_hs_streaming_ep);
68000a2430fSAndrzej Pietrasiewicz 	else
68100a2430fSAndrzej Pietrasiewicz 		ep = usb_ep_autoconfig(cdev->gadget, &uvc_fs_streaming_ep);
68200a2430fSAndrzej Pietrasiewicz 
68300a2430fSAndrzej Pietrasiewicz 	if (!ep) {
684dc0f755bSLaurent Pinchart 		uvcg_info(f, "Unable to allocate streaming EP\n");
68500a2430fSAndrzej Pietrasiewicz 		goto error;
68600a2430fSAndrzej Pietrasiewicz 	}
68700a2430fSAndrzej Pietrasiewicz 	uvc->video.ep = ep;
68800a2430fSAndrzej Pietrasiewicz 
68900a2430fSAndrzej Pietrasiewicz 	uvc_fs_streaming_ep.bEndpointAddress = uvc->video.ep->address;
69000a2430fSAndrzej Pietrasiewicz 	uvc_hs_streaming_ep.bEndpointAddress = uvc->video.ep->address;
69100a2430fSAndrzej Pietrasiewicz 	uvc_ss_streaming_ep.bEndpointAddress = uvc->video.ep->address;
69200a2430fSAndrzej Pietrasiewicz 
693324e4f85SDan Vacura 	uvc_en_us_strings[UVC_STRING_CONTROL_IDX].s = opts->function_name;
69413443799SAndrzej Pietrasiewicz 	us = usb_gstrings_attach(cdev, uvc_function_strings,
69513443799SAndrzej Pietrasiewicz 				 ARRAY_SIZE(uvc_en_us_strings));
69613443799SAndrzej Pietrasiewicz 	if (IS_ERR(us)) {
69713443799SAndrzej Pietrasiewicz 		ret = PTR_ERR(us);
6986d11ed76SAndrzej Pietrasiewicz 		goto error;
69913443799SAndrzej Pietrasiewicz 	}
70013443799SAndrzej Pietrasiewicz 	uvc_iad.iFunction = us[UVC_STRING_CONTROL_IDX].id;
70113443799SAndrzej Pietrasiewicz 	uvc_control_intf.iInterface = us[UVC_STRING_CONTROL_IDX].id;
70213443799SAndrzej Pietrasiewicz 	ret = us[UVC_STRING_STREAMING_IDX].id;
7036d11ed76SAndrzej Pietrasiewicz 	uvc_streaming_intf_alt0.iInterface = ret;
7046d11ed76SAndrzej Pietrasiewicz 	uvc_streaming_intf_alt1.iInterface = ret;
7056d11ed76SAndrzej Pietrasiewicz 
70600a2430fSAndrzej Pietrasiewicz 	/* Allocate interface IDs. */
70700a2430fSAndrzej Pietrasiewicz 	if ((ret = usb_interface_id(c, f)) < 0)
70800a2430fSAndrzej Pietrasiewicz 		goto error;
70900a2430fSAndrzej Pietrasiewicz 	uvc_iad.bFirstInterface = ret;
71000a2430fSAndrzej Pietrasiewicz 	uvc_control_intf.bInterfaceNumber = ret;
71100a2430fSAndrzej Pietrasiewicz 	uvc->control_intf = ret;
712bf715448SLaurent Pinchart 	opts->control_interface = ret;
71300a2430fSAndrzej Pietrasiewicz 
71400a2430fSAndrzej Pietrasiewicz 	if ((ret = usb_interface_id(c, f)) < 0)
71500a2430fSAndrzej Pietrasiewicz 		goto error;
71600a2430fSAndrzej Pietrasiewicz 	uvc_streaming_intf_alt0.bInterfaceNumber = ret;
71700a2430fSAndrzej Pietrasiewicz 	uvc_streaming_intf_alt1.bInterfaceNumber = ret;
71800a2430fSAndrzej Pietrasiewicz 	uvc->streaming_intf = ret;
719bf715448SLaurent Pinchart 	opts->streaming_interface = ret;
72000a2430fSAndrzej Pietrasiewicz 
72100a2430fSAndrzej Pietrasiewicz 	/* Copy descriptors */
72200a2430fSAndrzej Pietrasiewicz 	f->fs_descriptors = uvc_copy_descriptors(uvc, USB_SPEED_FULL);
7236c25955eSAndrzej Pietrasiewicz 	if (IS_ERR(f->fs_descriptors)) {
7246c25955eSAndrzej Pietrasiewicz 		ret = PTR_ERR(f->fs_descriptors);
7256c25955eSAndrzej Pietrasiewicz 		f->fs_descriptors = NULL;
7266c25955eSAndrzej Pietrasiewicz 		goto error;
7276c25955eSAndrzej Pietrasiewicz 	}
7286c25955eSAndrzej Pietrasiewicz 	if (gadget_is_dualspeed(cdev->gadget)) {
72900a2430fSAndrzej Pietrasiewicz 		f->hs_descriptors = uvc_copy_descriptors(uvc, USB_SPEED_HIGH);
7306c25955eSAndrzej Pietrasiewicz 		if (IS_ERR(f->hs_descriptors)) {
7316c25955eSAndrzej Pietrasiewicz 			ret = PTR_ERR(f->hs_descriptors);
7326c25955eSAndrzej Pietrasiewicz 			f->hs_descriptors = NULL;
7336c25955eSAndrzej Pietrasiewicz 			goto error;
7346c25955eSAndrzej Pietrasiewicz 		}
7356c25955eSAndrzej Pietrasiewicz 	}
7366c25955eSAndrzej Pietrasiewicz 	if (gadget_is_superspeed(c->cdev->gadget)) {
73700a2430fSAndrzej Pietrasiewicz 		f->ss_descriptors = uvc_copy_descriptors(uvc, USB_SPEED_SUPER);
7386c25955eSAndrzej Pietrasiewicz 		if (IS_ERR(f->ss_descriptors)) {
7396c25955eSAndrzej Pietrasiewicz 			ret = PTR_ERR(f->ss_descriptors);
7406c25955eSAndrzej Pietrasiewicz 			f->ss_descriptors = NULL;
7416c25955eSAndrzej Pietrasiewicz 			goto error;
7426c25955eSAndrzej Pietrasiewicz 		}
7436c25955eSAndrzej Pietrasiewicz 	}
74400a2430fSAndrzej Pietrasiewicz 
74500a2430fSAndrzej Pietrasiewicz 	/* Preallocate control endpoint request. */
74600a2430fSAndrzej Pietrasiewicz 	uvc->control_req = usb_ep_alloc_request(cdev->gadget->ep0, GFP_KERNEL);
74700a2430fSAndrzej Pietrasiewicz 	uvc->control_buf = kmalloc(UVC_MAX_REQUEST_SIZE, GFP_KERNEL);
74800a2430fSAndrzej Pietrasiewicz 	if (uvc->control_req == NULL || uvc->control_buf == NULL) {
74900a2430fSAndrzej Pietrasiewicz 		ret = -ENOMEM;
75000a2430fSAndrzej Pietrasiewicz 		goto error;
75100a2430fSAndrzej Pietrasiewicz 	}
75200a2430fSAndrzej Pietrasiewicz 
75300a2430fSAndrzej Pietrasiewicz 	uvc->control_req->buf = uvc->control_buf;
75400a2430fSAndrzej Pietrasiewicz 	uvc->control_req->complete = uvc_function_ep0_complete;
75500a2430fSAndrzej Pietrasiewicz 	uvc->control_req->context = uvc;
75600a2430fSAndrzej Pietrasiewicz 
75700a2430fSAndrzej Pietrasiewicz 	if (v4l2_device_register(&cdev->gadget->dev, &uvc->v4l2_dev)) {
758dc0f755bSLaurent Pinchart 		uvcg_err(f, "failed to register V4L2 device\n");
75900a2430fSAndrzej Pietrasiewicz 		goto error;
76000a2430fSAndrzej Pietrasiewicz 	}
76100a2430fSAndrzej Pietrasiewicz 
76200a2430fSAndrzej Pietrasiewicz 	/* Initialise video. */
763dc0f755bSLaurent Pinchart 	ret = uvcg_video_init(&uvc->video, uvc);
76400a2430fSAndrzej Pietrasiewicz 	if (ret < 0)
765f0c48566SZqiang 		goto v4l2_error;
76600a2430fSAndrzej Pietrasiewicz 
76700a2430fSAndrzej Pietrasiewicz 	/* Register a V4L2 device. */
76800a2430fSAndrzej Pietrasiewicz 	ret = uvc_register_video(uvc);
76900a2430fSAndrzej Pietrasiewicz 	if (ret < 0) {
770dc0f755bSLaurent Pinchart 		uvcg_err(f, "failed to register video device\n");
771f0c48566SZqiang 		goto v4l2_error;
77200a2430fSAndrzej Pietrasiewicz 	}
77300a2430fSAndrzej Pietrasiewicz 
77400a2430fSAndrzej Pietrasiewicz 	return 0;
77500a2430fSAndrzej Pietrasiewicz 
776f0c48566SZqiang v4l2_error:
77700a2430fSAndrzej Pietrasiewicz 	v4l2_device_unregister(&uvc->v4l2_dev);
778f0c48566SZqiang error:
779e7379857SAndrzej Pietrasiewicz 	if (uvc->control_req)
78000a2430fSAndrzej Pietrasiewicz 		usb_ep_free_request(cdev->gadget->ep0, uvc->control_req);
78100a2430fSAndrzej Pietrasiewicz 	kfree(uvc->control_buf);
78200a2430fSAndrzej Pietrasiewicz 
78300a2430fSAndrzej Pietrasiewicz 	usb_free_all_descriptors(f);
78400a2430fSAndrzej Pietrasiewicz 	return ret;
78500a2430fSAndrzej Pietrasiewicz }
78600a2430fSAndrzej Pietrasiewicz 
78700a2430fSAndrzej Pietrasiewicz /* --------------------------------------------------------------------------
78800a2430fSAndrzej Pietrasiewicz  * USB gadget function
78900a2430fSAndrzej Pietrasiewicz  */
79000a2430fSAndrzej Pietrasiewicz 
7916d11ed76SAndrzej Pietrasiewicz static void uvc_free_inst(struct usb_function_instance *f)
7926d11ed76SAndrzej Pietrasiewicz {
793bbea6de1SAndrzej Pietrasiewicz 	struct f_uvc_opts *opts = fi_to_f_uvc_opts(f);
7946d11ed76SAndrzej Pietrasiewicz 
79546919a23SAndrzej Pietrasiewicz 	mutex_destroy(&opts->lock);
7966d11ed76SAndrzej Pietrasiewicz 	kfree(opts);
7976d11ed76SAndrzej Pietrasiewicz }
7986d11ed76SAndrzej Pietrasiewicz 
7996d11ed76SAndrzej Pietrasiewicz static struct usb_function_instance *uvc_alloc_inst(void)
8006d11ed76SAndrzej Pietrasiewicz {
8016d11ed76SAndrzej Pietrasiewicz 	struct f_uvc_opts *opts;
80246919a23SAndrzej Pietrasiewicz 	struct uvc_camera_terminal_descriptor *cd;
80346919a23SAndrzej Pietrasiewicz 	struct uvc_processing_unit_descriptor *pd;
80446919a23SAndrzej Pietrasiewicz 	struct uvc_output_terminal_descriptor *od;
80546919a23SAndrzej Pietrasiewicz 	struct uvc_color_matching_descriptor *md;
80646919a23SAndrzej Pietrasiewicz 	struct uvc_descriptor_header **ctl_cls;
807efbf0af7SLaurent Pinchart 	int ret;
8086d11ed76SAndrzej Pietrasiewicz 
8096d11ed76SAndrzej Pietrasiewicz 	opts = kzalloc(sizeof(*opts), GFP_KERNEL);
8106d11ed76SAndrzej Pietrasiewicz 	if (!opts)
8116d11ed76SAndrzej Pietrasiewicz 		return ERR_PTR(-ENOMEM);
8126d11ed76SAndrzej Pietrasiewicz 	opts->func_inst.free_func_inst = uvc_free_inst;
81346919a23SAndrzej Pietrasiewicz 	mutex_init(&opts->lock);
8146d11ed76SAndrzej Pietrasiewicz 
81546919a23SAndrzej Pietrasiewicz 	cd = &opts->uvc_camera_terminal;
81646919a23SAndrzej Pietrasiewicz 	cd->bLength			= UVC_DT_CAMERA_TERMINAL_SIZE(3);
81746919a23SAndrzej Pietrasiewicz 	cd->bDescriptorType		= USB_DT_CS_INTERFACE;
81846919a23SAndrzej Pietrasiewicz 	cd->bDescriptorSubType		= UVC_VC_INPUT_TERMINAL;
81946919a23SAndrzej Pietrasiewicz 	cd->bTerminalID			= 1;
82046919a23SAndrzej Pietrasiewicz 	cd->wTerminalType		= cpu_to_le16(0x0201);
82146919a23SAndrzej Pietrasiewicz 	cd->bAssocTerminal		= 0;
82246919a23SAndrzej Pietrasiewicz 	cd->iTerminal			= 0;
82346919a23SAndrzej Pietrasiewicz 	cd->wObjectiveFocalLengthMin	= cpu_to_le16(0);
82446919a23SAndrzej Pietrasiewicz 	cd->wObjectiveFocalLengthMax	= cpu_to_le16(0);
82546919a23SAndrzej Pietrasiewicz 	cd->wOcularFocalLength		= cpu_to_le16(0);
82646919a23SAndrzej Pietrasiewicz 	cd->bControlSize		= 3;
82746919a23SAndrzej Pietrasiewicz 	cd->bmControls[0]		= 2;
82846919a23SAndrzej Pietrasiewicz 	cd->bmControls[1]		= 0;
82946919a23SAndrzej Pietrasiewicz 	cd->bmControls[2]		= 0;
83046919a23SAndrzej Pietrasiewicz 
83146919a23SAndrzej Pietrasiewicz 	pd = &opts->uvc_processing;
83246919a23SAndrzej Pietrasiewicz 	pd->bLength			= UVC_DT_PROCESSING_UNIT_SIZE(2);
83346919a23SAndrzej Pietrasiewicz 	pd->bDescriptorType		= USB_DT_CS_INTERFACE;
83446919a23SAndrzej Pietrasiewicz 	pd->bDescriptorSubType		= UVC_VC_PROCESSING_UNIT;
83546919a23SAndrzej Pietrasiewicz 	pd->bUnitID			= 2;
83646919a23SAndrzej Pietrasiewicz 	pd->bSourceID			= 1;
83746919a23SAndrzej Pietrasiewicz 	pd->wMaxMultiplier		= cpu_to_le16(16*1024);
83846919a23SAndrzej Pietrasiewicz 	pd->bControlSize		= 2;
83946919a23SAndrzej Pietrasiewicz 	pd->bmControls[0]		= 1;
84046919a23SAndrzej Pietrasiewicz 	pd->bmControls[1]		= 0;
84146919a23SAndrzej Pietrasiewicz 	pd->iProcessing			= 0;
8426a154ec9SPawel Laszczak 	pd->bmVideoStandards		= 0;
84346919a23SAndrzej Pietrasiewicz 
84446919a23SAndrzej Pietrasiewicz 	od = &opts->uvc_output_terminal;
84546919a23SAndrzej Pietrasiewicz 	od->bLength			= UVC_DT_OUTPUT_TERMINAL_SIZE;
84646919a23SAndrzej Pietrasiewicz 	od->bDescriptorType		= USB_DT_CS_INTERFACE;
84746919a23SAndrzej Pietrasiewicz 	od->bDescriptorSubType		= UVC_VC_OUTPUT_TERMINAL;
84846919a23SAndrzej Pietrasiewicz 	od->bTerminalID			= 3;
84946919a23SAndrzej Pietrasiewicz 	od->wTerminalType		= cpu_to_le16(0x0101);
85046919a23SAndrzej Pietrasiewicz 	od->bAssocTerminal		= 0;
85146919a23SAndrzej Pietrasiewicz 	od->bSourceID			= 2;
85246919a23SAndrzej Pietrasiewicz 	od->iTerminal			= 0;
85346919a23SAndrzej Pietrasiewicz 
85446919a23SAndrzej Pietrasiewicz 	md = &opts->uvc_color_matching;
85546919a23SAndrzej Pietrasiewicz 	md->bLength			= UVC_DT_COLOR_MATCHING_SIZE;
85646919a23SAndrzej Pietrasiewicz 	md->bDescriptorType		= USB_DT_CS_INTERFACE;
85746919a23SAndrzej Pietrasiewicz 	md->bDescriptorSubType		= UVC_VS_COLORFORMAT;
85846919a23SAndrzej Pietrasiewicz 	md->bColorPrimaries		= 1;
85946919a23SAndrzej Pietrasiewicz 	md->bTransferCharacteristics	= 1;
86046919a23SAndrzej Pietrasiewicz 	md->bMatrixCoefficients		= 4;
86146919a23SAndrzej Pietrasiewicz 
86246919a23SAndrzej Pietrasiewicz 	/* Prepare fs control class descriptors for configfs-based gadgets */
86346919a23SAndrzej Pietrasiewicz 	ctl_cls = opts->uvc_fs_control_cls;
86446919a23SAndrzej Pietrasiewicz 	ctl_cls[0] = NULL;	/* assigned elsewhere by configfs */
86546919a23SAndrzej Pietrasiewicz 	ctl_cls[1] = (struct uvc_descriptor_header *)cd;
86646919a23SAndrzej Pietrasiewicz 	ctl_cls[2] = (struct uvc_descriptor_header *)pd;
86746919a23SAndrzej Pietrasiewicz 	ctl_cls[3] = (struct uvc_descriptor_header *)od;
86846919a23SAndrzej Pietrasiewicz 	ctl_cls[4] = NULL;	/* NULL-terminate */
86946919a23SAndrzej Pietrasiewicz 	opts->fs_control =
87046919a23SAndrzej Pietrasiewicz 		(const struct uvc_descriptor_header * const *)ctl_cls;
87146919a23SAndrzej Pietrasiewicz 
87246919a23SAndrzej Pietrasiewicz 	/* Prepare hs control class descriptors for configfs-based gadgets */
87346919a23SAndrzej Pietrasiewicz 	ctl_cls = opts->uvc_ss_control_cls;
87446919a23SAndrzej Pietrasiewicz 	ctl_cls[0] = NULL;	/* assigned elsewhere by configfs */
87546919a23SAndrzej Pietrasiewicz 	ctl_cls[1] = (struct uvc_descriptor_header *)cd;
87646919a23SAndrzej Pietrasiewicz 	ctl_cls[2] = (struct uvc_descriptor_header *)pd;
87746919a23SAndrzej Pietrasiewicz 	ctl_cls[3] = (struct uvc_descriptor_header *)od;
87846919a23SAndrzej Pietrasiewicz 	ctl_cls[4] = NULL;	/* NULL-terminate */
87946919a23SAndrzej Pietrasiewicz 	opts->ss_control =
88046919a23SAndrzej Pietrasiewicz 		(const struct uvc_descriptor_header * const *)ctl_cls;
88146919a23SAndrzej Pietrasiewicz 
88246919a23SAndrzej Pietrasiewicz 	opts->streaming_interval = 1;
88346919a23SAndrzej Pietrasiewicz 	opts->streaming_maxpacket = 1024;
884324e4f85SDan Vacura 	snprintf(opts->function_name, sizeof(opts->function_name), "UVC Camera");
88546919a23SAndrzej Pietrasiewicz 
886efbf0af7SLaurent Pinchart 	ret = uvcg_attach_configfs(opts);
887efbf0af7SLaurent Pinchart 	if (ret < 0) {
888efbf0af7SLaurent Pinchart 		kfree(opts);
889efbf0af7SLaurent Pinchart 		return ERR_PTR(ret);
890efbf0af7SLaurent Pinchart 	}
891efbf0af7SLaurent Pinchart 
8926d11ed76SAndrzej Pietrasiewicz 	return &opts->func_inst;
8936d11ed76SAndrzej Pietrasiewicz }
8946d11ed76SAndrzej Pietrasiewicz 
8956d11ed76SAndrzej Pietrasiewicz static void uvc_free(struct usb_function *f)
8966d11ed76SAndrzej Pietrasiewicz {
8976d11ed76SAndrzej Pietrasiewicz 	struct uvc_device *uvc = to_uvc(f);
89846919a23SAndrzej Pietrasiewicz 	struct f_uvc_opts *opts = container_of(f->fi, struct f_uvc_opts,
89946919a23SAndrzej Pietrasiewicz 					       func_inst);
900588b9e85SMichael Grzeschik 	config_item_put(&uvc->header->item);
90146919a23SAndrzej Pietrasiewicz 	--opts->refcnt;
9026d11ed76SAndrzej Pietrasiewicz 	kfree(uvc);
9036d11ed76SAndrzej Pietrasiewicz }
9046d11ed76SAndrzej Pietrasiewicz 
905e6bab2b6SMichael Tretter static void uvc_function_unbind(struct usb_configuration *c,
906e6bab2b6SMichael Tretter 				struct usb_function *f)
9076d11ed76SAndrzej Pietrasiewicz {
9086d11ed76SAndrzej Pietrasiewicz 	struct usb_composite_dev *cdev = c->cdev;
9096d11ed76SAndrzej Pietrasiewicz 	struct uvc_device *uvc = to_uvc(f);
9109b91a652SMichael Grzeschik 	struct uvc_video *video = &uvc->video;
911b81ac439SDan Vacura 	long wait_ret = 1;
9126d11ed76SAndrzej Pietrasiewicz 
913e6bab2b6SMichael Tretter 	uvcg_info(f, "%s()\n", __func__);
9146d11ed76SAndrzej Pietrasiewicz 
9159b91a652SMichael Grzeschik 	if (video->async_wq)
9169b91a652SMichael Grzeschik 		destroy_workqueue(video->async_wq);
9179b91a652SMichael Grzeschik 
918c5d337a3SLaurent Pinchart 	/*
919c5d337a3SLaurent Pinchart 	 * If we know we're connected via v4l2, then there should be a cleanup
920b81ac439SDan Vacura 	 * of the device from userspace either via UVC_EVENT_DISCONNECT or
921b81ac439SDan Vacura 	 * though the video device removal uevent. Allow some time for the
922b81ac439SDan Vacura 	 * application to close out before things get deleted.
923b81ac439SDan Vacura 	 */
924b81ac439SDan Vacura 	if (uvc->func_connected) {
925b81ac439SDan Vacura 		uvcg_dbg(f, "waiting for clean disconnect\n");
926b81ac439SDan Vacura 		wait_ret = wait_event_interruptible_timeout(uvc->func_connected_queue,
927b81ac439SDan Vacura 				uvc->func_connected == false, msecs_to_jiffies(500));
928b81ac439SDan Vacura 		uvcg_dbg(f, "done waiting with ret: %ld\n", wait_ret);
929b81ac439SDan Vacura 	}
930b81ac439SDan Vacura 
931d7af78b9SKieran Bingham 	device_remove_file(&uvc->vdev.dev, &dev_attr_function_name);
932dbe98b30SHans Verkuil 	video_unregister_device(&uvc->vdev);
9336d11ed76SAndrzej Pietrasiewicz 	v4l2_device_unregister(&uvc->v4l2_dev);
9346d11ed76SAndrzej Pietrasiewicz 
935b81ac439SDan Vacura 	if (uvc->func_connected) {
936c5d337a3SLaurent Pinchart 		/*
937c5d337a3SLaurent Pinchart 		 * Wait for the release to occur to ensure there are no longer any
938b81ac439SDan Vacura 		 * pending operations that may cause panics when resources are cleaned
939b81ac439SDan Vacura 		 * up.
940b81ac439SDan Vacura 		 */
941b81ac439SDan Vacura 		uvcg_warn(f, "%s no clean disconnect, wait for release\n", __func__);
942b81ac439SDan Vacura 		wait_ret = wait_event_interruptible_timeout(uvc->func_connected_queue,
943b81ac439SDan Vacura 				uvc->func_connected == false, msecs_to_jiffies(1000));
944b81ac439SDan Vacura 		uvcg_dbg(f, "done waiting for release with ret: %ld\n", wait_ret);
945b81ac439SDan Vacura 	}
946b81ac439SDan Vacura 
9476d11ed76SAndrzej Pietrasiewicz 	usb_ep_free_request(cdev->gadget->ep0, uvc->control_req);
9486d11ed76SAndrzej Pietrasiewicz 	kfree(uvc->control_buf);
9496d11ed76SAndrzej Pietrasiewicz 
9506d11ed76SAndrzej Pietrasiewicz 	usb_free_all_descriptors(f);
9516d11ed76SAndrzej Pietrasiewicz }
9526d11ed76SAndrzej Pietrasiewicz 
9534a6698b8SFengguang Wu static struct usb_function *uvc_alloc(struct usb_function_instance *fi)
9546d11ed76SAndrzej Pietrasiewicz {
9556d11ed76SAndrzej Pietrasiewicz 	struct uvc_device *uvc;
9566d11ed76SAndrzej Pietrasiewicz 	struct f_uvc_opts *opts;
95746919a23SAndrzej Pietrasiewicz 	struct uvc_descriptor_header **strm_cls;
958588b9e85SMichael Grzeschik 	struct config_item *streaming, *header, *h;
9596d11ed76SAndrzej Pietrasiewicz 
9606d11ed76SAndrzej Pietrasiewicz 	uvc = kzalloc(sizeof(*uvc), GFP_KERNEL);
9616d11ed76SAndrzej Pietrasiewicz 	if (uvc == NULL)
9626d11ed76SAndrzej Pietrasiewicz 		return ERR_PTR(-ENOMEM);
9636d11ed76SAndrzej Pietrasiewicz 
964d8e96c4bSHans Verkuil 	mutex_init(&uvc->video.mutex);
9656d11ed76SAndrzej Pietrasiewicz 	uvc->state = UVC_STATE_DISCONNECTED;
966b81ac439SDan Vacura 	init_waitqueue_head(&uvc->func_connected_queue);
967bbea6de1SAndrzej Pietrasiewicz 	opts = fi_to_f_uvc_opts(fi);
9686d11ed76SAndrzej Pietrasiewicz 
96946919a23SAndrzej Pietrasiewicz 	mutex_lock(&opts->lock);
97046919a23SAndrzej Pietrasiewicz 	if (opts->uvc_fs_streaming_cls) {
97146919a23SAndrzej Pietrasiewicz 		strm_cls = opts->uvc_fs_streaming_cls;
97246919a23SAndrzej Pietrasiewicz 		opts->fs_streaming =
97346919a23SAndrzej Pietrasiewicz 			(const struct uvc_descriptor_header * const *)strm_cls;
97446919a23SAndrzej Pietrasiewicz 	}
97546919a23SAndrzej Pietrasiewicz 	if (opts->uvc_hs_streaming_cls) {
97646919a23SAndrzej Pietrasiewicz 		strm_cls = opts->uvc_hs_streaming_cls;
97746919a23SAndrzej Pietrasiewicz 		opts->hs_streaming =
97846919a23SAndrzej Pietrasiewicz 			(const struct uvc_descriptor_header * const *)strm_cls;
97946919a23SAndrzej Pietrasiewicz 	}
98046919a23SAndrzej Pietrasiewicz 	if (opts->uvc_ss_streaming_cls) {
98146919a23SAndrzej Pietrasiewicz 		strm_cls = opts->uvc_ss_streaming_cls;
98246919a23SAndrzej Pietrasiewicz 		opts->ss_streaming =
98346919a23SAndrzej Pietrasiewicz 			(const struct uvc_descriptor_header * const *)strm_cls;
98446919a23SAndrzej Pietrasiewicz 	}
98546919a23SAndrzej Pietrasiewicz 
9866d11ed76SAndrzej Pietrasiewicz 	uvc->desc.fs_control = opts->fs_control;
9876d11ed76SAndrzej Pietrasiewicz 	uvc->desc.ss_control = opts->ss_control;
9886d11ed76SAndrzej Pietrasiewicz 	uvc->desc.fs_streaming = opts->fs_streaming;
9896d11ed76SAndrzej Pietrasiewicz 	uvc->desc.hs_streaming = opts->hs_streaming;
9906d11ed76SAndrzej Pietrasiewicz 	uvc->desc.ss_streaming = opts->ss_streaming;
991588b9e85SMichael Grzeschik 
992588b9e85SMichael Grzeschik 	streaming = config_group_find_item(&opts->func_inst.group, "streaming");
993588b9e85SMichael Grzeschik 	if (!streaming)
994588b9e85SMichael Grzeschik 		goto err_config;
995588b9e85SMichael Grzeschik 
996588b9e85SMichael Grzeschik 	header = config_group_find_item(to_config_group(streaming), "header");
997588b9e85SMichael Grzeschik 	config_item_put(streaming);
998588b9e85SMichael Grzeschik 	if (!header)
999588b9e85SMichael Grzeschik 		goto err_config;
1000588b9e85SMichael Grzeschik 
1001588b9e85SMichael Grzeschik 	h = config_group_find_item(to_config_group(header), "h");
1002588b9e85SMichael Grzeschik 	config_item_put(header);
1003588b9e85SMichael Grzeschik 	if (!h)
1004588b9e85SMichael Grzeschik 		goto err_config;
1005588b9e85SMichael Grzeschik 
1006588b9e85SMichael Grzeschik 	uvc->header = to_uvcg_streaming_header(h);
1007588b9e85SMichael Grzeschik 	if (!uvc->header->linked) {
1008588b9e85SMichael Grzeschik 		mutex_unlock(&opts->lock);
1009588b9e85SMichael Grzeschik 		kfree(uvc);
1010588b9e85SMichael Grzeschik 		return ERR_PTR(-EBUSY);
1011588b9e85SMichael Grzeschik 	}
1012588b9e85SMichael Grzeschik 
101346919a23SAndrzej Pietrasiewicz 	++opts->refcnt;
101446919a23SAndrzej Pietrasiewicz 	mutex_unlock(&opts->lock);
10156d11ed76SAndrzej Pietrasiewicz 
10166d11ed76SAndrzej Pietrasiewicz 	/* Register the function. */
10176d11ed76SAndrzej Pietrasiewicz 	uvc->func.name = "uvc";
10186d11ed76SAndrzej Pietrasiewicz 	uvc->func.bind = uvc_function_bind;
1019e6bab2b6SMichael Tretter 	uvc->func.unbind = uvc_function_unbind;
10206d11ed76SAndrzej Pietrasiewicz 	uvc->func.get_alt = uvc_function_get_alt;
10216d11ed76SAndrzej Pietrasiewicz 	uvc->func.set_alt = uvc_function_set_alt;
10226d11ed76SAndrzej Pietrasiewicz 	uvc->func.disable = uvc_function_disable;
10236d11ed76SAndrzej Pietrasiewicz 	uvc->func.setup = uvc_function_setup;
10246d11ed76SAndrzej Pietrasiewicz 	uvc->func.free_func = uvc_free;
1025f277bf27SRobert Baldyga 	uvc->func.bind_deactivated = true;
10266d11ed76SAndrzej Pietrasiewicz 
10276d11ed76SAndrzej Pietrasiewicz 	return &uvc->func;
1028588b9e85SMichael Grzeschik 
1029588b9e85SMichael Grzeschik err_config:
1030588b9e85SMichael Grzeschik 	mutex_unlock(&opts->lock);
1031588b9e85SMichael Grzeschik 	kfree(uvc);
1032588b9e85SMichael Grzeschik 	return ERR_PTR(-ENOENT);
10336d11ed76SAndrzej Pietrasiewicz }
10346d11ed76SAndrzej Pietrasiewicz 
10356d11ed76SAndrzej Pietrasiewicz DECLARE_USB_FUNCTION_INIT(uvc, uvc_alloc_inst, uvc_alloc);
10366d11ed76SAndrzej Pietrasiewicz MODULE_LICENSE("GPL");
10376d11ed76SAndrzej Pietrasiewicz MODULE_AUTHOR("Laurent Pinchart");
1038