w9966.c 24.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
	Winbond w9966cf Webcam parport driver.

H
Hans Verkuil 已提交
4
	Version 0.33
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28

	Copyright (C) 2001 Jakob Kemi <jakob.kemi@post.utfors.se>

	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.
*/
/*
	Supported devices:
	*Lifeview FlyCam Supra (using the Philips saa7111a chip)

	Does any other model using the w9966 interface chip exist ?

	Todo:
29

L
Linus Torvalds 已提交
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
	*Add a working EPP mode, since DMA ECP read isn't implemented
	in the parport drivers. (That's why it's so sloow)

	*Add support for other ccd-control chips than the saa7111
	please send me feedback on what kind of chips you have.

	*Add proper probing. I don't know what's wrong with the IEEE1284
	parport drivers but (IEEE1284_MODE_NIBBLE|IEEE1284_DEVICE_ID)
	and nibble read seems to be broken for some peripherals.

	*Add probing for onboard SRAM, port directions etc. (if possible)

	*Add support for the hardware compressed modes (maybe using v4l2)

	*Fix better support for the capture window (no skewed images, v4l
	interface to capt. window)

	*Probably some bugs that I don't know of

	Please support me by sending feedback!
50

L
Linus Torvalds 已提交
51
	Changes:
52

L
Linus Torvalds 已提交
53 54 55 56 57 58 59
	Alan Cox:	Removed RGB mode for kernel merge, added THIS_MODULE
			and owner support for newer module locks
*/

#include <linux/module.h>
#include <linux/init.h>
#include <linux/delay.h>
H
Hans Verkuil 已提交
60 61
#include <linux/version.h>
#include <linux/videodev2.h>
62
#include <linux/slab.h>
63
#include <media/v4l2-common.h>
64
#include <media/v4l2-ioctl.h>
H
Hans Verkuil 已提交
65
#include <media/v4l2-device.h>
L
Linus Torvalds 已提交
66 67
#include <linux/parport.h>

68
/*#define DEBUG*/				/* Undef me for production */
L
Linus Torvalds 已提交
69 70

#ifdef DEBUG
71
#define DPRINTF(x, a...) printk(KERN_DEBUG "W9966: %s(): "x, __func__ , ##a)
L
Linus Torvalds 已提交
72 73 74 75 76 77 78 79 80
#else
#define DPRINTF(x...)
#endif

/*
 *	Defines, simple typedefs etc.
 */

#define W9966_DRIVERNAME	"W9966CF Webcam"
81 82 83 84
#define W9966_MAXCAMS		4	/* Maximum number of cameras */
#define W9966_RBUFFER		2048	/* Read buffer (must be an even number) */
#define W9966_SRAMSIZE		131072	/* 128kb */
#define W9966_SRAMID		0x02	/* check w9966cf.pdf */
L
Linus Torvalds 已提交
85

86
/* Empirically determined window limits */
L
Linus Torvalds 已提交
87 88 89 90 91 92 93
#define W9966_WND_MIN_X		16
#define W9966_WND_MIN_Y		14
#define W9966_WND_MAX_X		705
#define W9966_WND_MAX_Y		253
#define W9966_WND_MAX_W		(W9966_WND_MAX_X - W9966_WND_MIN_X)
#define W9966_WND_MAX_H		(W9966_WND_MAX_Y - W9966_WND_MIN_Y)

94
/* Keep track of our current state */
L
Linus Torvalds 已提交
95 96 97 98 99 100 101 102 103 104 105
#define W9966_STATE_PDEV	0x01
#define W9966_STATE_CLAIMED	0x02
#define W9966_STATE_VDEV	0x04

#define W9966_I2C_W_ID		0x48
#define W9966_I2C_R_ID		0x49
#define W9966_I2C_R_DATA	0x08
#define W9966_I2C_R_CLOCK	0x04
#define W9966_I2C_W_DATA	0x02
#define W9966_I2C_W_CLOCK	0x01

H
Hans Verkuil 已提交
106 107
struct w9966 {
	struct v4l2_device v4l2_dev;
L
Linus Torvalds 已提交
108 109 110
	unsigned char dev_state;
	unsigned char i2c_state;
	unsigned short ppmode;
111 112
	struct parport *pport;
	struct pardevice *pdev;
L
Linus Torvalds 已提交
113 114 115 116 117 118 119
	struct video_device vdev;
	unsigned short width;
	unsigned short height;
	unsigned char brightness;
	signed char contrast;
	signed char color;
	signed char hue;
H
Hans Verkuil 已提交
120
	struct mutex lock;
L
Linus Torvalds 已提交
121 122 123 124 125 126 127 128 129 130 131 132
};

/*
 *	Module specific properties
 */

MODULE_AUTHOR("Jakob Kemi <jakob.kemi@post.utfors.se>");
MODULE_DESCRIPTION("Winbond w9966cf WebCam driver (0.32)");
MODULE_LICENSE("GPL");


#ifdef MODULE
133
static const char *pardev[] = {[0 ... W9966_MAXCAMS] = ""};
L
Linus Torvalds 已提交
134
#else
135
static const char *pardev[] = {[0 ... W9966_MAXCAMS] = "aggressive"};
L
Linus Torvalds 已提交
136 137
#endif
module_param_array(pardev, charp, NULL, 0);
138
MODULE_PARM_DESC(pardev, "pardev: where to search for\n"
H
Hans Verkuil 已提交
139 140 141
		"\teach camera. 'aggressive' means brute-force search.\n"
		"\tEg: >pardev=parport3,aggressive,parport2,parport1< would assign\n"
		"\tcam 1 to parport3 and search every parport for cam 2 etc...");
