s2255drv.c 72.7 KB
Newer Older
1 2 3
/*
 *  s2255drv.c - a driver for the Sensoray 2255 USB video capture device
 *
4
 *   Copyright (C) 2007-2014 by Sensoray Company Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
 *                              Dean Anderson
 *
 * Some video buffer code based on vivi driver:
 *
 * Sensoray 2255 device supports 4 simultaneous channels.
 * The channels are not "crossbar" inputs, they are physically
 * attached to separate video decoders.
 *
 * Because of USB2.0 bandwidth limitations. There is only a
 * certain amount of data which may be transferred at one time.
 *
 * Example maximum bandwidth utilization:
 *
 * -full size, color mode YUYV or YUV422P: 2 channels at once
 * -full or half size Grey scale: all 4 channels at once
 * -half size, color mode YUYV or YUV422P: all 4 channels at once
 * -full size, color mode YUYV or YUV422P 1/2 frame rate: all 4 channels
 *  at once.
 *
 * 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.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

#include <linux/module.h>
#include <linux/firmware.h>
#include <linux/kernel.h>
#include <linux/mutex.h>
43
#include <linux/slab.h>
44
#include <linux/videodev2.h>
45
#include <linux/mm.h>
46 47
#include <linux/vmalloc.h>
#include <linux/usb.h>
48 49
#include <media/videobuf-vmalloc.h>
#include <media/v4l2-common.h>
50
#include <media/v4l2-device.h>
51
#include <media/v4l2-ioctl.h>
52
#include <media/v4l2-ctrls.h>
53
#include <media/v4l2-event.h>
54

55
#define S2255_VERSION		"1.24.1"
56 57
#define FIRMWARE_FILE_NAME "f2255usb.bin"

58 59
/* default JPEG quality */
#define S2255_DEF_JPEG_QUAL     50
60 61 62 63 64 65 66 67 68
/* vendor request in */
#define S2255_VR_IN		0
/* vendor request out */
#define S2255_VR_OUT		1
/* firmware query */
#define S2255_VR_FW		0x30
/* USB endpoint number for configuring the device */
#define S2255_CONFIG_EP         2
/* maximum time for DSP to start responding after last FW word loaded(ms) */
69
#define S2255_DSP_BOOTTIME      800
70
/* maximum time to wait for firmware to load (ms) */
71
#define S2255_LOAD_TIMEOUT      (5000 + S2255_DSP_BOOTTIME)
72
#define S2255_DEF_BUFS          16
73
#define S2255_SETMODE_TIMEOUT   500
74
#define S2255_VIDSTATUS_TIMEOUT 350
75 76 77 78 79
#define S2255_MARKER_FRAME	cpu_to_le32(0x2255DA4AL)
#define S2255_MARKER_RESPONSE	cpu_to_le32(0x2255ACACL)
#define S2255_RESPONSE_SETMODE  cpu_to_le32(0x01)
#define S2255_RESPONSE_FW       cpu_to_le32(0x10)
#define S2255_RESPONSE_STATUS   cpu_to_le32(0x20)
80
#define S2255_USB_XFER_SIZE	(16 * 1024)
81 82 83
#define MAX_CHANNELS		4
#define SYS_FRAMES		4
/* maximum size is PAL full size plus room for the marker header(s) */
84 85
#define SYS_FRAMES_MAXSIZE	(720*288*2*2 + 4096)
#define DEF_USB_BLOCK		S2255_USB_XFER_SIZE
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
#define LINE_SZ_4CIFS_NTSC	640
#define LINE_SZ_2CIFS_NTSC	640
#define LINE_SZ_1CIFS_NTSC	320
#define LINE_SZ_4CIFS_PAL	704
#define LINE_SZ_2CIFS_PAL	704
#define LINE_SZ_1CIFS_PAL	352
#define NUM_LINES_4CIFS_NTSC	240
#define NUM_LINES_2CIFS_NTSC	240
#define NUM_LINES_1CIFS_NTSC	240
#define NUM_LINES_4CIFS_PAL	288
#define NUM_LINES_2CIFS_PAL	288
#define NUM_LINES_1CIFS_PAL	288
#define LINE_SZ_DEF		640
#define NUM_LINES_DEF		240


/* predefined settings */
#define FORMAT_NTSC	1
#define FORMAT_PAL	2

#define SCALE_4CIFS	1	/* 640x480(NTSC) or 704x576(PAL) */
#define SCALE_2CIFS	2	/* 640x240(NTSC) or 704x288(PAL) */
#define SCALE_1CIFS	3	/* 320x240(NTSC) or 352x288(PAL) */
109 110
/* SCALE_4CIFSI is the 2 fields interpolated into one */
#define SCALE_4CIFSI	4	/* 640x480(NTSC) or 704x576(PAL) high quality */
111 112 113 114

#define COLOR_YUVPL	1	/* YUV planar */
#define COLOR_YUVPK	2	/* YUV packed */
#define COLOR_Y8	4	/* monochrome */
115
#define COLOR_JPG       5       /* JPEG */
116

117 118 119
#define MASK_COLOR       0x000000ff
#define MASK_JPG_QUALITY 0x0000ff00
#define MASK_INPUT_TYPE  0x000f0000
120
/* frame decimation. */
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
#define FDEC_1		1	/* capture every frame. default */
#define FDEC_2		2	/* capture every 2nd frame */
#define FDEC_3		3	/* capture every 3rd frame */
#define FDEC_5		5	/* capture every 5th frame */

/*-------------------------------------------------------
 * Default mode parameters.
 *-------------------------------------------------------*/
#define DEF_SCALE	SCALE_4CIFS
#define DEF_COLOR	COLOR_YUVPL
#define DEF_FDEC	FDEC_1
#define DEF_BRIGHT	0
#define DEF_CONTRAST	0x5c
#define DEF_SATURATION	0x80
#define DEF_HUE		0

/* usb config commands */
138
#define IN_DATA_TOKEN	cpu_to_le32(0x2255c0de)
139
#define CMD_2255	0xc2255000
140 141 142 143
#define CMD_SET_MODE	cpu_to_le32((CMD_2255 | 0x10))
#define CMD_START	cpu_to_le32((CMD_2255 | 0x20))
#define CMD_STOP	cpu_to_le32((CMD_2255 | 0x30))
#define CMD_STATUS	cpu_to_le32((CMD_2255 | 0x40))
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159

struct s2255_mode {
	u32 format;	/* input video format (NTSC, PAL) */
	u32 scale;	/* output video scale */
	u32 color;	/* output video color format */
	u32 fdec;	/* frame decimation */
	u32 bright;	/* brightness */
	u32 contrast;	/* contrast */
	u32 saturation;	/* saturation */
	u32 hue;	/* hue (NTSC only)*/
	u32 single;	/* capture 1 frame at a time (!=0), continuously (==0)*/
	u32 usb_block;	/* block size. should be 4096 of DEF_USB_BLOCK */
	u32 restart;	/* if DSP requires restart */
};


160 161
#define S2255_READ_IDLE		0
#define S2255_READ_FRAME	1
162

163
/* frame structure */
164 165
struct s2255_framei {
	unsigned long size;
166
	unsigned long ulState;	/* ulState:S2255_READ_IDLE, S2255_READ_FRAME*/
167 168 169 170 171 172 173 174 175 176 177 178
	void *lpvbits;		/* image data */
	unsigned long cur_size;	/* current data copied to it */
};

/* image buffer structure */
struct s2255_bufferi {
	unsigned long dwFrames;			/* number of frames in buffer */
	struct s2255_framei frame[SYS_FRAMES];	/* array of FRAME structures */
};

#define DEF_MODEI_NTSC_CONT	{FORMAT_NTSC, DEF_SCALE, DEF_COLOR,	\
			DEF_FDEC, DEF_BRIGHT, DEF_CONTRAST, DEF_SATURATION, \
179
			DEF_HUE, 0, DEF_USB_BLOCK, 0}
180 181 182 183 184 185

/* for firmware loading, fw_state */
#define S2255_FW_NOTLOADED	0
#define S2255_FW_LOADED_DSPWAIT	1
#define S2255_FW_SUCCESS	2
#define S2255_FW_FAILED		3
186
#define S2255_FW_DISCONNECTING  4
187
#define S2255_FW_MARKER		cpu_to_le32(0x22552f2f)
188 189 190
/* 2255 read states */
#define S2255_READ_IDLE         0
#define S2255_READ_FRAME        1
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
struct s2255_fw {
	int		      fw_loaded;
	int		      fw_size;
	struct urb	      *fw_urb;
	atomic_t	      fw_state;
	void		      *pfw_data;
	wait_queue_head_t     wait_fw;
	const struct firmware *fw;
};

struct s2255_pipeinfo {
	u32 max_transfer_size;
	u32 cur_transfer_size;
	u8 *transfer_buffer;
	u32 state;
	void *stream_urb;
	void *dev;	/* back pointer to s2255_dev struct*/
	u32 err_count;
	u32 idx;
};

struct s2255_fmt; /*forward declaration */
213 214
struct s2255_dev;

215 216
/* 2255 video channel */
struct s2255_vc {
217
	struct s2255_dev        *dev;
218
	struct video_device	vdev;
219
	struct v4l2_ctrl_handler hdl;
220
	struct v4l2_ctrl	*jpegqual_ctrl;
221
	int			resources;
222
	struct list_head        buf_list;
223 224
	struct s2255_bufferi	buffer;
	struct s2255_mode	mode;
225
	v4l2_std_id		std;
226
	/* jpeg compression */
227
	unsigned		jpegqual;
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
	/* capture parameters (for high quality mode full size) */
	struct v4l2_captureparm cap_parm;
	int			cur_frame;
	int			last_frame;

	int			b_acquire;
	/* allocated image size */
	unsigned long		req_image_size;
	/* received packet size */
	unsigned long		pkt_size;
	int			bad_payload;
	unsigned long		frame_count;
	/* if JPEG image */
	int                     jpg_size;
	/* if channel configured to default state */
	int                     configured;
	wait_queue_head_t       wait_setmode;
	int                     setmode_ready;
	/* video status items */
	int                     vidstatus;
	wait_queue_head_t       wait_vidstatus;
	int                     vidstatus_ready;
	unsigned int		width;
	unsigned int		height;
	const struct s2255_fmt	*fmt;
	int idx; /* channel number on device, 0-3 */
};

256 257

struct s2255_dev {
258
	struct s2255_vc         vc[MAX_CHANNELS];
259
	struct v4l2_device      v4l2_dev;
260
	atomic_t                num_channels;
261
	int			frames;
P
Pete Eberlein 已提交
262
	struct mutex		lock;	/* channels[].vdev.lock */
263 264 265 266 267
	struct usb_device	*udev;
	struct usb_interface	*interface;
	u8			read_endpoint;
	struct timer_list	timer;
	struct s2255_fw	*fw_data;
D
Dean Anderson 已提交
268
	struct s2255_pipeinfo	pipe;
269 270
	u32			cc;	/* current channel */
	int			frame_ready;
271
	int                     chn_ready;
272
	spinlock_t              slock;
273 274
	/* dsp firmware version (f2255usb.bin) */
	int                     dsp_fw_ver;
275
	u16                     pid; /* product id */
276
};
277 278 279 280 281

static inline struct s2255_dev *to_s2255_dev(struct v4l2_device *v4l2_dev)
{
	return container_of(v4l2_dev, struct s2255_dev, v4l2_dev);
}
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296

struct s2255_fmt {
	char *name;
	u32 fourcc;
	int depth;
};

/* buffer for one video frame */
struct s2255_buffer {
	/* common v4l buffer stuff -- must be first */
	struct videobuf_buffer vb;
	const struct s2255_fmt *fmt;
};

struct s2255_fh {
297 298
	/* this must be the first field in this struct */
	struct v4l2_fh		fh;
299 300 301
	struct s2255_dev	*dev;
	struct videobuf_queue	vb_vidq;
	enum v4l2_buf_type	type;
302
	struct s2255_vc	*vc;
303
	int			resources;
304 305
};

306
/* current cypress EEPROM firmware version */
307
#define S2255_CUR_USB_FWVER	((3 << 8) | 12)
308
/* current DSP FW version */
309
#define S2255_CUR_DSP_FWVER     10104
310
/* Need DSP version 5+ for video status feature */
311 312
#define S2255_MIN_DSP_STATUS      5
#define S2255_MIN_DSP_COLORFILTER 8
313
#define S2255_NORMS		(V4L2_STD_ALL)
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342

/* private V4L2 controls */

/*
 * The following chart displays how COLORFILTER should be set
 *  =========================================================
 *  =     fourcc              =     COLORFILTER             =
 *  =                         ===============================
 *  =                         =   0             =    1      =
 *  =========================================================
 *  =  V4L2_PIX_FMT_GREY(Y8)  = monochrome from = monochrome=
 *  =                         = s-video or      = composite =
 *  =                         = B/W camera      = input     =
 *  =========================================================
 *  =    other                = color, svideo   = color,    =
 *  =                         =                 = composite =
 *  =========================================================
 *
 * Notes:
 *   channels 0-3 on 2255 are composite
 *   channels 0-1 on 2257 are composite, 2-3 are s-video
 * If COLORFILTER is 0 with a composite color camera connected,
 * the output will appear monochrome but hatching
 * will occur.
 * COLORFILTER is different from "color killer" and "color effects"
 * for reasons above.
 */
#define S2255_V4L2_YC_ON  1
#define S2255_V4L2_YC_OFF 0
343
#define V4L2_CID_S2255_COLORFILTER (V4L2_CID_USER_S2255_BASE + 0)
344

345 346 347 348
/* frame prefix size (sent once every frame) */
#define PREFIX_SIZE		512

/* Channels on box are in reverse order */
349
static unsigned long G_chnmap[MAX_CHANNELS] = {3, 2, 1, 0};
350 351 352 353 354

static int debug;

static int s2255_start_readpipe(struct s2255_dev *dev);
static void s2255_stop_readpipe(struct s2255_dev *dev);
355 356 357
static int s2255_start_acquire(struct s2255_vc *vc);
static int s2255_stop_acquire(struct s2255_vc *vc);
static void s2255_fillbuff(struct s2255_vc *vc, struct s2255_buffer *buf,
358
			   int jpgsize);
