uvc_v4l2.c 9.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 *	uvc_v4l2.c  --  USB Video Class Gadget driver
 *
 *	Copyright (C) 2009-2010
 *	    Laurent Pinchart (laurent.pinchart@ideasonboard.com)
 *
 *	This program is free software; you can redistribute it and/or modify
 *	it under the terms of the GNU General Public License as published by
 *	the Free Software Foundation; either version 2 of the License, or
 *	(at your option) any later version.
 */

#include <linux/kernel.h>
#include <linux/device.h>
#include <linux/errno.h>
#include <linux/list.h>
#include <linux/videodev2.h>
#include <linux/vmalloc.h>
#include <linux/wait.h>

#include <media/v4l2-dev.h>
#include <media/v4l2-event.h>
#include <media/v4l2-ioctl.h>

25
#include "f_uvc.h"
26 27
#include "uvc.h"
#include "uvc_queue.h"
28
#include "uvc_video.h"
29 30 31 32 33 34 35 36 37 38 39 40 41 42

/* --------------------------------------------------------------------------
 * Requests handling
 */

static int
uvc_send_response(struct uvc_device *uvc, struct uvc_request_data *data)
{
	struct usb_composite_dev *cdev = uvc->func.config->cdev;
	struct usb_request *req = uvc->control_req;

	if (data->length < 0)
		return usb_ep_set_halt(cdev->gadget->ep0);

43
	req->length = min_t(unsigned int, uvc->event_length, data->length);
44 45
	req->zero = data->length < uvc->event_length;

46
	memcpy(req->buf, data->data, req->length);
47 48 49 50 51

	return usb_ep_queue(cdev->gadget->ep0, req, GFP_KERNEL);
}

/* --------------------------------------------------------------------------
52
 * V4L2 ioctls
53 54 55 56 57 58 59 60 61 62 63 64 65 66
 */

struct uvc_format
{
	u8 bpp;
	u32 fcc;
};

static struct uvc_format uvc_formats[] = {
	{ 16, V4L2_PIX_FMT_YUYV  },
	{ 0,  V4L2_PIX_FMT_MJPEG },
};

static int
67 68 69 70 71 72 73 74 75 76 77
uvc_v4l2_querycap(struct file *file, void *fh, struct v4l2_capability *cap)
{
	struct video_device *vdev = video_devdata(file);
	struct uvc_device *uvc = video_get_drvdata(vdev);
	struct usb_composite_dev *cdev = uvc->func.config->cdev;

	strlcpy(cap->driver, "g_uvc", sizeof(cap->driver));
	strlcpy(cap->card, cdev->gadget->name, sizeof(cap->card));
	strlcpy(cap->bus_info, dev_name(&cdev->gadget->dev),
		sizeof(cap->bus_info));

78 79
	cap->device_caps = V4L2_CAP_VIDEO_OUTPUT | V4L2_CAP_STREAMING;
	cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
80 81 82 83 84 85

	return 0;
}

static int
uvc_v4l2_get_format(struct file *file, void *fh, struct v4l2_format *fmt)
86
{
87 88 89 90
	struct video_device *vdev = video_devdata(file);
	struct uvc_device *uvc = video_get_drvdata(vdev);
	struct uvc_video *video = &uvc->video;

91 92 93 94 95 96 97 98 99 100 101 102 103
	fmt->fmt.pix.pixelformat = video->fcc;
	fmt->fmt.pix.width = video->width;
	fmt->fmt.pix.height = video->height;
	fmt->fmt.pix.field = V4L2_FIELD_NONE;
	fmt->fmt.pix.bytesperline = video->bpp * video->width / 8;
	fmt->fmt.pix.sizeimage = video->imagesize;
	fmt->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
	fmt->fmt.pix.priv = 0;

	return 0;
}

static int
104
uvc_v4l2_set_format(struct file *file, void *fh, struct v4l2_format *fmt)
105
{
106 107 108
	struct video_device *vdev = video_devdata(file);
	struct uvc_device *uvc = video_get_drvdata(vdev);
	struct uvc_video *video = &uvc->video;
109 110 111 112 113 114 115 116 117 118 119
	struct uvc_format *format;
	unsigned int imagesize;
	unsigned int bpl;
	unsigned int i;

	for (i = 0; i < ARRAY_SIZE(uvc_formats); ++i) {
		format = &uvc_formats[i];
		if (format->fcc == fmt->fmt.pix.pixelformat)
			break;
	}

120
	if (i == ARRAY_SIZE(uvc_formats)) {
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
		printk(KERN_INFO "Unsupported format 0x%08x.\n",
			fmt->fmt.pix.pixelformat);
		return -EINVAL;
	}

	bpl = format->bpp * fmt->fmt.pix.width / 8;
	imagesize = bpl ? bpl * fmt->fmt.pix.height : fmt->fmt.pix.sizeimage;

	video->fcc = format->fcc;
	video->bpp = format->bpp;
	video->width = fmt->fmt.pix.width;
	video->height = fmt->fmt.pix.height;
	video->imagesize = imagesize;

	fmt->fmt.pix.field = V4L2_FIELD_NONE;
	fmt->fmt.pix.bytesperline = bpl;
	fmt->fmt.pix.sizeimage = imagesize;
	fmt->fmt.pix.colorspace = V4L2_COLORSPACE_SRGB;
	fmt->fmt.pix.priv = 0;

	return 0;
}