L
Linus Torvalds 已提交
142

143
static int parmode;
L
Linus Torvalds 已提交
144 145 146 147 148 149
module_param(parmode, int, 0);
MODULE_PARM_DESC(parmode, "parmode: transfer mode (0=auto, 1=ecp, 2=epp");

static int video_nr = -1;
module_param(video_nr, int, 0);

H
Hans Verkuil 已提交
150
static struct w9966 w9966_cams[W9966_MAXCAMS];
L
Linus Torvalds 已提交
151 152 153 154 155 156

/*
 *	Private function defines
 */


157
/* Set camera phase flags, so we know what to uninit when terminating */
H
Hans Verkuil 已提交
158
static inline void w9966_set_state(struct w9966 *cam, int mask, int val)
L
Linus Torvalds 已提交
159 160 161 162
{
	cam->dev_state = (cam->dev_state & ~mask) ^ val;
}

163
/* Get camera phase flags */
H
Hans Verkuil 已提交
164
static inline int w9966_get_state(struct w9966 *cam, int mask, int val)
L
Linus Torvalds 已提交
165 166 167 168
{
	return ((cam->dev_state & mask) == val);
}

169
/* Claim parport for ourself */
H
Hans Verkuil 已提交
170
static void w9966_pdev_claim(struct w9966 *cam)
L
Linus Torvalds 已提交
171
{
H
Hans Verkuil 已提交
172
	if (w9966_get_state(cam, W9966_STATE_CLAIMED, W9966_STATE_CLAIMED))
L
Linus Torvalds 已提交
173 174
		return;
	parport_claim_or_block(cam->pdev);
H
Hans Verkuil 已提交
175
	w9966_set_state(cam, W9966_STATE_CLAIMED, W9966_STATE_CLAIMED);
L
Linus Torvalds 已提交
176 177
}

178
/* Release parport for others to use */
H
Hans Verkuil 已提交
179
static void w9966_pdev_release(struct w9966 *cam)
L
Linus Torvalds 已提交
180
{
H
Hans Verkuil 已提交
181
	if (w9966_get_state(cam, W9966_STATE_CLAIMED, 0))
L
Linus Torvalds 已提交
182 183
		return;
	parport_release(cam->pdev);
H
Hans Verkuil 已提交
184
	w9966_set_state(cam, W9966_STATE_CLAIMED, 0);
L
Linus Torvalds 已提交
185
}
186

187 188 189
/* Read register from W9966 interface-chip
   Expects a claimed pdev
   -1 on error, else register data (byte) */
H
Hans Verkuil 已提交
190
static int w9966_read_reg(struct w9966 *cam, int reg)
L
Linus Torvalds 已提交
191
{
192
	/* ECP, read, regtransfer, REG, REG, REG, REG, REG */
L
Linus Torvalds 已提交
193 194
	const unsigned char addr = 0x80 | (reg & 0x1f);
	unsigned char val;
195

L
Linus Torvalds 已提交
196 197 198 199 200 201 202 203 204 205 206 207
	if (parport_negotiate(cam->pport, cam->ppmode | IEEE1284_ADDR) != 0)
		return -1;
	if (parport_write(cam->pport, &addr, 1) != 1)
		return -1;
	if (parport_negotiate(cam->pport, cam->ppmode | IEEE1284_DATA) != 0)
		return -1;
	if (parport_read(cam->pport, &val, 1) != 1)
		return -1;

	return val;
}

208 209 210
/* Write register to W9966 interface-chip
   Expects a claimed pdev
   -1 on error */
H
Hans Verkuil 已提交
211
static int w9966_write_reg(struct w9966 *cam, int reg, int data)
L
Linus Torvalds 已提交
212
{
213
	/* ECP, write, regtransfer, REG, REG, REG, REG, REG */
L
Linus Torvalds 已提交
214 215
	const unsigned char addr = 0xc0 | (reg & 0x1f);
	const unsigned char val = data;
216

L
Linus Torvalds 已提交
217 218 219 220 221 222 223 224 225 226 227 228
	if (parport_negotiate(cam->pport, cam->ppmode | IEEE1284_ADDR) != 0)
		return -1;
	if (parport_write(cam->pport, &addr, 1) != 1)
		return -1;
	if (parport_negotiate(cam->pport, cam->ppmode | IEEE1284_DATA) != 0)
		return -1;
	if (parport_write(cam->pport, &val, 1) != 1)
		return -1;

	return 0;
}

229 230 231 232 233 234
/*
 *	Ugly and primitive i2c protocol functions
 */

/* Sets the data line on the i2c bus.
   Expects a claimed pdev. */
H
Hans Verkuil 已提交
235
static void w9966_i2c_setsda(struct w9966 *cam, int state)
L
Linus Torvalds 已提交
236
{
237 238 239 240
	if (state)
		cam->i2c_state |= W9966_I2C_W_DATA;
	else
		cam->i2c_state &= ~W9966_I2C_W_DATA;
241

H
Hans Verkuil 已提交
242
	w9966_write_reg(cam, 0x18, cam->i2c_state);
243 244
	udelay(5);
}
L
Linus Torvalds 已提交
245

246 247
/* Get peripheral clock line
   Expects a claimed pdev. */
H
Hans Verkuil 已提交
248
static int w9966_i2c_getscl(struct w9966 *cam)
249
{
H
Hans Verkuil 已提交
250
	const unsigned char state = w9966_read_reg(cam, 0x18);
251 252 253 254 255
	return ((state & W9966_I2C_R_CLOCK) > 0);
}