359
static int s2255_set_mode(struct s2255_vc *vc, struct s2255_mode *mode);
360
static int s2255_board_shutdown(struct s2255_dev *dev);
361
static void s2255_fwload_start(struct s2255_dev *dev, int reset);
362
static void s2255_destroy(struct s2255_dev *dev);
363 364 365
static long s2255_vendor_req(struct s2255_dev *dev, unsigned char req,
			     u16 index, u16 value, void *buf,
			     s32 buf_len, int bOut);
366

367 368 369 370 371
/* dev_err macro with driver name */
#define S2255_DRIVER_NAME "s2255"
#define s2255_dev_err(dev, fmt, arg...)					\
		dev_err(dev, S2255_DRIVER_NAME " - " fmt, ##arg)

372 373
#define dprintk(dev, level, fmt, arg...) \
	v4l2_dbg(level, debug, &dev->v4l2_dev, fmt, ## arg)
374 375 376 377 378 379 380 381 382

static struct usb_driver s2255_driver;

/* Declare static vars that will be used as parameters */
static unsigned int vid_limit = 16;	/* Video memory limit, in Mb */

/* start video number */
static int video_nr = -1;	/* /dev/videoN, -1 for autodetect */

383 384 385
/* Enable jpeg capture. */
static int jpeg_enable = 1;

386
module_param(debug, int, 0644);
387
MODULE_PARM_DESC(debug, "Debug level(0-100) default 0");
388
module_param(vid_limit, int, 0644);
389
MODULE_PARM_DESC(vid_limit, "video memory limit(Mb)");
390
module_param(video_nr, int, 0644);
391
MODULE_PARM_DESC(video_nr, "start video minor(-1 default autodetect)");
392 393
module_param(jpeg_enable, int, 0644);
MODULE_PARM_DESC(jpeg_enable, "Jpeg enable(1-on 0-off) default 1");
394 395

/* USB device table */
396
#define USB_SENSORAY_VID	0x1943
397
static struct usb_device_id s2255_table[] = {
398 399
	{USB_DEVICE(USB_SENSORAY_VID, 0x2255)},
	{USB_DEVICE(USB_SENSORAY_VID, 0x2257)}, /*same family as 2255*/
400 401 402 403 404 405 406
	{ }			/* Terminating entry */
};
MODULE_DEVICE_TABLE(usb, s2255_table);

#define BUFFER_TIMEOUT msecs_to_jiffies(400)

/* image formats.  */
407
/* JPEG formats must be defined last to support jpeg_enable parameter */
408 409 410 411 412 413 414 415 416 417
static const struct s2255_fmt formats[] = {
	{
		.name = "4:2:2, packed, YUYV",
		.fourcc = V4L2_PIX_FMT_YUYV,
		.depth = 16

	}, {
		.name = "4:2:2, packed, UYVY",
		.fourcc = V4L2_PIX_FMT_UYVY,
		.depth = 16
418 419 420 421 422
	}, {
		.name = "4:2:2, planar, YUV422P",
		.fourcc = V4L2_PIX_FMT_YUV422P,
		.depth = 16

423 424 425 426
	}, {
		.name = "8bpp GREY",
		.fourcc = V4L2_PIX_FMT_GREY,
		.depth = 8
427 428 429 430
	}, {
		.name = "JPG",
		.fourcc = V4L2_PIX_FMT_JPEG,
		.depth = 24
431 432 433 434
	}, {
		.name = "MJPG",
		.fourcc = V4L2_PIX_FMT_MJPEG,
		.depth = 24
435 436 437
	}
};

438
static int norm_maxw(struct s2255_vc *vc)
439
{
440
	return (vc->std & V4L2_STD_525_60) ?
441 442 443
	    LINE_SZ_4CIFS_NTSC : LINE_SZ_4CIFS_PAL;
}

444
static int norm_maxh(struct s2255_vc *vc)
445
{
446
	return (vc->std & V4L2_STD_525_60) ?
447 448 449
	    (NUM_LINES_1CIFS_NTSC * 2) : (NUM_LINES_1CIFS_PAL * 2);
}

450
static int norm_minw(struct s2255_vc *vc)
451
{
452
	return (vc->std & V4L2_STD_525_60) ?
453 454 455
	    LINE_SZ_1CIFS_NTSC : LINE_SZ_1CIFS_PAL;
}

456
static int norm_minh(struct s2255_vc *vc)
457
{
458
	return (vc->std & V4L2_STD_525_60) ?
459 460 461 462
	    (NUM_LINES_1CIFS_NTSC) : (NUM_LINES_1CIFS_PAL);
}


463 464 465 466
/*
 * TODO: fixme: move YUV reordering to hardware
 * converts 2255 planar format to yuyv or uyvy
 */
467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
static void planar422p_to_yuv_packed(const unsigned char *in,
				     unsigned char *out,
				     int width, int height,
				     int fmt)
{
	unsigned char *pY;
	unsigned char *pCb;
	unsigned char *pCr;
	unsigned long size = height * width;
	unsigned int i;
	pY = (unsigned char *)in;
	pCr = (unsigned char *)in + height * width;
	pCb = (unsigned char *)in + height * width + (height * width / 2);
	for (i = 0; i < size * 2; i += 4) {
		out[i] = (fmt == V4L2_PIX_FMT_YUYV) ? *pY++ : *pCr++;
		out[i + 1] = (fmt == V4L2_PIX_FMT_YUYV) ? *pCr++ : *pY++;
		out[i + 2] = (fmt == V4L2_PIX_FMT_YUYV) ? *pY++ : *pCb++;
		out[i + 3] = (fmt == V4L2_PIX_FMT_YUYV) ? *pCb++ : *pY++;
	}
	return;
}

489
static void s2255_reset_dsppower(struct s2255_dev *dev)
490
{
491
	s2255_vendor_req(dev, 0x40, 0x0000, 0x0001, NULL, 0, 1);
492
	msleep(20);
493
	s2255_vendor_req(dev, 0x50, 0x0000, 0x0000, NULL, 0, 1);
494 495
	msleep(600);
	s2255_vendor_req(dev, 0x10, 0x0000, 0x0000, NULL, 0, 1);
496 497
	return;
}
498 499 500 501 502 503 504

/* kickstarts the firmware loading. from probe
 */
static void s2255_timer(unsigned long user_data)
{
	struct s2255_fw *data = (struct s2255_fw *)user_data;
	if (usb_submit_urb(data->fw_urb, GFP_ATOMIC) < 0) {
505
		pr_err("s2255: can't submit urb\n");
506 507 508
		atomic_set(&data->fw_state, S2255_FW_FAILED);
		/* wake up anything waiting for the firmware */
		wake_up(&data->wait_fw);
509 510 511 512 513 514
		return;
	}
}


/* this loads the firmware asynchronously.
515
   Originally this was done synchronously in probe.
516 517 518 519 520 521 522 523 524 525
   But it is better to load it asynchronously here than block
   inside the probe function. Blocking inside probe affects boot time.
   FW loading is triggered by the timer in the probe function
*/
static void s2255_fwchunk_complete(struct urb *urb)
{
	struct s2255_fw *data = urb->context;
	struct usb_device *udev = urb->dev;
	int len;
	if (urb->status) {
526
		dev_err(&udev->dev, "URB failed with status %d\n", urb->status);
527 528 529
		atomic_set(&data->fw_state, S2255_FW_FAILED);
		/* wake up anything waiting for the firmware */
		wake_up(&data->wait_fw);
530 531 532
		return;
	}
	if (data->fw_urb == NULL) {
533
		s2255_dev_err(&udev->dev, "disconnected\n");
534 535 536
		atomic_set(&data->fw_state, S2255_FW_FAILED);
		/* wake up anything waiting for the firmware */
		wake_up(&data->wait_fw);
537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564
		return;
	}
#define CHUNK_SIZE 512
	/* all USB transfers must be done with continuous kernel memory.
	   can't allocate more than 128k in current linux kernel, so
	   upload the firmware in chunks
	 */
	if (data->fw_loaded < data->fw_size) {
		len = (data->fw_loaded + CHUNK_SIZE) > data->fw_size ?
		    data->fw_size % CHUNK_SIZE : CHUNK_SIZE;

		if (len < CHUNK_SIZE)
			memset(data->pfw_data, 0, CHUNK_SIZE);

		memcpy(data->pfw_data,
		       (char *) data->fw->data + data->fw_loaded, len);

		usb_fill_bulk_urb(data->fw_urb, udev, usb_sndbulkpipe(udev, 2),
				  data->pfw_data, CHUNK_SIZE,
				  s2255_fwchunk_complete, data);
		if (usb_submit_urb(data->fw_urb, GFP_ATOMIC) < 0) {
			dev_err(&udev->dev, "failed submit URB\n");
			atomic_set(&data->fw_state, S2255_FW_FAILED);
			/* wake up anything waiting for the firmware */
			wake_up(&data->wait_fw);
			return;
		}
		data->fw_loaded += len;
565
	} else
566 567 568 569 570
		atomic_set(&data->fw_state, S2255_FW_LOADED_DSPWAIT);
	return;

}

571
static int s2255_got_frame(struct s2255_vc *vc, int jpgsize)
572 573
{
	struct s2255_buffer *buf;
574
	struct s2255_dev *dev = to_s2255_dev(vc->vdev.v4l2_dev);
575 576 577
	unsigned long flags = 0;
	int rc = 0;
	spin_lock_irqsave(&dev->slock, flags);
578
	if (list_empty(&vc->buf_list)) {
579
		dprintk(dev, 1, "No active queue to serve\n");
580 581 582
		rc = -1;
		goto unlock;
	}
583
	buf = list_entry(vc->buf_list.next,
584 585
			 struct s2255_buffer, vb.queue);
	list_del(&buf->vb.queue);
586
	v4l2_get_timestamp(&buf->vb.ts);
587
	s2255_fillbuff(vc, buf, jpgsize);
588
	wake_up(&buf->vb.done);
589
	dprintk(dev, 2, "%s: [buf/i] [%p/%d]\n", __func__, buf, buf->vb.i);
590 591
unlock:
	spin_unlock_irqrestore(&dev->slock, flags);
592
	return rc;
593 594 595 596 597 598 599 600
}

static const struct s2255_fmt *format_by_fourcc(int fourcc)
{
	unsigned int i;
	for (i = 0; i < ARRAY_SIZE(formats); i++) {
		if (-1 == formats[i].fourcc)
			continue;
601 602 603
		if (!jpeg_enable && ((formats[i].fourcc == V4L2_PIX_FMT_JPEG) ||
				     (formats[i].fourcc == V4L2_PIX_FMT_MJPEG)))
			continue;
604 605 606 607 608 609 610 611 612 613 614 615 616 617
		if (formats[i].fourcc == fourcc)
			return formats + i;
	}
	return NULL;
}

/* video buffer vmalloc implementation based partly on VIVI driver which is
 *          Copyright (c) 2006 by
 *                  Mauro Carvalho Chehab <mchehab--a.t--infradead.org>
 *                  Ted Walther <ted--a.t--enumera.com>
 *                  John Sokol <sokol--a.t--videotechnology.com>
 *                  http://v4l.videotechnology.com/
 *
 */
618
static void s2255_fillbuff(struct s2255_vc *vc,
619
			   struct s2255_buffer *buf, int jpgsize)
620 621 622 623 624
{
	int pos = 0;
	const char *tmpbuf;
	char *vbuf = videobuf_to_vmalloc(&buf->vb);
	unsigned long last_frame;
625
	struct s2255_dev *dev = vc->dev;
626 627 628

	if (!vbuf)
		return;
629
	last_frame = vc->last_frame;
630 631
	if (last_frame != -1) {
		tmpbuf =
632
		    (const char *)vc->buffer.frame[last_frame].lpvbits;
633 634 635 636 637 638 639 640 641 642 643
		switch (buf->fmt->fourcc) {
		case V4L2_PIX_FMT_YUYV:
		case V4L2_PIX_FMT_UYVY:
			planar422p_to_yuv_packed((const unsigned char *)tmpbuf,
						 vbuf, buf->vb.width,
						 buf->vb.height,
						 buf->fmt->fourcc);
			break;
		case V4L2_PIX_FMT_GREY:
			memcpy(vbuf, tmpbuf, buf->vb.width * buf->vb.height);
			break;
644
		case V4L2_PIX_FMT_JPEG:
645
		case V4L2_PIX_FMT_MJPEG:
646 647 648
			buf->vb.size = jpgsize;
			memcpy(vbuf, tmpbuf, buf->vb.size);
			break;
649 650 651 652 653
		case V4L2_PIX_FMT_YUV422P:
			memcpy(vbuf, tmpbuf,
			       buf->vb.width * buf->vb.height * 2);
			break;
		default:
654
			pr_info("s2255: unknown format?\n");
655
		}
656
		vc->last_frame = -1;
657
	} else {
658
		pr_err("s2255: =======no frame\n");
659 660
		return;
	}
661
	dprintk(dev, 2, "s2255fill at : Buffer 0x%08lx size= %d\n",
662 663
		(unsigned long)vbuf, pos);
	/* tell v4l buffer was filled */
664
	buf->vb.field_count = vc->frame_count * 2;
665
	v4l2_get_timestamp(&buf->vb.ts);
666 667 668 669 670 671 672 673 674 675 676 677
	buf->vb.state = VIDEOBUF_DONE;
}


/* ------------------------------------------------------------------
   Videobuf operations
   ------------------------------------------------------------------*/

static int buffer_setup(struct videobuf_queue *vq, unsigned int *count,
			unsigned int *size)
{
	struct s2255_fh *fh = vq->priv_data;
678 679
	struct s2255_vc *vc = fh->vc;
	*size = vc->width * vc->height * (vc->fmt->depth >> 3);
680 681 682 683

	if (0 == *count)
		*count = S2255_DEF_BUFS;

684 685
	if (*size * *count > vid_limit * 1024 * 1024)
		*count = (vid_limit * 1024 * 1024) / *size;
686 687 688 689 690 691 692 693 694 695 696 697 698 699

	return 0;
}

static void free_buffer(struct videobuf_queue *vq, struct s2255_buffer *buf)
{
	videobuf_vmalloc_free(&buf->vb);
	buf->vb.state = VIDEOBUF_NEEDS_INIT;
}

static int buffer_prepare(struct videobuf_queue *vq, struct videobuf_buffer *vb,
			  enum v4l2_field field)
{
	struct s2255_fh *fh = vq->priv_data;
700
	struct s2255_vc *vc = fh->vc;
701 702
	struct s2255_buffer *buf = container_of(vb, struct s2255_buffer, vb);
	int rc;
703 704
	int w = vc->width;
	int h = vc->height;
705
	dprintk(fh->dev, 4, "%s, field=%d\n", __func__, field);
706
	if (vc->fmt == NULL)
707 708
		return -EINVAL;

709 710 711 712
	if ((w < norm_minw(vc)) ||
	    (w > norm_maxw(vc)) ||
	    (h < norm_minh(vc)) ||
	    (h > norm_maxh(vc))) {
713
		dprintk(fh->dev, 4, "invalid buffer prepare\n");
714 715
		return -EINVAL;
	}
716
	buf->vb.size = w * h * (vc->fmt->depth >> 3);
717
	if (0 != buf->vb.baddr && buf->vb.bsize < buf->vb.size) {
718
		dprintk(fh->dev, 4, "invalid buffer prepare\n");
719 720 721
		return -EINVAL;
	}

722
	buf->fmt = vc->fmt;
723 724
	buf->vb.width = w;
	buf->vb.height = h;
725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743
	buf->vb.field = field;

	if (VIDEOBUF_NEEDS_INIT == buf->vb.state) {
		rc = videobuf_iolock(vq, &buf->vb, NULL);
		if (rc < 0)
			goto fail;
	}

	buf->vb.state = VIDEOBUF_PREPARED;
	return 0;
fail:
	free_buffer(vq, buf);
	return rc;
}

static void buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
{
	struct s2255_buffer *buf = container_of(vb, struct s2255_buffer, vb);
	struct s2255_fh *fh = vq->priv_data;
744
	struct s2255_vc *vc = fh->vc;
745
	dprintk(fh->dev, 1, "%s\n", __func__);
746
	buf->vb.state = VIDEOBUF_QUEUED;
747
	list_add_tail(&buf->vb.queue, &vc->buf_list);
748 749 750 751 752 753 754
}

static void buffer_release(struct videobuf_queue *vq,
			   struct videobuf_buffer *vb)
{
	struct s2255_buffer *buf = container_of(vb, struct s2255_buffer, vb);
	struct s2255_fh *fh = vq->priv_data;
755
	dprintk(fh->dev, 4, "%s %d\n", __func__, fh->vc->idx);
756 757 758 759 760 761 762 763 764 765 766
	free_buffer(vq, buf);
}

static struct videobuf_queue_ops s2255_video_qops = {
	.buf_setup = buffer_setup,
	.buf_prepare = buffer_prepare,
	.buf_queue = buffer_queue,
	.buf_release = buffer_release,
};


767
static int res_get(struct s2255_fh *fh)
768
{
769
	struct s2255_vc *vc = fh->vc;
P
Pete Eberlein 已提交
770
	/* is it free? */
771
	if (vc->resources)
P
Pete Eberlein 已提交
772
		return 0; /* no, someone else uses it */
773
	/* it's free, grab it */
774
	vc->resources = 1;
775
	fh->resources = 1;
776
	dprintk(fh->dev, 1, "s2255: res: get\n");
777 778 779
	return 1;
}

780
static int res_locked(struct s2255_fh *fh)
781
{
782
	return fh->vc->resources;
783 784
}

785 786
static int res_check(struct s2255_fh *fh)
{
787
	return fh->resources;
788 789 790
}


791
static void res_free(struct s2255_fh *fh)
792
{
793 794
	struct s2255_vc *vc = fh->vc;
	vc->resources = 0;
795
	fh->resources = 0;
796 797 798 799 800 801 802
}

static int vidioc_querycap(struct file *file, void *priv,
			   struct v4l2_capability *cap)
{
	struct s2255_fh *fh = file->private_data;
	struct s2255_dev *dev = fh->dev;
803

804 805
	strlcpy(cap->driver, "s2255", sizeof(cap->driver));
	strlcpy(cap->card, "s2255", sizeof(cap->card));
806
	usb_make_path(dev->udev, cap->bus_info, sizeof(cap->bus_info));
807 808
	cap->device_caps = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_STREAMING;
	cap->capabilities = cap->device_caps | V4L2_CAP_DEVICE_CAPS;
809 810 811 812 813 814
	return 0;
}

static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
			       struct v4l2_fmtdesc *f)
{
815
	int index = f->index;
816 817 818

	if (index >= ARRAY_SIZE(formats))
		return -EINVAL;
819 820 821
	if (!jpeg_enable && ((formats[index].fourcc == V4L2_PIX_FMT_JPEG) ||
			(formats[index].fourcc == V4L2_PIX_FMT_MJPEG)))
		return -EINVAL;
822 823 824 825 826 827 828 829 830
	strlcpy(f->description, formats[index].name, sizeof(f->description));
	f->pixelformat = formats[index].fourcc;
	return 0;
}

static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
			    struct v4l2_format *f)
{
	struct s2255_fh *fh = priv;
831 832
	struct s2255_vc *vc = fh->vc;
	int is_ntsc = vc->std & V4L2_STD_525_60;
833

834 835
	f->fmt.pix.width = vc->width;
	f->fmt.pix.height = vc->height;
H
Hans Verkuil 已提交
836 837 838 839 840
	if (f->fmt.pix.height >=
	    (is_ntsc ? NUM_LINES_1CIFS_NTSC : NUM_LINES_1CIFS_PAL) * 2)
		f->fmt.pix.field = V4L2_FIELD_INTERLACED;
	else
		f->fmt.pix.field = V4L2_FIELD_TOP;
841 842
	f->fmt.pix.pixelformat = vc->fmt->fourcc;
	f->fmt.pix.bytesperline = f->fmt.pix.width * (vc->fmt->depth >> 3);
843
	f->fmt.pix.sizeimage = f->fmt.pix.height * f->fmt.pix.bytesperline;
844 845
	f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
	f->fmt.pix.priv = 0;
846
	return 0;
847 848 849 850 851 852 853 854
}

