2017-12-19 04:15:53 +08:00
|
|
|
/*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0
|
|
|
|
* tm6000-buf.c - driver for TM5600/TM6000/TM6010 USB video capture devices
|
|
|
|
*
|
|
|
|
* Copyright (c) 2006-2007 Mauro Carvalho Chehab <mchehab@infradead.org>
|
|
|
|
*/
|
2009-09-14 20:42:41 +08:00
|
|
|
|
|
|
|
#include <linux/videodev2.h>
|
|
|
|
|
2008-01-08 22:25:57 +08:00
|
|
|
#define TM6000_URB_MSG_LEN 180
|
|
|
|
|
2009-09-14 20:42:41 +08:00
|
|
|
struct usb_isoc_ctl {
|
|
|
|
/* max packet size of isoc transaction */
|
|
|
|
int max_pkt_size;
|
|
|
|
|
|
|
|
/* number of allocated urbs */
|
|
|
|
int num_bufs;
|
|
|
|
|
|
|
|
/* urb for isoc transfers */
|
|
|
|
struct urb **urb;
|
|
|
|
|
|
|
|
/* transfer buffers for isoc transfer */
|
|
|
|
char **transfer_buffer;
|
|
|
|
|
2008-04-09 19:07:20 +08:00
|
|
|
/* Last buffer command and region */
|
|
|
|
u8 cmd;
|
|
|
|
int pos, size, pktsize;
|
2009-09-14 20:42:41 +08:00
|
|
|
|
|
|
|
/* Last field: ODD or EVEN? */
|
2011-05-21 14:05:38 +08:00
|
|
|
int vfield, field;
|
2007-09-20 03:24:05 +08:00
|
|
|
|
2007-09-22 13:06:25 +08:00
|
|
|
/* Stores incomplete commands */
|
2008-04-09 19:07:20 +08:00
|
|
|
u32 tmp_buf;
|
|
|
|
int tmp_buf_len;
|
2007-09-22 13:06:25 +08:00
|
|
|
|
|
|
|
/* Stores already requested buffers */
|
2011-09-23 20:26:22 +08:00
|
|
|
struct tm6000_buffer *buf;
|
2009-09-14 20:42:41 +08:00
|
|
|
};
|