/* Sets the clock line on the i2c bus.
   Expects a claimed pdev. -1 on error */
H
Hans Verkuil 已提交
256
static int w9966_i2c_setscl(struct w9966 *cam, int state)
257 258 259 260 261 262 263 264
{
	unsigned long timeout;

	if (state)
		cam->i2c_state |= W9966_I2C_W_CLOCK;
	else
		cam->i2c_state &= ~W9966_I2C_W_CLOCK;

H
Hans Verkuil 已提交
265
	w9966_write_reg(cam, 0x18, cam->i2c_state);
266 267 268 269 270 271 272 273 274
	udelay(5);

	/* we go to high, we also expect the peripheral to ack. */
	if (state) {
		timeout = jiffies + 100;
		while (!w9966_i2c_getscl(cam)) {
			if (time_after(jiffies, timeout))
				return -1;
		}
L
Linus Torvalds 已提交
275
	}
276 277
	return 0;
}
278

279 280 281
#if 0
/* Get peripheral data line
   Expects a claimed pdev. */
H
Hans Verkuil 已提交
282
static int w9966_i2c_getsda(struct w9966 *cam)
283
{
H
Hans Verkuil 已提交
284
	const unsigned char state = w9966_read_reg(cam, 0x18);
285 286 287 288 289 290
	return ((state & W9966_I2C_R_DATA) > 0);
}
#endif

/* Write a byte with ack to the i2c bus.
   Expects a claimed pdev. -1 on error */
H
Hans Verkuil 已提交
291
static int w9966_i2c_wbyte(struct w9966 *cam, int data)
292 293 294 295 296 297 298 299 300
{
	int i;

	for (i = 7; i >= 0; i--) {
		w9966_i2c_setsda(cam, (data >> i) & 0x01);

		if (w9966_i2c_setscl(cam, 1) == -1)
			return -1;
		w9966_i2c_setscl(cam, 0);
L
Linus Torvalds 已提交
301 302
	}

303
	w9966_i2c_setsda(cam, 1);
304

305
	if (w9966_i2c_setscl(cam, 1) == -1)
L
Linus Torvalds 已提交
306
		return -1;
307 308 309 310 311 312 313 314
	w9966_i2c_setscl(cam, 0);

	return 0;
}

/* Read a data byte with ack from the i2c-bus
   Expects a claimed pdev. -1 on error */
#if 0
H
Hans Verkuil 已提交
315
static int w9966_i2c_rbyte(struct w9966 *cam)
316 317 318 319 320 321 322 323 324 325 326 327 328 329
{
	unsigned char data = 0x00;
	int i;

	w9966_i2c_setsda(cam, 1);

	for (i = 0; i < 8; i++) {
		if (w9966_i2c_setscl(cam, 1) == -1)
			return -1;
		data = data << 1;
		if (w9966_i2c_getsda(cam))
			data |= 0x01;

		w9966_i2c_setscl(cam, 0);
L
Linus Torvalds 已提交
330
	}
331 332 333
	return data;
}
#endif
L
Linus Torvalds 已提交
334

335 336 337
/* Read a register from the i2c device.
   Expects claimed pdev. -1 on error */
#if 0
H
Hans Verkuil 已提交
338
static int w9966_read_reg_i2c(struct w9966 *cam, int reg)
339 340
{
	int data;
L
Linus Torvalds 已提交
341

342 343
	w9966_i2c_setsda(cam, 0);
	w9966_i2c_setscl(cam, 0);
L
Linus Torvalds 已提交
344

345 346
	if (w9966_i2c_wbyte(cam, W9966_I2C_W_ID) == -1 ||
	    w9966_i2c_wbyte(cam, reg) == -1)
L
Linus Torvalds 已提交
347
		return -1;
348

349 350 351 352 353
	w9966_i2c_setsda(cam, 1);
	if (w9966_i2c_setscl(cam, 1) == -1)
		return -1;
	w9966_i2c_setsda(cam, 0);
	w9966_i2c_setscl(cam, 0);
354

355 356 357 358 359
	if (w9966_i2c_wbyte(cam, W9966_I2C_R_ID) == -1)
		return -1;
	data = w9966_i2c_rbyte(cam);
	if (data == -1)
		return -1;
L
Linus Torvalds 已提交
360

361
	w9966_i2c_setsda(cam, 0);
L
Linus Torvalds 已提交
362

363 364 365 366 367 368 369 370 371 372
	if (w9966_i2c_setscl(cam, 1) == -1)
		return -1;
	w9966_i2c_setsda(cam, 1);

	return data;
}
#endif

/* Write a register to the i2c device.
   Expects claimed pdev. -1 on error */
H
Hans Verkuil 已提交
373
static int w9966_write_reg_i2c(struct w9966 *cam, int reg, int data)
L
Linus Torvalds 已提交
374
{
375 376
	w9966_i2c_setsda(cam, 0);
	w9966_i2c_setscl(cam, 0);
L
Linus Torvalds 已提交
377

378
	if (w9966_i2c_wbyte(cam, W9966_I2C_W_ID) == -1 ||
H
Hans Verkuil 已提交
379 380
			w9966_i2c_wbyte(cam, reg) == -1 ||
			w9966_i2c_wbyte(cam, data) == -1)
381
		return -1;
L
Linus Torvalds 已提交
382

383 384 385 386 387
	w9966_i2c_setsda(cam, 0);
	if (w9966_i2c_setscl(cam, 1) == -1)
		return -1;

	w9966_i2c_setsda(cam, 1);
L
Linus Torvalds 已提交
388

389 390
	return 0;
}
L
Linus Torvalds 已提交
391