static int
145
uvc_v4l2_reqbufs(struct file *file, void *fh, struct v4l2_requestbuffers *b)
146 147 148
{
	struct video_device *vdev = video_devdata(file);
	struct uvc_device *uvc = video_get_drvdata(vdev);
149
	struct uvc_video *video = &uvc->video;
150

151 152
	if (b->type != video->queue.queue.type)
		return -EINVAL;
153

154
	return uvcg_alloc_buffers(&video->queue, b);
155 156 157
}

static int
158
uvc_v4l2_querybuf(struct file *file, void *fh, struct v4l2_buffer *b)
159 160 161
{
	struct video_device *vdev = video_devdata(file);
	struct uvc_device *uvc = video_get_drvdata(vdev);
162
	struct uvc_video *video = &uvc->video;
163

164
	return uvcg_query_buffer(&video->queue, b);
165 166
}

167 168
static int
uvc_v4l2_qbuf(struct file *file, void *fh, struct v4l2_buffer *b)
169 170 171 172
{
	struct video_device *vdev = video_devdata(file);
	struct uvc_device *uvc = video_get_drvdata(vdev);
	struct uvc_video *video = &uvc->video;
173
	int ret;
174

175
	ret = uvcg_queue_buffer(&video->queue, b);
176 177
	if (ret < 0)
		return ret;
178

179
	return uvcg_video_pump(video);
180
}
181

182 183 184 185 186 187
static int
uvc_v4l2_dqbuf(struct file *file, void *fh, struct v4l2_buffer *b)
{
	struct video_device *vdev = video_devdata(file);
	struct uvc_device *uvc = video_get_drvdata(vdev);
	struct uvc_video *video = &uvc->video;
188

189
	return uvcg_dequeue_buffer(&video->queue, b, file->f_flags & O_NONBLOCK);
190
}
191

192 193 194 195 196 197 198
static int
uvc_v4l2_streamon(struct file *file, void *fh, enum v4l2_buf_type type)
{
	struct video_device *vdev = video_devdata(file);
	struct uvc_device *uvc = video_get_drvdata(vdev);
	struct uvc_video *video = &uvc->video;
	int ret;
199

200 201
	if (type != video->queue.queue.type)
		return -EINVAL;
202

203
	/* Enable UVC video. */
204
	ret = uvcg_video_enable(video, 1);
205 206
	if (ret < 0)
		return ret;
207

208 209 210 211 212 213
	/*
	 * Complete the alternate setting selection setup phase now that
	 * userspace is ready to provide video frames.
	 */
	uvc_function_setup_continue(uvc);
	uvc->state = UVC_STATE_STREAMING;
214

215 216
	return 0;
}
217

218 219 220 221 222 223
static int
uvc_v4l2_streamoff(struct file *file, void *fh, enum v4l2_buf_type type)
{
	struct video_device *vdev = video_devdata(file);
	struct uvc_device *uvc = video_get_drvdata(vdev);
	struct uvc_video *video = &uvc->video;
224

225 226
	if (type != video->queue.queue.type)
		return -EINVAL;
227

228
	return uvcg_video_enable(video, 0);
229
}
230

231 232 233 234 235 236
static int
uvc_v4l2_subscribe_event(struct v4l2_fh *fh,
			 const struct v4l2_event_subscription *sub)
{
	if (sub->type < UVC_EVENT_FIRST || sub->type > UVC_EVENT_LAST)
		return -EINVAL;
237

238 239
	return v4l2_event_subscribe(fh, sub, 2, NULL);
}
240

241 242 243 244 245 246
static int
uvc_v4l2_unsubscribe_event(struct v4l2_fh *fh,
			   const struct v4l2_event_subscription *sub)
{
	return v4l2_event_unsubscribe(fh, sub);
}
247