static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
			      struct v4l2_format *f)
{
	const struct s2255_fmt *fmt;
	enum v4l2_field field;
	struct s2255_fh *fh = priv;
855 856
	struct s2255_vc *vc = fh->vc;
	int is_ntsc = vc->std & V4L2_STD_525_60;
857 858 859 860 861 862 863 864

	fmt = format_by_fourcc(f->fmt.pix.pixelformat);

	if (fmt == NULL)
		return -EINVAL;

	field = f->fmt.pix.field;

865
	dprintk(fh->dev, 50, "%s NTSC: %d suggested width: %d, height: %d\n",
866
		__func__, is_ntsc, f->fmt.pix.width, f->fmt.pix.height);
867 868 869 870
	if (is_ntsc) {
		/* NTSC */
		if (f->fmt.pix.height >= NUM_LINES_1CIFS_NTSC * 2) {
			f->fmt.pix.height = NUM_LINES_1CIFS_NTSC * 2;
H
Hans Verkuil 已提交
871
			field = V4L2_FIELD_INTERLACED;
872 873
		} else {
			f->fmt.pix.height = NUM_LINES_1CIFS_NTSC;
H
Hans Verkuil 已提交
874
			field = V4L2_FIELD_TOP;
875 876 877 878 879 880 881 882 883 884 885 886 887
		}
		if (f->fmt.pix.width >= LINE_SZ_4CIFS_NTSC)
			f->fmt.pix.width = LINE_SZ_4CIFS_NTSC;
		else if (f->fmt.pix.width >= LINE_SZ_2CIFS_NTSC)
			f->fmt.pix.width = LINE_SZ_2CIFS_NTSC;
		else if (f->fmt.pix.width >= LINE_SZ_1CIFS_NTSC)
			f->fmt.pix.width = LINE_SZ_1CIFS_NTSC;
		else
			f->fmt.pix.width = LINE_SZ_1CIFS_NTSC;
	} else {
		/* PAL */
		if (f->fmt.pix.height >= NUM_LINES_1CIFS_PAL * 2) {
			f->fmt.pix.height = NUM_LINES_1CIFS_PAL * 2;
H
Hans Verkuil 已提交
888
			field = V4L2_FIELD_INTERLACED;
889 890
		} else {
			f->fmt.pix.height = NUM_LINES_1CIFS_PAL;
H
Hans Verkuil 已提交
891
			field = V4L2_FIELD_TOP;
892
		}
H
Hans Verkuil 已提交
893
		if (f->fmt.pix.width >= LINE_SZ_4CIFS_PAL)
894
			f->fmt.pix.width = LINE_SZ_4CIFS_PAL;
H
Hans Verkuil 已提交
895
		else if (f->fmt.pix.width >= LINE_SZ_2CIFS_PAL)
896
			f->fmt.pix.width = LINE_SZ_2CIFS_PAL;
H
Hans Verkuil 已提交
897
		else if (f->fmt.pix.width >= LINE_SZ_1CIFS_PAL)
898
			f->fmt.pix.width = LINE_SZ_1CIFS_PAL;
H
Hans Verkuil 已提交
899
		else
900 901 902 903 904
			f->fmt.pix.width = LINE_SZ_1CIFS_PAL;
	}
	f->fmt.pix.field = field;
	f->fmt.pix.bytesperline = (f->fmt.pix.width * fmt->depth) >> 3;
	f->fmt.pix.sizeimage = f->fmt.pix.height * f->fmt.pix.bytesperline;
905 906
	f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
	f->fmt.pix.priv = 0;
907
	dprintk(fh->dev, 50, "%s: set width %d height %d field %d\n", __func__,
908
		f->fmt.pix.width, f->fmt.pix.height, f->fmt.pix.field);
909 910 911 912 913 914 915
	return 0;
}

static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
			    struct v4l2_format *f)
{
	struct s2255_fh *fh = priv;
916
	struct s2255_vc *vc = fh->vc;
917 918
	const struct s2255_fmt *fmt;
	struct videobuf_queue *q = &fh->vb_vidq;
919
	struct s2255_mode mode;
920 921 922 923 924
	int ret;

	ret = vidioc_try_fmt_vid_cap(file, fh, f);

	if (ret < 0)
925
		return ret;
926 927 928 929 930 931 932 933 934

	fmt = format_by_fourcc(f->fmt.pix.pixelformat);

	if (fmt == NULL)
		return -EINVAL;

	mutex_lock(&q->vb_lock);

	if (videobuf_queue_is_busy(&fh->vb_vidq)) {
935
		dprintk(fh->dev, 1, "queue busy\n");
936 937 938 939
		ret = -EBUSY;
		goto out_s_fmt;
	}

940
	if (res_locked(fh)) {
941
		dprintk(fh->dev, 1, "%s: channel busy\n", __func__);
942 943 944
		ret = -EBUSY;
		goto out_s_fmt;
	}
945 946 947 948
	mode = vc->mode;
	vc->fmt = fmt;
	vc->width = f->fmt.pix.width;
	vc->height = f->fmt.pix.height;
949 950
	fh->vb_vidq.field = f->fmt.pix.field;
	fh->type = f->type;
951 952 953
	if (vc->width > norm_minw(vc)) {
		if (vc->height > norm_minh(vc)) {
			if (vc->cap_parm.capturemode &
954
			    V4L2_MODE_HIGHQUALITY)
955
				mode.scale = SCALE_4CIFSI;
956
			else
957
				mode.scale = SCALE_4CIFS;
958
		} else
959
			mode.scale = SCALE_2CIFS;
960 961

	} else {
962
		mode.scale = SCALE_1CIFS;
963 964
	}
	/* color mode */
965
	switch (vc->fmt->fourcc) {
966
	case V4L2_PIX_FMT_GREY:
967 968
		mode.color &= ~MASK_COLOR;
		mode.color |= COLOR_Y8;
969
		break;
970
	case V4L2_PIX_FMT_JPEG:
971
	case V4L2_PIX_FMT_MJPEG:
972 973
		mode.color &= ~MASK_COLOR;
		mode.color |= COLOR_JPG;
974
		mode.color |= (vc->jpegqual << 8);
975
		break;
976
	case V4L2_PIX_FMT_YUV422P:
977 978
		mode.color &= ~MASK_COLOR;
		mode.color |= COLOR_YUVPL;
979 980 981 982
		break;
	case V4L2_PIX_FMT_YUYV:
	case V4L2_PIX_FMT_UYVY:
	default:
983 984
		mode.color &= ~MASK_COLOR;
		mode.color |= COLOR_YUVPK;
985 986
		break;
	}
987
	if ((mode.color & MASK_COLOR) != (vc->mode.color & MASK_COLOR))
988
		mode.restart = 1;
989
	else if (mode.scale != vc->mode.scale)
990
		mode.restart = 1;
991
	else if (mode.format != vc->mode.format)
992
		mode.restart = 1;
993 994
	vc->mode = mode;
	(void) s2255_set_mode(vc, &mode);
995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061
	ret = 0;
out_s_fmt:
	mutex_unlock(&q->vb_lock);
	return ret;
}

static int vidioc_reqbufs(struct file *file, void *priv,
			  struct v4l2_requestbuffers *p)
{
	int rc;
	struct s2255_fh *fh = priv;
	rc = videobuf_reqbufs(&fh->vb_vidq, p);
	return rc;
}

static int vidioc_querybuf(struct file *file, void *priv, struct v4l2_buffer *p)
{
	int rc;
	struct s2255_fh *fh = priv;
	rc = videobuf_querybuf(&fh->vb_vidq, p);
	return rc;
}

static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *p)
{
	int rc;
	struct s2255_fh *fh = priv;
	rc = videobuf_qbuf(&fh->vb_vidq, p);
	return rc;
}

static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *p)
{
	int rc;
	struct s2255_fh *fh = priv;
	rc = videobuf_dqbuf(&fh->vb_vidq, p, file->f_flags & O_NONBLOCK);
	return rc;
}