392 393 394
/* Find a good length for capture window (used both for W and H)
   A bit ugly but pretty functional. The capture length
   have to match the downscale */
L
Linus Torvalds 已提交
395 396 397 398 399 400
static int w9966_findlen(int near, int size, int maxlen)
{
	int bestlen = size;
	int besterr = abs(near - bestlen);
	int len;

401
	for (len = size + 1; len < maxlen; len++) {
L
Linus Torvalds 已提交
402
		int err;
403
		if (((64 * size) % len) != 0)
L
Linus Torvalds 已提交
404 405 406 407
			continue;

		err = abs(near - len);

408
		/* Only continue as long as we keep getting better values */
L
Linus Torvalds 已提交
409 410
		if (err > besterr)
			break;
411

L
Linus Torvalds 已提交
412 413 414 415 416 417 418
		besterr = err;
		bestlen = len;
	}

	return bestlen;
}

419 420 421 422
/* Modify capture window (if necessary)
   and calculate downscaling
   Return -1 on error */
static int w9966_calcscale(int size, int min, int max, int *beg, int *end, unsigned char *factor)
L
Linus Torvalds 已提交
423 424 425 426
{
	int maxlen = max - min;
	int len = *end - *beg + 1;
	int newlen = w9966_findlen(len, size, maxlen);
427
	int err = newlen - len;
L
Linus Torvalds 已提交
428

429
	/* Check for bad format */
L
Linus Torvalds 已提交
430 431 432
	if (newlen > maxlen || newlen < size)
		return -1;

433 434
	/* Set factor (6 bit fixed) */
	*factor = (64 * size) / newlen;
L
Linus Torvalds 已提交
435
	if (*factor == 64)
436
		*factor = 0x00;	/* downscale is disabled */
L
Linus Torvalds 已提交
437
	else
438
		*factor |= 0x80; /* set downscale-enable bit */
L
Linus Torvalds 已提交
439

440
	/* Modify old beginning and end */
L
Linus Torvalds 已提交
441 442 443
	*beg -= err / 2;
	*end += err - (err / 2);

444
	/* Move window if outside borders */
L
Linus Torvalds 已提交
445 446 447 448 449 450 451 452 453 454 455 456
	if (*beg < min) {
		*end += min - *beg;
		*beg += min - *beg;
	}
	if (*end > max) {
		*beg -= *end - max;
		*end -= *end - max;
	}

	return 0;
}

457 458 459
/* Setup the cameras capture window etc.
   Expects a claimed pdev
   return -1 on error */
