blob: cbd9bf020fb3ba0804817e0873184c82557cd32f [file] [log] [blame]
Laurent Pinchartcdda4792010-05-02 20:57:41 +02001/*
2 * uvc_v4l2.c -- USB Video Class Gadget driver
3 *
4 * Copyright (C) 2009-2010
5 * Laurent Pinchart (laurent.pinchart@ideasonboard.com)
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
Laurent Pinchartcdda4792010-05-02 20:57:41 +020011 */
12
13#include <linux/kernel.h>
14#include <linux/device.h>
15#include <linux/errno.h>
16#include <linux/list.h>
Laurent Pinchartcdda4792010-05-02 20:57:41 +020017#include <linux/videodev2.h>
18#include <linux/vmalloc.h>
19#include <linux/wait.h>
20
21#include <media/v4l2-dev.h>
22#include <media/v4l2-event.h>
23#include <media/v4l2-ioctl.h>
24
Andrzej Pietrasiewicz3a83c162014-09-09 02:02:09 +030025#include "f_uvc.h"
Laurent Pinchartcdda4792010-05-02 20:57:41 +020026#include "uvc.h"
27#include "uvc_queue.h"
Andrzej Pietrasiewicz3a83c162014-09-09 02:02:09 +030028#include "uvc_video.h"
Laurent Pinchartcdda4792010-05-02 20:57:41 +020029
30/* --------------------------------------------------------------------------
31 * Requests handling
32 */
33
34static int
35uvc_send_response(struct uvc_device *uvc, struct uvc_request_data *data)
36{
37 struct usb_composite_dev *cdev = uvc->func.config->cdev;
38 struct usb_request *req = uvc->control_req;
39
40 if (data->length < 0)
41 return usb_ep_set_halt(cdev->gadget->ep0);
42
Laurent Pinchart6f6543f2012-04-24 11:29:42 +020043 req->length = min_t(unsigned int, uvc->event_length, data->length);
Laurent Pinchartcdda4792010-05-02 20:57:41 +020044 req->zero = data->length < uvc->event_length;
Laurent Pinchartcdda4792010-05-02 20:57:41 +020045
Dan Carpentera5eaaa12013-03-14 11:01:05 +030046 memcpy(req->buf, data->data, req->length);
Laurent Pinchartcdda4792010-05-02 20:57:41 +020047
48 return usb_ep_queue(cdev->gadget->ep0, req, GFP_KERNEL);
49}
50
51/* --------------------------------------------------------------------------
Laurent Pincharta1d27a42014-09-08 11:18:15 +030052 * V4L2 ioctls
Laurent Pinchartcdda4792010-05-02 20:57:41 +020053 */
54
55struct uvc_format
56{
57 u8 bpp;
58 u32 fcc;
59};
60
61static struct uvc_format uvc_formats[] = {
62 { 16, V4L2_PIX_FMT_YUYV },
63 { 0, V4L2_PIX_FMT_MJPEG },
64};
65
66static int
Laurent Pincharta1d27a42014-09-08 11:18:15 +030067uvc_v4l2_querycap(struct file *file, void *fh, struct v4l2_capability *cap)
Laurent Pinchartcdda4792010-05-02 20:57:41 +020068{
Laurent Pincharta1d27a42014-09-08 11:18:15 +030069 struct video_device *vdev = video_devdata(file);
70 struct uvc_device *uvc = video_get_drvdata(vdev);
71 struct usb_composite_dev *cdev = uvc->func.config->cdev;
72
73 strlcpy(cap->driver, "g_uvc", sizeof(cap->driver));
74 strlcpy(cap->card, cdev->gadget->name, sizeof(cap->card));
75 strlcpy(cap->bus_info, dev_name(&cdev->gadget->dev),
76 sizeof(cap->bus_info));
77
Hans Verkuil06e5cc32015-02-17 05:44:08 -030078 cap->device_caps = V4L2_CAP_VIDEO_OUTPUT | V4L2_CAP_STREAMING;
79 cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
Laurent Pincharta1d27a42014-09-08 11:18:15 +030080
81 return 0;
82}
83
84static int
85uvc_v4l2_get_format(struct file *file, void *fh, struct v4l2_format *fmt)
86{
87 struct video_device *vdev = video_devdata(file);
88 struct uvc_device *uvc = video_get_drvdata(vdev);
89 struct uvc_video *video = &uvc->video;
90
Laurent Pinchartcdda4792010-05-02 20:57:41 +020091 fmt->fmt.pix.pixelformat = video->fcc;
92 fmt->fmt.pix.width = video->width;
93 fmt->fmt.pix.height = video->height;
94 fmt->fmt.pix.field = V4L2_FIELD_NONE;
95 fmt->fmt.pix.bytesperline = video->bpp * video->width / 8;
96 fmt->fmt.pix.sizeimage = video->imagesize;
97 fmt->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
98 fmt->fmt.pix.priv = 0;
99
100 return 0;
101}
102
103static int
Laurent Pincharta1d27a42014-09-08 11:18:15 +0300104uvc_v4l2_set_format(struct file *file, void *fh, struct v4l2_format *fmt)
Laurent Pinchartcdda4792010-05-02 20:57:41 +0200105{
Laurent Pincharta1d27a42014-09-08 11:18:15 +0300106 struct video_device *vdev = video_devdata(file);
107 struct uvc_device *uvc = video_get_drvdata(vdev);
108 struct uvc_video *video = &uvc->video;
Laurent Pinchartcdda4792010-05-02 20:57:41 +0200109 struct uvc_format *format;
110 unsigned int imagesize;
111 unsigned int bpl;
112 unsigned int i;
113
114 for (i = 0; i < ARRAY_SIZE(uvc_formats); ++i) {
115 format = &uvc_formats[i];
116 if (format->fcc == fmt->fmt.pix.pixelformat)
117 break;
118 }
119
Dan Carpenter9a887162010-08-12 09:59:58 +0200120 if (i == ARRAY_SIZE(uvc_formats)) {
Laurent Pinchartcdda4792010-05-02 20:57:41 +0200121 printk(KERN_INFO "Unsupported format 0x%08x.\n",
122 fmt->fmt.pix.pixelformat);
123 return -EINVAL;
124 }
125
126 bpl = format->bpp * fmt->fmt.pix.width / 8;
127 imagesize = bpl ? bpl * fmt->fmt.pix.height : fmt->fmt.pix.sizeimage;
128
129 video->fcc = format->fcc;
130 video->bpp = format->bpp;
131 video->width = fmt->fmt.pix.width;
132 video->height = fmt->fmt.pix.height;
133 video->imagesize = imagesize;
134
135 fmt->fmt.pix.field = V4L2_FIELD_NONE;
136 fmt->fmt.pix.bytesperline = bpl;
137 fmt->fmt.pix.sizeimage = imagesize;
138 fmt->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
139 fmt->fmt.pix.priv = 0;
140
141 return 0;
142}
143
144static int
Laurent Pincharta1d27a42014-09-08 11:18:15 +0300145uvc_v4l2_reqbufs(struct file *file, void *fh, struct v4l2_requestbuffers *b)
146{
147 struct video_device *vdev = video_devdata(file);
148 struct uvc_device *uvc = video_get_drvdata(vdev);
149 struct uvc_video *video = &uvc->video;
150
151 if (b->type != video->queue.queue.type)
152 return -EINVAL;
153
Andrzej Pietrasiewicz7ea95b12014-09-09 02:02:08 +0300154 return uvcg_alloc_buffers(&video->queue, b);
Laurent Pincharta1d27a42014-09-08 11:18:15 +0300155}
156
157static int
158uvc_v4l2_querybuf(struct file *file, void *fh, struct v4l2_buffer *b)
159{
160 struct video_device *vdev = video_devdata(file);
161 struct uvc_device *uvc = video_get_drvdata(vdev);
162 struct uvc_video *video = &uvc->video;
163
Andrzej Pietrasiewicz7ea95b12014-09-09 02:02:08 +0300164 return uvcg_query_buffer(&video->queue, b);
Laurent Pincharta1d27a42014-09-08 11:18:15 +0300165}
166
167static int
168uvc_v4l2_qbuf(struct file *file, void *fh, struct v4l2_buffer *b)
169{
170 struct video_device *vdev = video_devdata(file);
171 struct uvc_device *uvc = video_get_drvdata(vdev);
172 struct uvc_video *video = &uvc->video;
173 int ret;
174
Andrzej Pietrasiewicz7ea95b12014-09-09 02:02:08 +0300175 ret = uvcg_queue_buffer(&video->queue, b);
Laurent Pincharta1d27a42014-09-08 11:18:15 +0300176 if (ret < 0)
177 return ret;
178
Andrzej Pietrasiewicz7ea95b12014-09-09 02:02:08 +0300179 return uvcg_video_pump(video);
Laurent Pincharta1d27a42014-09-08 11:18:15 +0300180}
181
182static int
183uvc_v4l2_dqbuf(struct file *file, void *fh, struct v4l2_buffer *b)
184{
185 struct video_device *vdev = video_devdata(file);
186 struct uvc_device *uvc = video_get_drvdata(vdev);
187 struct uvc_video *video = &uvc->video;
188
Andrzej Pietrasiewicz7ea95b12014-09-09 02:02:08 +0300189 return uvcg_dequeue_buffer(&video->queue, b, file->f_flags & O_NONBLOCK);
Laurent Pincharta1d27a42014-09-08 11:18:15 +0300190}
191
192static int
193uvc_v4l2_streamon(struct file *file, void *fh, enum v4l2_buf_type type)
194{
195 struct video_device *vdev = video_devdata(file);
196 struct uvc_device *uvc = video_get_drvdata(vdev);
197 struct uvc_video *video = &uvc->video;
198 int ret;
199
200 if (type != video->queue.queue.type)
201 return -EINVAL;
202
203 /* Enable UVC video. */
Andrzej Pietrasiewicz7ea95b12014-09-09 02:02:08 +0300204 ret = uvcg_video_enable(video, 1);
Laurent Pincharta1d27a42014-09-08 11:18:15 +0300205 if (ret < 0)
206 return ret;
207
208 /*
209 * Complete the alternate setting selection setup phase now that
210 * userspace is ready to provide video frames.
211 */
212 uvc_function_setup_continue(uvc);
213 uvc->state = UVC_STATE_STREAMING;
214
215 return 0;
216}
217
218static int
219uvc_v4l2_streamoff(struct file *file, void *fh, enum v4l2_buf_type type)
220{
221 struct video_device *vdev = video_devdata(file);
222 struct uvc_device *uvc = video_get_drvdata(vdev);
223 struct uvc_video *video = &uvc->video;
224
225 if (type != video->queue.queue.type)
226 return -EINVAL;
227
Andrzej Pietrasiewicz7ea95b12014-09-09 02:02:08 +0300228 return uvcg_video_enable(video, 0);
Laurent Pincharta1d27a42014-09-08 11:18:15 +0300229}
230
231static int
232uvc_v4l2_subscribe_event(struct v4l2_fh *fh,
233 const struct v4l2_event_subscription *sub)
234{
235 if (sub->type < UVC_EVENT_FIRST || sub->type > UVC_EVENT_LAST)
236 return -EINVAL;
237
238 return v4l2_event_subscribe(fh, sub, 2, NULL);
239}
240
241static int
242uvc_v4l2_unsubscribe_event(struct v4l2_fh *fh,
243 const struct v4l2_event_subscription *sub)
244{
245 return v4l2_event_unsubscribe(fh, sub);
246}
247
248static long
249uvc_v4l2_ioctl_default(struct file *file, void *fh, bool valid_prio,
250 unsigned int cmd, void *arg)
251{
252 struct video_device *vdev = video_devdata(file);
253 struct uvc_device *uvc = video_get_drvdata(vdev);
254
255 switch (cmd) {
256 case UVCIOC_SEND_RESPONSE:
257 return uvc_send_response(uvc, arg);
258
259 default:
260 return -ENOIOCTLCMD;
261 }
262}
263
Andrzej Pietrasiewicz3a83c162014-09-09 02:02:09 +0300264const struct v4l2_ioctl_ops uvc_v4l2_ioctl_ops = {
Laurent Pincharta1d27a42014-09-08 11:18:15 +0300265 .vidioc_querycap = uvc_v4l2_querycap,
266 .vidioc_g_fmt_vid_out = uvc_v4l2_get_format,
267 .vidioc_s_fmt_vid_out = uvc_v4l2_set_format,
268 .vidioc_reqbufs = uvc_v4l2_reqbufs,
269 .vidioc_querybuf = uvc_v4l2_querybuf,
270 .vidioc_qbuf = uvc_v4l2_qbuf,
271 .vidioc_dqbuf = uvc_v4l2_dqbuf,
272 .vidioc_streamon = uvc_v4l2_streamon,
273 .vidioc_streamoff = uvc_v4l2_streamoff,
274 .vidioc_subscribe_event = uvc_v4l2_subscribe_event,
275 .vidioc_unsubscribe_event = uvc_v4l2_unsubscribe_event,
276 .vidioc_default = uvc_v4l2_ioctl_default,
277};
278
279/* --------------------------------------------------------------------------
280 * V4L2
281 */
282
283static int
Laurent Pinchartcdda4792010-05-02 20:57:41 +0200284uvc_v4l2_open(struct file *file)
285{
286 struct video_device *vdev = video_devdata(file);
287 struct uvc_device *uvc = video_get_drvdata(vdev);
288 struct uvc_file_handle *handle;
Laurent Pinchartcdda4792010-05-02 20:57:41 +0200289
290 handle = kzalloc(sizeof(*handle), GFP_KERNEL);
291 if (handle == NULL)
292 return -ENOMEM;
293
Hans Verkuil523f46d2011-06-13 17:44:42 -0300294 v4l2_fh_init(&handle->vfh, vdev);
Laurent Pinchartcdda4792010-05-02 20:57:41 +0200295 v4l2_fh_add(&handle->vfh);
296
297 handle->device = &uvc->video;
298 file->private_data = &handle->vfh;
299
300 uvc_function_connect(uvc);
301 return 0;
Laurent Pinchartcdda4792010-05-02 20:57:41 +0200302}
303
304static int
305uvc_v4l2_release(struct file *file)
306{
307 struct video_device *vdev = video_devdata(file);
308 struct uvc_device *uvc = video_get_drvdata(vdev);
309 struct uvc_file_handle *handle = to_uvc_file_handle(file->private_data);
310 struct uvc_video *video = handle->device;
311
312 uvc_function_disconnect(uvc);
313
Hans Verkuild8e96c42015-02-17 05:44:06 -0300314 mutex_lock(&video->mutex);
Andrzej Pietrasiewicz7ea95b12014-09-09 02:02:08 +0300315 uvcg_video_enable(video, 0);
316 uvcg_free_buffers(&video->queue);
Hans Verkuild8e96c42015-02-17 05:44:06 -0300317 mutex_unlock(&video->mutex);
Laurent Pinchartcdda4792010-05-02 20:57:41 +0200318
319 file->private_data = NULL;
320 v4l2_fh_del(&handle->vfh);
321 v4l2_fh_exit(&handle->vfh);
322 kfree(handle);
Bhupesh Sharmad6925222013-03-28 15:11:52 +0530323
Laurent Pinchartcdda4792010-05-02 20:57:41 +0200324 return 0;
325}
326
Laurent Pinchartcdda4792010-05-02 20:57:41 +0200327static int
328uvc_v4l2_mmap(struct file *file, struct vm_area_struct *vma)
329{
330 struct video_device *vdev = video_devdata(file);
331 struct uvc_device *uvc = video_get_drvdata(vdev);
332
Andrzej Pietrasiewicz7ea95b12014-09-09 02:02:08 +0300333 return uvcg_queue_mmap(&uvc->video.queue, vma);
Laurent Pinchartcdda4792010-05-02 20:57:41 +0200334}
335
336static unsigned int
337uvc_v4l2_poll(struct file *file, poll_table *wait)
338{
339 struct video_device *vdev = video_devdata(file);
340 struct uvc_device *uvc = video_get_drvdata(vdev);
Laurent Pinchartcdda4792010-05-02 20:57:41 +0200341
Andrzej Pietrasiewicz7ea95b12014-09-09 02:02:08 +0300342 return uvcg_queue_poll(&uvc->video.queue, file, wait);
Laurent Pinchartcdda4792010-05-02 20:57:41 +0200343}
344
Bhupesh Sharma2f1d5702013-03-28 15:11:53 +0530345#ifndef CONFIG_MMU
Arnd Bergmanna173dc42014-09-29 14:30:20 +0200346static unsigned long uvcg_v4l2_get_unmapped_area(struct file *file,
Bhupesh Sharma2f1d5702013-03-28 15:11:53 +0530347 unsigned long addr, unsigned long len, unsigned long pgoff,
348 unsigned long flags)
349{
350 struct video_device *vdev = video_devdata(file);
351 struct uvc_device *uvc = video_get_drvdata(vdev);
352
Andrzej Pietrasiewicz7ea95b12014-09-09 02:02:08 +0300353 return uvcg_queue_get_unmapped_area(&uvc->video.queue, pgoff);
Bhupesh Sharma2f1d5702013-03-28 15:11:53 +0530354}
355#endif
356
Andrzej Pietrasiewicz3a83c162014-09-09 02:02:09 +0300357struct v4l2_file_operations uvc_v4l2_fops = {
Laurent Pinchartcdda4792010-05-02 20:57:41 +0200358 .owner = THIS_MODULE,
359 .open = uvc_v4l2_open,
360 .release = uvc_v4l2_release,
Hans Verkuil9945eb92015-02-17 05:44:07 -0300361 .unlocked_ioctl = video_ioctl2,
Laurent Pinchartcdda4792010-05-02 20:57:41 +0200362 .mmap = uvc_v4l2_mmap,
363 .poll = uvc_v4l2_poll,
Bhupesh Sharma2f1d5702013-03-28 15:11:53 +0530364#ifndef CONFIG_MMU
Andrzej Pietrasiewicz7ea95b12014-09-09 02:02:08 +0300365 .get_unmapped_area = uvcg_v4l2_get_unmapped_area,
Bhupesh Sharma2f1d5702013-03-28 15:11:53 +0530366#endif
Laurent Pinchartcdda4792010-05-02 20:57:41 +0200367};
368