/* write to the configuration pipe, synchronously */
static int s2255_write_config(struct usb_device *udev, unsigned char *pbuf,
			      int size)
{
	int pipe;
	int done;
	long retval = -1;
	if (udev) {
		pipe = usb_sndbulkpipe(udev, S2255_CONFIG_EP);
		retval = usb_bulk_msg(udev, pipe, pbuf, size, &done, 500);
	}
	return retval;
}

static u32 get_transfer_size(struct s2255_mode *mode)
{
	int linesPerFrame = LINE_SZ_DEF;
	int pixelsPerLine = NUM_LINES_DEF;
	u32 outImageSize;
	u32 usbInSize;
	unsigned int mask_mult;

	if (mode == NULL)
		return 0;

	if (mode->format == FORMAT_NTSC) {
		switch (mode->scale) {
		case SCALE_4CIFS:
1062
		case SCALE_4CIFSI:
1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079
			linesPerFrame = NUM_LINES_4CIFS_NTSC * 2;
			pixelsPerLine = LINE_SZ_4CIFS_NTSC;
			break;
		case SCALE_2CIFS:
			linesPerFrame = NUM_LINES_2CIFS_NTSC;
			pixelsPerLine = LINE_SZ_2CIFS_NTSC;
			break;
		case SCALE_1CIFS:
			linesPerFrame = NUM_LINES_1CIFS_NTSC;
			pixelsPerLine = LINE_SZ_1CIFS_NTSC;
			break;
		default:
			break;
		}
	} else if (mode->format == FORMAT_PAL) {
		switch (mode->scale) {
		case SCALE_4CIFS:
1080
		case SCALE_4CIFSI:
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
			linesPerFrame = NUM_LINES_4CIFS_PAL * 2;
			pixelsPerLine = LINE_SZ_4CIFS_PAL;
			break;
		case SCALE_2CIFS:
			linesPerFrame = NUM_LINES_2CIFS_PAL;
			pixelsPerLine = LINE_SZ_2CIFS_PAL;
			break;
		case SCALE_1CIFS:
			linesPerFrame = NUM_LINES_1CIFS_PAL;
			pixelsPerLine = LINE_SZ_1CIFS_PAL;
			break;
		default:
			break;
		}
	}
	outImageSize = linesPerFrame * pixelsPerLine;
1097
	if ((mode->color & MASK_COLOR) != COLOR_Y8) {
1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111
		/* 2 bytes/pixel if not monochrome */
		outImageSize *= 2;
	}

	/* total bytes to send including prefix and 4K padding;
	   must be a multiple of USB_READ_SIZE */
	usbInSize = outImageSize + PREFIX_SIZE;	/* always send prefix */
	mask_mult = 0xffffffffUL - DEF_USB_BLOCK + 1;
	/* if size not a multiple of USB_READ_SIZE */
	if (usbInSize & ~mask_mult)
		usbInSize = (usbInSize & mask_mult) + (DEF_USB_BLOCK);
	return usbInSize;
}

1112
static void s2255_print_cfg(struct s2255_dev *sdev, struct s2255_mode *mode)
1113 1114 1115
{
	struct device *dev = &sdev->udev->dev;
	dev_info(dev, "------------------------------------------------\n");
1116 1117
	dev_info(dev, "format: %d\nscale %d\n", mode->format, mode->scale);
	dev_info(dev, "fdec: %d\ncolor %d\n", mode->fdec, mode->color);
1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129
	dev_info(dev, "bright: 0x%x\n", mode->bright);
	dev_info(dev, "------------------------------------------------\n");
}

/*
 * set mode is the function which controls the DSP.
 * the restart parameter in struct s2255_mode should be set whenever
 * the image size could change via color format, video system or image
 * size.
 * When the restart parameter is set, we sleep for ONE frame to allow the
 * DSP time to get the new frame
 */
1130
static int s2255_set_mode(struct s2255_vc *vc,
1131 1132 1133
			  struct s2255_mode *mode)
{
	int res;
1134
	__le32 *buffer;
1135
	unsigned long chn_rev;
1136
	struct s2255_dev *dev = to_s2255_dev(vc->vdev.v4l2_dev);
1137 1138
	int i;

1139 1140
	chn_rev = G_chnmap[vc->idx];
	dprintk(dev, 3, "%s channel: %d\n", __func__, vc->idx);
1141
	/* if JPEG, set the quality */
1142 1143 1144 1145
	if ((mode->color & MASK_COLOR) == COLOR_JPG) {
		mode->color &= ~MASK_COLOR;
		mode->color |= COLOR_JPG;
		mode->color &= ~MASK_JPG_QUALITY;
1146
		mode->color |= (vc->jpegqual << 8);
1147
	}
1148
	/* save the mode */
1149 1150 1151
	vc->mode = *mode;
	vc->req_image_size = get_transfer_size(mode);
	dprintk(dev, 1, "%s: reqsize %ld\n", __func__, vc->req_image_size);
1152 1153 1154 1155 1156 1157 1158
	buffer = kzalloc(512, GFP_KERNEL);
	if (buffer == NULL) {
		dev_err(&dev->udev->dev, "out of mem\n");
		return -ENOMEM;
	}
	/* set the mode */
	buffer[0] = IN_DATA_TOKEN;
1159
	buffer[1] = (__le32) cpu_to_le32(chn_rev);
1160
	buffer[2] = CMD_SET_MODE;
1161
	for (i = 0; i < sizeof(struct s2255_mode) / sizeof(u32); i++)
1162 1163
		buffer[3 + i] = cpu_to_le32(((u32 *)&vc->mode)[i]);
	vc->setmode_ready = 0;
1164 1165
	res = s2255_write_config(dev->udev, (unsigned char *)buffer, 512);
	if (debug)
1166
		s2255_print_cfg(dev, mode);
1167 1168
	kfree(buffer);
	/* wait at least 3 frames before continuing */
1169
	if (mode->restart) {
1170 1171
		wait_event_timeout(vc->wait_setmode,
				   (vc->setmode_ready != 0),
1172
				   msecs_to_jiffies(S2255_SETMODE_TIMEOUT));
1173
		if (vc->setmode_ready != 1) {
1174
			dprintk(dev, 0, "s2255: no set mode response\n");
1175 1176 1177
			res = -EFAULT;
		}
	}
1178
	/* clear the restart flag */
1179 1180
	vc->mode.restart = 0;
	dprintk(dev, 1, "%s chn %d, result: %d\n", __func__, vc->idx, res);
1181 1182 1183
	return res;
}

1184
static int s2255_cmd_status(struct s2255_vc *vc, u32 *pstatus)
1185 1186
{
	int res;
1187
	__le32 *buffer;
1188
	u32 chn_rev;
1189 1190 1191
	struct s2255_dev *dev = to_s2255_dev(vc->vdev.v4l2_dev);
	chn_rev = G_chnmap[vc->idx];
	dprintk(dev, 4, "%s chan %d\n", __func__, vc->idx);
1192 1193 1194 1195 1196 1197 1198
	buffer = kzalloc(512, GFP_KERNEL);
	if (buffer == NULL) {
		dev_err(&dev->udev->dev, "out of mem\n");
		return -ENOMEM;
	}
	/* form the get vid status command */
	buffer[0] = IN_DATA_TOKEN;
1199
	buffer[1] = (__le32) cpu_to_le32(chn_rev);
1200 1201
	buffer[2] = CMD_STATUS;
	*pstatus = 0;
1202
	vc->vidstatus_ready = 0;
1203 1204
	res = s2255_write_config(dev->udev, (unsigned char *)buffer, 512);
	kfree(buffer);
1205 1206
	wait_event_timeout(vc->wait_vidstatus,
			   (vc->vidstatus_ready != 0),
1207
			   msecs_to_jiffies(S2255_VIDSTATUS_TIMEOUT));
1208
	if (vc->vidstatus_ready != 1) {
1209
		dprintk(dev, 0, "s2255: no vidstatus response\n");
1210 1211
		res = -EFAULT;
	}
1212
	*pstatus = vc->vidstatus;
1213
	dprintk(dev, 4, "%s, vid status %d\n", __func__, *pstatus);
1214 1215 1216
	return res;
}

1217 1218 1219 1220 1221
static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
{
	int res;
	struct s2255_fh *fh = priv;
	struct s2255_dev *dev = fh->dev;
1222
	struct s2255_vc *vc = fh->vc;
1223
	int j;
1224
	dprintk(dev, 4, "%s\n", __func__);
1225 1226 1227 1228 1229 1230 1231 1232 1233
	if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) {
		dev_err(&dev->udev->dev, "invalid fh type0\n");
		return -EINVAL;
	}
	if (i != fh->type) {
		dev_err(&dev->udev->dev, "invalid fh type1\n");
		return -EINVAL;
	}

1234
	if (!res_get(fh)) {
1235
		s2255_dev_err(&dev->udev->dev, "stream busy\n");
1236 1237
		return -EBUSY;
	}
1238 1239 1240 1241
	vc->last_frame = -1;
	vc->bad_payload = 0;
	vc->cur_frame = 0;
	vc->frame_count = 0;
1242
	for (j = 0; j < SYS_FRAMES; j++) {
1243 1244
		vc->buffer.frame[j].ulState = S2255_READ_IDLE;
		vc->buffer.frame[j].cur_size = 0;
1245 1246 1247
	}
	res = videobuf_streamon(&fh->vb_vidq);
	if (res == 0) {
1248 1249
		s2255_start_acquire(vc);
		vc->b_acquire = 1;
1250 1251 1252
	} else
		res_free(fh);

1253 1254 1255 1256 1257 1258
	return res;
}

static int vidioc_streamoff(struct file *file, void *priv, enum v4l2_buf_type i)
{
	struct s2255_fh *fh = priv;
1259
	dprintk(fh->dev, 4, "%s\n, channel: %d", __func__, fh->vc->idx);
1260
	if (fh->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) {
1261
		dprintk(fh->dev, 1, "invalid fh type0\n");
1262 1263
		return -EINVAL;
	}
1264
	if (i != fh->type)
1265
		return -EINVAL;
1266
	s2255_stop_acquire(fh->vc);
1267
	videobuf_streamoff(&fh->vb_vidq);
1268
	res_free(fh);
1269
	return 0;
1270 1271
}

1272
static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id i)
1273 1274
{
	struct s2255_fh *fh = priv;
1275
	struct s2255_mode mode;
1276
	struct videobuf_queue *q = &fh->vb_vidq;
1277
	struct s2255_vc *vc = fh->vc;
1278
	int ret = 0;
1279

1280
	mutex_lock(&q->vb_lock);
1281
	if (res_locked(fh)) {
1282
		dprintk(fh->dev, 1, "can't change standard after started\n");
1283 1284 1285
		ret = -EBUSY;
		goto out_s_std;
	}
1286
	mode = fh->vc->mode;
1287
	if (i & V4L2_STD_525_60) {
1288
		dprintk(fh->dev, 4, "%s 60 Hz\n", __func__);
1289
		/* if changing format, reset frame decimation/intervals */
1290 1291 1292 1293
		if (mode.format != FORMAT_NTSC) {
			mode.restart = 1;
			mode.format = FORMAT_NTSC;
			mode.fdec = FDEC_1;
1294 1295
			vc->width = LINE_SZ_4CIFS_NTSC;
			vc->height = NUM_LINES_4CIFS_NTSC * 2;
1296
		}
1297
	} else if (i & V4L2_STD_625_50) {
1298
		dprintk(fh->dev, 4, "%s 50 Hz\n", __func__);
1299 1300 1301 1302
		if (mode.format != FORMAT_PAL) {
			mode.restart = 1;
			mode.format = FORMAT_PAL;
			mode.fdec = FDEC_1;
1303 1304
			vc->width = LINE_SZ_4CIFS_PAL;
			vc->height = NUM_LINES_4CIFS_PAL * 2;
1305
		}
1306 1307
	} else {
		ret = -EINVAL;
1308
		goto out_s_std;
1309
	}
1310
	fh->vc->std = i;
1311
	if (mode.restart)
1312
		s2255_set_mode(fh->vc, &mode);
1313 1314 1315 1316 1317
out_s_std:
	mutex_unlock(&q->vb_lock);
	return ret;
}

1318 1319 1320 1321
static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id *i)
{
	struct s2255_fh *fh = priv;

1322
	*i = fh->vc->std;
1323 1324 1325
	return 0;
}

1326 1327 1328 1329 1330 1331 1332 1333 1334 1335
/* Sensoray 2255 is a multiple channel capture device.
   It does not have a "crossbar" of inputs.
   We use one V4L device per channel. The user must
   be aware that certain combinations are not allowed.
   For instance, you cannot do full FPS on more than 2 channels(2 videodevs)
   at once in color(you can do full fps on 4 channels with greyscale.
*/
static int vidioc_enum_input(struct file *file, void *priv,
			     struct v4l2_input *inp)
{
1336 1337
	struct s2255_fh *fh = priv;
	struct s2255_dev *dev = fh->dev;
1338
	struct s2255_vc *vc = fh->vc;
1339
	u32 status = 0;
1340 1341 1342 1343
	if (inp->index != 0)
		return -EINVAL;
	inp->type = V4L2_INPUT_TYPE_CAMERA;
	inp->std = S2255_NORMS;
1344 1345 1346
	inp->status = 0;
	if (dev->dsp_fw_ver >= S2255_MIN_DSP_STATUS) {
		int rc;
1347
		rc = s2255_cmd_status(fh->vc, &status);
1348 1349
		dprintk(dev, 4, "s2255_cmd_status rc: %d status %x\n",
			rc, status);
1350 1351 1352 1353
		if (rc == 0)
			inp->status =  (status & 0x01) ? 0
				: V4L2_IN_ST_NO_SIGNAL;
	}
1354 1355 1356 1357 1358 1359
	switch (dev->pid) {
	case 0x2255:
	default:
		strlcpy(inp->name, "Composite", sizeof(inp->name));
		break;
	case 0x2257:
1360
		strlcpy(inp->name, (vc->idx < 2) ? "Composite" : "S-Video",
1361 1362 1363
			sizeof(inp->name));
		break;
	}
1364
	return 0;
1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378
}