H
Hans Verkuil 已提交
460
static int w9966_setup(struct w9966 *cam, int x1, int y1, int x2, int y2, int w, int h)
L
Linus Torvalds 已提交
461 462 463 464 465 466 467 468 469 470 471
{
	unsigned int i;
	unsigned int enh_s, enh_e;
	unsigned char scale_x, scale_y;
	unsigned char regs[0x1c];
	unsigned char saa7111_regs[] = {
		0x21, 0x00, 0xd8, 0x23, 0x00, 0x80, 0x80, 0x00,
		0x88, 0x10, 0x80, 0x40, 0x40, 0x00, 0x01, 0x00,
		0x48, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
		0x00, 0x00, 0x00, 0x71, 0xe7, 0x00, 0x00, 0xc0
	};
472 473


474
	if (w * h * 2 > W9966_SRAMSIZE) {
L
Linus Torvalds 已提交
475
		DPRINTF("capture window exceeds SRAM size!.\n");
476
		w = 200; h = 160;	/* Pick default values */
L
Linus Torvalds 已提交
477 478 479
	}

	w &= ~0x1;
480 481 482 483 484 485 486 487
	if (w < 2)
		w = 2;
	if (h < 1)
		h = 1;
	if (w > W9966_WND_MAX_W)
		w = W9966_WND_MAX_W;
	if (h > W9966_WND_MAX_H)
		h = W9966_WND_MAX_H;
L
Linus Torvalds 已提交
488 489 490 491

	cam->width = w;
	cam->height = h;

492
	enh_s = 0;
493 494
	enh_e = w * h * 2;

H
Hans Verkuil 已提交
495
	/* Modify capture window if necessary and calculate downscaling */
496
	if (w9966_calcscale(w, W9966_WND_MIN_X, W9966_WND_MAX_X, &x1, &x2, &scale_x) != 0 ||
H
Hans Verkuil 已提交
497
			w9966_calcscale(h, W9966_WND_MIN_Y, W9966_WND_MAX_Y, &y1, &y2, &scale_y) != 0)
498 499 500
		return -1;

	DPRINTF("%dx%d, x: %d<->%d, y: %d<->%d, sx: %d/64, sy: %d/64.\n",
H
Hans Verkuil 已提交
501
			w, h, x1, x2, y1, y2, scale_x & ~0x80, scale_y & ~0x80);
502

H
Hans Verkuil 已提交
503
	/* Setup registers */
504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
	regs[0x00] = 0x00;			/* Set normal operation */
	regs[0x01] = 0x18;			/* Capture mode */
	regs[0x02] = scale_y;			/* V-scaling */
	regs[0x03] = scale_x;			/* H-scaling */

	/* Capture window */
	regs[0x04] = (x1 & 0x0ff);		/* X-start (8 low bits) */
	regs[0x05] = (x1 & 0x300)>>8;		/* X-start (2 high bits) */
	regs[0x06] = (y1 & 0x0ff);		/* Y-start (8 low bits) */
	regs[0x07] = (y1 & 0x300)>>8;		/* Y-start (2 high bits) */
	regs[0x08] = (x2 & 0x0ff);		/* X-end (8 low bits) */
	regs[0x09] = (x2 & 0x300)>>8;		/* X-end (2 high bits) */
	regs[0x0a] = (y2 & 0x0ff);		/* Y-end (8 low bits) */

	regs[0x0c] = W9966_SRAMID;		/* SRAM-banks (1x 128kb) */

	/* Enhancement layer */
	regs[0x0d] = (enh_s & 0x000ff);		/* Enh. start (0-7) */
	regs[0x0e] = (enh_s & 0x0ff00) >> 8;	/* Enh. start (8-15) */
	regs[0x0f] = (enh_s & 0x70000) >> 16;	/* Enh. start (16-17/18??) */
	regs[0x10] = (enh_e & 0x000ff);		/* Enh. end (0-7) */
	regs[0x11] = (enh_e & 0x0ff00) >> 8;	/* Enh. end (8-15) */
	regs[0x12] = (enh_e & 0x70000) >> 16;	/* Enh. end (16-17/18??) */

	/* Misc */
	regs[0x13] = 0x40;			/* VEE control (raw 4:2:2) */
	regs[0x17] = 0x00;			/* ??? */
	regs[0x18] = cam->i2c_state = 0x00;	/* Serial bus */
	regs[0x19] = 0xff;			/* I/O port direction control */
	regs[0x1a] = 0xff;			/* I/O port data register */
	regs[0x1b] = 0x10;			/* ??? */

	/* SAA7111 chip settings */
L
Linus Torvalds 已提交
537 538 539 540 541
	saa7111_regs[0x0a] = cam->brightness;
	saa7111_regs[0x0b] = cam->contrast;
	saa7111_regs[0x0c] = cam->color;
	saa7111_regs[0x0d] = cam->hue;

H
Hans Verkuil 已提交
542 543
	/* Reset (ECP-fifo & serial-bus) */
	if (w9966_write_reg(cam, 0x00, 0x03) == -1)
L
Linus Torvalds 已提交
544 545
		return -1;

H
Hans Verkuil 已提交
546
	/* Write regs to w9966cf chip */
L
Linus Torvalds 已提交
547
	for (i = 0; i < 0x1c; i++)
H
Hans Verkuil 已提交
548
		if (w9966_write_reg(cam, i, regs[i]) == -1)
L
Linus Torvalds 已提交
549 550
			return -1;

H
Hans Verkuil 已提交
551
	/* Write regs to saa7111 chip */
L
Linus Torvalds 已提交
552
	for (i = 0; i < 0x20; i++)
H
Hans Verkuil 已提交
553
		if (w9966_write_reg_i2c(cam, i, saa7111_regs[i]) == -1)
L
Linus Torvalds 已提交
554 555 556 557 558 559
			return -1;

	return 0;
}

/*
560
 *	Video4linux interfacing
L
Linus Torvalds 已提交
561 562
 */

H
Hans Verkuil 已提交
563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578
static int cam_querycap(struct file *file, void  *priv,
					struct v4l2_capability *vcap)
{
	struct w9966 *cam = video_drvdata(file);

	strlcpy(vcap->driver, cam->v4l2_dev.name, sizeof(vcap->driver));
	strlcpy(vcap->card, W9966_DRIVERNAME, sizeof(vcap->card));
	strlcpy(vcap->bus_info, "parport", sizeof(vcap->bus_info));
	vcap->version = KERNEL_VERSION(0, 33, 0);
	vcap->capabilities = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_READWRITE;
	return 0;
}

static int cam_enum_input(struct file *file, void *fh, struct v4l2_input *vin)
{
	if (vin->index > 0)
L
Linus Torvalds 已提交
579
		return -EINVAL;
H
Hans Verkuil 已提交
580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634
	strlcpy(vin->name, "Camera", sizeof(vin->name));
	vin->type = V4L2_INPUT_TYPE_CAMERA;
	vin->audioset = 0;
	vin->tuner = 0;
	vin->std = 0;
	vin->status = 0;
	return 0;
}

static int cam_g_input(struct file *file, void *fh, unsigned int *inp)
{
	*inp = 0;
	return 0;
}

static int cam_s_input(struct file *file, void *fh, unsigned int inp)
{
	return (inp > 0) ? -EINVAL : 0;
}

static int cam_queryctrl(struct file *file, void *priv,
					struct v4l2_queryctrl *qc)
{
	switch (qc->id) {
	case V4L2_CID_BRIGHTNESS:
		return v4l2_ctrl_query_fill(qc, 0, 255, 1, 128);
	case V4L2_CID_CONTRAST:
		return v4l2_ctrl_query_fill(qc, -64, 64, 1, 64);
	case V4L2_CID_SATURATION:
		return v4l2_ctrl_query_fill(qc, -64, 64, 1, 64);
	case V4L2_CID_HUE:
		return v4l2_ctrl_query_fill(qc, -128, 127, 1, 0);
	}
	return -EINVAL;
}

static int cam_g_ctrl(struct file *file, void *priv,
					struct v4l2_control *ctrl)
{
	struct w9966 *cam = video_drvdata(file);
	int ret = 0;

