GNU Linux-libre 4.19.264-gnu1
[releases.git] / drivers / usb / gadget / function / f_uvc.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  *      uvc_gadget.c  --  USB Video Class Gadget driver
4  *
5  *      Copyright (C) 2009-2010
6  *          Laurent Pinchart (laurent.pinchart@ideasonboard.com)
7  */
8
9 #include <linux/device.h>
10 #include <linux/errno.h>
11 #include <linux/fs.h>
12 #include <linux/kernel.h>
13 #include <linux/list.h>
14 #include <linux/module.h>
15 #include <linux/mutex.h>
16 #include <linux/string.h>
17 #include <linux/usb/ch9.h>
18 #include <linux/usb/gadget.h>
19 #include <linux/usb/g_uvc.h>
20 #include <linux/usb/video.h>
21 #include <linux/vmalloc.h>
22 #include <linux/wait.h>
23
24 #include <media/v4l2-dev.h>
25 #include <media/v4l2-event.h>
26
27 #include "u_uvc.h"
28 #include "uvc.h"
29 #include "uvc_configfs.h"
30 #include "uvc_v4l2.h"
31 #include "uvc_video.h"
32
33 unsigned int uvc_gadget_trace_param;
34 module_param_named(trace, uvc_gadget_trace_param, uint, 0644);
35 MODULE_PARM_DESC(trace, "Trace level bitmask");
36
37 /* --------------------------------------------------------------------------
38  * Function descriptors
39  */
40
41 /* string IDs are assigned dynamically */
42
43 #define UVC_STRING_CONTROL_IDX                  0
44 #define UVC_STRING_STREAMING_IDX                1
45
46 static struct usb_string uvc_en_us_strings[] = {
47         [UVC_STRING_CONTROL_IDX].s = "UVC Camera",
48         [UVC_STRING_STREAMING_IDX].s = "Video Streaming",
49         {  }
50 };
51
52 static struct usb_gadget_strings uvc_stringtab = {
53         .language = 0x0409,     /* en-us */
54         .strings = uvc_en_us_strings,
55 };
56
57 static struct usb_gadget_strings *uvc_function_strings[] = {
58         &uvc_stringtab,
59         NULL,
60 };
61
62 #define UVC_INTF_VIDEO_CONTROL                  0
63 #define UVC_INTF_VIDEO_STREAMING                1
64
65 #define UVC_STATUS_MAX_PACKET_SIZE              16      /* 16 bytes status */
66
67 static struct usb_interface_assoc_descriptor uvc_iad = {
68         .bLength                = sizeof(uvc_iad),
69         .bDescriptorType        = USB_DT_INTERFACE_ASSOCIATION,
70         .bFirstInterface        = 0,
71         .bInterfaceCount        = 2,
72         .bFunctionClass         = USB_CLASS_VIDEO,
73         .bFunctionSubClass      = UVC_SC_VIDEO_INTERFACE_COLLECTION,
74         .bFunctionProtocol      = 0x00,
75         .iFunction              = 0,
76 };
77
78 static struct usb_interface_descriptor uvc_control_intf = {
79         .bLength                = USB_DT_INTERFACE_SIZE,
80         .bDescriptorType        = USB_DT_INTERFACE,
81         .bInterfaceNumber       = UVC_INTF_VIDEO_CONTROL,
82         .bAlternateSetting      = 0,
83         .bNumEndpoints          = 1,
84         .bInterfaceClass        = USB_CLASS_VIDEO,
85         .bInterfaceSubClass     = UVC_SC_VIDEOCONTROL,
86         .bInterfaceProtocol     = 0x00,
87         .iInterface             = 0,
88 };
89
90 static struct usb_endpoint_descriptor uvc_control_ep = {
91         .bLength                = USB_DT_ENDPOINT_SIZE,
92         .bDescriptorType        = USB_DT_ENDPOINT,
93         .bEndpointAddress       = USB_DIR_IN,
94         .bmAttributes           = USB_ENDPOINT_XFER_INT,
95         .wMaxPacketSize         = cpu_to_le16(UVC_STATUS_MAX_PACKET_SIZE),
96         .bInterval              = 8,
97 };
98
99 static struct usb_ss_ep_comp_descriptor uvc_ss_control_comp = {
100         .bLength                = sizeof(uvc_ss_control_comp),
101         .bDescriptorType        = USB_DT_SS_ENDPOINT_COMP,
102         /* The following 3 values can be tweaked if necessary. */
103         .bMaxBurst              = 0,
104         .bmAttributes           = 0,
105         .wBytesPerInterval      = cpu_to_le16(UVC_STATUS_MAX_PACKET_SIZE),
106 };
107
108 static struct uvc_control_endpoint_descriptor uvc_control_cs_ep = {
109         .bLength                = UVC_DT_CONTROL_ENDPOINT_SIZE,
110         .bDescriptorType        = USB_DT_CS_ENDPOINT,
111         .bDescriptorSubType     = UVC_EP_INTERRUPT,
112         .wMaxTransferSize       = cpu_to_le16(UVC_STATUS_MAX_PACKET_SIZE),
113 };
114
115 static struct usb_interface_descriptor uvc_streaming_intf_alt0 = {
116         .bLength                = USB_DT_INTERFACE_SIZE,
117         .bDescriptorType        = USB_DT_INTERFACE,
118         .bInterfaceNumber       = UVC_INTF_VIDEO_STREAMING,
119         .bAlternateSetting      = 0,
120         .bNumEndpoints          = 0,
121         .bInterfaceClass        = USB_CLASS_VIDEO,
122         .bInterfaceSubClass     = UVC_SC_VIDEOSTREAMING,
123         .bInterfaceProtocol     = 0x00,
124         .iInterface             = 0,
125 };
126
127 static struct usb_interface_descriptor uvc_streaming_intf_alt1 = {
128         .bLength                = USB_DT_INTERFACE_SIZE,
129         .bDescriptorType        = USB_DT_INTERFACE,
130         .bInterfaceNumber       = UVC_INTF_VIDEO_STREAMING,
131         .bAlternateSetting      = 1,
132         .bNumEndpoints          = 1,
133         .bInterfaceClass        = USB_CLASS_VIDEO,
134         .bInterfaceSubClass     = UVC_SC_VIDEOSTREAMING,
135         .bInterfaceProtocol     = 0x00,
136         .iInterface             = 0,
137 };
138
139 static struct usb_endpoint_descriptor uvc_fs_streaming_ep = {
140         .bLength                = USB_DT_ENDPOINT_SIZE,
141         .bDescriptorType        = USB_DT_ENDPOINT,
142         .bEndpointAddress       = USB_DIR_IN,
143         .bmAttributes           = USB_ENDPOINT_SYNC_ASYNC
144                                 | USB_ENDPOINT_XFER_ISOC,
145         /* The wMaxPacketSize and bInterval values will be initialized from
146          * module parameters.
147          */
148 };
149
150 static struct usb_endpoint_descriptor uvc_hs_streaming_ep = {
151         .bLength                = USB_DT_ENDPOINT_SIZE,
152         .bDescriptorType        = USB_DT_ENDPOINT,
153         .bEndpointAddress       = USB_DIR_IN,
154         .bmAttributes           = USB_ENDPOINT_SYNC_ASYNC
155                                 | USB_ENDPOINT_XFER_ISOC,
156         /* The wMaxPacketSize and bInterval values will be initialized from
157          * module parameters.
158          */
159 };
160
161 static struct usb_endpoint_descriptor uvc_ss_streaming_ep = {
162         .bLength                = USB_DT_ENDPOINT_SIZE,
163         .bDescriptorType        = USB_DT_ENDPOINT,
164
165         .bEndpointAddress       = USB_DIR_IN,
166         .bmAttributes           = USB_ENDPOINT_SYNC_ASYNC
167                                 | USB_ENDPOINT_XFER_ISOC,
168         /* The wMaxPacketSize and bInterval values will be initialized from
169          * module parameters.
170          */
171 };
172
173 static struct usb_ss_ep_comp_descriptor uvc_ss_streaming_comp = {
174         .bLength                = sizeof(uvc_ss_streaming_comp),
175         .bDescriptorType        = USB_DT_SS_ENDPOINT_COMP,
176         /* The bMaxBurst, bmAttributes and wBytesPerInterval values will be
177          * initialized from module parameters.
178          */
179 };
180
181 static const struct usb_descriptor_header * const uvc_fs_streaming[] = {
182         (struct usb_descriptor_header *) &uvc_streaming_intf_alt1,
183         (struct usb_descriptor_header *) &uvc_fs_streaming_ep,
184         NULL,
185 };
186
187 static const struct usb_descriptor_header * const uvc_hs_streaming[] = {
188         (struct usb_descriptor_header *) &uvc_streaming_intf_alt1,
189         (struct usb_descriptor_header *) &uvc_hs_streaming_ep,
190         NULL,
191 };
192
193 static const struct usb_descriptor_header * const uvc_ss_streaming[] = {
194         (struct usb_descriptor_header *) &uvc_streaming_intf_alt1,
195         (struct usb_descriptor_header *) &uvc_ss_streaming_ep,
196         (struct usb_descriptor_header *) &uvc_ss_streaming_comp,
197         NULL,
198 };
199
200 void uvc_set_trace_param(unsigned int trace)
201 {
202         uvc_gadget_trace_param = trace;
203 }
204 EXPORT_SYMBOL(uvc_set_trace_param);
205
206 /* --------------------------------------------------------------------------
207  * Control requests
208  */
209
210 static void
211 uvc_function_ep0_complete(struct usb_ep *ep, struct usb_request *req)
212 {
213         struct uvc_device *uvc = req->context;
214         struct v4l2_event v4l2_event;
215         struct uvc_event *uvc_event = (void *)&v4l2_event.u.data;
216
217         if (uvc->event_setup_out) {
218                 uvc->event_setup_out = 0;
219
220                 memset(&v4l2_event, 0, sizeof(v4l2_event));
221                 v4l2_event.type = UVC_EVENT_DATA;
222                 uvc_event->data.length = req->actual;
223                 memcpy(&uvc_event->data.data, req->buf, req->actual);
224                 v4l2_event_queue(&uvc->vdev, &v4l2_event);
225         }
226 }
227
228 static int
229 uvc_function_setup(struct usb_function *f, const struct usb_ctrlrequest *ctrl)
230 {
231         struct uvc_device *uvc = to_uvc(f);
232         struct v4l2_event v4l2_event;
233         struct uvc_event *uvc_event = (void *)&v4l2_event.u.data;
234
235         /* printk(KERN_INFO "setup request %02x %02x value %04x index %04x %04x\n",
236          *      ctrl->bRequestType, ctrl->bRequest, le16_to_cpu(ctrl->wValue),
237          *      le16_to_cpu(ctrl->wIndex), le16_to_cpu(ctrl->wLength));
238          */
239
240         if ((ctrl->bRequestType & USB_TYPE_MASK) != USB_TYPE_CLASS) {
241                 INFO(f->config->cdev, "invalid request type\n");
242                 return -EINVAL;
243         }
244
245         /* Stall too big requests. */
246         if (le16_to_cpu(ctrl->wLength) > UVC_MAX_REQUEST_SIZE)
247                 return -EINVAL;
248
249         /* Tell the complete callback to generate an event for the next request
250          * that will be enqueued by UVCIOC_SEND_RESPONSE.
251          */
252         uvc->event_setup_out = !(ctrl->bRequestType & USB_DIR_IN);
253         uvc->event_length = le16_to_cpu(ctrl->wLength);
254
255         memset(&v4l2_event, 0, sizeof(v4l2_event));
256         v4l2_event.type = UVC_EVENT_SETUP;
257         memcpy(&uvc_event->req, ctrl, sizeof(uvc_event->req));
258         v4l2_event_queue(&uvc->vdev, &v4l2_event);
259
260         return 0;
261 }
262
263 void uvc_function_setup_continue(struct uvc_device *uvc)
264 {
265         struct usb_composite_dev *cdev = uvc->func.config->cdev;
266
267         usb_composite_setup_continue(cdev);
268 }
269
270 static int
271 uvc_function_get_alt(struct usb_function *f, unsigned interface)
272 {
273         struct uvc_device *uvc = to_uvc(f);
274
275         INFO(f->config->cdev, "uvc_function_get_alt(%u)\n", interface);
276
277         if (interface == uvc->control_intf)
278                 return 0;
279         else if (interface != uvc->streaming_intf)
280                 return -EINVAL;
281         else
282                 return uvc->video.ep->enabled ? 1 : 0;
283 }
284
285 static int
286 uvc_function_set_alt(struct usb_function *f, unsigned interface, unsigned alt)
287 {
288         struct uvc_device *uvc = to_uvc(f);
289         struct usb_composite_dev *cdev = f->config->cdev;
290         struct v4l2_event v4l2_event;
291         struct uvc_event *uvc_event = (void *)&v4l2_event.u.data;
292         int ret;
293
294         INFO(cdev, "uvc_function_set_alt(%u, %u)\n", interface, alt);
295
296         if (interface == uvc->control_intf) {
297                 if (alt)
298                         return -EINVAL;
299
300                 INFO(cdev, "reset UVC Control\n");
301                 usb_ep_disable(uvc->control_ep);
302
303                 if (!uvc->control_ep->desc)
304                         if (config_ep_by_speed(cdev->gadget, f, uvc->control_ep))
305                                 return -EINVAL;
306
307                 usb_ep_enable(uvc->control_ep);
308
309                 if (uvc->state == UVC_STATE_DISCONNECTED) {
310                         memset(&v4l2_event, 0, sizeof(v4l2_event));
311                         v4l2_event.type = UVC_EVENT_CONNECT;
312                         uvc_event->speed = cdev->gadget->speed;
313                         v4l2_event_queue(&uvc->vdev, &v4l2_event);
314
315                         uvc->state = UVC_STATE_CONNECTED;
316                 }
317
318                 return 0;
319         }
320
321         if (interface != uvc->streaming_intf)
322                 return -EINVAL;
323
324         /* TODO
325         if (usb_endpoint_xfer_bulk(&uvc->desc.vs_ep))
326                 return alt ? -EINVAL : 0;
327         */
328
329         switch (alt) {
330         case 0:
331                 if (uvc->state != UVC_STATE_STREAMING)
332                         return 0;
333
334                 if (uvc->video.ep)
335                         usb_ep_disable(uvc->video.ep);
336
337                 memset(&v4l2_event, 0, sizeof(v4l2_event));
338                 v4l2_event.type = UVC_EVENT_STREAMOFF;
339                 v4l2_event_queue(&uvc->vdev, &v4l2_event);
340
341                 uvc->state = UVC_STATE_CONNECTED;
342                 return 0;
343
344         case 1:
345                 if (uvc->state != UVC_STATE_CONNECTED)
346                         return 0;
347
348                 if (!uvc->video.ep)
349                         return -EINVAL;
350
351                 INFO(cdev, "reset UVC\n");
352                 usb_ep_disable(uvc->video.ep);
353
354                 ret = config_ep_by_speed(f->config->cdev->gadget,
355                                 &(uvc->func), uvc->video.ep);
356                 if (ret)
357                         return ret;
358                 usb_ep_enable(uvc->video.ep);
359
360                 memset(&v4l2_event, 0, sizeof(v4l2_event));
361                 v4l2_event.type = UVC_EVENT_STREAMON;
362                 v4l2_event_queue(&uvc->vdev, &v4l2_event);
363                 return USB_GADGET_DELAYED_STATUS;
364
365         default:
366                 return -EINVAL;
367         }
368 }
369
370 static void
371 uvc_function_disable(struct usb_function *f)
372 {
373         struct uvc_device *uvc = to_uvc(f);
374         struct v4l2_event v4l2_event;
375
376         INFO(f->config->cdev, "uvc_function_disable\n");
377
378         memset(&v4l2_event, 0, sizeof(v4l2_event));
379         v4l2_event.type = UVC_EVENT_DISCONNECT;
380         v4l2_event_queue(&uvc->vdev, &v4l2_event);
381
382         uvc->state = UVC_STATE_DISCONNECTED;
383
384         usb_ep_disable(uvc->video.ep);
385         usb_ep_disable(uvc->control_ep);
386 }
387
388 /* --------------------------------------------------------------------------
389  * Connection / disconnection
390  */
391
392 void
393 uvc_function_connect(struct uvc_device *uvc)
394 {
395         struct usb_composite_dev *cdev = uvc->func.config->cdev;
396         int ret;
397
398         if ((ret = usb_function_activate(&uvc->func)) < 0)
399                 INFO(cdev, "UVC connect failed with %d\n", ret);
400 }
401
402 void
403 uvc_function_disconnect(struct uvc_device *uvc)
404 {
405         struct usb_composite_dev *cdev = uvc->func.config->cdev;
406         int ret;
407
408         if ((ret = usb_function_deactivate(&uvc->func)) < 0)
409                 INFO(cdev, "UVC disconnect failed with %d\n", ret);
410 }
411
412 /* --------------------------------------------------------------------------
413  * USB probe and disconnect
414  */
415
416 static ssize_t function_name_show(struct device *dev,
417                                   struct device_attribute *attr, char *buf)
418 {
419         struct uvc_device *uvc = dev_get_drvdata(dev);
420
421         return sprintf(buf, "%s\n", uvc->func.fi->group.cg_item.ci_name);
422 }
423
424 static DEVICE_ATTR_RO(function_name);
425
426 static int
427 uvc_register_video(struct uvc_device *uvc)
428 {
429         struct usb_composite_dev *cdev = uvc->func.config->cdev;
430         int ret;
431
432         /* TODO reference counting. */
433         uvc->vdev.v4l2_dev = &uvc->v4l2_dev;
434         uvc->vdev.fops = &uvc_v4l2_fops;
435         uvc->vdev.ioctl_ops = &uvc_v4l2_ioctl_ops;
436         uvc->vdev.release = video_device_release_empty;
437         uvc->vdev.vfl_dir = VFL_DIR_TX;
438         uvc->vdev.lock = &uvc->video.mutex;
439         strlcpy(uvc->vdev.name, cdev->gadget->name, sizeof(uvc->vdev.name));
440
441         video_set_drvdata(&uvc->vdev, uvc);
442
443         ret = video_register_device(&uvc->vdev, VFL_TYPE_GRABBER, -1);
444         if (ret < 0)
445                 return ret;
446
447         ret = device_create_file(&uvc->vdev.dev, &dev_attr_function_name);
448         if (ret < 0) {
449                 video_unregister_device(&uvc->vdev);
450                 return ret;
451         }
452
453         return 0;
454 }
455
456 #define UVC_COPY_DESCRIPTOR(mem, dst, desc) \
457         do { \
458                 memcpy(mem, desc, (desc)->bLength); \
459                 *(dst)++ = mem; \
460                 mem += (desc)->bLength; \
461         } while (0);
462
463 #define UVC_COPY_DESCRIPTORS(mem, dst, src) \
464         do { \
465                 const struct usb_descriptor_header * const *__src; \
466                 for (__src = src; *__src; ++__src) { \
467                         memcpy(mem, *__src, (*__src)->bLength); \
468                         *dst++ = mem; \
469                         mem += (*__src)->bLength; \
470                 } \
471         } while (0)
472
473 static struct usb_descriptor_header **
474 uvc_copy_descriptors(struct uvc_device *uvc, enum usb_device_speed speed)
475 {
476         struct uvc_input_header_descriptor *uvc_streaming_header;
477         struct uvc_header_descriptor *uvc_control_header;
478         const struct uvc_descriptor_header * const *uvc_control_desc;
479         const struct uvc_descriptor_header * const *uvc_streaming_cls;
480         const struct usb_descriptor_header * const *uvc_streaming_std;
481         const struct usb_descriptor_header * const *src;
482         struct usb_descriptor_header **dst;
483         struct usb_descriptor_header **hdr;
484         unsigned int control_size;
485         unsigned int streaming_size;
486         unsigned int n_desc;
487         unsigned int bytes;
488         void *mem;
489
490         switch (speed) {
491         case USB_SPEED_SUPER:
492                 uvc_control_desc = uvc->desc.ss_control;
493                 uvc_streaming_cls = uvc->desc.ss_streaming;
494                 uvc_streaming_std = uvc_ss_streaming;
495                 break;
496
497         case USB_SPEED_HIGH:
498                 uvc_control_desc = uvc->desc.fs_control;
499                 uvc_streaming_cls = uvc->desc.hs_streaming;
500                 uvc_streaming_std = uvc_hs_streaming;
501                 break;
502
503         case USB_SPEED_FULL:
504         default:
505                 uvc_control_desc = uvc->desc.fs_control;
506                 uvc_streaming_cls = uvc->desc.fs_streaming;
507                 uvc_streaming_std = uvc_fs_streaming;
508                 break;
509         }
510
511         if (!uvc_control_desc || !uvc_streaming_cls)
512                 return ERR_PTR(-ENODEV);
513
514         /* Descriptors layout
515          *
516          * uvc_iad
517          * uvc_control_intf
518          * Class-specific UVC control descriptors
519          * uvc_control_ep
520          * uvc_control_cs_ep
521          * uvc_ss_control_comp (for SS only)
522          * uvc_streaming_intf_alt0
523          * Class-specific UVC streaming descriptors
524          * uvc_{fs|hs}_streaming
525          */
526
527         /* Count descriptors and compute their size. */
528         control_size = 0;
529         streaming_size = 0;
530         bytes = uvc_iad.bLength + uvc_control_intf.bLength
531               + uvc_control_ep.bLength + uvc_control_cs_ep.bLength
532               + uvc_streaming_intf_alt0.bLength;
533
534         if (speed == USB_SPEED_SUPER) {
535                 bytes += uvc_ss_control_comp.bLength;
536                 n_desc = 6;
537         } else {
538                 n_desc = 5;
539         }
540
541         for (src = (const struct usb_descriptor_header **)uvc_control_desc;
542              *src; ++src) {
543                 control_size += (*src)->bLength;
544                 bytes += (*src)->bLength;
545                 n_desc++;
546         }
547         for (src = (const struct usb_descriptor_header **)uvc_streaming_cls;
548              *src; ++src) {
549                 streaming_size += (*src)->bLength;
550                 bytes += (*src)->bLength;
551                 n_desc++;
552         }
553         for (src = uvc_streaming_std; *src; ++src) {
554                 bytes += (*src)->bLength;
555                 n_desc++;
556         }
557
558         mem = kmalloc((n_desc + 1) * sizeof(*src) + bytes, GFP_KERNEL);
559         if (mem == NULL)
560                 return NULL;
561
562         hdr = mem;
563         dst = mem;
564         mem += (n_desc + 1) * sizeof(*src);
565
566         /* Copy the descriptors. */
567         UVC_COPY_DESCRIPTOR(mem, dst, &uvc_iad);
568         UVC_COPY_DESCRIPTOR(mem, dst, &uvc_control_intf);
569
570         uvc_control_header = mem;
571         UVC_COPY_DESCRIPTORS(mem, dst,
572                 (const struct usb_descriptor_header **)uvc_control_desc);
573         uvc_control_header->wTotalLength = cpu_to_le16(control_size);
574         uvc_control_header->bInCollection = 1;
575         uvc_control_header->baInterfaceNr[0] = uvc->streaming_intf;
576
577         UVC_COPY_DESCRIPTOR(mem, dst, &uvc_control_ep);
578         if (speed == USB_SPEED_SUPER)
579                 UVC_COPY_DESCRIPTOR(mem, dst, &uvc_ss_control_comp);
580
581         UVC_COPY_DESCRIPTOR(mem, dst, &uvc_control_cs_ep);
582         UVC_COPY_DESCRIPTOR(mem, dst, &uvc_streaming_intf_alt0);
583
584         uvc_streaming_header = mem;
585         UVC_COPY_DESCRIPTORS(mem, dst,
586                 (const struct usb_descriptor_header**)uvc_streaming_cls);
587         uvc_streaming_header->wTotalLength = cpu_to_le16(streaming_size);
588         uvc_streaming_header->bEndpointAddress = uvc->video.ep->address;
589
590         UVC_COPY_DESCRIPTORS(mem, dst, uvc_streaming_std);
591
592         *dst = NULL;
593         return hdr;
594 }
595
596 static int
597 uvc_function_bind(struct usb_configuration *c, struct usb_function *f)
598 {
599         struct usb_composite_dev *cdev = c->cdev;
600         struct uvc_device *uvc = to_uvc(f);
601         struct usb_string *us;
602         unsigned int max_packet_mult;
603         unsigned int max_packet_size;
604         struct usb_ep *ep;
605         struct f_uvc_opts *opts;
606         int ret = -EINVAL;
607
608         INFO(cdev, "uvc_function_bind\n");
609
610         opts = fi_to_f_uvc_opts(f->fi);
611         /* Sanity check the streaming endpoint module parameters.
612          */
613         opts->streaming_interval = clamp(opts->streaming_interval, 1U, 16U);
614         opts->streaming_maxpacket = clamp(opts->streaming_maxpacket, 1U, 3072U);
615         opts->streaming_maxburst = min(opts->streaming_maxburst, 15U);
616
617         /* For SS, wMaxPacketSize has to be 1024 if bMaxBurst is not 0 */
618         if (opts->streaming_maxburst &&
619             (opts->streaming_maxpacket % 1024) != 0) {
620                 opts->streaming_maxpacket = roundup(opts->streaming_maxpacket, 1024);
621                 INFO(cdev, "overriding streaming_maxpacket to %d\n",
622                      opts->streaming_maxpacket);
623         }
624
625         /* Fill in the FS/HS/SS Video Streaming specific descriptors from the
626          * module parameters.
627          *
628          * NOTE: We assume that the user knows what they are doing and won't
629          * give parameters that their UDC doesn't support.
630          */
631         if (opts->streaming_maxpacket <= 1024) {
632                 max_packet_mult = 1;
633                 max_packet_size = opts->streaming_maxpacket;
634         } else if (opts->streaming_maxpacket <= 2048) {
635                 max_packet_mult = 2;
636                 max_packet_size = opts->streaming_maxpacket / 2;
637         } else {
638                 max_packet_mult = 3;
639                 max_packet_size = opts->streaming_maxpacket / 3;
640         }
641
642         uvc_fs_streaming_ep.wMaxPacketSize =
643                 cpu_to_le16(min(opts->streaming_maxpacket, 1023U));
644         uvc_fs_streaming_ep.bInterval = opts->streaming_interval;
645
646         uvc_hs_streaming_ep.wMaxPacketSize =
647                 cpu_to_le16(max_packet_size | ((max_packet_mult - 1) << 11));
648
649         /* A high-bandwidth endpoint must specify a bInterval value of 1 */
650         if (max_packet_mult > 1)
651                 uvc_hs_streaming_ep.bInterval = 1;
652         else
653                 uvc_hs_streaming_ep.bInterval = opts->streaming_interval;
654
655         uvc_ss_streaming_ep.wMaxPacketSize = cpu_to_le16(max_packet_size);
656         uvc_ss_streaming_ep.bInterval = opts->streaming_interval;
657         uvc_ss_streaming_comp.bmAttributes = max_packet_mult - 1;
658         uvc_ss_streaming_comp.bMaxBurst = opts->streaming_maxburst;
659         uvc_ss_streaming_comp.wBytesPerInterval =
660                 cpu_to_le16(max_packet_size * max_packet_mult *
661                             (opts->streaming_maxburst + 1));
662
663         /* Allocate endpoints. */
664         ep = usb_ep_autoconfig(cdev->gadget, &uvc_control_ep);
665         if (!ep) {
666                 INFO(cdev, "Unable to allocate control EP\n");
667                 goto error;
668         }
669         uvc->control_ep = ep;
670
671         if (gadget_is_superspeed(c->cdev->gadget))
672                 ep = usb_ep_autoconfig_ss(cdev->gadget, &uvc_ss_streaming_ep,
673                                           &uvc_ss_streaming_comp);
674         else if (gadget_is_dualspeed(cdev->gadget))
675                 ep = usb_ep_autoconfig(cdev->gadget, &uvc_hs_streaming_ep);
676         else
677                 ep = usb_ep_autoconfig(cdev->gadget, &uvc_fs_streaming_ep);
678
679         if (!ep) {
680                 INFO(cdev, "Unable to allocate streaming EP\n");
681                 goto error;
682         }
683         uvc->video.ep = ep;
684
685         uvc_fs_streaming_ep.bEndpointAddress = uvc->video.ep->address;
686         uvc_hs_streaming_ep.bEndpointAddress = uvc->video.ep->address;
687         uvc_ss_streaming_ep.bEndpointAddress = uvc->video.ep->address;
688
689         us = usb_gstrings_attach(cdev, uvc_function_strings,
690                                  ARRAY_SIZE(uvc_en_us_strings));
691         if (IS_ERR(us)) {
692                 ret = PTR_ERR(us);
693                 goto error;
694         }
695         uvc_iad.iFunction = us[UVC_STRING_CONTROL_IDX].id;
696         uvc_control_intf.iInterface = us[UVC_STRING_CONTROL_IDX].id;
697         ret = us[UVC_STRING_STREAMING_IDX].id;
698         uvc_streaming_intf_alt0.iInterface = ret;
699         uvc_streaming_intf_alt1.iInterface = ret;
700
701         /* Allocate interface IDs. */
702         if ((ret = usb_interface_id(c, f)) < 0)
703                 goto error;
704         uvc_iad.bFirstInterface = ret;
705         uvc_control_intf.bInterfaceNumber = ret;
706         uvc->control_intf = ret;
707
708         if ((ret = usb_interface_id(c, f)) < 0)
709                 goto error;
710         uvc_streaming_intf_alt0.bInterfaceNumber = ret;
711         uvc_streaming_intf_alt1.bInterfaceNumber = ret;
712         uvc->streaming_intf = ret;
713
714         /* Copy descriptors */
715         f->fs_descriptors = uvc_copy_descriptors(uvc, USB_SPEED_FULL);
716         if (IS_ERR(f->fs_descriptors)) {
717                 ret = PTR_ERR(f->fs_descriptors);
718                 f->fs_descriptors = NULL;
719                 goto error;
720         }
721         if (gadget_is_dualspeed(cdev->gadget)) {
722                 f->hs_descriptors = uvc_copy_descriptors(uvc, USB_SPEED_HIGH);
723                 if (IS_ERR(f->hs_descriptors)) {
724                         ret = PTR_ERR(f->hs_descriptors);
725                         f->hs_descriptors = NULL;
726                         goto error;
727                 }
728         }
729         if (gadget_is_superspeed(c->cdev->gadget)) {
730                 f->ss_descriptors = uvc_copy_descriptors(uvc, USB_SPEED_SUPER);
731                 if (IS_ERR(f->ss_descriptors)) {
732                         ret = PTR_ERR(f->ss_descriptors);
733                         f->ss_descriptors = NULL;
734                         goto error;
735                 }
736         }
737
738         /* Preallocate control endpoint request. */
739         uvc->control_req = usb_ep_alloc_request(cdev->gadget->ep0, GFP_KERNEL);
740         uvc->control_buf = kmalloc(UVC_MAX_REQUEST_SIZE, GFP_KERNEL);
741         if (uvc->control_req == NULL || uvc->control_buf == NULL) {
742                 ret = -ENOMEM;
743                 goto error;
744         }
745
746         uvc->control_req->buf = uvc->control_buf;
747         uvc->control_req->complete = uvc_function_ep0_complete;
748         uvc->control_req->context = uvc;
749
750         if (v4l2_device_register(&cdev->gadget->dev, &uvc->v4l2_dev)) {
751                 printk(KERN_INFO "v4l2_device_register failed\n");
752                 goto error;
753         }
754
755         /* Initialise video. */
756         ret = uvcg_video_init(&uvc->video);
757         if (ret < 0)
758                 goto error;
759
760         /* Register a V4L2 device. */
761         ret = uvc_register_video(uvc);
762         if (ret < 0) {
763                 printk(KERN_INFO "Unable to register video device\n");
764                 goto error;
765         }
766
767         return 0;
768
769 error:
770         v4l2_device_unregister(&uvc->v4l2_dev);
771
772         if (uvc->control_req)
773                 usb_ep_free_request(cdev->gadget->ep0, uvc->control_req);
774         kfree(uvc->control_buf);
775
776         usb_free_all_descriptors(f);
777         return ret;
778 }
779
780 /* --------------------------------------------------------------------------
781  * USB gadget function
782  */
783
784 static void uvc_free_inst(struct usb_function_instance *f)
785 {
786         struct f_uvc_opts *opts = fi_to_f_uvc_opts(f);
787
788         mutex_destroy(&opts->lock);
789         kfree(opts);
790 }
791
792 static struct usb_function_instance *uvc_alloc_inst(void)
793 {
794         struct f_uvc_opts *opts;
795         struct uvc_camera_terminal_descriptor *cd;
796         struct uvc_processing_unit_descriptor *pd;
797         struct uvc_output_terminal_descriptor *od;
798         struct uvc_color_matching_descriptor *md;
799         struct uvc_descriptor_header **ctl_cls;
800
801         opts = kzalloc(sizeof(*opts), GFP_KERNEL);
802         if (!opts)
803                 return ERR_PTR(-ENOMEM);
804         opts->func_inst.free_func_inst = uvc_free_inst;
805         mutex_init(&opts->lock);
806
807         cd = &opts->uvc_camera_terminal;
808         cd->bLength                     = UVC_DT_CAMERA_TERMINAL_SIZE(3);
809         cd->bDescriptorType             = USB_DT_CS_INTERFACE;
810         cd->bDescriptorSubType          = UVC_VC_INPUT_TERMINAL;
811         cd->bTerminalID                 = 1;
812         cd->wTerminalType               = cpu_to_le16(0x0201);
813         cd->bAssocTerminal              = 0;
814         cd->iTerminal                   = 0;
815         cd->wObjectiveFocalLengthMin    = cpu_to_le16(0);
816         cd->wObjectiveFocalLengthMax    = cpu_to_le16(0);
817         cd->wOcularFocalLength          = cpu_to_le16(0);
818         cd->bControlSize                = 3;
819         cd->bmControls[0]               = 2;
820         cd->bmControls[1]               = 0;
821         cd->bmControls[2]               = 0;
822
823         pd = &opts->uvc_processing;
824         pd->bLength                     = UVC_DT_PROCESSING_UNIT_SIZE(2);
825         pd->bDescriptorType             = USB_DT_CS_INTERFACE;
826         pd->bDescriptorSubType          = UVC_VC_PROCESSING_UNIT;
827         pd->bUnitID                     = 2;
828         pd->bSourceID                   = 1;
829         pd->wMaxMultiplier              = cpu_to_le16(16*1024);
830         pd->bControlSize                = 2;
831         pd->bmControls[0]               = 1;
832         pd->bmControls[1]               = 0;
833         pd->iProcessing                 = 0;
834
835         od = &opts->uvc_output_terminal;
836         od->bLength                     = UVC_DT_OUTPUT_TERMINAL_SIZE;
837         od->bDescriptorType             = USB_DT_CS_INTERFACE;
838         od->bDescriptorSubType          = UVC_VC_OUTPUT_TERMINAL;
839         od->bTerminalID                 = 3;
840         od->wTerminalType               = cpu_to_le16(0x0101);
841         od->bAssocTerminal              = 0;
842         od->bSourceID                   = 2;
843         od->iTerminal                   = 0;
844
845         md = &opts->uvc_color_matching;
846         md->bLength                     = UVC_DT_COLOR_MATCHING_SIZE;
847         md->bDescriptorType             = USB_DT_CS_INTERFACE;
848         md->bDescriptorSubType          = UVC_VS_COLORFORMAT;
849         md->bColorPrimaries             = 1;
850         md->bTransferCharacteristics    = 1;
851         md->bMatrixCoefficients         = 4;
852
853         /* Prepare fs control class descriptors for configfs-based gadgets */
854         ctl_cls = opts->uvc_fs_control_cls;
855         ctl_cls[0] = NULL;      /* assigned elsewhere by configfs */
856         ctl_cls[1] = (struct uvc_descriptor_header *)cd;
857         ctl_cls[2] = (struct uvc_descriptor_header *)pd;
858         ctl_cls[3] = (struct uvc_descriptor_header *)od;
859         ctl_cls[4] = NULL;      /* NULL-terminate */
860         opts->fs_control =
861                 (const struct uvc_descriptor_header * const *)ctl_cls;
862
863         /* Prepare hs control class descriptors for configfs-based gadgets */
864         ctl_cls = opts->uvc_ss_control_cls;
865         ctl_cls[0] = NULL;      /* assigned elsewhere by configfs */
866         ctl_cls[1] = (struct uvc_descriptor_header *)cd;
867         ctl_cls[2] = (struct uvc_descriptor_header *)pd;
868         ctl_cls[3] = (struct uvc_descriptor_header *)od;
869         ctl_cls[4] = NULL;      /* NULL-terminate */
870         opts->ss_control =
871                 (const struct uvc_descriptor_header * const *)ctl_cls;
872
873         opts->streaming_interval = 1;
874         opts->streaming_maxpacket = 1024;
875
876         uvcg_attach_configfs(opts);
877         return &opts->func_inst;
878 }
879
880 static void uvc_free(struct usb_function *f)
881 {
882         struct uvc_device *uvc = to_uvc(f);
883         struct f_uvc_opts *opts = container_of(f->fi, struct f_uvc_opts,
884                                                func_inst);
885         --opts->refcnt;
886         kfree(uvc);
887 }
888
889 static void uvc_unbind(struct usb_configuration *c, struct usb_function *f)
890 {
891         struct usb_composite_dev *cdev = c->cdev;
892         struct uvc_device *uvc = to_uvc(f);
893
894         INFO(cdev, "%s\n", __func__);
895
896         device_remove_file(&uvc->vdev.dev, &dev_attr_function_name);
897         video_unregister_device(&uvc->vdev);
898         v4l2_device_unregister(&uvc->v4l2_dev);
899
900         usb_ep_free_request(cdev->gadget->ep0, uvc->control_req);
901         kfree(uvc->control_buf);
902
903         usb_free_all_descriptors(f);
904 }
905
906 static struct usb_function *uvc_alloc(struct usb_function_instance *fi)
907 {
908         struct uvc_device *uvc;
909         struct f_uvc_opts *opts;
910         struct uvc_descriptor_header **strm_cls;
911
912         uvc = kzalloc(sizeof(*uvc), GFP_KERNEL);
913         if (uvc == NULL)
914                 return ERR_PTR(-ENOMEM);
915
916         mutex_init(&uvc->video.mutex);
917         uvc->state = UVC_STATE_DISCONNECTED;
918         opts = fi_to_f_uvc_opts(fi);
919
920         mutex_lock(&opts->lock);
921         if (opts->uvc_fs_streaming_cls) {
922                 strm_cls = opts->uvc_fs_streaming_cls;
923                 opts->fs_streaming =
924                         (const struct uvc_descriptor_header * const *)strm_cls;
925         }
926         if (opts->uvc_hs_streaming_cls) {
927                 strm_cls = opts->uvc_hs_streaming_cls;
928                 opts->hs_streaming =
929                         (const struct uvc_descriptor_header * const *)strm_cls;
930         }
931         if (opts->uvc_ss_streaming_cls) {
932                 strm_cls = opts->uvc_ss_streaming_cls;
933                 opts->ss_streaming =
934                         (const struct uvc_descriptor_header * const *)strm_cls;
935         }
936
937         uvc->desc.fs_control = opts->fs_control;
938         uvc->desc.ss_control = opts->ss_control;
939         uvc->desc.fs_streaming = opts->fs_streaming;
940         uvc->desc.hs_streaming = opts->hs_streaming;
941         uvc->desc.ss_streaming = opts->ss_streaming;
942         ++opts->refcnt;
943         mutex_unlock(&opts->lock);
944
945         /* Register the function. */
946         uvc->func.name = "uvc";
947         uvc->func.bind = uvc_function_bind;
948         uvc->func.unbind = uvc_unbind;
949         uvc->func.get_alt = uvc_function_get_alt;
950         uvc->func.set_alt = uvc_function_set_alt;
951         uvc->func.disable = uvc_function_disable;
952         uvc->func.setup = uvc_function_setup;
953         uvc->func.free_func = uvc_free;
954         uvc->func.bind_deactivated = true;
955
956         return &uvc->func;
957 }
958
959 DECLARE_USB_FUNCTION_INIT(uvc, uvc_alloc_inst, uvc_alloc);
960 MODULE_LICENSE("GPL");
961 MODULE_AUTHOR("Laurent Pinchart");