static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
{
	*i = 0;
	return 0;
}
static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
{
	if (i > 0)
		return -EINVAL;
	return 0;
}

1379
static int s2255_s_ctrl(struct v4l2_ctrl *ctrl)
1380
{
1381 1382
	struct s2255_vc *vc =
		container_of(ctrl->handler, struct s2255_vc, hdl);
1383
	struct s2255_mode mode;
1384
	mode = vc->mode;
1385 1386 1387
	/* update the mode to the corresponding value */
	switch (ctrl->id) {
	case V4L2_CID_BRIGHTNESS:
1388
		mode.bright = ctrl->val;
1389 1390
		break;
	case V4L2_CID_CONTRAST:
1391
		mode.contrast = ctrl->val;
1392 1393
		break;
	case V4L2_CID_HUE:
1394
		mode.hue = ctrl->val;
1395 1396
		break;
	case V4L2_CID_SATURATION:
1397
		mode.saturation = ctrl->val;
1398
		break;
1399
	case V4L2_CID_S2255_COLORFILTER:
1400
		mode.color &= ~MASK_INPUT_TYPE;
1401
		mode.color |= !ctrl->val << 16;
1402
		break;
1403
	case V4L2_CID_JPEG_COMPRESSION_QUALITY:
1404
		vc->jpegqual = ctrl->val;
1405
		return 0;
1406 1407
	default:
		return -EINVAL;
1408
	}
1409
	mode.restart = 0;
1410 1411 1412 1413
	/* set mode here.  Note: stream does not need restarted.
	   some V4L programs restart stream unnecessarily
	   after a s_crtl.
	*/
1414
	s2255_set_mode(vc, &mode);
1415
	return 0;
1416 1417
}

1418 1419 1420 1421
static int vidioc_g_jpegcomp(struct file *file, void *priv,
			 struct v4l2_jpegcompression *jc)
{
	struct s2255_fh *fh = priv;
1422
	struct s2255_vc *vc = fh->vc;
1423 1424

	memset(jc, 0, sizeof(*jc));
1425
	jc->quality = vc->jpegqual;
1426
	dprintk(fh->dev, 2, "%s: quality %d\n", __func__, jc->quality);
1427 1428 1429 1430
	return 0;
}

static int vidioc_s_jpegcomp(struct file *file, void *priv,
1431
			 const struct v4l2_jpegcompression *jc)
1432 1433
{
	struct s2255_fh *fh = priv;
1434
	struct s2255_vc *vc = fh->vc;
1435 1436
	if (jc->quality < 0 || jc->quality > 100)
		return -EINVAL;
1437
	v4l2_ctrl_s_ctrl(vc->jpegqual_ctrl, jc->quality);
1438
	dprintk(fh->dev, 2, "%s: quality %d\n", __func__, jc->quality);
1439 1440
	return 0;
}
1441 1442 1443 1444 1445

static int vidioc_g_parm(struct file *file, void *priv,
			 struct v4l2_streamparm *sp)
{
	struct s2255_fh *fh = priv;
1446
	__u32 def_num, def_dem;
1447
	struct s2255_vc *vc = fh->vc;
1448 1449
	if (sp->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;
1450
	sp->parm.capture.capability = V4L2_CAP_TIMEPERFRAME;
1451 1452 1453
	sp->parm.capture.capturemode = vc->cap_parm.capturemode;
	def_num = (vc->mode.format == FORMAT_NTSC) ? 1001 : 1000;
	def_dem = (vc->mode.format == FORMAT_NTSC) ? 30000 : 25000;
1454
	sp->parm.capture.timeperframe.denominator = def_dem;
1455
	switch (vc->mode.fdec) {
1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469
	default:
	case FDEC_1:
		sp->parm.capture.timeperframe.numerator = def_num;
		break;
	case FDEC_2:
		sp->parm.capture.timeperframe.numerator = def_num * 2;
		break;
	case FDEC_3:
		sp->parm.capture.timeperframe.numerator = def_num * 3;
		break;
	case FDEC_5:
		sp->parm.capture.timeperframe.numerator = def_num * 5;
		break;
	}
1470 1471
	dprintk(fh->dev, 4, "%s capture mode, %d timeperframe %d/%d\n",
		__func__,
1472 1473 1474
		sp->parm.capture.capturemode,
		sp->parm.capture.timeperframe.numerator,
		sp->parm.capture.timeperframe.denominator);
1475 1476 1477 1478 1479 1480 1481
	return 0;
}

static int vidioc_s_parm(struct file *file, void *priv,
			 struct v4l2_streamparm *sp)
{
	struct s2255_fh *fh = priv;
1482
	struct s2255_vc *vc = fh->vc;
1483
	struct s2255_mode mode;
1484 1485
	int fdec = FDEC_1;
	__u32 def_num, def_dem;
1486 1487
	if (sp->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;
1488
	mode = vc->mode;
1489
	/* high quality capture mode requires a stream restart */
1490
	if (vc->cap_parm.capturemode
1491
	    != sp->parm.capture.capturemode && res_locked(fh))
1492
		return -EBUSY;
1493 1494
	def_num = (mode.format == FORMAT_NTSC) ? 1001 : 1000;
	def_dem = (mode.format == FORMAT_NTSC) ? 30000 : 25000;
1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508
	if (def_dem != sp->parm.capture.timeperframe.denominator)
		sp->parm.capture.timeperframe.numerator = def_num;
	else if (sp->parm.capture.timeperframe.numerator <= def_num)
		sp->parm.capture.timeperframe.numerator = def_num;
	else if (sp->parm.capture.timeperframe.numerator <= (def_num * 2)) {
		sp->parm.capture.timeperframe.numerator = def_num * 2;
		fdec = FDEC_2;
	} else if (sp->parm.capture.timeperframe.numerator <= (def_num * 3)) {
		sp->parm.capture.timeperframe.numerator = def_num * 3;
		fdec = FDEC_3;
	} else {
		sp->parm.capture.timeperframe.numerator = def_num * 5;
		fdec = FDEC_5;
	}
1509
	mode.fdec = fdec;
1510
	sp->parm.capture.timeperframe.denominator = def_dem;
1511
	s2255_set_mode(vc, &mode);
1512
	dprintk(fh->dev, 4, "%s capture mode, %d timeperframe %d/%d, fdec %d\n",
1513 1514 1515 1516 1517 1518
		__func__,
		sp->parm.capture.capturemode,
		sp->parm.capture.timeperframe.numerator,
		sp->parm.capture.timeperframe.denominator, fdec);
	return 0;
}
1519

1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535
#define NUM_SIZE_ENUMS 3
static const struct v4l2_frmsize_discrete ntsc_sizes[] = {
	{ 640, 480 },
	{ 640, 240 },
	{ 320, 240 },
};
static const struct v4l2_frmsize_discrete pal_sizes[] = {
	{ 704, 576 },
	{ 704, 288 },
	{ 352, 288 },
};

static int vidioc_enum_framesizes(struct file *file, void *priv,
			    struct v4l2_frmsizeenum *fe)
{
	struct s2255_fh *fh = priv;
1536 1537
	struct s2255_vc *vc = fh->vc;
	int is_ntsc = vc->std & V4L2_STD_525_60;
1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550
	const struct s2255_fmt *fmt;

	if (fe->index >= NUM_SIZE_ENUMS)
		return -EINVAL;

	fmt = format_by_fourcc(fe->pixel_format);
	if (fmt == NULL)
		return -EINVAL;
	fe->type = V4L2_FRMSIZE_TYPE_DISCRETE;
	fe->discrete = is_ntsc ?  ntsc_sizes[fe->index] : pal_sizes[fe->index];
	return 0;
}

1551 1552 1553
static int vidioc_enum_frameintervals(struct file *file, void *priv,
			    struct v4l2_frmivalenum *fe)
{
1554
	struct s2255_fh *fh = priv;
1555
	struct s2255_vc *vc = fh->vc;
1556 1557
	const struct s2255_fmt *fmt;
	const struct v4l2_frmsize_discrete *sizes;
1558
	int is_ntsc = vc->std & V4L2_STD_525_60;
1559 1560
#define NUM_FRAME_ENUMS 4
	int frm_dec[NUM_FRAME_ENUMS] = {1, 2, 3, 5};
1561 1562
	int i;

1563
	if (fe->index >= NUM_FRAME_ENUMS)
1564
		return -EINVAL;
1565 1566 1567

	fmt = format_by_fourcc(fe->pixel_format);
	if (fmt == NULL)
1568
		return -EINVAL;
1569 1570 1571 1572 1573 1574 1575 1576 1577