	switch (ctrl->id) {
	case V4L2_CID_BRIGHTNESS:
		ctrl->value = cam->brightness;
		break;
	case V4L2_CID_CONTRAST:
		ctrl->value = cam->contrast;
		break;
	case V4L2_CID_SATURATION:
		ctrl->value = cam->color;
		break;
	case V4L2_CID_HUE:
		ctrl->value = cam->hue;
		break;
L
Linus Torvalds 已提交
635
	default:
H
Hans Verkuil 已提交
636 637
		ret = -EINVAL;
		break;
L
Linus Torvalds 已提交
638
	}
H
Hans Verkuil 已提交
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695
	return ret;
}

static int cam_s_ctrl(struct file *file, void *priv,
					struct v4l2_control *ctrl)
{
	struct w9966 *cam = video_drvdata(file);
	int ret = 0;

	mutex_lock(&cam->lock);
	switch (ctrl->id) {
	case V4L2_CID_BRIGHTNESS:
		cam->brightness = ctrl->value;
		break;
	case V4L2_CID_CONTRAST:
		cam->contrast = ctrl->value;
		break;
	case V4L2_CID_SATURATION:
		cam->color = ctrl->value;
		break;
	case V4L2_CID_HUE:
		cam->hue = ctrl->value;
		break;
	default:
		ret = -EINVAL;
		break;
	}

	if (ret == 0) {
		w9966_pdev_claim(cam);

		if (w9966_write_reg_i2c(cam, 0x0a, cam->brightness) == -1 ||
		    w9966_write_reg_i2c(cam, 0x0b, cam->contrast) == -1 ||
		    w9966_write_reg_i2c(cam, 0x0c, cam->color) == -1 ||
		    w9966_write_reg_i2c(cam, 0x0d, cam->hue) == -1) {
			ret = -EIO;
		}

		w9966_pdev_release(cam);
	}
	mutex_unlock(&cam->lock);
	return ret;
}

static int cam_g_fmt_vid_cap(struct file *file, void *fh, struct v4l2_format *fmt)
{
	struct w9966 *cam = video_drvdata(file);
	struct v4l2_pix_format *pix = &fmt->fmt.pix;

	pix->width = cam->width;
	pix->height = cam->height;
	pix->pixelformat = V4L2_PIX_FMT_YUYV;
	pix->field = V4L2_FIELD_NONE;
	pix->bytesperline = 2 * cam->width;
	pix->sizeimage = 2 * cam->width * cam->height;
	/* Just a guess */
	pix->colorspace = V4L2_COLORSPACE_SMPTE170M;
L
Linus Torvalds 已提交
696 697 698
	return 0;
}

H
Hans Verkuil 已提交
699
static int cam_try_fmt_vid_cap(struct file *file, void *fh, struct v4l2_format *fmt)
L
Linus Torvalds 已提交
700
{
H
Hans Verkuil 已提交
701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753
	struct v4l2_pix_format *pix = &fmt->fmt.pix;

	if (pix->width < 2)
		pix->width = 2;
	if (pix->height < 1)
		pix->height = 1;
	if (pix->width > W9966_WND_MAX_W)
		pix->width = W9966_WND_MAX_W;
	if (pix->height > W9966_WND_MAX_H)
		pix->height = W9966_WND_MAX_H;
	pix->pixelformat = V4L2_PIX_FMT_YUYV;
	pix->field = V4L2_FIELD_NONE;
	pix->bytesperline = 2 * pix->width;
	pix->sizeimage = 2 * pix->width * pix->height;
	/* Just a guess */
	pix->colorspace = V4L2_COLORSPACE_SMPTE170M;
	return 0;
}

static int cam_s_fmt_vid_cap(struct file *file, void *fh, struct v4l2_format *fmt)
{
	struct w9966 *cam = video_drvdata(file);
	struct v4l2_pix_format *pix = &fmt->fmt.pix;
	int ret = cam_try_fmt_vid_cap(file, fh, fmt);

	if (ret)
		return ret;

	mutex_lock(&cam->lock);
	/* Update camera regs */
	w9966_pdev_claim(cam);
	ret = w9966_setup(cam, 0, 0, 1023, 1023, pix->width, pix->height);
	w9966_pdev_release(cam);
	mutex_unlock(&cam->lock);
	return ret;
}

static int cam_enum_fmt_vid_cap(struct file *file, void *fh, struct v4l2_fmtdesc *fmt)
{
	static struct v4l2_fmtdesc formats[] = {
		{ 0, 0, 0,
		  "YUV 4:2:2", V4L2_PIX_FMT_YUYV,
		  { 0, 0, 0, 0 }
		},
	};
	enum v4l2_buf_type type = fmt->type;

	if (fmt->index > 0)
		return -EINVAL;

	*fmt = formats[fmt->index];
	fmt->type = type;
	return 0;
L
Linus Torvalds 已提交
754 755
}

756
/* Capture data */
L
Linus Torvalds 已提交
757
static ssize_t w9966_v4l_read(struct file *file, char  __user *buf,
H
Hans Verkuil 已提交
758
		size_t count, loff_t *ppos)
