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 2746919a23SAndrzej Pietrasiewicz #include "u_uvc.h" 2800a2430fSAndrzej Pietrasiewicz #include "uvc.h" 2946919a23SAndrzej Pietrasiewicz #include "uvc_configfs.h" 303a83c16eSAndrzej Pietrasiewicz #include "uvc_v4l2.h" 313a83c16eSAndrzej Pietrasiewicz #include "uvc_video.h" 3200a2430fSAndrzej Pietrasiewicz 3300a2430fSAndrzej Pietrasiewicz unsigned int uvc_gadget_trace_param; 3420970d82SLaurent Pinchart module_param_named(trace, uvc_gadget_trace_param, uint, 0644); 3520970d82SLaurent Pinchart MODULE_PARM_DESC(trace, "Trace level bitmask"); 3600a2430fSAndrzej Pietrasiewicz 3700a2430fSAndrzej Pietrasiewicz /* -------------------------------------------------------------------------- 3800a2430fSAndrzej Pietrasiewicz * Function descriptors 3900a2430fSAndrzej Pietrasiewicz */ 4000a2430fSAndrzej Pietrasiewicz 4100a2430fSAndrzej Pietrasiewicz /* string IDs are assigned dynamically */ 4200a2430fSAndrzej Pietrasiewicz 4300a2430fSAndrzej Pietrasiewicz #define UVC_STRING_CONTROL_IDX 0 4400a2430fSAndrzej Pietrasiewicz #define UVC_STRING_STREAMING_IDX 1 4500a2430fSAndrzej Pietrasiewicz 4600a2430fSAndrzej Pietrasiewicz static struct usb_string uvc_en_us_strings[] = { 4700a2430fSAndrzej Pietrasiewicz [UVC_STRING_CONTROL_IDX].s = "UVC Camera", 4800a2430fSAndrzej Pietrasiewicz [UVC_STRING_STREAMING_IDX].s = "Video Streaming", 4900a2430fSAndrzej Pietrasiewicz { } 5000a2430fSAndrzej Pietrasiewicz }; 5100a2430fSAndrzej Pietrasiewicz 5200a2430fSAndrzej Pietrasiewicz static struct usb_gadget_strings uvc_stringtab = { 5300a2430fSAndrzej Pietrasiewicz .language = 0x0409, /* en-us */ 5400a2430fSAndrzej Pietrasiewicz .strings = uvc_en_us_strings, 5500a2430fSAndrzej Pietrasiewicz }; 5600a2430fSAndrzej Pietrasiewicz 5700a2430fSAndrzej Pietrasiewicz static struct usb_gadget_strings *uvc_function_strings[] = { 5800a2430fSAndrzej Pietrasiewicz &uvc_stringtab, 5900a2430fSAndrzej Pietrasiewicz NULL, 6000a2430fSAndrzej Pietrasiewicz }; 6100a2430fSAndrzej Pietrasiewicz 6200a2430fSAndrzej Pietrasiewicz #define UVC_INTF_VIDEO_CONTROL 0 6300a2430fSAndrzej Pietrasiewicz #define UVC_INTF_VIDEO_STREAMING 1 6400a2430fSAndrzej Pietrasiewicz 6500a2430fSAndrzej Pietrasiewicz #define UVC_STATUS_MAX_PACKET_SIZE 16 /* 16 bytes status */ 6600a2430fSAndrzej Pietrasiewicz 676d11ed76SAndrzej Pietrasiewicz static struct usb_interface_assoc_descriptor uvc_iad = { 6800a2430fSAndrzej Pietrasiewicz .bLength = sizeof(uvc_iad), 6900a2430fSAndrzej Pietrasiewicz .bDescriptorType = USB_DT_INTERFACE_ASSOCIATION, 7000a2430fSAndrzej Pietrasiewicz .bFirstInterface = 0, 7100a2430fSAndrzej Pietrasiewicz .bInterfaceCount = 2, 7200a2430fSAndrzej Pietrasiewicz .bFunctionClass = USB_CLASS_VIDEO, 7300a2430fSAndrzej Pietrasiewicz .bFunctionSubClass = UVC_SC_VIDEO_INTERFACE_COLLECTION, 7400a2430fSAndrzej Pietrasiewicz .bFunctionProtocol = 0x00, 7500a2430fSAndrzej Pietrasiewicz .iFunction = 0, 7600a2430fSAndrzej Pietrasiewicz }; 7700a2430fSAndrzej Pietrasiewicz 786d11ed76SAndrzej Pietrasiewicz static struct usb_interface_descriptor uvc_control_intf = { 7900a2430fSAndrzej Pietrasiewicz .bLength = USB_DT_INTERFACE_SIZE, 8000a2430fSAndrzej Pietrasiewicz .bDescriptorType = USB_DT_INTERFACE, 8100a2430fSAndrzej Pietrasiewicz .bInterfaceNumber = UVC_INTF_VIDEO_CONTROL, 8200a2430fSAndrzej Pietrasiewicz .bAlternateSetting = 0, 8300a2430fSAndrzej Pietrasiewicz .bNumEndpoints = 1, 8400a2430fSAndrzej Pietrasiewicz .bInterfaceClass = USB_CLASS_VIDEO, 8500a2430fSAndrzej Pietrasiewicz .bInterfaceSubClass = UVC_SC_VIDEOCONTROL, 8600a2430fSAndrzej Pietrasiewicz .bInterfaceProtocol = 0x00, 8700a2430fSAndrzej Pietrasiewicz .iInterface = 0, 8800a2430fSAndrzej Pietrasiewicz }; 8900a2430fSAndrzej Pietrasiewicz 906d11ed76SAndrzej Pietrasiewicz static struct usb_endpoint_descriptor uvc_control_ep = { 9100a2430fSAndrzej Pietrasiewicz .bLength = USB_DT_ENDPOINT_SIZE, 9200a2430fSAndrzej Pietrasiewicz .bDescriptorType = USB_DT_ENDPOINT, 9300a2430fSAndrzej Pietrasiewicz .bEndpointAddress = USB_DIR_IN, 9400a2430fSAndrzej Pietrasiewicz .bmAttributes = USB_ENDPOINT_XFER_INT, 9500a2430fSAndrzej Pietrasiewicz .wMaxPacketSize = cpu_to_le16(UVC_STATUS_MAX_PACKET_SIZE), 9600a2430fSAndrzej Pietrasiewicz .bInterval = 8, 9700a2430fSAndrzej Pietrasiewicz }; 9800a2430fSAndrzej Pietrasiewicz 996d11ed76SAndrzej Pietrasiewicz static struct usb_ss_ep_comp_descriptor uvc_ss_control_comp = { 10000a2430fSAndrzej Pietrasiewicz .bLength = sizeof(uvc_ss_control_comp), 10100a2430fSAndrzej Pietrasiewicz .bDescriptorType = USB_DT_SS_ENDPOINT_COMP, 10200a2430fSAndrzej Pietrasiewicz /* The following 3 values can be tweaked if necessary. */ 10300a2430fSAndrzej Pietrasiewicz .bMaxBurst = 0, 10400a2430fSAndrzej Pietrasiewicz .bmAttributes = 0, 10500a2430fSAndrzej Pietrasiewicz .wBytesPerInterval = cpu_to_le16(UVC_STATUS_MAX_PACKET_SIZE), 10600a2430fSAndrzej Pietrasiewicz }; 10700a2430fSAndrzej Pietrasiewicz 1086d11ed76SAndrzej Pietrasiewicz static struct uvc_control_endpoint_descriptor uvc_control_cs_ep = { 10900a2430fSAndrzej Pietrasiewicz .bLength = UVC_DT_CONTROL_ENDPOINT_SIZE, 11000a2430fSAndrzej Pietrasiewicz .bDescriptorType = USB_DT_CS_ENDPOINT, 11100a2430fSAndrzej Pietrasiewicz .bDescriptorSubType = UVC_EP_INTERRUPT, 11200a2430fSAndrzej Pietrasiewicz .wMaxTransferSize = cpu_to_le16(UVC_STATUS_MAX_PACKET_SIZE), 11300a2430fSAndrzej Pietrasiewicz }; 11400a2430fSAndrzej Pietrasiewicz 1156d11ed76SAndrzej Pietrasiewicz static struct usb_interface_descriptor uvc_streaming_intf_alt0 = { 11600a2430fSAndrzej Pietrasiewicz .bLength = USB_DT_INTERFACE_SIZE, 11700a2430fSAndrzej Pietrasiewicz .bDescriptorType = USB_DT_INTERFACE, 11800a2430fSAndrzej Pietrasiewicz .bInterfaceNumber = UVC_INTF_VIDEO_STREAMING, 11900a2430fSAndrzej Pietrasiewicz .bAlternateSetting = 0, 12000a2430fSAndrzej Pietrasiewicz .bNumEndpoints = 0, 12100a2430fSAndrzej Pietrasiewicz .bInterfaceClass = USB_CLASS_VIDEO, 12200a2430fSAndrzej Pietrasiewicz .bInterfaceSubClass = UVC_SC_VIDEOSTREAMING, 12300a2430fSAndrzej Pietrasiewicz .bInterfaceProtocol = 0x00, 12400a2430fSAndrzej Pietrasiewicz .iInterface = 0, 12500a2430fSAndrzej Pietrasiewicz }; 12600a2430fSAndrzej Pietrasiewicz 1276d11ed76SAndrzej Pietrasiewicz static struct usb_interface_descriptor uvc_streaming_intf_alt1 = { 12800a2430fSAndrzej Pietrasiewicz .bLength = USB_DT_INTERFACE_SIZE, 12900a2430fSAndrzej Pietrasiewicz .bDescriptorType = USB_DT_INTERFACE, 13000a2430fSAndrzej Pietrasiewicz .bInterfaceNumber = UVC_INTF_VIDEO_STREAMING, 13100a2430fSAndrzej Pietrasiewicz .bAlternateSetting = 1, 13200a2430fSAndrzej Pietrasiewicz .bNumEndpoints = 1, 13300a2430fSAndrzej Pietrasiewicz .bInterfaceClass = USB_CLASS_VIDEO, 13400a2430fSAndrzej Pietrasiewicz .bInterfaceSubClass = UVC_SC_VIDEOSTREAMING, 13500a2430fSAndrzej Pietrasiewicz .bInterfaceProtocol = 0x00, 13600a2430fSAndrzej Pietrasiewicz .iInterface = 0, 13700a2430fSAndrzej Pietrasiewicz }; 13800a2430fSAndrzej Pietrasiewicz 1396d11ed76SAndrzej Pietrasiewicz static struct usb_endpoint_descriptor uvc_fs_streaming_ep = { 14000a2430fSAndrzej Pietrasiewicz .bLength = USB_DT_ENDPOINT_SIZE, 14100a2430fSAndrzej Pietrasiewicz .bDescriptorType = USB_DT_ENDPOINT, 14200a2430fSAndrzej Pietrasiewicz .bEndpointAddress = USB_DIR_IN, 14300a2430fSAndrzej Pietrasiewicz .bmAttributes = USB_ENDPOINT_SYNC_ASYNC 14400a2430fSAndrzej Pietrasiewicz | USB_ENDPOINT_XFER_ISOC, 14500a2430fSAndrzej Pietrasiewicz /* The wMaxPacketSize and bInterval values will be initialized from 14600a2430fSAndrzej Pietrasiewicz * module parameters. 14700a2430fSAndrzej Pietrasiewicz */ 14800a2430fSAndrzej Pietrasiewicz }; 14900a2430fSAndrzej Pietrasiewicz 1506d11ed76SAndrzej Pietrasiewicz static struct usb_endpoint_descriptor uvc_hs_streaming_ep = { 15100a2430fSAndrzej Pietrasiewicz .bLength = USB_DT_ENDPOINT_SIZE, 15200a2430fSAndrzej Pietrasiewicz .bDescriptorType = USB_DT_ENDPOINT, 15300a2430fSAndrzej Pietrasiewicz .bEndpointAddress = USB_DIR_IN, 15400a2430fSAndrzej Pietrasiewicz .bmAttributes = USB_ENDPOINT_SYNC_ASYNC 15500a2430fSAndrzej Pietrasiewicz | USB_ENDPOINT_XFER_ISOC, 15600a2430fSAndrzej Pietrasiewicz /* The wMaxPacketSize and bInterval values will be initialized from 15700a2430fSAndrzej Pietrasiewicz * module parameters. 15800a2430fSAndrzej Pietrasiewicz */ 15900a2430fSAndrzej Pietrasiewicz }; 16000a2430fSAndrzej Pietrasiewicz 1616d11ed76SAndrzej Pietrasiewicz static struct usb_endpoint_descriptor uvc_ss_streaming_ep = { 16200a2430fSAndrzej Pietrasiewicz .bLength = USB_DT_ENDPOINT_SIZE, 16300a2430fSAndrzej Pietrasiewicz .bDescriptorType = USB_DT_ENDPOINT, 16400a2430fSAndrzej Pietrasiewicz 16500a2430fSAndrzej Pietrasiewicz .bEndpointAddress = USB_DIR_IN, 16600a2430fSAndrzej Pietrasiewicz .bmAttributes = USB_ENDPOINT_SYNC_ASYNC 16700a2430fSAndrzej Pietrasiewicz | USB_ENDPOINT_XFER_ISOC, 16800a2430fSAndrzej Pietrasiewicz /* The wMaxPacketSize and bInterval values will be initialized from 16900a2430fSAndrzej Pietrasiewicz * module parameters. 17000a2430fSAndrzej Pietrasiewicz */ 17100a2430fSAndrzej Pietrasiewicz }; 17200a2430fSAndrzej Pietrasiewicz 1736d11ed76SAndrzej Pietrasiewicz static struct usb_ss_ep_comp_descriptor uvc_ss_streaming_comp = { 17400a2430fSAndrzej Pietrasiewicz .bLength = sizeof(uvc_ss_streaming_comp), 17500a2430fSAndrzej Pietrasiewicz .bDescriptorType = USB_DT_SS_ENDPOINT_COMP, 17600a2430fSAndrzej Pietrasiewicz /* 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; 22800a2430fSAndrzej Pietrasiewicz 22900a2430fSAndrzej Pietrasiewicz if ((ctrl->bRequestType & USB_TYPE_MASK) != USB_TYPE_CLASS) { 230dc0f755bSLaurent Pinchart uvcg_info(f, "invalid request type\n"); 23100a2430fSAndrzej Pietrasiewicz return -EINVAL; 23200a2430fSAndrzej Pietrasiewicz } 23300a2430fSAndrzej Pietrasiewicz 23400a2430fSAndrzej Pietrasiewicz /* Stall too big requests. */ 23500a2430fSAndrzej Pietrasiewicz if (le16_to_cpu(ctrl->wLength) > UVC_MAX_REQUEST_SIZE) 23600a2430fSAndrzej Pietrasiewicz return -EINVAL; 23700a2430fSAndrzej Pietrasiewicz 23826a029f2SLaurent Pinchart /* Tell the complete callback to generate an event for the next request 23926a029f2SLaurent Pinchart * that will be enqueued by UVCIOC_SEND_RESPONSE. 24026a029f2SLaurent Pinchart */ 24126a029f2SLaurent Pinchart uvc->event_setup_out = !(ctrl->bRequestType & USB_DIR_IN); 24226a029f2SLaurent Pinchart uvc->event_length = le16_to_cpu(ctrl->wLength); 24326a029f2SLaurent Pinchart 24400a2430fSAndrzej Pietrasiewicz memset(&v4l2_event, 0, sizeof(v4l2_event)); 24500a2430fSAndrzej Pietrasiewicz v4l2_event.type = UVC_EVENT_SETUP; 24600a2430fSAndrzej Pietrasiewicz memcpy(&uvc_event->req, ctrl, sizeof(uvc_event->req)); 247dbe98b30SHans Verkuil v4l2_event_queue(&uvc->vdev, &v4l2_event); 24800a2430fSAndrzej Pietrasiewicz 24900a2430fSAndrzej Pietrasiewicz return 0; 25000a2430fSAndrzej Pietrasiewicz } 25100a2430fSAndrzej Pietrasiewicz 25200a2430fSAndrzej Pietrasiewicz void uvc_function_setup_continue(struct uvc_device *uvc) 25300a2430fSAndrzej Pietrasiewicz { 25400a2430fSAndrzej Pietrasiewicz struct usb_composite_dev *cdev = uvc->func.config->cdev; 25500a2430fSAndrzej Pietrasiewicz 25600a2430fSAndrzej Pietrasiewicz usb_composite_setup_continue(cdev); 25700a2430fSAndrzej Pietrasiewicz } 25800a2430fSAndrzej Pietrasiewicz 25900a2430fSAndrzej Pietrasiewicz static int 26000a2430fSAndrzej Pietrasiewicz uvc_function_get_alt(struct usb_function *f, unsigned interface) 26100a2430fSAndrzej Pietrasiewicz { 26200a2430fSAndrzej Pietrasiewicz struct uvc_device *uvc = to_uvc(f); 26300a2430fSAndrzej Pietrasiewicz 264dc0f755bSLaurent Pinchart uvcg_info(f, "%s(%u)\n", __func__, interface); 26500a2430fSAndrzej Pietrasiewicz 26600a2430fSAndrzej Pietrasiewicz if (interface == uvc->control_intf) 26700a2430fSAndrzej Pietrasiewicz return 0; 26800a2430fSAndrzej Pietrasiewicz else if (interface != uvc->streaming_intf) 26900a2430fSAndrzej Pietrasiewicz return -EINVAL; 27000a2430fSAndrzej Pietrasiewicz else 271d62bf8c1SRobert Baldyga return uvc->video.ep->enabled ? 1 : 0; 27200a2430fSAndrzej Pietrasiewicz } 27300a2430fSAndrzej Pietrasiewicz 27400a2430fSAndrzej Pietrasiewicz static int 27500a2430fSAndrzej Pietrasiewicz uvc_function_set_alt(struct usb_function *f, unsigned interface, unsigned alt) 27600a2430fSAndrzej Pietrasiewicz { 27700a2430fSAndrzej Pietrasiewicz struct uvc_device *uvc = to_uvc(f); 278c92bae75SFelipe Balbi struct usb_composite_dev *cdev = f->config->cdev; 27900a2430fSAndrzej Pietrasiewicz struct v4l2_event v4l2_event; 28000a2430fSAndrzej Pietrasiewicz struct uvc_event *uvc_event = (void *)&v4l2_event.u.data; 28100a2430fSAndrzej Pietrasiewicz int ret; 28200a2430fSAndrzej Pietrasiewicz 283dc0f755bSLaurent Pinchart uvcg_info(f, "%s(%u, %u)\n", __func__, interface, alt); 28400a2430fSAndrzej Pietrasiewicz 28500a2430fSAndrzej Pietrasiewicz if (interface == uvc->control_intf) { 28600a2430fSAndrzej Pietrasiewicz if (alt) 28700a2430fSAndrzej Pietrasiewicz return -EINVAL; 28800a2430fSAndrzej Pietrasiewicz 289dc0f755bSLaurent Pinchart uvcg_info(f, "reset UVC Control\n"); 29062e37078SFelipe Balbi usb_ep_disable(uvc->control_ep); 29162e37078SFelipe Balbi 29262e37078SFelipe Balbi if (!uvc->control_ep->desc) 29362e37078SFelipe Balbi if (config_ep_by_speed(cdev->gadget, f, uvc->control_ep)) 29462e37078SFelipe Balbi return -EINVAL; 29562e37078SFelipe Balbi 29662e37078SFelipe Balbi usb_ep_enable(uvc->control_ep); 29762e37078SFelipe Balbi 29800a2430fSAndrzej Pietrasiewicz if (uvc->state == UVC_STATE_DISCONNECTED) { 29900a2430fSAndrzej Pietrasiewicz memset(&v4l2_event, 0, sizeof(v4l2_event)); 30000a2430fSAndrzej Pietrasiewicz v4l2_event.type = UVC_EVENT_CONNECT; 301c92bae75SFelipe Balbi uvc_event->speed = cdev->gadget->speed; 302dbe98b30SHans Verkuil v4l2_event_queue(&uvc->vdev, &v4l2_event); 30300a2430fSAndrzej Pietrasiewicz 30400a2430fSAndrzej Pietrasiewicz uvc->state = UVC_STATE_CONNECTED; 30500a2430fSAndrzej Pietrasiewicz } 30600a2430fSAndrzej Pietrasiewicz 30700a2430fSAndrzej Pietrasiewicz return 0; 30800a2430fSAndrzej Pietrasiewicz } 30900a2430fSAndrzej Pietrasiewicz 31000a2430fSAndrzej Pietrasiewicz if (interface != uvc->streaming_intf) 31100a2430fSAndrzej Pietrasiewicz return -EINVAL; 31200a2430fSAndrzej Pietrasiewicz 31300a2430fSAndrzej Pietrasiewicz /* TODO 31400a2430fSAndrzej Pietrasiewicz if (usb_endpoint_xfer_bulk(&uvc->desc.vs_ep)) 31500a2430fSAndrzej Pietrasiewicz return alt ? -EINVAL : 0; 31600a2430fSAndrzej Pietrasiewicz */ 31700a2430fSAndrzej Pietrasiewicz 31800a2430fSAndrzej Pietrasiewicz switch (alt) { 31900a2430fSAndrzej Pietrasiewicz case 0: 32000a2430fSAndrzej Pietrasiewicz if (uvc->state != UVC_STATE_STREAMING) 32100a2430fSAndrzej Pietrasiewicz return 0; 32200a2430fSAndrzej Pietrasiewicz 323d62bf8c1SRobert Baldyga if (uvc->video.ep) 32400a2430fSAndrzej Pietrasiewicz usb_ep_disable(uvc->video.ep); 32500a2430fSAndrzej Pietrasiewicz 32600a2430fSAndrzej Pietrasiewicz memset(&v4l2_event, 0, sizeof(v4l2_event)); 32700a2430fSAndrzej Pietrasiewicz v4l2_event.type = UVC_EVENT_STREAMOFF; 328dbe98b30SHans Verkuil v4l2_event_queue(&uvc->vdev, &v4l2_event); 32900a2430fSAndrzej Pietrasiewicz 33000a2430fSAndrzej Pietrasiewicz uvc->state = UVC_STATE_CONNECTED; 33100a2430fSAndrzej Pietrasiewicz return 0; 33200a2430fSAndrzej Pietrasiewicz 33300a2430fSAndrzej Pietrasiewicz case 1: 33400a2430fSAndrzej Pietrasiewicz if (uvc->state != UVC_STATE_CONNECTED) 33500a2430fSAndrzej Pietrasiewicz return 0; 33600a2430fSAndrzej Pietrasiewicz 337c92bae75SFelipe Balbi if (!uvc->video.ep) 338c92bae75SFelipe Balbi return -EINVAL; 339c92bae75SFelipe Balbi 340dc0f755bSLaurent Pinchart uvcg_info(f, "reset UVC\n"); 341c92bae75SFelipe Balbi usb_ep_disable(uvc->video.ep); 342c92bae75SFelipe Balbi 34300a2430fSAndrzej Pietrasiewicz ret = config_ep_by_speed(f->config->cdev->gadget, 34400a2430fSAndrzej Pietrasiewicz &(uvc->func), uvc->video.ep); 34500a2430fSAndrzej Pietrasiewicz if (ret) 34600a2430fSAndrzej Pietrasiewicz return ret; 34700a2430fSAndrzej Pietrasiewicz usb_ep_enable(uvc->video.ep); 34800a2430fSAndrzej Pietrasiewicz 34900a2430fSAndrzej Pietrasiewicz memset(&v4l2_event, 0, sizeof(v4l2_event)); 35000a2430fSAndrzej Pietrasiewicz v4l2_event.type = UVC_EVENT_STREAMON; 351dbe98b30SHans Verkuil v4l2_event_queue(&uvc->vdev, &v4l2_event); 35200a2430fSAndrzej Pietrasiewicz return USB_GADGET_DELAYED_STATUS; 35300a2430fSAndrzej Pietrasiewicz 35400a2430fSAndrzej Pietrasiewicz default: 35500a2430fSAndrzej Pietrasiewicz return -EINVAL; 35600a2430fSAndrzej Pietrasiewicz } 35700a2430fSAndrzej Pietrasiewicz } 35800a2430fSAndrzej Pietrasiewicz 35900a2430fSAndrzej Pietrasiewicz static void 36000a2430fSAndrzej Pietrasiewicz uvc_function_disable(struct usb_function *f) 36100a2430fSAndrzej Pietrasiewicz { 36200a2430fSAndrzej Pietrasiewicz struct uvc_device *uvc = to_uvc(f); 36300a2430fSAndrzej Pietrasiewicz struct v4l2_event v4l2_event; 36400a2430fSAndrzej Pietrasiewicz 365dc0f755bSLaurent Pinchart uvcg_info(f, "%s()\n", __func__); 36600a2430fSAndrzej Pietrasiewicz 36700a2430fSAndrzej Pietrasiewicz memset(&v4l2_event, 0, sizeof(v4l2_event)); 36800a2430fSAndrzej Pietrasiewicz v4l2_event.type = UVC_EVENT_DISCONNECT; 369dbe98b30SHans Verkuil v4l2_event_queue(&uvc->vdev, &v4l2_event); 37000a2430fSAndrzej Pietrasiewicz 37100a2430fSAndrzej Pietrasiewicz uvc->state = UVC_STATE_DISCONNECTED; 372e3122f5fSFelipe Balbi 373e3122f5fSFelipe Balbi usb_ep_disable(uvc->video.ep); 374e3122f5fSFelipe Balbi usb_ep_disable(uvc->control_ep); 37500a2430fSAndrzej Pietrasiewicz } 37600a2430fSAndrzej Pietrasiewicz 37700a2430fSAndrzej Pietrasiewicz /* -------------------------------------------------------------------------- 37800a2430fSAndrzej Pietrasiewicz * Connection / disconnection 37900a2430fSAndrzej Pietrasiewicz */ 38000a2430fSAndrzej Pietrasiewicz 38100a2430fSAndrzej Pietrasiewicz void 38200a2430fSAndrzej Pietrasiewicz uvc_function_connect(struct uvc_device *uvc) 38300a2430fSAndrzej Pietrasiewicz { 38400a2430fSAndrzej Pietrasiewicz int ret; 38500a2430fSAndrzej Pietrasiewicz 38600a2430fSAndrzej Pietrasiewicz if ((ret = usb_function_activate(&uvc->func)) < 0) 387dc0f755bSLaurent Pinchart uvcg_info(&uvc->func, "UVC connect failed with %d\n", ret); 38800a2430fSAndrzej Pietrasiewicz } 38900a2430fSAndrzej Pietrasiewicz 39000a2430fSAndrzej Pietrasiewicz void 39100a2430fSAndrzej Pietrasiewicz uvc_function_disconnect(struct uvc_device *uvc) 39200a2430fSAndrzej Pietrasiewicz { 39300a2430fSAndrzej Pietrasiewicz int ret; 39400a2430fSAndrzej Pietrasiewicz 39500a2430fSAndrzej Pietrasiewicz if ((ret = usb_function_deactivate(&uvc->func)) < 0) 396dc0f755bSLaurent Pinchart uvcg_info(&uvc->func, "UVC disconnect failed with %d\n", ret); 39700a2430fSAndrzej Pietrasiewicz } 39800a2430fSAndrzej Pietrasiewicz 39900a2430fSAndrzej Pietrasiewicz /* -------------------------------------------------------------------------- 40000a2430fSAndrzej Pietrasiewicz * USB probe and disconnect 40100a2430fSAndrzej Pietrasiewicz */ 40200a2430fSAndrzej Pietrasiewicz 403d7af78b9SKieran Bingham static ssize_t function_name_show(struct device *dev, 404d7af78b9SKieran Bingham struct device_attribute *attr, char *buf) 405d7af78b9SKieran Bingham { 406d7af78b9SKieran Bingham struct uvc_device *uvc = dev_get_drvdata(dev); 407d7af78b9SKieran Bingham 408d7af78b9SKieran Bingham return sprintf(buf, "%s\n", uvc->func.fi->group.cg_item.ci_name); 409d7af78b9SKieran Bingham } 410d7af78b9SKieran Bingham 411d7af78b9SKieran Bingham static DEVICE_ATTR_RO(function_name); 412d7af78b9SKieran Bingham 41300a2430fSAndrzej Pietrasiewicz static int 41400a2430fSAndrzej Pietrasiewicz uvc_register_video(struct uvc_device *uvc) 41500a2430fSAndrzej Pietrasiewicz { 41600a2430fSAndrzej Pietrasiewicz struct usb_composite_dev *cdev = uvc->func.config->cdev; 417d7af78b9SKieran Bingham int ret; 41800a2430fSAndrzej Pietrasiewicz 41900a2430fSAndrzej Pietrasiewicz /* TODO reference counting. */ 420dbe98b30SHans Verkuil uvc->vdev.v4l2_dev = &uvc->v4l2_dev; 421dbe98b30SHans Verkuil uvc->vdev.fops = &uvc_v4l2_fops; 422dbe98b30SHans Verkuil uvc->vdev.ioctl_ops = &uvc_v4l2_ioctl_ops; 423dbe98b30SHans Verkuil uvc->vdev.release = video_device_release_empty; 424dbe98b30SHans Verkuil uvc->vdev.vfl_dir = VFL_DIR_TX; 425dbe98b30SHans Verkuil uvc->vdev.lock = &uvc->video.mutex; 426*1397e3ecSHans Verkuil uvc->vdev.device_caps = V4L2_CAP_VIDEO_OUTPUT | V4L2_CAP_STREAMING; 427dbe98b30SHans Verkuil strlcpy(uvc->vdev.name, cdev->gadget->name, sizeof(uvc->vdev.name)); 42800a2430fSAndrzej Pietrasiewicz 429dbe98b30SHans Verkuil video_set_drvdata(&uvc->vdev, uvc); 43000a2430fSAndrzej Pietrasiewicz 431d7af78b9SKieran Bingham ret = video_register_device(&uvc->vdev, VFL_TYPE_GRABBER, -1); 432d7af78b9SKieran Bingham if (ret < 0) 433d7af78b9SKieran Bingham return ret; 434d7af78b9SKieran Bingham 435d7af78b9SKieran Bingham ret = device_create_file(&uvc->vdev.dev, &dev_attr_function_name); 436d7af78b9SKieran Bingham if (ret < 0) { 437d7af78b9SKieran Bingham video_unregister_device(&uvc->vdev); 438d7af78b9SKieran Bingham return ret; 439d7af78b9SKieran Bingham } 440d7af78b9SKieran Bingham 441d7af78b9SKieran Bingham return 0; 44200a2430fSAndrzej Pietrasiewicz } 44300a2430fSAndrzej Pietrasiewicz 44400a2430fSAndrzej Pietrasiewicz #define UVC_COPY_DESCRIPTOR(mem, dst, desc) \ 44500a2430fSAndrzej Pietrasiewicz do { \ 44600a2430fSAndrzej Pietrasiewicz memcpy(mem, desc, (desc)->bLength); \ 44700a2430fSAndrzej Pietrasiewicz *(dst)++ = mem; \ 44800a2430fSAndrzej Pietrasiewicz mem += (desc)->bLength; \ 44900a2430fSAndrzej Pietrasiewicz } while (0); 45000a2430fSAndrzej Pietrasiewicz 45100a2430fSAndrzej Pietrasiewicz #define UVC_COPY_DESCRIPTORS(mem, dst, src) \ 45200a2430fSAndrzej Pietrasiewicz do { \ 45300a2430fSAndrzej Pietrasiewicz const struct usb_descriptor_header * const *__src; \ 45400a2430fSAndrzej Pietrasiewicz for (__src = src; *__src; ++__src) { \ 45500a2430fSAndrzej Pietrasiewicz memcpy(mem, *__src, (*__src)->bLength); \ 45600a2430fSAndrzej Pietrasiewicz *dst++ = mem; \ 45700a2430fSAndrzej Pietrasiewicz mem += (*__src)->bLength; \ 45800a2430fSAndrzej Pietrasiewicz } \ 45900a2430fSAndrzej Pietrasiewicz } while (0) 46000a2430fSAndrzej Pietrasiewicz 4616d11ed76SAndrzej Pietrasiewicz static struct usb_descriptor_header ** 46200a2430fSAndrzej Pietrasiewicz uvc_copy_descriptors(struct uvc_device *uvc, enum usb_device_speed speed) 46300a2430fSAndrzej Pietrasiewicz { 46400a2430fSAndrzej Pietrasiewicz struct uvc_input_header_descriptor *uvc_streaming_header; 46500a2430fSAndrzej Pietrasiewicz struct uvc_header_descriptor *uvc_control_header; 46600a2430fSAndrzej Pietrasiewicz const struct uvc_descriptor_header * const *uvc_control_desc; 46700a2430fSAndrzej Pietrasiewicz const struct uvc_descriptor_header * const *uvc_streaming_cls; 46800a2430fSAndrzej Pietrasiewicz const struct usb_descriptor_header * const *uvc_streaming_std; 46900a2430fSAndrzej Pietrasiewicz const struct usb_descriptor_header * const *src; 47000a2430fSAndrzej Pietrasiewicz struct usb_descriptor_header **dst; 47100a2430fSAndrzej Pietrasiewicz struct usb_descriptor_header **hdr; 47200a2430fSAndrzej Pietrasiewicz unsigned int control_size; 47300a2430fSAndrzej Pietrasiewicz unsigned int streaming_size; 47400a2430fSAndrzej Pietrasiewicz unsigned int n_desc; 47500a2430fSAndrzej Pietrasiewicz unsigned int bytes; 47600a2430fSAndrzej Pietrasiewicz void *mem; 47700a2430fSAndrzej Pietrasiewicz 47800a2430fSAndrzej Pietrasiewicz switch (speed) { 47900a2430fSAndrzej Pietrasiewicz case USB_SPEED_SUPER: 48000a2430fSAndrzej Pietrasiewicz uvc_control_desc = uvc->desc.ss_control; 48100a2430fSAndrzej Pietrasiewicz uvc_streaming_cls = uvc->desc.ss_streaming; 48200a2430fSAndrzej Pietrasiewicz uvc_streaming_std = uvc_ss_streaming; 48300a2430fSAndrzej Pietrasiewicz break; 48400a2430fSAndrzej Pietrasiewicz 48500a2430fSAndrzej Pietrasiewicz case USB_SPEED_HIGH: 48600a2430fSAndrzej Pietrasiewicz uvc_control_desc = uvc->desc.fs_control; 48700a2430fSAndrzej Pietrasiewicz uvc_streaming_cls = uvc->desc.hs_streaming; 48800a2430fSAndrzej Pietrasiewicz uvc_streaming_std = uvc_hs_streaming; 48900a2430fSAndrzej Pietrasiewicz break; 49000a2430fSAndrzej Pietrasiewicz 49100a2430fSAndrzej Pietrasiewicz case USB_SPEED_FULL: 49200a2430fSAndrzej Pietrasiewicz default: 49300a2430fSAndrzej Pietrasiewicz uvc_control_desc = uvc->desc.fs_control; 49400a2430fSAndrzej Pietrasiewicz uvc_streaming_cls = uvc->desc.fs_streaming; 49500a2430fSAndrzej Pietrasiewicz uvc_streaming_std = uvc_fs_streaming; 49600a2430fSAndrzej Pietrasiewicz break; 49700a2430fSAndrzej Pietrasiewicz } 49800a2430fSAndrzej Pietrasiewicz 4996c25955eSAndrzej Pietrasiewicz if (!uvc_control_desc || !uvc_streaming_cls) 5006c25955eSAndrzej Pietrasiewicz return ERR_PTR(-ENODEV); 5016c25955eSAndrzej Pietrasiewicz 50200a2430fSAndrzej Pietrasiewicz /* Descriptors layout 50300a2430fSAndrzej Pietrasiewicz * 50400a2430fSAndrzej Pietrasiewicz * uvc_iad 50500a2430fSAndrzej Pietrasiewicz * uvc_control_intf 50600a2430fSAndrzej Pietrasiewicz * Class-specific UVC control descriptors 50700a2430fSAndrzej Pietrasiewicz * uvc_control_ep 50800a2430fSAndrzej Pietrasiewicz * uvc_control_cs_ep 50900a2430fSAndrzej Pietrasiewicz * uvc_ss_control_comp (for SS only) 51000a2430fSAndrzej Pietrasiewicz * uvc_streaming_intf_alt0 51100a2430fSAndrzej Pietrasiewicz * Class-specific UVC streaming descriptors 51200a2430fSAndrzej Pietrasiewicz * uvc_{fs|hs}_streaming 51300a2430fSAndrzej Pietrasiewicz */ 51400a2430fSAndrzej Pietrasiewicz 51500a2430fSAndrzej Pietrasiewicz /* Count descriptors and compute their size. */ 51600a2430fSAndrzej Pietrasiewicz control_size = 0; 51700a2430fSAndrzej Pietrasiewicz streaming_size = 0; 51800a2430fSAndrzej Pietrasiewicz bytes = uvc_iad.bLength + uvc_control_intf.bLength 51900a2430fSAndrzej Pietrasiewicz + uvc_control_ep.bLength + uvc_control_cs_ep.bLength 52000a2430fSAndrzej Pietrasiewicz + uvc_streaming_intf_alt0.bLength; 52100a2430fSAndrzej Pietrasiewicz 52200a2430fSAndrzej Pietrasiewicz if (speed == USB_SPEED_SUPER) { 52300a2430fSAndrzej Pietrasiewicz bytes += uvc_ss_control_comp.bLength; 52400a2430fSAndrzej Pietrasiewicz n_desc = 6; 52500a2430fSAndrzej Pietrasiewicz } else { 52600a2430fSAndrzej Pietrasiewicz n_desc = 5; 52700a2430fSAndrzej Pietrasiewicz } 52800a2430fSAndrzej Pietrasiewicz 52900a2430fSAndrzej Pietrasiewicz for (src = (const struct usb_descriptor_header **)uvc_control_desc; 53000a2430fSAndrzej Pietrasiewicz *src; ++src) { 53100a2430fSAndrzej Pietrasiewicz control_size += (*src)->bLength; 53200a2430fSAndrzej Pietrasiewicz bytes += (*src)->bLength; 53300a2430fSAndrzej Pietrasiewicz n_desc++; 53400a2430fSAndrzej Pietrasiewicz } 53500a2430fSAndrzej Pietrasiewicz for (src = (const struct usb_descriptor_header **)uvc_streaming_cls; 53600a2430fSAndrzej Pietrasiewicz *src; ++src) { 53700a2430fSAndrzej Pietrasiewicz streaming_size += (*src)->bLength; 53800a2430fSAndrzej Pietrasiewicz bytes += (*src)->bLength; 53900a2430fSAndrzej Pietrasiewicz n_desc++; 54000a2430fSAndrzej Pietrasiewicz } 54100a2430fSAndrzej Pietrasiewicz for (src = uvc_streaming_std; *src; ++src) { 54200a2430fSAndrzej Pietrasiewicz bytes += (*src)->bLength; 54300a2430fSAndrzej Pietrasiewicz n_desc++; 54400a2430fSAndrzej Pietrasiewicz } 54500a2430fSAndrzej Pietrasiewicz 54600a2430fSAndrzej Pietrasiewicz mem = kmalloc((n_desc + 1) * sizeof(*src) + bytes, GFP_KERNEL); 54700a2430fSAndrzej Pietrasiewicz if (mem == NULL) 54800a2430fSAndrzej Pietrasiewicz return NULL; 54900a2430fSAndrzej Pietrasiewicz 55000a2430fSAndrzej Pietrasiewicz hdr = mem; 55100a2430fSAndrzej Pietrasiewicz dst = mem; 55200a2430fSAndrzej Pietrasiewicz mem += (n_desc + 1) * sizeof(*src); 55300a2430fSAndrzej Pietrasiewicz 55400a2430fSAndrzej Pietrasiewicz /* Copy the descriptors. */ 55500a2430fSAndrzej Pietrasiewicz UVC_COPY_DESCRIPTOR(mem, dst, &uvc_iad); 55600a2430fSAndrzej Pietrasiewicz UVC_COPY_DESCRIPTOR(mem, dst, &uvc_control_intf); 55700a2430fSAndrzej Pietrasiewicz 55800a2430fSAndrzej Pietrasiewicz uvc_control_header = mem; 55900a2430fSAndrzej Pietrasiewicz UVC_COPY_DESCRIPTORS(mem, dst, 56000a2430fSAndrzej Pietrasiewicz (const struct usb_descriptor_header **)uvc_control_desc); 56100a2430fSAndrzej Pietrasiewicz uvc_control_header->wTotalLength = cpu_to_le16(control_size); 56200a2430fSAndrzej Pietrasiewicz uvc_control_header->bInCollection = 1; 56300a2430fSAndrzej Pietrasiewicz uvc_control_header->baInterfaceNr[0] = uvc->streaming_intf; 56400a2430fSAndrzej Pietrasiewicz 56500a2430fSAndrzej Pietrasiewicz UVC_COPY_DESCRIPTOR(mem, dst, &uvc_control_ep); 56600a2430fSAndrzej Pietrasiewicz if (speed == USB_SPEED_SUPER) 56700a2430fSAndrzej Pietrasiewicz UVC_COPY_DESCRIPTOR(mem, dst, &uvc_ss_control_comp); 56800a2430fSAndrzej Pietrasiewicz 56900a2430fSAndrzej Pietrasiewicz UVC_COPY_DESCRIPTOR(mem, dst, &uvc_control_cs_ep); 57000a2430fSAndrzej Pietrasiewicz UVC_COPY_DESCRIPTOR(mem, dst, &uvc_streaming_intf_alt0); 57100a2430fSAndrzej Pietrasiewicz 57200a2430fSAndrzej Pietrasiewicz uvc_streaming_header = mem; 57300a2430fSAndrzej Pietrasiewicz UVC_COPY_DESCRIPTORS(mem, dst, 57400a2430fSAndrzej Pietrasiewicz (const struct usb_descriptor_header**)uvc_streaming_cls); 57500a2430fSAndrzej Pietrasiewicz uvc_streaming_header->wTotalLength = cpu_to_le16(streaming_size); 57600a2430fSAndrzej Pietrasiewicz uvc_streaming_header->bEndpointAddress = uvc->video.ep->address; 57700a2430fSAndrzej Pietrasiewicz 57800a2430fSAndrzej Pietrasiewicz UVC_COPY_DESCRIPTORS(mem, dst, uvc_streaming_std); 57900a2430fSAndrzej Pietrasiewicz 58000a2430fSAndrzej Pietrasiewicz *dst = NULL; 58100a2430fSAndrzej Pietrasiewicz return hdr; 58200a2430fSAndrzej Pietrasiewicz } 58300a2430fSAndrzej Pietrasiewicz 5846d11ed76SAndrzej Pietrasiewicz static int 58500a2430fSAndrzej Pietrasiewicz uvc_function_bind(struct usb_configuration *c, struct usb_function *f) 58600a2430fSAndrzej Pietrasiewicz { 58700a2430fSAndrzej Pietrasiewicz struct usb_composite_dev *cdev = c->cdev; 58800a2430fSAndrzej Pietrasiewicz struct uvc_device *uvc = to_uvc(f); 58913443799SAndrzej Pietrasiewicz struct usb_string *us; 59000a2430fSAndrzej Pietrasiewicz unsigned int max_packet_mult; 59100a2430fSAndrzej Pietrasiewicz unsigned int max_packet_size; 59200a2430fSAndrzej Pietrasiewicz struct usb_ep *ep; 5936d11ed76SAndrzej Pietrasiewicz struct f_uvc_opts *opts; 59400a2430fSAndrzej Pietrasiewicz int ret = -EINVAL; 59500a2430fSAndrzej Pietrasiewicz 596dc0f755bSLaurent Pinchart uvcg_info(f, "%s()\n", __func__); 59700a2430fSAndrzej Pietrasiewicz 598bbea6de1SAndrzej Pietrasiewicz opts = fi_to_f_uvc_opts(f->fi); 5996d11ed76SAndrzej Pietrasiewicz /* Sanity check the streaming endpoint module parameters. 6006d11ed76SAndrzej Pietrasiewicz */ 6016d11ed76SAndrzej Pietrasiewicz opts->streaming_interval = clamp(opts->streaming_interval, 1U, 16U); 6026d11ed76SAndrzej Pietrasiewicz opts->streaming_maxpacket = clamp(opts->streaming_maxpacket, 1U, 3072U); 6036d11ed76SAndrzej Pietrasiewicz opts->streaming_maxburst = min(opts->streaming_maxburst, 15U); 6046d11ed76SAndrzej Pietrasiewicz 60516bb05d9SRoger Quadros /* For SS, wMaxPacketSize has to be 1024 if bMaxBurst is not 0 */ 60616bb05d9SRoger Quadros if (opts->streaming_maxburst && 60716bb05d9SRoger Quadros (opts->streaming_maxpacket % 1024) != 0) { 60816bb05d9SRoger Quadros opts->streaming_maxpacket = roundup(opts->streaming_maxpacket, 1024); 609dc0f755bSLaurent Pinchart uvcg_info(f, "overriding streaming_maxpacket to %d\n", 61016bb05d9SRoger Quadros opts->streaming_maxpacket); 61116bb05d9SRoger Quadros } 61216bb05d9SRoger Quadros 6136d11ed76SAndrzej Pietrasiewicz /* Fill in the FS/HS/SS Video Streaming specific descriptors from the 6146d11ed76SAndrzej Pietrasiewicz * module parameters. 6156d11ed76SAndrzej Pietrasiewicz * 6166d11ed76SAndrzej Pietrasiewicz * NOTE: We assume that the user knows what they are doing and won't 6176d11ed76SAndrzej Pietrasiewicz * give parameters that their UDC doesn't support. 6186d11ed76SAndrzej Pietrasiewicz */ 6196d11ed76SAndrzej Pietrasiewicz if (opts->streaming_maxpacket <= 1024) { 6206d11ed76SAndrzej Pietrasiewicz max_packet_mult = 1; 6216d11ed76SAndrzej Pietrasiewicz max_packet_size = opts->streaming_maxpacket; 6226d11ed76SAndrzej Pietrasiewicz } else if (opts->streaming_maxpacket <= 2048) { 6236d11ed76SAndrzej Pietrasiewicz max_packet_mult = 2; 6246d11ed76SAndrzej Pietrasiewicz max_packet_size = opts->streaming_maxpacket / 2; 6256d11ed76SAndrzej Pietrasiewicz } else { 6266d11ed76SAndrzej Pietrasiewicz max_packet_mult = 3; 6276d11ed76SAndrzej Pietrasiewicz max_packet_size = opts->streaming_maxpacket / 3; 6286d11ed76SAndrzej Pietrasiewicz } 6296d11ed76SAndrzej Pietrasiewicz 6306d11ed76SAndrzej Pietrasiewicz uvc_fs_streaming_ep.wMaxPacketSize = 631e102609fSLaurent Pinchart cpu_to_le16(min(opts->streaming_maxpacket, 1023U)); 6326d11ed76SAndrzej Pietrasiewicz uvc_fs_streaming_ep.bInterval = opts->streaming_interval; 6336d11ed76SAndrzej Pietrasiewicz 634e102609fSLaurent Pinchart uvc_hs_streaming_ep.wMaxPacketSize = 635e102609fSLaurent Pinchart cpu_to_le16(max_packet_size | ((max_packet_mult - 1) << 11)); 6366d11ed76SAndrzej Pietrasiewicz uvc_hs_streaming_ep.bInterval = opts->streaming_interval; 6376d11ed76SAndrzej Pietrasiewicz 638e102609fSLaurent Pinchart uvc_ss_streaming_ep.wMaxPacketSize = cpu_to_le16(max_packet_size); 6396d11ed76SAndrzej Pietrasiewicz uvc_ss_streaming_ep.bInterval = opts->streaming_interval; 6406d11ed76SAndrzej Pietrasiewicz uvc_ss_streaming_comp.bmAttributes = max_packet_mult - 1; 6416d11ed76SAndrzej Pietrasiewicz uvc_ss_streaming_comp.bMaxBurst = opts->streaming_maxburst; 6426d11ed76SAndrzej Pietrasiewicz uvc_ss_streaming_comp.wBytesPerInterval = 643e102609fSLaurent Pinchart cpu_to_le16(max_packet_size * max_packet_mult * 64409424c50SRoger Quadros (opts->streaming_maxburst + 1)); 64500a2430fSAndrzej Pietrasiewicz 64600a2430fSAndrzej Pietrasiewicz /* Allocate endpoints. */ 64700a2430fSAndrzej Pietrasiewicz ep = usb_ep_autoconfig(cdev->gadget, &uvc_control_ep); 64800a2430fSAndrzej Pietrasiewicz if (!ep) { 649dc0f755bSLaurent Pinchart uvcg_info(f, "Unable to allocate control EP\n"); 65000a2430fSAndrzej Pietrasiewicz goto error; 65100a2430fSAndrzej Pietrasiewicz } 65200a2430fSAndrzej Pietrasiewicz uvc->control_ep = ep; 65300a2430fSAndrzej Pietrasiewicz 65400a2430fSAndrzej Pietrasiewicz if (gadget_is_superspeed(c->cdev->gadget)) 65500a2430fSAndrzej Pietrasiewicz ep = usb_ep_autoconfig_ss(cdev->gadget, &uvc_ss_streaming_ep, 65600a2430fSAndrzej Pietrasiewicz &uvc_ss_streaming_comp); 65700a2430fSAndrzej Pietrasiewicz else if (gadget_is_dualspeed(cdev->gadget)) 65800a2430fSAndrzej Pietrasiewicz ep = usb_ep_autoconfig(cdev->gadget, &uvc_hs_streaming_ep); 65900a2430fSAndrzej Pietrasiewicz else 66000a2430fSAndrzej Pietrasiewicz ep = usb_ep_autoconfig(cdev->gadget, &uvc_fs_streaming_ep); 66100a2430fSAndrzej Pietrasiewicz 66200a2430fSAndrzej Pietrasiewicz if (!ep) { 663dc0f755bSLaurent Pinchart uvcg_info(f, "Unable to allocate streaming EP\n"); 66400a2430fSAndrzej Pietrasiewicz goto error; 66500a2430fSAndrzej Pietrasiewicz } 66600a2430fSAndrzej Pietrasiewicz uvc->video.ep = ep; 66700a2430fSAndrzej Pietrasiewicz 66800a2430fSAndrzej Pietrasiewicz uvc_fs_streaming_ep.bEndpointAddress = uvc->video.ep->address; 66900a2430fSAndrzej Pietrasiewicz uvc_hs_streaming_ep.bEndpointAddress = uvc->video.ep->address; 67000a2430fSAndrzej Pietrasiewicz uvc_ss_streaming_ep.bEndpointAddress = uvc->video.ep->address; 67100a2430fSAndrzej Pietrasiewicz 67213443799SAndrzej Pietrasiewicz us = usb_gstrings_attach(cdev, uvc_function_strings, 67313443799SAndrzej Pietrasiewicz ARRAY_SIZE(uvc_en_us_strings)); 67413443799SAndrzej Pietrasiewicz if (IS_ERR(us)) { 67513443799SAndrzej Pietrasiewicz ret = PTR_ERR(us); 6766d11ed76SAndrzej Pietrasiewicz goto error; 67713443799SAndrzej Pietrasiewicz } 67813443799SAndrzej Pietrasiewicz uvc_iad.iFunction = us[UVC_STRING_CONTROL_IDX].id; 67913443799SAndrzej Pietrasiewicz uvc_control_intf.iInterface = us[UVC_STRING_CONTROL_IDX].id; 68013443799SAndrzej Pietrasiewicz ret = us[UVC_STRING_STREAMING_IDX].id; 6816d11ed76SAndrzej Pietrasiewicz uvc_streaming_intf_alt0.iInterface = ret; 6826d11ed76SAndrzej Pietrasiewicz uvc_streaming_intf_alt1.iInterface = ret; 6836d11ed76SAndrzej Pietrasiewicz 68400a2430fSAndrzej Pietrasiewicz /* Allocate interface IDs. */ 68500a2430fSAndrzej Pietrasiewicz if ((ret = usb_interface_id(c, f)) < 0) 68600a2430fSAndrzej Pietrasiewicz goto error; 68700a2430fSAndrzej Pietrasiewicz uvc_iad.bFirstInterface = ret; 68800a2430fSAndrzej Pietrasiewicz uvc_control_intf.bInterfaceNumber = ret; 68900a2430fSAndrzej Pietrasiewicz uvc->control_intf = ret; 690bf715448SLaurent Pinchart opts->control_interface = ret; 69100a2430fSAndrzej Pietrasiewicz 69200a2430fSAndrzej Pietrasiewicz if ((ret = usb_interface_id(c, f)) < 0) 69300a2430fSAndrzej Pietrasiewicz goto error; 69400a2430fSAndrzej Pietrasiewicz uvc_streaming_intf_alt0.bInterfaceNumber = ret; 69500a2430fSAndrzej Pietrasiewicz uvc_streaming_intf_alt1.bInterfaceNumber = ret; 69600a2430fSAndrzej Pietrasiewicz uvc->streaming_intf = ret; 697bf715448SLaurent Pinchart opts->streaming_interface = ret; 69800a2430fSAndrzej Pietrasiewicz 69900a2430fSAndrzej Pietrasiewicz /* Copy descriptors */ 70000a2430fSAndrzej Pietrasiewicz f->fs_descriptors = uvc_copy_descriptors(uvc, USB_SPEED_FULL); 7016c25955eSAndrzej Pietrasiewicz if (IS_ERR(f->fs_descriptors)) { 7026c25955eSAndrzej Pietrasiewicz ret = PTR_ERR(f->fs_descriptors); 7036c25955eSAndrzej Pietrasiewicz f->fs_descriptors = NULL; 7046c25955eSAndrzej Pietrasiewicz goto error; 7056c25955eSAndrzej Pietrasiewicz } 7066c25955eSAndrzej Pietrasiewicz if (gadget_is_dualspeed(cdev->gadget)) { 70700a2430fSAndrzej Pietrasiewicz f->hs_descriptors = uvc_copy_descriptors(uvc, USB_SPEED_HIGH); 7086c25955eSAndrzej Pietrasiewicz if (IS_ERR(f->hs_descriptors)) { 7096c25955eSAndrzej Pietrasiewicz ret = PTR_ERR(f->hs_descriptors); 7106c25955eSAndrzej Pietrasiewicz f->hs_descriptors = NULL; 7116c25955eSAndrzej Pietrasiewicz goto error; 7126c25955eSAndrzej Pietrasiewicz } 7136c25955eSAndrzej Pietrasiewicz } 7146c25955eSAndrzej Pietrasiewicz if (gadget_is_superspeed(c->cdev->gadget)) { 71500a2430fSAndrzej Pietrasiewicz f->ss_descriptors = uvc_copy_descriptors(uvc, USB_SPEED_SUPER); 7166c25955eSAndrzej Pietrasiewicz if (IS_ERR(f->ss_descriptors)) { 7176c25955eSAndrzej Pietrasiewicz ret = PTR_ERR(f->ss_descriptors); 7186c25955eSAndrzej Pietrasiewicz f->ss_descriptors = NULL; 7196c25955eSAndrzej Pietrasiewicz goto error; 7206c25955eSAndrzej Pietrasiewicz } 7216c25955eSAndrzej Pietrasiewicz } 72200a2430fSAndrzej Pietrasiewicz 72300a2430fSAndrzej Pietrasiewicz /* Preallocate control endpoint request. */ 72400a2430fSAndrzej Pietrasiewicz uvc->control_req = usb_ep_alloc_request(cdev->gadget->ep0, GFP_KERNEL); 72500a2430fSAndrzej Pietrasiewicz uvc->control_buf = kmalloc(UVC_MAX_REQUEST_SIZE, GFP_KERNEL); 72600a2430fSAndrzej Pietrasiewicz if (uvc->control_req == NULL || uvc->control_buf == NULL) { 72700a2430fSAndrzej Pietrasiewicz ret = -ENOMEM; 72800a2430fSAndrzej Pietrasiewicz goto error; 72900a2430fSAndrzej Pietrasiewicz } 73000a2430fSAndrzej Pietrasiewicz 73100a2430fSAndrzej Pietrasiewicz uvc->control_req->buf = uvc->control_buf; 73200a2430fSAndrzej Pietrasiewicz uvc->control_req->complete = uvc_function_ep0_complete; 73300a2430fSAndrzej Pietrasiewicz uvc->control_req->context = uvc; 73400a2430fSAndrzej Pietrasiewicz 73500a2430fSAndrzej Pietrasiewicz if (v4l2_device_register(&cdev->gadget->dev, &uvc->v4l2_dev)) { 736dc0f755bSLaurent Pinchart uvcg_err(f, "failed to register V4L2 device\n"); 73700a2430fSAndrzej Pietrasiewicz goto error; 73800a2430fSAndrzej Pietrasiewicz } 73900a2430fSAndrzej Pietrasiewicz 74000a2430fSAndrzej Pietrasiewicz /* Initialise video. */ 741dc0f755bSLaurent Pinchart ret = uvcg_video_init(&uvc->video, uvc); 74200a2430fSAndrzej Pietrasiewicz if (ret < 0) 74300a2430fSAndrzej Pietrasiewicz goto error; 74400a2430fSAndrzej Pietrasiewicz 74500a2430fSAndrzej Pietrasiewicz /* Register a V4L2 device. */ 74600a2430fSAndrzej Pietrasiewicz ret = uvc_register_video(uvc); 74700a2430fSAndrzej Pietrasiewicz if (ret < 0) { 748dc0f755bSLaurent Pinchart uvcg_err(f, "failed to register video device\n"); 74900a2430fSAndrzej Pietrasiewicz goto error; 75000a2430fSAndrzej Pietrasiewicz } 75100a2430fSAndrzej Pietrasiewicz 75200a2430fSAndrzej Pietrasiewicz return 0; 75300a2430fSAndrzej Pietrasiewicz 75400a2430fSAndrzej Pietrasiewicz error: 75500a2430fSAndrzej Pietrasiewicz v4l2_device_unregister(&uvc->v4l2_dev); 75600a2430fSAndrzej Pietrasiewicz 757e7379857SAndrzej Pietrasiewicz if (uvc->control_req) 75800a2430fSAndrzej Pietrasiewicz usb_ep_free_request(cdev->gadget->ep0, uvc->control_req); 75900a2430fSAndrzej Pietrasiewicz kfree(uvc->control_buf); 76000a2430fSAndrzej Pietrasiewicz 76100a2430fSAndrzej Pietrasiewicz usb_free_all_descriptors(f); 76200a2430fSAndrzej Pietrasiewicz return ret; 76300a2430fSAndrzej Pietrasiewicz } 76400a2430fSAndrzej Pietrasiewicz 76500a2430fSAndrzej Pietrasiewicz /* -------------------------------------------------------------------------- 76600a2430fSAndrzej Pietrasiewicz * USB gadget function 76700a2430fSAndrzej Pietrasiewicz */ 76800a2430fSAndrzej Pietrasiewicz 7696d11ed76SAndrzej Pietrasiewicz static void uvc_free_inst(struct usb_function_instance *f) 7706d11ed76SAndrzej Pietrasiewicz { 771bbea6de1SAndrzej Pietrasiewicz struct f_uvc_opts *opts = fi_to_f_uvc_opts(f); 7726d11ed76SAndrzej Pietrasiewicz 77346919a23SAndrzej Pietrasiewicz mutex_destroy(&opts->lock); 7746d11ed76SAndrzej Pietrasiewicz kfree(opts); 7756d11ed76SAndrzej Pietrasiewicz } 7766d11ed76SAndrzej Pietrasiewicz 7776d11ed76SAndrzej Pietrasiewicz static struct usb_function_instance *uvc_alloc_inst(void) 7786d11ed76SAndrzej Pietrasiewicz { 7796d11ed76SAndrzej Pietrasiewicz struct f_uvc_opts *opts; 78046919a23SAndrzej Pietrasiewicz struct uvc_camera_terminal_descriptor *cd; 78146919a23SAndrzej Pietrasiewicz struct uvc_processing_unit_descriptor *pd; 78246919a23SAndrzej Pietrasiewicz struct uvc_output_terminal_descriptor *od; 78346919a23SAndrzej Pietrasiewicz struct uvc_color_matching_descriptor *md; 78446919a23SAndrzej Pietrasiewicz struct uvc_descriptor_header **ctl_cls; 785efbf0af7SLaurent Pinchart int ret; 7866d11ed76SAndrzej Pietrasiewicz 7876d11ed76SAndrzej Pietrasiewicz opts = kzalloc(sizeof(*opts), GFP_KERNEL); 7886d11ed76SAndrzej Pietrasiewicz if (!opts) 7896d11ed76SAndrzej Pietrasiewicz return ERR_PTR(-ENOMEM); 7906d11ed76SAndrzej Pietrasiewicz opts->func_inst.free_func_inst = uvc_free_inst; 79146919a23SAndrzej Pietrasiewicz mutex_init(&opts->lock); 7926d11ed76SAndrzej Pietrasiewicz 79346919a23SAndrzej Pietrasiewicz cd = &opts->uvc_camera_terminal; 79446919a23SAndrzej Pietrasiewicz cd->bLength = UVC_DT_CAMERA_TERMINAL_SIZE(3); 79546919a23SAndrzej Pietrasiewicz cd->bDescriptorType = USB_DT_CS_INTERFACE; 79646919a23SAndrzej Pietrasiewicz cd->bDescriptorSubType = UVC_VC_INPUT_TERMINAL; 79746919a23SAndrzej Pietrasiewicz cd->bTerminalID = 1; 79846919a23SAndrzej Pietrasiewicz cd->wTerminalType = cpu_to_le16(0x0201); 79946919a23SAndrzej Pietrasiewicz cd->bAssocTerminal = 0; 80046919a23SAndrzej Pietrasiewicz cd->iTerminal = 0; 80146919a23SAndrzej Pietrasiewicz cd->wObjectiveFocalLengthMin = cpu_to_le16(0); 80246919a23SAndrzej Pietrasiewicz cd->wObjectiveFocalLengthMax = cpu_to_le16(0); 80346919a23SAndrzej Pietrasiewicz cd->wOcularFocalLength = cpu_to_le16(0); 80446919a23SAndrzej Pietrasiewicz cd->bControlSize = 3; 80546919a23SAndrzej Pietrasiewicz cd->bmControls[0] = 2; 80646919a23SAndrzej Pietrasiewicz cd->bmControls[1] = 0; 80746919a23SAndrzej Pietrasiewicz cd->bmControls[2] = 0; 80846919a23SAndrzej Pietrasiewicz 80946919a23SAndrzej Pietrasiewicz pd = &opts->uvc_processing; 81046919a23SAndrzej Pietrasiewicz pd->bLength = UVC_DT_PROCESSING_UNIT_SIZE(2); 81146919a23SAndrzej Pietrasiewicz pd->bDescriptorType = USB_DT_CS_INTERFACE; 81246919a23SAndrzej Pietrasiewicz pd->bDescriptorSubType = UVC_VC_PROCESSING_UNIT; 81346919a23SAndrzej Pietrasiewicz pd->bUnitID = 2; 81446919a23SAndrzej Pietrasiewicz pd->bSourceID = 1; 81546919a23SAndrzej Pietrasiewicz pd->wMaxMultiplier = cpu_to_le16(16*1024); 81646919a23SAndrzej Pietrasiewicz pd->bControlSize = 2; 81746919a23SAndrzej Pietrasiewicz pd->bmControls[0] = 1; 81846919a23SAndrzej Pietrasiewicz pd->bmControls[1] = 0; 81946919a23SAndrzej Pietrasiewicz pd->iProcessing = 0; 82046919a23SAndrzej Pietrasiewicz 82146919a23SAndrzej Pietrasiewicz od = &opts->uvc_output_terminal; 82246919a23SAndrzej Pietrasiewicz od->bLength = UVC_DT_OUTPUT_TERMINAL_SIZE; 82346919a23SAndrzej Pietrasiewicz od->bDescriptorType = USB_DT_CS_INTERFACE; 82446919a23SAndrzej Pietrasiewicz od->bDescriptorSubType = UVC_VC_OUTPUT_TERMINAL; 82546919a23SAndrzej Pietrasiewicz od->bTerminalID = 3; 82646919a23SAndrzej Pietrasiewicz od->wTerminalType = cpu_to_le16(0x0101); 82746919a23SAndrzej Pietrasiewicz od->bAssocTerminal = 0; 82846919a23SAndrzej Pietrasiewicz od->bSourceID = 2; 82946919a23SAndrzej Pietrasiewicz od->iTerminal = 0; 83046919a23SAndrzej Pietrasiewicz 83146919a23SAndrzej Pietrasiewicz md = &opts->uvc_color_matching; 83246919a23SAndrzej Pietrasiewicz md->bLength = UVC_DT_COLOR_MATCHING_SIZE; 83346919a23SAndrzej Pietrasiewicz md->bDescriptorType = USB_DT_CS_INTERFACE; 83446919a23SAndrzej Pietrasiewicz md->bDescriptorSubType = UVC_VS_COLORFORMAT; 83546919a23SAndrzej Pietrasiewicz md->bColorPrimaries = 1; 83646919a23SAndrzej Pietrasiewicz md->bTransferCharacteristics = 1; 83746919a23SAndrzej Pietrasiewicz md->bMatrixCoefficients = 4; 83846919a23SAndrzej Pietrasiewicz 83946919a23SAndrzej Pietrasiewicz /* Prepare fs control class descriptors for configfs-based gadgets */ 84046919a23SAndrzej Pietrasiewicz ctl_cls = opts->uvc_fs_control_cls; 84146919a23SAndrzej Pietrasiewicz ctl_cls[0] = NULL; /* assigned elsewhere by configfs */ 84246919a23SAndrzej Pietrasiewicz ctl_cls[1] = (struct uvc_descriptor_header *)cd; 84346919a23SAndrzej Pietrasiewicz ctl_cls[2] = (struct uvc_descriptor_header *)pd; 84446919a23SAndrzej Pietrasiewicz ctl_cls[3] = (struct uvc_descriptor_header *)od; 84546919a23SAndrzej Pietrasiewicz ctl_cls[4] = NULL; /* NULL-terminate */ 84646919a23SAndrzej Pietrasiewicz opts->fs_control = 84746919a23SAndrzej Pietrasiewicz (const struct uvc_descriptor_header * const *)ctl_cls; 84846919a23SAndrzej Pietrasiewicz 84946919a23SAndrzej Pietrasiewicz /* Prepare hs control class descriptors for configfs-based gadgets */ 85046919a23SAndrzej Pietrasiewicz ctl_cls = opts->uvc_ss_control_cls; 85146919a23SAndrzej Pietrasiewicz ctl_cls[0] = NULL; /* assigned elsewhere by configfs */ 85246919a23SAndrzej Pietrasiewicz ctl_cls[1] = (struct uvc_descriptor_header *)cd; 85346919a23SAndrzej Pietrasiewicz ctl_cls[2] = (struct uvc_descriptor_header *)pd; 85446919a23SAndrzej Pietrasiewicz ctl_cls[3] = (struct uvc_descriptor_header *)od; 85546919a23SAndrzej Pietrasiewicz ctl_cls[4] = NULL; /* NULL-terminate */ 85646919a23SAndrzej Pietrasiewicz opts->ss_control = 85746919a23SAndrzej Pietrasiewicz (const struct uvc_descriptor_header * const *)ctl_cls; 85846919a23SAndrzej Pietrasiewicz 85946919a23SAndrzej Pietrasiewicz opts->streaming_interval = 1; 86046919a23SAndrzej Pietrasiewicz opts->streaming_maxpacket = 1024; 86146919a23SAndrzej Pietrasiewicz 862efbf0af7SLaurent Pinchart ret = uvcg_attach_configfs(opts); 863efbf0af7SLaurent Pinchart if (ret < 0) { 864efbf0af7SLaurent Pinchart kfree(opts); 865efbf0af7SLaurent Pinchart return ERR_PTR(ret); 866efbf0af7SLaurent Pinchart } 867efbf0af7SLaurent Pinchart 8686d11ed76SAndrzej Pietrasiewicz return &opts->func_inst; 8696d11ed76SAndrzej Pietrasiewicz } 8706d11ed76SAndrzej Pietrasiewicz 8716d11ed76SAndrzej Pietrasiewicz static void uvc_free(struct usb_function *f) 8726d11ed76SAndrzej Pietrasiewicz { 8736d11ed76SAndrzej Pietrasiewicz struct uvc_device *uvc = to_uvc(f); 87446919a23SAndrzej Pietrasiewicz struct f_uvc_opts *opts = container_of(f->fi, struct f_uvc_opts, 87546919a23SAndrzej Pietrasiewicz func_inst); 87646919a23SAndrzej Pietrasiewicz --opts->refcnt; 8776d11ed76SAndrzej Pietrasiewicz kfree(uvc); 8786d11ed76SAndrzej Pietrasiewicz } 8796d11ed76SAndrzej Pietrasiewicz 8806d11ed76SAndrzej Pietrasiewicz static void uvc_unbind(struct usb_configuration *c, struct usb_function *f) 8816d11ed76SAndrzej Pietrasiewicz { 8826d11ed76SAndrzej Pietrasiewicz struct usb_composite_dev *cdev = c->cdev; 8836d11ed76SAndrzej Pietrasiewicz struct uvc_device *uvc = to_uvc(f); 8846d11ed76SAndrzej Pietrasiewicz 885dc0f755bSLaurent Pinchart uvcg_info(f, "%s\n", __func__); 8866d11ed76SAndrzej Pietrasiewicz 887d7af78b9SKieran Bingham device_remove_file(&uvc->vdev.dev, &dev_attr_function_name); 888dbe98b30SHans Verkuil video_unregister_device(&uvc->vdev); 8896d11ed76SAndrzej Pietrasiewicz v4l2_device_unregister(&uvc->v4l2_dev); 8906d11ed76SAndrzej Pietrasiewicz 8916d11ed76SAndrzej Pietrasiewicz usb_ep_free_request(cdev->gadget->ep0, uvc->control_req); 8926d11ed76SAndrzej Pietrasiewicz kfree(uvc->control_buf); 8936d11ed76SAndrzej Pietrasiewicz 8946d11ed76SAndrzej Pietrasiewicz usb_free_all_descriptors(f); 8956d11ed76SAndrzej Pietrasiewicz } 8966d11ed76SAndrzej Pietrasiewicz 8974a6698b8SFengguang Wu static struct usb_function *uvc_alloc(struct usb_function_instance *fi) 8986d11ed76SAndrzej Pietrasiewicz { 8996d11ed76SAndrzej Pietrasiewicz struct uvc_device *uvc; 9006d11ed76SAndrzej Pietrasiewicz struct f_uvc_opts *opts; 90146919a23SAndrzej Pietrasiewicz struct uvc_descriptor_header **strm_cls; 9026d11ed76SAndrzej Pietrasiewicz 9036d11ed76SAndrzej Pietrasiewicz uvc = kzalloc(sizeof(*uvc), GFP_KERNEL); 9046d11ed76SAndrzej Pietrasiewicz if (uvc == NULL) 9056d11ed76SAndrzej Pietrasiewicz return ERR_PTR(-ENOMEM); 9066d11ed76SAndrzej Pietrasiewicz 907d8e96c4bSHans Verkuil mutex_init(&uvc->video.mutex); 9086d11ed76SAndrzej Pietrasiewicz uvc->state = UVC_STATE_DISCONNECTED; 909bbea6de1SAndrzej Pietrasiewicz opts = fi_to_f_uvc_opts(fi); 9106d11ed76SAndrzej Pietrasiewicz 91146919a23SAndrzej Pietrasiewicz mutex_lock(&opts->lock); 91246919a23SAndrzej Pietrasiewicz if (opts->uvc_fs_streaming_cls) { 91346919a23SAndrzej Pietrasiewicz strm_cls = opts->uvc_fs_streaming_cls; 91446919a23SAndrzej Pietrasiewicz opts->fs_streaming = 91546919a23SAndrzej Pietrasiewicz (const struct uvc_descriptor_header * const *)strm_cls; 91646919a23SAndrzej Pietrasiewicz } 91746919a23SAndrzej Pietrasiewicz if (opts->uvc_hs_streaming_cls) { 91846919a23SAndrzej Pietrasiewicz strm_cls = opts->uvc_hs_streaming_cls; 91946919a23SAndrzej Pietrasiewicz opts->hs_streaming = 92046919a23SAndrzej Pietrasiewicz (const struct uvc_descriptor_header * const *)strm_cls; 92146919a23SAndrzej Pietrasiewicz } 92246919a23SAndrzej Pietrasiewicz if (opts->uvc_ss_streaming_cls) { 92346919a23SAndrzej Pietrasiewicz strm_cls = opts->uvc_ss_streaming_cls; 92446919a23SAndrzej Pietrasiewicz opts->ss_streaming = 92546919a23SAndrzej Pietrasiewicz (const struct uvc_descriptor_header * const *)strm_cls; 92646919a23SAndrzej Pietrasiewicz } 92746919a23SAndrzej Pietrasiewicz 9286d11ed76SAndrzej Pietrasiewicz uvc->desc.fs_control = opts->fs_control; 9296d11ed76SAndrzej Pietrasiewicz uvc->desc.ss_control = opts->ss_control; 9306d11ed76SAndrzej Pietrasiewicz uvc->desc.fs_streaming = opts->fs_streaming; 9316d11ed76SAndrzej Pietrasiewicz uvc->desc.hs_streaming = opts->hs_streaming; 9326d11ed76SAndrzej Pietrasiewicz uvc->desc.ss_streaming = opts->ss_streaming; 93346919a23SAndrzej Pietrasiewicz ++opts->refcnt; 93446919a23SAndrzej Pietrasiewicz mutex_unlock(&opts->lock); 9356d11ed76SAndrzej Pietrasiewicz 9366d11ed76SAndrzej Pietrasiewicz /* Register the function. */ 9376d11ed76SAndrzej Pietrasiewicz uvc->func.name = "uvc"; 9386d11ed76SAndrzej Pietrasiewicz uvc->func.bind = uvc_function_bind; 9396d11ed76SAndrzej Pietrasiewicz uvc->func.unbind = uvc_unbind; 9406d11ed76SAndrzej Pietrasiewicz uvc->func.get_alt = uvc_function_get_alt; 9416d11ed76SAndrzej Pietrasiewicz uvc->func.set_alt = uvc_function_set_alt; 9426d11ed76SAndrzej Pietrasiewicz uvc->func.disable = uvc_function_disable; 9436d11ed76SAndrzej Pietrasiewicz uvc->func.setup = uvc_function_setup; 9446d11ed76SAndrzej Pietrasiewicz uvc->func.free_func = uvc_free; 945f277bf27SRobert Baldyga uvc->func.bind_deactivated = true; 9466d11ed76SAndrzej Pietrasiewicz 9476d11ed76SAndrzej Pietrasiewicz return &uvc->func; 9486d11ed76SAndrzej Pietrasiewicz } 9496d11ed76SAndrzej Pietrasiewicz 9506d11ed76SAndrzej Pietrasiewicz DECLARE_USB_FUNCTION_INIT(uvc, uvc_alloc_inst, uvc_alloc); 9516d11ed76SAndrzej Pietrasiewicz MODULE_LICENSE("GPL"); 9526d11ed76SAndrzej Pietrasiewicz MODULE_AUTHOR("Laurent Pinchart"); 953