	sizes = is_ntsc ? ntsc_sizes : pal_sizes;
	for (i = 0; i < NUM_SIZE_ENUMS; i++, sizes++)
		if (fe->width == sizes->width &&
		    fe->height == sizes->height)
			break;
	if (i == NUM_SIZE_ENUMS)
		return -EINVAL;

1578 1579 1580
	fe->type = V4L2_FRMIVAL_TYPE_DISCRETE;
	fe->discrete.denominator = is_ntsc ? 30000 : 25000;
	fe->discrete.numerator = (is_ntsc ? 1001 : 1000) * frm_dec[fe->index];
1581 1582
	dprintk(fh->dev, 4, "%s discrete %d/%d\n", __func__,
		fe->discrete.numerator,
1583
		fe->discrete.denominator);
1584 1585
	return 0;
}
1586

1587
static int __s2255_open(struct file *file)
1588
{
1589
	struct video_device *vdev = video_devdata(file);
1590
	struct s2255_vc *vc = video_drvdata(file);
1591
	struct s2255_dev *dev = to_s2255_dev(vdev->v4l2_dev);
1592
	struct s2255_fh *fh;
1593
	enum v4l2_buf_type type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1594
	int state;
1595
	dprintk(dev, 1, "s2255: open called (dev=%s)\n",
1596
		video_device_node_name(vdev));
1597 1598 1599
	state = atomic_read(&dev->fw_data->fw_state);
	switch (state) {
	case S2255_FW_DISCONNECTING:
1600 1601
		return -ENODEV;
	case S2255_FW_FAILED:
1602 1603
		s2255_dev_err(&dev->udev->dev,
			"firmware load failed. retrying.\n");
1604
		s2255_fwload_start(dev, 1);
1605
		wait_event_timeout(dev->fw_data->wait_fw,
1606 1607 1608 1609
				   ((atomic_read(&dev->fw_data->fw_state)
				     == S2255_FW_SUCCESS) ||
				    (atomic_read(&dev->fw_data->fw_state)
				     == S2255_FW_DISCONNECTING)),
1610
				   msecs_to_jiffies(S2255_LOAD_TIMEOUT));
1611 1612
		/* state may have changed, re-read */
		state = atomic_read(&dev->fw_data->fw_state);
1613 1614 1615
		break;
	case S2255_FW_NOTLOADED:
	case S2255_FW_LOADED_DSPWAIT:
1616 1617
		/* give S2255_LOAD_TIMEOUT time for firmware to load in case
		   driver loaded and then device immediately opened */
1618
		pr_info("%s waiting for firmware load\n", __func__);
1619
		wait_event_timeout(dev->fw_data->wait_fw,
1620 1621 1622 1623
				   ((atomic_read(&dev->fw_data->fw_state)
				     == S2255_FW_SUCCESS) ||
				    (atomic_read(&dev->fw_data->fw_state)
				     == S2255_FW_DISCONNECTING)),
1624
				   msecs_to_jiffies(S2255_LOAD_TIMEOUT));
1625 1626
		/* state may have changed, re-read */
		state = atomic_read(&dev->fw_data->fw_state);
1627 1628 1629 1630 1631
		break;
	case S2255_FW_SUCCESS:
	default:
		break;
	}
1632 1633 1634 1635 1636
	/* state may have changed in above switch statement */
	switch (state) {
	case S2255_FW_SUCCESS:
		break;
	case S2255_FW_FAILED:
1637
		pr_info("2255 firmware load failed.\n");
1638 1639
		return -ENODEV;
	case S2255_FW_DISCONNECTING:
1640
		pr_info("%s: disconnecting\n", __func__);
1641 1642 1643
		return -ENODEV;
	case S2255_FW_LOADED_DSPWAIT:
	case S2255_FW_NOTLOADED:
1644 1645
		pr_info("%s: firmware not loaded, please retry\n",
			__func__);
1646 1647 1648 1649 1650 1651 1652
		/*
		 * Timeout on firmware load means device unusable.
		 * Set firmware failure state.
		 * On next s2255_open the firmware will be reloaded.
		 */
		atomic_set(&dev->fw_data->fw_state,
			   S2255_FW_FAILED);
1653 1654
		return -EAGAIN;
	default:
1655
		pr_info("%s: unknown state\n", __func__);
1656
		return -EFAULT;
1657 1658 1659
	}
	/* allocate + initialize per filehandle data */
	fh = kzalloc(sizeof(*fh), GFP_KERNEL);
1660
	if (NULL == fh)
1661
		return -ENOMEM;
1662 1663 1664
	v4l2_fh_init(&fh->fh, vdev);
	v4l2_fh_add(&fh->fh);
	file->private_data = &fh->fh;
1665 1666
	fh->dev = dev;
	fh->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1667 1668
	fh->vc = vc;
	if (!vc->configured) {
1669
		/* configure channel to default state */
1670 1671 1672
		vc->fmt = &formats[0];
		s2255_set_mode(vc, &vc->mode);
		vc->configured = 1;
1673
	}
1674
	dprintk(dev, 1, "%s: dev=%s type=%s\n", __func__,
1675
		video_device_node_name(vdev), v4l2_type_names[type]);
1676 1677
	dprintk(dev, 2, "%s: fh=0x%08lx, dev=0x%08lx\n", __func__,
		(unsigned long)fh, (unsigned long)dev);
1678
	dprintk(dev, 4, "%s: list_empty active=%d\n", __func__,
1679
		list_empty(&vc->buf_list));
1680 1681 1682 1683
	videobuf_queue_vmalloc_init(&fh->vb_vidq, &s2255_video_qops,
				    NULL, &dev->slock,
				    fh->type,
				    V4L2_FIELD_INTERLACED,
P
Pete Eberlein 已提交
1684 1685
				    sizeof(struct s2255_buffer),
				    fh, vdev->lock);
1686 1687 1688
	return 0;
}

1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699
static int s2255_open(struct file *file)
{
	struct video_device *vdev = video_devdata(file);
	int ret;

	if (mutex_lock_interruptible(vdev->lock))
		return -ERESTARTSYS;
	ret = __s2255_open(file);
	mutex_unlock(vdev->lock);
	return ret;
}
1700 1701 1702 1703 1704

static unsigned int s2255_poll(struct file *file,
			       struct poll_table_struct *wait)
{
	struct s2255_fh *fh = file->private_data;
1705
	struct s2255_dev *dev = fh->dev;
1706 1707
	int rc = v4l2_ctrl_poll(file, wait);

1708
	dprintk(dev, 100, "%s\n", __func__);
1709 1710
	if (V4L2_BUF_TYPE_VIDEO_CAPTURE != fh->type)
		return POLLERR;
1711
	mutex_lock(&dev->lock);
1712
	rc |= videobuf_poll_stream(file, &fh->vb_vidq, wait);
1713
	mutex_unlock(&dev->lock);
1714 1715 1716
	return rc;
}

1717
static void s2255_destroy(struct s2255_dev *dev)
1718
{
1719
	dprintk(dev, 1, "%s", __func__);
1720 1721 1722
	/* board shutdown stops the read pipe if it is running */
	s2255_board_shutdown(dev);
	/* make sure firmware still not trying to load */
1723
	del_timer(&dev->timer);  /* only started in .probe and .open */
1724 1725 1726 1727 1728
	if (dev->fw_data->fw_urb) {
		usb_kill_urb(dev->fw_data->fw_urb);
		usb_free_urb(dev->fw_data->fw_urb);
		dev->fw_data->fw_urb = NULL;
	}
1729
	release_firmware(dev->fw_data->fw);
1730 1731
	kfree(dev->fw_data->pfw_data);
	kfree(dev->fw_data);
1732 1733 1734
	/* reset the DSP so firmware can be reloaded next time */
	s2255_reset_dsppower(dev);
	mutex_destroy(&dev->lock);
1735
	usb_put_dev(dev->udev);
1736
	v4l2_device_unregister(&dev->v4l2_dev);
1737
	kfree(dev);
1738 1739
}

1740
static int s2255_release(struct file *file)
1741 1742 1743
{
	struct s2255_fh *fh = file->private_data;
	struct s2255_dev *dev = fh->dev;
1744
	struct video_device *vdev = video_devdata(file);
1745
	struct s2255_vc *vc = fh->vc;
1746 1747
	if (!dev)
		return -ENODEV;
1748
	mutex_lock(&dev->lock);
1749 1750
	/* turn off stream */
	if (res_check(fh)) {
1751 1752
		if (vc->b_acquire)
			s2255_stop_acquire(fh->vc);
1753
		videobuf_streamoff(&fh->vb_vidq);
1754
		res_free(fh);
1755
	}
1756
	videobuf_mmap_free(&fh->vb_vidq);
1757
	mutex_unlock(&dev->lock);
1758
	dprintk(dev, 1, "%s[%s]\n", __func__, video_device_node_name(vdev));
1759 1760
	v4l2_fh_del(&fh->fh);
	v4l2_fh_exit(&fh->fh);
1761
	kfree(fh);
1762 1763 1764 1765 1766 1767
	return 0;
}

static int s2255_mmap_v4l(struct file *file, struct vm_area_struct *vma)
{
	struct s2255_fh *fh = file->private_data;
1768
	struct s2255_dev *dev;
1769 1770 1771
	int ret;
	if (!fh)
		return -ENODEV;
1772
	dev = fh->dev;
1773
	dprintk(dev, 4, "%s, vma=0x%08lx\n", __func__, (unsigned long)vma);
1774 1775
	if (mutex_lock_interruptible(&dev->lock))
		return -ERESTARTSYS;
1776
	ret = videobuf_mmap_mapper(&fh->vb_vidq, vma);
1777
	mutex_unlock(&dev->lock);
1778
	dprintk(dev, 4, "%s vma start=0x%08lx, size=%ld, ret=%d\n", __func__,
1779 1780 1781 1782 1783
		(unsigned long)vma->vm_start,
		(unsigned long)vma->vm_end - (unsigned long)vma->vm_start, ret);
	return ret;
}

1784
static const struct v4l2_file_operations s2255_fops_v4l = {
1785 1786
	.owner = THIS_MODULE,
	.open = s2255_open,
1787
	.release = s2255_release,
1788
	.poll = s2255_poll,
P
Pete Eberlein 已提交
1789
	.unlocked_ioctl = video_ioctl2,	/* V4L2 ioctl handler */
1790 1791 1792
	.mmap = s2255_mmap_v4l,
};

1793
static const struct v4l2_ioctl_ops s2255_ioctl_ops = {
1794 1795 1796 1797 1798 1799 1800 1801 1802 1803
	.vidioc_querycap = vidioc_querycap,
	.vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
	.vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
	.vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
	.vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
	.vidioc_reqbufs = vidioc_reqbufs,
	.vidioc_querybuf = vidioc_querybuf,
	.vidioc_qbuf = vidioc_qbuf,
	.vidioc_dqbuf = vidioc_dqbuf,
	.vidioc_s_std = vidioc_s_std,
1804
	.vidioc_g_std = vidioc_g_std,
1805 1806 1807 1808 1809
	.vidioc_enum_input = vidioc_enum_input,
	.vidioc_g_input = vidioc_g_input,
	.vidioc_s_input = vidioc_s_input,
	.vidioc_streamon = vidioc_streamon,
	.vidioc_streamoff = vidioc_streamoff,
1810 1811
	.vidioc_s_jpegcomp = vidioc_s_jpegcomp,
	.vidioc_g_jpegcomp = vidioc_g_jpegcomp,
1812 1813
	.vidioc_s_parm = vidioc_s_parm,
	.vidioc_g_parm = vidioc_g_parm,
1814
	.vidioc_enum_framesizes = vidioc_enum_framesizes,
1815
	.vidioc_enum_frameintervals = vidioc_enum_frameintervals,
1816 1817 1818
	.vidioc_log_status  = v4l2_ctrl_log_status,
	.vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
	.vidioc_unsubscribe_event = v4l2_event_unsubscribe,
1819 1820
};

1821 1822
static void s2255_video_device_release(struct video_device *vdev)
{
1823
	struct s2255_dev *dev = to_s2255_dev(vdev->v4l2_dev);
1824 1825
	struct s2255_vc *vc =
		container_of(vdev, struct s2255_vc, vdev);
1826

1827
	dprintk(dev, 4, "%s, chnls: %d\n", __func__,
1828
		atomic_read(&dev->num_channels));
1829

1830
	v4l2_ctrl_handler_free(&vc->hdl);
1831

1832
	if (atomic_dec_and_test(&dev->num_channels))
1833
		s2255_destroy(dev);
1834 1835 1836
	return;
}

1837 1838 1839 1840
static struct video_device template = {
	.name = "s2255v",
	.fops = &s2255_fops_v4l,
	.ioctl_ops = &s2255_ioctl_ops,
1841
	.release = s2255_video_device_release,
1842 1843 1844
	.tvnorms = S2255_NORMS,
};

1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858
static const struct v4l2_ctrl_ops s2255_ctrl_ops = {
	.s_ctrl = s2255_s_ctrl,
};

static const struct v4l2_ctrl_config color_filter_ctrl = {
	.ops = &s2255_ctrl_ops,
	.name = "Color Filter",
	.id = V4L2_CID_S2255_COLORFILTER,
	.type = V4L2_CTRL_TYPE_BOOLEAN,
	.max = 1,
	.step = 1,
	.def = 1,
};

1859 1860 1861 1862 1863
static int s2255_probe_v4l(struct s2255_dev *dev)
{
	int ret;
	int i;
	int cur_nr = video_nr;
1864
	struct s2255_vc *vc;
1865 1866 1867
	ret = v4l2_device_register(&dev->interface->dev, &dev->v4l2_dev);
	if (ret)
		return ret;
1868 1869 1870
	/* initialize all video 4 linux */
	/* register 4 video devices */
	for (i = 0; i < MAX_CHANNELS; i++) {
1871 1872
		vc = &dev->vc[i];
		INIT_LIST_HEAD(&vc->buf_list);
1873

1874 1875
		v4l2_ctrl_handler_init(&vc->hdl, 6);
		v4l2_ctrl_new_std(&vc->hdl, &s2255_ctrl_ops,
1876
				V4L2_CID_BRIGHTNESS, -127, 127, 1, DEF_BRIGHT);
1877
		v4l2_ctrl_new_std(&vc->hdl, &s2255_ctrl_ops,
1878
				V4L2_CID_CONTRAST, 0, 255, 1, DEF_CONTRAST);
1879
		v4l2_ctrl_new_std(&vc->hdl, &s2255_ctrl_ops,
1880
				V4L2_CID_SATURATION, 0, 255, 1, DEF_SATURATION);
1881
		v4l2_ctrl_new_std(&vc->hdl, &s2255_ctrl_ops,
1882
				V4L2_CID_HUE, 0, 255, 1, DEF_HUE);
1883
		vc->jpegqual_ctrl = v4l2_ctrl_new_std(&vc->hdl,
1884 1885 1886
				&s2255_ctrl_ops,
				V4L2_CID_JPEG_COMPRESSION_QUALITY,
				0, 100, 1, S2255_DEF_JPEG_QUAL);
1887
		if (dev->dsp_fw_ver >= S2255_MIN_DSP_COLORFILTER &&
1888 1889
		    (dev->pid != 0x2257 || vc->idx <= 1))
			v4l2_ctrl_new_custom(&vc->hdl, &color_filter_ctrl,
1890
					     NULL);
1891 1892 1893
		if (vc->hdl.error) {
			ret = vc->hdl.error;
			v4l2_ctrl_handler_free(&vc->hdl);
1894 1895 1896
			dev_err(&dev->udev->dev, "couldn't register control\n");
			break;
		}
1897
		/* register 4 video devices */
1898 1899 1900 1901 1902 1903
		vc->vdev = template;
		vc->vdev.ctrl_handler = &vc->hdl;
		vc->vdev.lock = &dev->lock;
		vc->vdev.v4l2_dev = &dev->v4l2_dev;
		set_bit(V4L2_FL_USE_FH_PRIO, &vc->vdev.flags);
		video_set_drvdata(&vc->vdev, vc);
1904
		if (video_nr == -1)
1905
			ret = video_register_device(&vc->vdev,
1906 1907 1908
						    VFL_TYPE_GRABBER,
						    video_nr);
		else
1909
			ret = video_register_device(&vc->vdev,
1910 1911
						    VFL_TYPE_GRABBER,
						    cur_nr + i);
1912

1913
		if (ret) {
1914 1915
			dev_err(&dev->udev->dev,
				"failed to register video device!\n");
1916
			break;
1917
		}
1918
		atomic_inc(&dev->num_channels);
1919
		v4l2_info(&dev->v4l2_dev, "V4L2 device registered as %s\n",
1920
			  video_device_node_name(&vc->vdev));
1921

1922
	}
1923 1924
	pr_info("Sensoray 2255 V4L driver Revision: %s\n",
		S2255_VERSION);
1925
	/* if no channels registered, return error and probe will fail*/
1926
	if (atomic_read(&dev->num_channels) == 0) {
1927
		v4l2_device_unregister(&dev->v4l2_dev);
1928
		return ret;
1929
	}
1930
	if (atomic_read(&dev->num_channels) != MAX_CHANNELS)
1931
		pr_warn("s2255: Not all channels available.\n");
1932
	return 0;
1933 1934 1935 1936 1937 1938 1939 1940
}

/* this function moves the usb stream read pipe data
 * into the system buffers.
 * returns 0 on success, EAGAIN if more data to process( call this
 * function again).
 *
 * Received frame structure:
1941
 * bytes 0-3:  marker : 0x2255DA4AL (S2255_MARKER_FRAME)
1942 1943 1944 1945 1946 1947 1948 1949
 * bytes 4-7:  channel: 0-3
 * bytes 8-11: payload size:  size of the frame
 * bytes 12-payloadsize+12:  frame data
 */
static int save_frame(struct s2255_dev *dev, struct s2255_pipeinfo *pipe_info)
{
	char *pdest;
	u32 offset = 0;
1950
	int bframe = 0;
1951 1952 1953 1954 1955 1956
	char *psrc;
	unsigned long copy_size;
	unsigned long size;
	s32 idx = -1;
	struct s2255_framei *frm;
	unsigned char *pdata;
1957
	struct s2255_vc *vc;
1958
	dprintk(dev, 100, "buffer to user\n");
1959 1960 1961
	vc = &dev->vc[dev->cc];
	idx = vc->cur_frame;
	frm = &vc->buffer.frame[idx];
1962 1963 1964
	if (frm->ulState == S2255_READ_IDLE) {
		int jj;
		unsigned int cc;
1965
		__le32 *pdword; /*data from dsp is little endian */
1966 1967 1968
		int payload;
		/* search for marker codes */
		pdata = (unsigned char *)pipe_info->transfer_buffer;
1969
		pdword = (__le32 *)pdata;
1970
		for (jj = 0; jj < (pipe_info->cur_transfer_size - 12); jj++) {
1971
			switch (*pdword) {
1972
			case S2255_MARKER_FRAME:
1973 1974
				dprintk(dev, 4, "marker @ offset: %d [%x %x]\n",
					jj, pdata[0], pdata[1]);
1975 1976
				offset = jj + PREFIX_SIZE;
				bframe = 1;
1977
				cc = le32_to_cpu(pdword[1]);
1978
				if (cc >= MAX_CHANNELS) {
1979 1980
					dprintk(dev, 0,
						"bad channel\n");
1981 1982 1983 1984
					return -EINVAL;
				}
				/* reverse it */
				dev->cc = G_chnmap[cc];
1985
				vc = &dev->vc[dev->cc];
1986
				payload =  le32_to_cpu(pdword[3]);
1987 1988
				if (payload > vc->req_image_size) {
					vc->bad_payload++;
1989 1990 1991
					/* discard the bad frame */
					return -EINVAL;
				}
1992 1993
				vc->pkt_size = payload;
				vc->jpg_size = le32_to_cpu(pdword[4]);
1994 1995
				break;
			case S2255_MARKER_RESPONSE:
1996

1997 1998
				pdata += DEF_USB_BLOCK;
				jj += DEF_USB_BLOCK;
1999
				if (le32_to_cpu(pdword[1]) >= MAX_CHANNELS)
2000
					break;
2001
				cc = G_chnmap[le32_to_cpu(pdword[1])];
2002
				if (cc >= MAX_CHANNELS)
2003
					break;
2004
				vc = &dev->vc[cc];
2005
				switch (pdword[2]) {
2006
				case S2255_RESPONSE_SETMODE:
2007 2008
					/* check if channel valid */
					/* set mode ready */
2009 2010
					vc->setmode_ready = 1;
					wake_up(&vc->wait_setmode);
2011
					dprintk(dev, 5, "setmode rdy %d\n", cc);
2012
					break;
2013
				case S2255_RESPONSE_FW:
2014 2015 2016 2017
					dev->chn_ready |= (1 << cc);
					if ((dev->chn_ready & 0x0f) != 0x0f)
						break;
					/* all channels ready */
2018
					pr_info("s2255: fw loaded\n");
2019 2020 2021 2022
					atomic_set(&dev->fw_data->fw_state,
						   S2255_FW_SUCCESS);
					wake_up(&dev->fw_data->wait_fw);
					break;
2023
				case S2255_RESPONSE_STATUS:
2024 2025 2026
					vc->vidstatus = le32_to_cpu(pdword[3]);
					vc->vidstatus_ready = 1;
					wake_up(&vc->wait_vidstatus);
2027
					dprintk(dev, 5, "vstat %x chan %d\n",
2028
						le32_to_cpu(pdword[3]), cc);
2029
					break;
2030
				default:
2031
					pr_info("s2255 unknown resp\n");
2032
				}
2033
			default:
2034
				pdata++;
2035
				break;
2036
			}
2037 2038 2039 2040 2041
			if (bframe)
				break;
		} /* for */
		if (!bframe)
			return -EINVAL;
2042
	}
2043 2044 2045
	vc = &dev->vc[dev->cc];
	idx = vc->cur_frame;
	frm = &vc->buffer.frame[idx];
2046
	/* search done.  now find out if should be acquiring on this channel */
2047
	if (!vc->b_acquire) {
2048 2049 2050
		/* we found a frame, but this channel is turned off */
		frm->ulState = S2255_READ_IDLE;
		return -EINVAL;
2051 2052
	}

2053 2054 2055
	if (frm->ulState == S2255_READ_IDLE) {
		frm->ulState = S2255_READ_FRAME;
		frm->cur_size = 0;
2056 2057
	}

2058 2059 2060 2061
	/* skip the marker 512 bytes (and offset if out of sync) */
	psrc = (u8 *)pipe_info->transfer_buffer + offset;


2062
	if (frm->lpvbits == NULL) {
2063
		dprintk(dev, 1, "s2255 frame buffer == NULL.%p %p %d %d",
2064 2065 2066 2067 2068 2069
			frm, dev, dev->cc, idx);
		return -ENOMEM;
	}

	pdest = frm->lpvbits + frm->cur_size;

2070
	copy_size = (pipe_info->cur_transfer_size - offset);
2071

2072
	size = vc->pkt_size - PREFIX_SIZE;
2073

2074
	/* sanity check on pdest */
2075
	if ((copy_size + frm->cur_size) < vc->req_image_size)
2076
		memcpy(pdest, psrc, copy_size);
2077 2078

	frm->cur_size += copy_size;
2079
	dprintk(dev, 4, "cur_size: %lu, size: %lu\n", frm->cur_size, size);
2080 2081

	if (frm->cur_size >= size) {
2082
		dprintk(dev, 2, "******[%d]Buffer[%d]full*******\n",
2083
			dev->cc, idx);
2084 2085
		vc->last_frame = vc->cur_frame;
		vc->cur_frame++;
2086
		/* end of system frame ring buffer, start at zero */
2087 2088 2089
		if ((vc->cur_frame == SYS_FRAMES) ||
		    (vc->cur_frame == vc->buffer.dwFrames))
			vc->cur_frame = 0;
2090
		/* frame ready */
2091 2092 2093
		if (vc->b_acquire)
			s2255_got_frame(vc, vc->jpg_size);
		vc->frame_count++;
2094 2095 2096
		frm->ulState = S2255_READ_IDLE;
		frm->cur_size = 0;

2097 2098 2099 2100 2101 2102 2103 2104 2105
	}
	/* done successfully */
	return 0;
}

static void s2255_read_video_callback(struct s2255_dev *dev,
				      struct s2255_pipeinfo *pipe_info)
{
	int res;
2106
	dprintk(dev, 50, "callback read video\n");
2107 2108 2109 2110 2111 2112 2113 2114