L
Linus Torvalds 已提交
759
{
H
Hans Verkuil 已提交
760
	struct w9966 *cam = video_drvdata(file);
761
	unsigned char addr = 0xa0;	/* ECP, read, CCD-transfer, 00000 */
L
Linus Torvalds 已提交
762 763 764
	unsigned char __user *dest = (unsigned char __user *)buf;
	unsigned long dleft = count;
	unsigned char *tbuf;
765

766
	/* Why would anyone want more than this?? */
L
Linus Torvalds 已提交
767 768
	if (count > cam->width * cam->height * 2)
		return -EINVAL;
769

H
Hans Verkuil 已提交
770
	mutex_lock(&cam->lock);
L
Linus Torvalds 已提交
771
	w9966_pdev_claim(cam);
H
Hans Verkuil 已提交
772 773 774
	w9966_write_reg(cam, 0x00, 0x02);	/* Reset ECP-FIFO buffer */
	w9966_write_reg(cam, 0x00, 0x00);	/* Return to normal operation */
	w9966_write_reg(cam, 0x01, 0x98);	/* Enable capture */
775 776 777

	/* write special capture-addr and negotiate into data transfer */
	if ((parport_negotiate(cam->pport, cam->ppmode|IEEE1284_ADDR) != 0) ||
H
Hans Verkuil 已提交
778 779
			(parport_write(cam->pport, &addr, 1) != 1) ||
			(parport_negotiate(cam->pport, cam->ppmode|IEEE1284_DATA) != 0)) {
L
Linus Torvalds 已提交
780
		w9966_pdev_release(cam);
H
Hans Verkuil 已提交
781
		mutex_unlock(&cam->lock);
L
Linus Torvalds 已提交
782 783 784 785 786 787 788 789 790
		return -EFAULT;
	}

	tbuf = kmalloc(W9966_RBUFFER, GFP_KERNEL);
	if (tbuf == NULL) {
		count = -ENOMEM;
		goto out;
	}

791
	while (dleft > 0) {
L
Linus Torvalds 已提交
792
		unsigned long tsize = (dleft > W9966_RBUFFER) ? W9966_RBUFFER : dleft;
793

L
Linus Torvalds 已提交
794 795 796 797 798 799 800 801 802 803 804 805
		if (parport_read(cam->pport, tbuf, tsize) < tsize) {
			count = -EFAULT;
			goto out;
		}
		if (copy_to_user(dest, tbuf, tsize) != 0) {
			count = -EFAULT;
			goto out;
		}
		dest += tsize;
		dleft -= tsize;
	}

H
Hans Verkuil 已提交
806
	w9966_write_reg(cam, 0x01, 0x18);	/* Disable capture */
L
Linus Torvalds 已提交
807 808 809 810

out:
	kfree(tbuf);
	w9966_pdev_release(cam);
H
Hans Verkuil 已提交
811
	mutex_unlock(&cam->lock);
L
Linus Torvalds 已提交
812 813 814 815

	return count;
}

816 817
static const struct v4l2_file_operations w9966_fops = {
	.owner		= THIS_MODULE,
818
	.unlocked_ioctl = video_ioctl2,
819 820 821
	.read           = w9966_v4l_read,
};

H
Hans Verkuil 已提交
822 823 824 825 826 827 828 829 830 831 832 833
static const struct v4l2_ioctl_ops w9966_ioctl_ops = {
	.vidioc_querycap    		    = cam_querycap,
	.vidioc_g_input      		    = cam_g_input,
	.vidioc_s_input      		    = cam_s_input,
	.vidioc_enum_input   		    = cam_enum_input,
	.vidioc_queryctrl 		    = cam_queryctrl,
	.vidioc_g_ctrl  		    = cam_g_ctrl,
	.vidioc_s_ctrl 			    = cam_s_ctrl,
	.vidioc_enum_fmt_vid_cap 	    = cam_enum_fmt_vid_cap,
	.vidioc_g_fmt_vid_cap 		    = cam_g_fmt_vid_cap,
	.vidioc_s_fmt_vid_cap  		    = cam_s_fmt_vid_cap,
	.vidioc_try_fmt_vid_cap  	    = cam_try_fmt_vid_cap,
834 835 836 837 838 839 840
};


/* Initialize camera device. Setup all internal flags, set a
   default video mode, setup ccd-chip, register v4l device etc..
   Also used for 'probing' of hardware.
   -1 on error */