248 249 250 251 252 253
static long
uvc_v4l2_ioctl_default(struct file *file, void *fh, bool valid_prio,
		       unsigned int cmd, void *arg)
{
	struct video_device *vdev = video_devdata(file);
	struct uvc_device *uvc = video_get_drvdata(vdev);
254

255 256 257
	switch (cmd) {
	case UVCIOC_SEND_RESPONSE:
		return uvc_send_response(uvc, arg);
258

259 260
	default:
		return -ENOIOCTLCMD;
261
	}
262
}
263

264
const struct v4l2_ioctl_ops uvc_v4l2_ioctl_ops = {
265 266 267 268 269 270 271 272 273 274 275 276 277
	.vidioc_querycap = uvc_v4l2_querycap,
	.vidioc_g_fmt_vid_out = uvc_v4l2_get_format,
	.vidioc_s_fmt_vid_out = uvc_v4l2_set_format,
	.vidioc_reqbufs = uvc_v4l2_reqbufs,
	.vidioc_querybuf = uvc_v4l2_querybuf,
	.vidioc_qbuf = uvc_v4l2_qbuf,
	.vidioc_dqbuf = uvc_v4l2_dqbuf,
	.vidioc_streamon = uvc_v4l2_streamon,
	.vidioc_streamoff = uvc_v4l2_streamoff,
	.vidioc_subscribe_event = uvc_v4l2_subscribe_event,
	.vidioc_unsubscribe_event = uvc_v4l2_unsubscribe_event,
	.vidioc_default = uvc_v4l2_ioctl_default,
};
278

279 280 281
/* --------------------------------------------------------------------------
 * V4L2
 */
282

283 284 285 286 287 288
static int
uvc_v4l2_open(struct file *file)
{
	struct video_device *vdev = video_devdata(file);
	struct uvc_device *uvc = video_get_drvdata(vdev);
	struct uvc_file_handle *handle;
289

290 291 292
	handle = kzalloc(sizeof(*handle), GFP_KERNEL);
	if (handle == NULL)
		return -ENOMEM;
293

294 295
	v4l2_fh_init(&handle->vfh, vdev);
	v4l2_fh_add(&handle->vfh);
296

297 298
	handle->device = &uvc->video;
	file->private_data = &handle->vfh;
299

300 301 302
	uvc_function_connect(uvc);
	return 0;
}
303

304 305 306 307 308 309 310
static int
uvc_v4l2_release(struct file *file)
{
	struct video_device *vdev = video_devdata(file);
	struct uvc_device *uvc = video_get_drvdata(vdev);
	struct uvc_file_handle *handle = to_uvc_file_handle(file->private_data);
	struct uvc_video *video = handle->device;
311

312
	uvc_function_disconnect(uvc);
313

314
	mutex_lock(&video->mutex);
315 316
	uvcg_video_enable(video, 0);
	uvcg_free_buffers(&video->queue);
317
	mutex_unlock(&video->mutex);
318

319 320 321 322
	file->private_data = NULL;
	v4l2_fh_del(&handle->vfh);
	v4l2_fh_exit(&handle->vfh);
	kfree(handle);
323

324
	return 0;
325 326 327 328 329 330 331 332
}

static int
uvc_v4l2_mmap(struct file *file, struct vm_area_struct *vma)
{
	struct video_device *vdev = video_devdata(file);
	struct uvc_device *uvc = video_get_drvdata(vdev);

333
	return uvcg_queue_mmap(&uvc->video.queue, vma);
334 335 336 337 338 339 340 341
}

static unsigned int
uvc_v4l2_poll(struct file *file, poll_table *wait)
{
	struct video_device *vdev = video_devdata(file);
	struct uvc_device *uvc = video_get_drvdata(vdev);

342
	return uvcg_queue_poll(&uvc->video.queue, file, wait);
343 344
}

345
#ifndef CONFIG_MMU
346
static unsigned long uvcg_v4l2_get_unmapped_area(struct file *file,
347 348 349 350 351 352
		unsigned long addr, unsigned long len, unsigned long pgoff,
		unsigned long flags)
{
	struct video_device *vdev = video_devdata(file);
	struct uvc_device *uvc = video_get_drvdata(vdev);

353
	return uvcg_queue_get_unmapped_area(&uvc->video.queue, pgoff);
354 355 356
}
#endif

357
struct v4l2_file_operations uvc_v4l2_fops = {
358 359 360
	.owner		= THIS_MODULE,
	.open		= uvc_v4l2_open,
	.release	= uvc_v4l2_release,
361
	.unlocked_ioctl	= video_ioctl2,
362 363
	.mmap		= uvc_v4l2_mmap,
	.poll		= uvc_v4l2_poll,
364
#ifndef CONFIG_MMU
365
	.get_unmapped_area = uvcg_v4l2_get_unmapped_area,
366
#endif
367 368
};