	if (dev->cc >= MAX_CHANNELS) {
		dev->cc = 0;
		dev_err(&dev->udev->dev, "invalid channel\n");
		return;
	}
	/* otherwise copy to the system buffers */
	res = save_frame(dev, pipe_info);
2115
	if (res != 0)
2116
		dprintk(dev, 4, "s2255: read callback failed\n");
2117

2118
	dprintk(dev, 50, "callback read video done\n");
2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155
	return;
}

static long s2255_vendor_req(struct s2255_dev *dev, unsigned char Request,
			     u16 Index, u16 Value, void *TransferBuffer,
			     s32 TransferBufferLength, int bOut)
{
	int r;
	if (!bOut) {
		r = usb_control_msg(dev->udev, usb_rcvctrlpipe(dev->udev, 0),
				    Request,
				    USB_TYPE_VENDOR | USB_RECIP_DEVICE |
				    USB_DIR_IN,
				    Value, Index, TransferBuffer,
				    TransferBufferLength, HZ * 5);
	} else {
		r = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0),
				    Request, USB_TYPE_VENDOR | USB_RECIP_DEVICE,
				    Value, Index, TransferBuffer,
				    TransferBufferLength, HZ * 5);
	}
	return r;
}

/*
 * retrieve FX2 firmware version. future use.
 * @param dev pointer to device extension
 * @return -1 for fail, else returns firmware version as an int(16 bits)
 */
static int s2255_get_fx2fw(struct s2255_dev *dev)
{
	int fw;
	int ret;
	unsigned char transBuffer[64];
	ret = s2255_vendor_req(dev, S2255_VR_FW, 0, 0, transBuffer, 2,
			       S2255_VR_IN);
	if (ret < 0)
2156
		dprintk(dev, 2, "get fw error: %x\n", ret);
2157
	fw = transBuffer[0] + (transBuffer[1] << 8);
2158
	dprintk(dev, 2, "Get FW %x %x\n", transBuffer[0], transBuffer[1]);
2159 2160 2161 2162 2163 2164 2165
	return fw;
}

/*
 * Create the system ring buffer to copy frames into from the
 * usb read pipe.
 */
2166
static int s2255_create_sys_buffers(struct s2255_vc *vc)
2167 2168 2169
{
	unsigned long i;
	unsigned long reqsize;
2170
	vc->buffer.dwFrames = SYS_FRAMES;
2171 2172 2173 2174 2175 2176 2177 2178
	/* always allocate maximum size(PAL) for system buffers */
	reqsize = SYS_FRAMES_MAXSIZE;

	if (reqsize > SYS_FRAMES_MAXSIZE)
		reqsize = SYS_FRAMES_MAXSIZE;

	for (i = 0; i < SYS_FRAMES; i++) {
		/* allocate the frames */
2179 2180 2181
		vc->buffer.frame[i].lpvbits = vmalloc(reqsize);
		vc->buffer.frame[i].size = reqsize;
		if (vc->buffer.frame[i].lpvbits == NULL) {
2182
			pr_info("out of memory.  using less frames\n");
2183
			vc->buffer.dwFrames = i;
2184 2185 2186 2187 2188 2189
			break;
		}
	}

	/* make sure internal states are set */
	for (i = 0; i < SYS_FRAMES; i++) {
2190 2191
		vc->buffer.frame[i].ulState = 0;
		vc->buffer.frame[i].cur_size = 0;
2192 2193
	}

2194 2195
	vc->cur_frame = 0;
	vc->last_frame = -1;
2196 2197 2198
	return 0;
}

2199
static int s2255_release_sys_buffers(struct s2255_vc *vc)
2200 2201 2202
{
	unsigned long i;
	for (i = 0; i < SYS_FRAMES; i++) {
2203 2204 2205
		if (vc->buffer.frame[i].lpvbits)
			vfree(vc->buffer.frame[i].lpvbits);
		vc->buffer.frame[i].lpvbits = NULL;
2206 2207 2208 2209 2210 2211 2212 2213
	}
	return 0;
}

static int s2255_board_init(struct s2255_dev *dev)
{
	struct s2255_mode mode_def = DEF_MODEI_NTSC_CONT;
	int fw_ver;
D
Dean Anderson 已提交
2214 2215
	int j;
	struct s2255_pipeinfo *pipe = &dev->pipe;
2216
	dprintk(dev, 4, "board init: %p", dev);
D
Dean Anderson 已提交
2217 2218 2219 2220 2221 2222 2223 2224
	memset(pipe, 0, sizeof(*pipe));
	pipe->dev = dev;
	pipe->cur_transfer_size = S2255_USB_XFER_SIZE;
	pipe->max_transfer_size = S2255_USB_XFER_SIZE;

	pipe->transfer_buffer = kzalloc(pipe->max_transfer_size,
					GFP_KERNEL);
	if (pipe->transfer_buffer == NULL) {
2225
		dprintk(dev, 1, "out of memory!\n");
D
Dean Anderson 已提交
2226
		return -ENOMEM;
2227 2228 2229 2230
	}
	/* query the firmware */
	fw_ver = s2255_get_fx2fw(dev);

2231 2232 2233
	pr_info("s2255: usb firmware version %d.%d\n",
		(fw_ver >> 8) & 0xff,
		fw_ver & 0xff);
2234 2235

	if (fw_ver < S2255_CUR_USB_FWVER)
2236
		pr_info("s2255: newer USB firmware available\n");
2237 2238

	for (j = 0; j < MAX_CHANNELS; j++) {
2239 2240 2241
		struct s2255_vc *vc = &dev->vc[j];
		vc->b_acquire = 0;
		vc->mode = mode_def;
2242
		if (dev->pid == 0x2257 && j > 1)
2243 2244 2245 2246 2247 2248 2249 2250 2251
			vc->mode.color |= (1 << 16);
		vc->jpegqual = S2255_DEF_JPEG_QUAL;
		vc->width = LINE_SZ_4CIFS_NTSC;
		vc->height = NUM_LINES_4CIFS_NTSC * 2;
		vc->std = V4L2_STD_NTSC_M;
		vc->fmt = &formats[0];
		vc->mode.restart = 1;
		vc->req_image_size = get_transfer_size(&mode_def);
		vc->frame_count = 0;
2252
		/* create the system buffers */
2253
		s2255_create_sys_buffers(vc);
2254 2255 2256
	}
	/* start read pipe */
	s2255_start_readpipe(dev);
2257
	dprintk(dev, 1, "%s: success\n", __func__);
2258 2259 2260 2261 2262 2263
	return 0;
}

static int s2255_board_shutdown(struct s2255_dev *dev)
{
	u32 i;
2264
	dprintk(dev, 1, "%s: dev: %p", __func__,  dev);
2265 2266

	for (i = 0; i < MAX_CHANNELS; i++) {
2267 2268
		if (dev->vc[i].b_acquire)
			s2255_stop_acquire(&dev->vc[i]);
2269 2270 2271
	}
	s2255_stop_readpipe(dev);
	for (i = 0; i < MAX_CHANNELS; i++)
2272
		s2255_release_sys_buffers(&dev->vc[i]);
D
Dean Anderson 已提交
2273 2274
	/* release transfer buffer */
	kfree(dev->pipe.transfer_buffer);
2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285
	return 0;
}

static void read_pipe_completion(struct urb *purb)
{
	struct s2255_pipeinfo *pipe_info;
	struct s2255_dev *dev;
	int status;
	int pipe;
	pipe_info = purb->context;
	if (pipe_info == NULL) {
2286
		dev_err(&purb->dev->dev, "no context!\n");
2287 2288 2289 2290
		return;
	}
	dev = pipe_info->dev;
	if (dev == NULL) {
2291
		dev_err(&purb->dev->dev, "no context!\n");
2292 2293 2294
		return;
	}
	status = purb->status;
2295 2296
	/* if shutting down, do not resubmit, exit immediately */
	if (status == -ESHUTDOWN) {
2297
		dprintk(dev, 2, "%s: err shutdown\n", __func__);
2298
		pipe_info->err_count++;
2299 2300 2301 2302
		return;
	}

	if (pipe_info->state == 0) {
2303
		dprintk(dev, 2, "%s: exiting USB pipe", __func__);
2304 2305 2306
		return;
	}

2307 2308 2309 2310
	if (status == 0)
		s2255_read_video_callback(dev, pipe_info);
	else {
		pipe_info->err_count++;
2311
		dprintk(dev, 1, "%s: failed URB %d\n", __func__, status);
2312
	}
2313 2314 2315 2316 2317 2318 2319 2320 2321 2322

	pipe = usb_rcvbulkpipe(dev->udev, dev->read_endpoint);
	/* reuse urb */
	usb_fill_bulk_urb(pipe_info->stream_urb, dev->udev,
			  pipe,
			  pipe_info->transfer_buffer,
			  pipe_info->cur_transfer_size,
			  read_pipe_completion, pipe_info);

	if (pipe_info->state != 0) {
2323
		if (usb_submit_urb(pipe_info->stream_urb, GFP_ATOMIC))
2324 2325
			dev_err(&dev->udev->dev, "error submitting urb\n");
	} else {
2326
		dprintk(dev, 2, "%s :complete state 0\n", __func__);
2327 2328 2329 2330 2331 2332 2333 2334
	}
	return;
}