H
Hans Verkuil 已提交
841
static int w9966_init(struct w9966 *cam, struct parport *port)
842
{
H
Hans Verkuil 已提交
843 844
	struct v4l2_device *v4l2_dev = &cam->v4l2_dev;

845 846 847
	if (cam->dev_state != 0)
		return -1;

H
Hans Verkuil 已提交
848 849 850 851 852 853
	strlcpy(v4l2_dev->name, "w9966", sizeof(v4l2_dev->name));

	if (v4l2_device_register(NULL, v4l2_dev) < 0) {
		v4l2_err(v4l2_dev, "Could not register v4l2_device\n");
		return -1;
	}
854 855 856 857 858 859
	cam->pport = port;
	cam->brightness = 128;
	cam->contrast = 64;
	cam->color = 64;
	cam->hue = 0;

H
Hans Verkuil 已提交
860
	/* Select requested transfer mode */
861 862 863 864 865 866 867 868 869 870 871 872 873 874 875
	switch (parmode) {
	default:	/* Auto-detect (priority: hw-ecp, hw-epp, sw-ecp) */
	case 0:
		if (port->modes & PARPORT_MODE_ECP)
			cam->ppmode = IEEE1284_MODE_ECP;
		else if (port->modes & PARPORT_MODE_EPP)
			cam->ppmode = IEEE1284_MODE_EPP;
		else
			cam->ppmode = IEEE1284_MODE_ECP;
		break;
	case 1:		/* hw- or sw-ecp */
		cam->ppmode = IEEE1284_MODE_ECP;
		break;
	case 2:		/* hw- or sw-epp */
		cam->ppmode = IEEE1284_MODE_EPP;
H
Hans Verkuil 已提交
876
		break;
877 878
	}

H
Hans Verkuil 已提交
879
	/* Tell the parport driver that we exists */
880 881 882 883 884
	cam->pdev = parport_register_device(port, "w9966", NULL, NULL, NULL, 0, NULL);
	if (cam->pdev == NULL) {
		DPRINTF("parport_register_device() failed\n");
		return -1;
	}
H
Hans Verkuil 已提交
885
	w9966_set_state(cam, W9966_STATE_PDEV, W9966_STATE_PDEV);
886 887 888

	w9966_pdev_claim(cam);

H
Hans Verkuil 已提交
889
	/* Setup a default capture mode */
890 891 892 893 894 895 896
	if (w9966_setup(cam, 0, 0, 1023, 1023, 200, 160) != 0) {
		DPRINTF("w9966_setup() failed.\n");
		return -1;
	}

	w9966_pdev_release(cam);

H
Hans Verkuil 已提交
897
	/* Fill in the video_device struct and register us to v4l */
H
Hans Verkuil 已提交
898 899 900 901 902
	strlcpy(cam->vdev.name, W9966_DRIVERNAME, sizeof(cam->vdev.name));
	cam->vdev.v4l2_dev = v4l2_dev;
	cam->vdev.fops = &w9966_fops;
	cam->vdev.ioctl_ops = &w9966_ioctl_ops;
	cam->vdev.release = video_device_release_empty;
903 904
	video_set_drvdata(&cam->vdev, cam);

H
Hans Verkuil 已提交
905 906
	mutex_init(&cam->lock);

907 908 909
	if (video_register_device(&cam->vdev, VFL_TYPE_GRABBER, video_nr) < 0)
		return -1;

H
Hans Verkuil 已提交
910
	w9966_set_state(cam, W9966_STATE_VDEV, W9966_STATE_VDEV);
911 912

	/* All ok */
H
Hans Verkuil 已提交
913
	v4l2_info(v4l2_dev, "Found and initialized a webcam on %s.\n",
H
Hans Verkuil 已提交
914
			cam->pport->name);
915 916 917 918 919
	return 0;
}


/* Terminate everything gracefully */
H
Hans Verkuil 已提交
920
static void w9966_term(struct w9966 *cam)
921
{
H
Hans Verkuil 已提交
922 923
	/* Unregister from v4l */
	if (w9966_get_state(cam, W9966_STATE_VDEV, W9966_STATE_VDEV)) {
924
		video_unregister_device(&cam->vdev);
H
Hans Verkuil 已提交
925
		w9966_set_state(cam, W9966_STATE_VDEV, 0);
926 927
	}

H
Hans Verkuil 已提交
928 929
	/* Terminate from IEEE1284 mode and release pdev block */
	if (w9966_get_state(cam, W9966_STATE_PDEV, W9966_STATE_PDEV)) {
930 931 932 933 934
		w9966_pdev_claim(cam);
		parport_negotiate(cam->pport, IEEE1284_MODE_COMPAT);
		w9966_pdev_release(cam);
	}

H
Hans Verkuil 已提交
935 936
	/* Unregister from parport */
	if (w9966_get_state(cam, W9966_STATE_PDEV, W9966_STATE_PDEV)) {
937
		parport_unregister_device(cam->pdev);
H
Hans Verkuil 已提交
938
		w9966_set_state(cam, W9966_STATE_PDEV, 0);
939
	}
940
	memset(cam, 0, sizeof(*cam));
941 942
}

L
Linus Torvalds 已提交
943

944
/* Called once for every parport on init */
L
Linus Torvalds 已提交
945 946 947
static void w9966_attach(struct parport *port)
{
	int i;
948

949 950
	for (i = 0; i < W9966_MAXCAMS; i++) {
		if (w9966_cams[i].dev_state != 0)	/* Cam is already assigned */
L
Linus Torvalds 已提交
951
			continue;
952
		if (strcmp(pardev[i], "aggressive") == 0 || strcmp(pardev[i], port->name) == 0) {
L
Linus Torvalds 已提交
953
			if (w9966_init(&w9966_cams[i], port) != 0)
954 955
				w9966_term(&w9966_cams[i]);
			break;	/* return */
L
Linus Torvalds 已提交
956 957 958 959
		}
	}
}

960
/* Called once for every parport on termination */
L
Linus Torvalds 已提交
961 962 963
static void w9966_detach(struct parport *port)
{
	int i;
964

L
Linus Torvalds 已提交
965
	for (i = 0; i < W9966_MAXCAMS; i++)
966 967
		if (w9966_cams[i].dev_state != 0 && w9966_cams[i].pport == port)
			w9966_term(&w9966_cams[i]);
L
Linus Torvalds 已提交
968 969 970 971 972 973 974 975 976
}


static struct parport_driver w9966_ppd = {
	.name = W9966_DRIVERNAME,
	.attach = w9966_attach,
	.detach = w9966_detach,
};

977
/* Module entry point */
L
Linus Torvalds 已提交
978 979 980
static int __init w9966_mod_init(void)
{
	int i;
981

L
Linus Torvalds 已提交
982 983 984 985 986 987
	for (i = 0; i < W9966_MAXCAMS; i++)
		w9966_cams[i].dev_state = 0;

	return parport_register_driver(&w9966_ppd);
}

988
/* Module cleanup */
L
Linus Torvalds 已提交
989 990 991 992 993 994 995
static void __exit w9966_mod_term(void)
{
	parport_unregister_driver(&w9966_ppd);
}

module_init(w9966_mod_init);
module_exit(w9966_mod_term);