static int s2255_start_readpipe(struct s2255_dev *dev)
{
	int pipe;
	int retval;
D
Dean Anderson 已提交
2335
	struct s2255_pipeinfo *pipe_info = &dev->pipe;
2336
	pipe = usb_rcvbulkpipe(dev->udev, dev->read_endpoint);
2337
	dprintk(dev, 2, "%s: IN %d\n", __func__, dev->read_endpoint);
D
Dean Anderson 已提交
2338 2339 2340 2341 2342 2343 2344
	pipe_info->state = 1;
	pipe_info->err_count = 0;
	pipe_info->stream_urb = usb_alloc_urb(0, GFP_KERNEL);
	if (!pipe_info->stream_urb) {
		dev_err(&dev->udev->dev,
			"ReadStream: Unable to alloc URB\n");
		return -ENOMEM;
2345
	}
D
Dean Anderson 已提交
2346 2347 2348 2349 2350 2351 2352 2353
	/* transfer buffer allocated in board_init */
	usb_fill_bulk_urb(pipe_info->stream_urb, dev->udev,
			  pipe,
			  pipe_info->transfer_buffer,
			  pipe_info->cur_transfer_size,
			  read_pipe_completion, pipe_info);
	retval = usb_submit_urb(pipe_info->stream_urb, GFP_KERNEL);
	if (retval) {
2354
		pr_err("s2255: start read pipe failed\n");
D
Dean Anderson 已提交
2355 2356
		return retval;
	}
2357 2358 2359 2360
	return 0;
}

/* starts acquisition process */
2361
static int s2255_start_acquire(struct s2255_vc *vc)
2362 2363 2364 2365 2366
{
	unsigned char *buffer;
	int res;
	unsigned long chn_rev;
	int j;
2367 2368
	struct s2255_dev *dev = to_s2255_dev(vc->vdev.v4l2_dev);
	chn_rev = G_chnmap[vc->idx];
2369 2370 2371 2372 2373 2374
	buffer = kzalloc(512, GFP_KERNEL);
	if (buffer == NULL) {
		dev_err(&dev->udev->dev, "out of mem\n");
		return -ENOMEM;
	}

2375 2376 2377
	vc->last_frame = -1;
	vc->bad_payload = 0;
	vc->cur_frame = 0;
2378
	for (j = 0; j < SYS_FRAMES; j++) {
2379 2380
		vc->buffer.frame[j].ulState = 0;
		vc->buffer.frame[j].cur_size = 0;
2381 2382 2383
	}

	/* send the start command */
2384 2385 2386
	*(__le32 *) buffer = IN_DATA_TOKEN;
	*((__le32 *) buffer + 1) = (__le32) cpu_to_le32(chn_rev);
	*((__le32 *) buffer + 2) = CMD_START;
2387 2388 2389 2390
	res = s2255_write_config(dev->udev, (unsigned char *)buffer, 512);
	if (res != 0)
		dev_err(&dev->udev->dev, "CMD_START error\n");

2391
	dprintk(dev, 2, "start acquire exit[%d] %d\n", vc->idx, res);
2392 2393 2394 2395
	kfree(buffer);
	return 0;
}

2396
static int s2255_stop_acquire(struct s2255_vc *vc)
2397 2398 2399 2400
{
	unsigned char *buffer;
	int res;
	unsigned long chn_rev;
2401 2402
	struct s2255_dev *dev = to_s2255_dev(vc->vdev.v4l2_dev);
	chn_rev = G_chnmap[vc->idx];
2403 2404 2405 2406 2407 2408
	buffer = kzalloc(512, GFP_KERNEL);
	if (buffer == NULL) {
		dev_err(&dev->udev->dev, "out of mem\n");
		return -ENOMEM;
	}
	/* send the stop command */
2409 2410 2411
	*(__le32 *) buffer = IN_DATA_TOKEN;
	*((__le32 *) buffer + 1) = (__le32) cpu_to_le32(chn_rev);
	*((__le32 *) buffer + 2) = CMD_STOP;
2412 2413 2414 2415
	res = s2255_write_config(dev->udev, (unsigned char *)buffer, 512);
	if (res != 0)
		dev_err(&dev->udev->dev, "CMD_STOP error\n");
	kfree(buffer);
2416 2417
	vc->b_acquire = 0;
	dprintk(dev, 4, "%s: chn %d, res %d\n", __func__, vc->idx, res);
2418
	return res;
2419 2420 2421 2422
}

static void s2255_stop_readpipe(struct s2255_dev *dev)
{
D
Dean Anderson 已提交
2423
	struct s2255_pipeinfo *pipe = &dev->pipe;
2424

D
Dean Anderson 已提交
2425 2426 2427 2428 2429 2430
	pipe->state = 0;
	if (pipe->stream_urb) {
		/* cancel urb */
		usb_kill_urb(pipe->stream_urb);
		usb_free_urb(pipe->stream_urb);
		pipe->stream_urb = NULL;
2431
	}
2432
	dprintk(dev, 4, "%s", __func__);
2433 2434 2435
	return;
}

2436
static void s2255_fwload_start(struct s2255_dev *dev, int reset)
2437
{
2438 2439
	if (reset)
		s2255_reset_dsppower(dev);
2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461
	dev->fw_data->fw_size = dev->fw_data->fw->size;
	atomic_set(&dev->fw_data->fw_state, S2255_FW_NOTLOADED);
	memcpy(dev->fw_data->pfw_data,
	       dev->fw_data->fw->data, CHUNK_SIZE);
	dev->fw_data->fw_loaded = CHUNK_SIZE;
	usb_fill_bulk_urb(dev->fw_data->fw_urb, dev->udev,
			  usb_sndbulkpipe(dev->udev, 2),
			  dev->fw_data->pfw_data,
			  CHUNK_SIZE, s2255_fwchunk_complete,
			  dev->fw_data);
	mod_timer(&dev->timer, jiffies + HZ);
}

/* standard usb probe function */
static int s2255_probe(struct usb_interface *interface,
		       const struct usb_device_id *id)
{
	struct s2255_dev *dev = NULL;
	struct usb_host_interface *iface_desc;
	struct usb_endpoint_descriptor *endpoint;
	int i;
	int retval = -ENOMEM;
2462 2463
	__le32 *pdata;
	int fw_size;
2464 2465 2466
	/* allocate memory for our device state and initialize it to zero */
	dev = kzalloc(sizeof(struct s2255_dev), GFP_KERNEL);
	if (dev == NULL) {
2467
		s2255_dev_err(&interface->dev, "out of memory\n");
2468
		return -ENOMEM;
2469
	}
2470
	atomic_set(&dev->num_channels, 0);
2471
	dev->pid = le16_to_cpu(id->idProduct);
2472 2473
	dev->fw_data = kzalloc(sizeof(struct s2255_fw), GFP_KERNEL);
	if (!dev->fw_data)
2474
		goto errorFWDATA1;
2475 2476 2477 2478 2479 2480
	mutex_init(&dev->lock);
	/* grab usb_device and save it */
	dev->udev = usb_get_dev(interface_to_usbdev(interface));
	if (dev->udev == NULL) {
		dev_err(&interface->dev, "null usb device\n");
		retval = -ENODEV;
2481
		goto errorUDEV;
2482
	}
2483 2484
	dev_dbg(&interface->dev, "dev: %p, udev %p interface %p\n",
		dev, dev->udev, interface);
2485 2486 2487
	dev->interface = interface;
	/* set up the endpoint information  */
	iface_desc = interface->cur_altsetting;
2488 2489
	dev_dbg(&interface->dev, "num EP: %d\n",
		iface_desc->desc.bNumEndpoints);
2490 2491 2492 2493 2494 2495 2496 2497 2498
	for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
		endpoint = &iface_desc->endpoint[i].desc;
		if (!dev->read_endpoint && usb_endpoint_is_bulk_in(endpoint)) {
			/* we found the bulk in endpoint */
			dev->read_endpoint = endpoint->bEndpointAddress;
		}
	}

	if (!dev->read_endpoint) {
2499
		dev_err(&interface->dev, "Could not find bulk-in endpoint\n");
2500
		goto errorEP;
2501 2502 2503 2504 2505
	}
	init_timer(&dev->timer);
	dev->timer.function = s2255_timer;
	dev->timer.data = (unsigned long)dev->fw_data;
	init_waitqueue_head(&dev->fw_data->wait_fw);
2506
	for (i = 0; i < MAX_CHANNELS; i++) {
2507 2508 2509 2510 2511
		struct s2255_vc *vc = &dev->vc[i];
		vc->idx = i;
		vc->dev = dev;
		init_waitqueue_head(&vc->wait_setmode);
		init_waitqueue_head(&vc->wait_vidstatus);
2512
	}
2513 2514 2515 2516

	dev->fw_data->fw_urb = usb_alloc_urb(0, GFP_KERNEL);
	if (!dev->fw_data->fw_urb) {
		dev_err(&interface->dev, "out of memory!\n");
2517
		goto errorFWURB;
2518
	}
2519

2520 2521 2522
	dev->fw_data->pfw_data = kzalloc(CHUNK_SIZE, GFP_KERNEL);
	if (!dev->fw_data->pfw_data) {
		dev_err(&interface->dev, "out of memory!\n");
2523
		goto errorFWDATA2;
2524 2525 2526 2527
	}
	/* load the first chunk */
	if (request_firmware(&dev->fw_data->fw,
			     FIRMWARE_FILE_NAME, &dev->udev->dev)) {
2528
		dev_err(&interface->dev, "sensoray 2255 failed to get firmware\n");
2529
		goto errorREQFW;
2530
	}
2531 2532 2533
	/* check the firmware is valid */
	fw_size = dev->fw_data->fw->size;
	pdata = (__le32 *) &dev->fw_data->fw->data[fw_size - 8];
2534

2535
	if (*pdata != S2255_FW_MARKER) {
2536
		dev_err(&interface->dev, "Firmware invalid.\n");
2537
		retval = -ENODEV;
2538
		goto errorFWMARKER;
2539 2540 2541 2542
	} else {
		/* make sure firmware is the latest */
		__le32 *pRel;
		pRel = (__le32 *) &dev->fw_data->fw->data[fw_size - 4];
2543
		pr_info("s2255 dsp fw version %x\n", le32_to_cpu(*pRel));
2544 2545
		dev->dsp_fw_ver = le32_to_cpu(*pRel);
		if (dev->dsp_fw_ver < S2255_CUR_DSP_FWVER)
2546
			pr_info("s2255: f2255usb.bin out of date.\n");
2547 2548
		if (dev->pid == 0x2257 &&
				dev->dsp_fw_ver < S2255_MIN_DSP_COLORFILTER)
2549 2550
			pr_warn("2257 needs firmware %d or above.\n",
				S2255_MIN_DSP_COLORFILTER);
2551 2552
	}
	usb_reset_device(dev->udev);
2553
	/* load 2255 board specific */
2554 2555
	retval = s2255_board_init(dev);
	if (retval)
2556
		goto errorBOARDINIT;
2557
	spin_lock_init(&dev->slock);
2558
	s2255_fwload_start(dev, 0);
2559 2560 2561
	/* loads v4l specific */
	retval = s2255_probe_v4l(dev);
	if (retval)
2562
		goto errorBOARDINIT;
2563 2564
	dev_info(&interface->dev, "Sensoray 2255 detected\n");
	return 0;
2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581
errorBOARDINIT:
	s2255_board_shutdown(dev);
errorFWMARKER:
	release_firmware(dev->fw_data->fw);
errorREQFW:
	kfree(dev->fw_data->pfw_data);
errorFWDATA2:
	usb_free_urb(dev->fw_data->fw_urb);
errorFWURB:
	del_timer(&dev->timer);
errorEP:
	usb_put_dev(dev->udev);
errorUDEV:
	kfree(dev->fw_data);
	mutex_destroy(&dev->lock);
errorFWDATA1:
	kfree(dev);
2582
	pr_warn("Sensoray 2255 driver load failed: 0x%x\n", retval);
2583 2584 2585 2586 2587 2588
	return retval;
}

/* disconnect routine. when board is removed physically or with rmmod */
static void s2255_disconnect(struct usb_interface *interface)
{
2589
	struct s2255_dev *dev = to_s2255_dev(usb_get_intfdata(interface));
2590
	int i;
2591
	int channels = atomic_read(&dev->num_channels);
P
Pete Eberlein 已提交
2592
	mutex_lock(&dev->lock);
2593
	v4l2_device_disconnect(&dev->v4l2_dev);
P
Pete Eberlein 已提交
2594
	mutex_unlock(&dev->lock);
2595
	/*see comments in the uvc_driver.c usb disconnect function */
2596
	atomic_inc(&dev->num_channels);
2597
	/* unregister each video device. */
2598
	for (i = 0; i < channels; i++)
2599
		video_unregister_device(&dev->vc[i].vdev);
2600
	/* wake up any of our timers */
2601 2602 2603
	atomic_set(&dev->fw_data->fw_state, S2255_FW_DISCONNECTING);
	wake_up(&dev->fw_data->wait_fw);
	for (i = 0; i < MAX_CHANNELS; i++) {
2604 2605 2606 2607
		dev->vc[i].setmode_ready = 1;
		wake_up(&dev->vc[i].wait_setmode);
		dev->vc[i].vidstatus_ready = 1;
		wake_up(&dev->vc[i].wait_vidstatus);
2608
	}
2609
	if (atomic_dec_and_test(&dev->num_channels))
2610
		s2255_destroy(dev);
2611
	dev_info(&interface->dev, "%s\n", __func__);
2612 2613 2614
}

static struct usb_driver s2255_driver = {
2615
	.name = S2255_DRIVER_NAME,
2616 2617 2618 2619 2620
	.probe = s2255_probe,
	.disconnect = s2255_disconnect,
	.id_table = s2255_table,
};

2621
module_usb_driver(s2255_driver);
2622 2623 2624 2625

MODULE_DESCRIPTION("Sensoray 2255 Video for Linux driver");
MODULE_AUTHOR("Dean Anderson (Sensoray Company Inc.)");
MODULE_LICENSE("GPL");
2626
MODULE_VERSION(S2255_VERSION);
2627
MODULE_FIRMWARE(FIRMWARE_FILE_NAME);