V4L/DVB (8430): videodev: move some functions from v4l2-dev.h to v4l2-common.h or...
[linux-2.6/verdex.git] / drivers / media / video / w9966.c
bloba63e11f8399b2b00225e10d83c9569481982613c
1 /*
2 Winbond w9966cf Webcam parport driver.
4 Version 0.32
6 Copyright (C) 2001 Jakob Kemi <jakob.kemi@post.utfors.se>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 Supported devices:
24 *Lifeview FlyCam Supra (using the Philips saa7111a chip)
26 Does any other model using the w9966 interface chip exist ?
28 Todo:
30 *Add a working EPP mode, since DMA ECP read isn't implemented
31 in the parport drivers. (That's why it's so sloow)
33 *Add support for other ccd-control chips than the saa7111
34 please send me feedback on what kind of chips you have.
36 *Add proper probing. I don't know what's wrong with the IEEE1284
37 parport drivers but (IEEE1284_MODE_NIBBLE|IEEE1284_DEVICE_ID)
38 and nibble read seems to be broken for some peripherals.
40 *Add probing for onboard SRAM, port directions etc. (if possible)
42 *Add support for the hardware compressed modes (maybe using v4l2)
44 *Fix better support for the capture window (no skewed images, v4l
45 interface to capt. window)
47 *Probably some bugs that I don't know of
49 Please support me by sending feedback!
51 Changes:
53 Alan Cox: Removed RGB mode for kernel merge, added THIS_MODULE
54 and owner support for newer module locks
57 #include <linux/module.h>
58 #include <linux/init.h>
59 #include <linux/delay.h>
60 #include <linux/videodev.h>
61 #include <media/v4l2-common.h>
62 #include <media/v4l2-ioctl.h>
63 #include <linux/parport.h>
65 /*#define DEBUG*/ /* Undef me for production */
67 #ifdef DEBUG
68 #define DPRINTF(x, a...) printk(KERN_DEBUG "W9966: %s(): "x, __func__ , ##a)
69 #else
70 #define DPRINTF(x...)
71 #endif
74 * Defines, simple typedefs etc.
77 #define W9966_DRIVERNAME "W9966CF Webcam"
78 #define W9966_MAXCAMS 4 // Maximum number of cameras
79 #define W9966_RBUFFER 2048 // Read buffer (must be an even number)
80 #define W9966_SRAMSIZE 131072 // 128kb
81 #define W9966_SRAMID 0x02 // check w9966cf.pdf
83 // Empirically determined window limits
84 #define W9966_WND_MIN_X 16
85 #define W9966_WND_MIN_Y 14
86 #define W9966_WND_MAX_X 705
87 #define W9966_WND_MAX_Y 253
88 #define W9966_WND_MAX_W (W9966_WND_MAX_X - W9966_WND_MIN_X)
89 #define W9966_WND_MAX_H (W9966_WND_MAX_Y - W9966_WND_MIN_Y)
91 // Keep track of our current state
92 #define W9966_STATE_PDEV 0x01
93 #define W9966_STATE_CLAIMED 0x02
94 #define W9966_STATE_VDEV 0x04
96 #define W9966_I2C_W_ID 0x48
97 #define W9966_I2C_R_ID 0x49
98 #define W9966_I2C_R_DATA 0x08
99 #define W9966_I2C_R_CLOCK 0x04
100 #define W9966_I2C_W_DATA 0x02
101 #define W9966_I2C_W_CLOCK 0x01
103 struct w9966_dev {
104 unsigned char dev_state;
105 unsigned char i2c_state;
106 unsigned short ppmode;
107 struct parport* pport;
108 struct pardevice* pdev;
109 struct video_device vdev;
110 unsigned short width;
111 unsigned short height;
112 unsigned char brightness;
113 signed char contrast;
114 signed char color;
115 signed char hue;
119 * Module specific properties
122 MODULE_AUTHOR("Jakob Kemi <jakob.kemi@post.utfors.se>");
123 MODULE_DESCRIPTION("Winbond w9966cf WebCam driver (0.32)");
124 MODULE_LICENSE("GPL");
127 #ifdef MODULE
128 static const char* pardev[] = {[0 ... W9966_MAXCAMS] = ""};
129 #else
130 static const char* pardev[] = {[0 ... W9966_MAXCAMS] = "aggressive"};
131 #endif
132 module_param_array(pardev, charp, NULL, 0);
133 MODULE_PARM_DESC(pardev, "pardev: where to search for\n\
134 \teach camera. 'aggressive' means brute-force search.\n\
135 \tEg: >pardev=parport3,aggressive,parport2,parport1< would assign\n\
136 \tcam 1 to parport3 and search every parport for cam 2 etc...");
138 static int parmode;
139 module_param(parmode, int, 0);
140 MODULE_PARM_DESC(parmode, "parmode: transfer mode (0=auto, 1=ecp, 2=epp");
142 static int video_nr = -1;
143 module_param(video_nr, int, 0);
146 * Private data
149 static struct w9966_dev w9966_cams[W9966_MAXCAMS];
152 * Private function declares
155 static inline void w9966_setState(struct w9966_dev* cam, int mask, int val);
156 static inline int w9966_getState(struct w9966_dev* cam, int mask, int val);
157 static inline void w9966_pdev_claim(struct w9966_dev *vdev);
158 static inline void w9966_pdev_release(struct w9966_dev *vdev);
160 static int w9966_rReg(struct w9966_dev* cam, int reg);
161 static int w9966_wReg(struct w9966_dev* cam, int reg, int data);
162 #if 0
163 static int w9966_rReg_i2c(struct w9966_dev* cam, int reg);
164 #endif
165 static int w9966_wReg_i2c(struct w9966_dev* cam, int reg, int data);
166 static int w9966_findlen(int near, int size, int maxlen);
167 static int w9966_calcscale(int size, int min, int max, int* beg, int* end, unsigned char* factor);
168 static int w9966_setup(struct w9966_dev* cam, int x1, int y1, int x2, int y2, int w, int h);
170 static int w9966_init(struct w9966_dev* cam, struct parport* port);
171 static void w9966_term(struct w9966_dev* cam);
173 static inline void w9966_i2c_setsda(struct w9966_dev* cam, int state);
174 static inline int w9966_i2c_setscl(struct w9966_dev* cam, int state);
175 static inline int w9966_i2c_getsda(struct w9966_dev* cam);
176 static inline int w9966_i2c_getscl(struct w9966_dev* cam);
177 static int w9966_i2c_wbyte(struct w9966_dev* cam, int data);
178 #if 0
179 static int w9966_i2c_rbyte(struct w9966_dev* cam);
180 #endif
182 static int w9966_v4l_ioctl(struct inode *inode, struct file *file,
183 unsigned int cmd, unsigned long arg);
184 static ssize_t w9966_v4l_read(struct file *file, char __user *buf,
185 size_t count, loff_t *ppos);
187 static const struct file_operations w9966_fops = {
188 .owner = THIS_MODULE,
189 .open = video_exclusive_open,
190 .release = video_exclusive_release,
191 .ioctl = w9966_v4l_ioctl,
192 #ifdef CONFIG_COMPAT
193 .compat_ioctl = v4l_compat_ioctl32,
194 #endif
195 .read = w9966_v4l_read,
196 .llseek = no_llseek,
198 static struct video_device w9966_template = {
199 .owner = THIS_MODULE,
200 .name = W9966_DRIVERNAME,
201 .type = VID_TYPE_CAPTURE | VID_TYPE_SCALES,
202 .fops = &w9966_fops,
206 * Private function defines
210 // Set camera phase flags, so we know what to uninit when terminating
211 static inline void w9966_setState(struct w9966_dev* cam, int mask, int val)
213 cam->dev_state = (cam->dev_state & ~mask) ^ val;
216 // Get camera phase flags
217 static inline int w9966_getState(struct w9966_dev* cam, int mask, int val)
219 return ((cam->dev_state & mask) == val);
222 // Claim parport for ourself
223 static inline void w9966_pdev_claim(struct w9966_dev* cam)
225 if (w9966_getState(cam, W9966_STATE_CLAIMED, W9966_STATE_CLAIMED))
226 return;
227 parport_claim_or_block(cam->pdev);
228 w9966_setState(cam, W9966_STATE_CLAIMED, W9966_STATE_CLAIMED);
231 // Release parport for others to use
232 static inline void w9966_pdev_release(struct w9966_dev* cam)
234 if (w9966_getState(cam, W9966_STATE_CLAIMED, 0))
235 return;
236 parport_release(cam->pdev);
237 w9966_setState(cam, W9966_STATE_CLAIMED, 0);
240 // Read register from W9966 interface-chip
241 // Expects a claimed pdev
242 // -1 on error, else register data (byte)
243 static int w9966_rReg(struct w9966_dev* cam, int reg)
245 // ECP, read, regtransfer, REG, REG, REG, REG, REG
246 const unsigned char addr = 0x80 | (reg & 0x1f);
247 unsigned char val;
249 if (parport_negotiate(cam->pport, cam->ppmode | IEEE1284_ADDR) != 0)
250 return -1;
251 if (parport_write(cam->pport, &addr, 1) != 1)
252 return -1;
253 if (parport_negotiate(cam->pport, cam->ppmode | IEEE1284_DATA) != 0)
254 return -1;
255 if (parport_read(cam->pport, &val, 1) != 1)
256 return -1;
258 return val;
261 // Write register to W9966 interface-chip
262 // Expects a claimed pdev
263 // -1 on error
264 static int w9966_wReg(struct w9966_dev* cam, int reg, int data)
266 // ECP, write, regtransfer, REG, REG, REG, REG, REG
267 const unsigned char addr = 0xc0 | (reg & 0x1f);
268 const unsigned char val = data;
270 if (parport_negotiate(cam->pport, cam->ppmode | IEEE1284_ADDR) != 0)
271 return -1;
272 if (parport_write(cam->pport, &addr, 1) != 1)
273 return -1;
274 if (parport_negotiate(cam->pport, cam->ppmode | IEEE1284_DATA) != 0)
275 return -1;
276 if (parport_write(cam->pport, &val, 1) != 1)
277 return -1;
279 return 0;
282 // Initialize camera device. Setup all internal flags, set a
283 // default video mode, setup ccd-chip, register v4l device etc..
284 // Also used for 'probing' of hardware.
285 // -1 on error
286 static int w9966_init(struct w9966_dev* cam, struct parport* port)
288 if (cam->dev_state != 0)
289 return -1;
291 cam->pport = port;
292 cam->brightness = 128;
293 cam->contrast = 64;
294 cam->color = 64;
295 cam->hue = 0;
297 // Select requested transfer mode
298 switch(parmode)
300 default: // Auto-detect (priority: hw-ecp, hw-epp, sw-ecp)
301 case 0:
302 if (port->modes & PARPORT_MODE_ECP)
303 cam->ppmode = IEEE1284_MODE_ECP;
304 else if (port->modes & PARPORT_MODE_EPP)
305 cam->ppmode = IEEE1284_MODE_EPP;
306 else
307 cam->ppmode = IEEE1284_MODE_ECP;
308 break;
309 case 1: // hw- or sw-ecp
310 cam->ppmode = IEEE1284_MODE_ECP;
311 break;
312 case 2: // hw- or sw-epp
313 cam->ppmode = IEEE1284_MODE_EPP;
314 break;
317 // Tell the parport driver that we exists
318 cam->pdev = parport_register_device(port, "w9966", NULL, NULL, NULL, 0, NULL);
319 if (cam->pdev == NULL) {
320 DPRINTF("parport_register_device() failed\n");
321 return -1;
323 w9966_setState(cam, W9966_STATE_PDEV, W9966_STATE_PDEV);
325 w9966_pdev_claim(cam);
327 // Setup a default capture mode
328 if (w9966_setup(cam, 0, 0, 1023, 1023, 200, 160) != 0) {
329 DPRINTF("w9966_setup() failed.\n");
330 return -1;
333 w9966_pdev_release(cam);
335 // Fill in the video_device struct and register us to v4l
336 memcpy(&cam->vdev, &w9966_template, sizeof(struct video_device));
337 cam->vdev.priv = cam;
339 if (video_register_device(&cam->vdev, VFL_TYPE_GRABBER, video_nr) == -1)
340 return -1;
342 w9966_setState(cam, W9966_STATE_VDEV, W9966_STATE_VDEV);
344 // All ok
345 printk(
346 "w9966cf: Found and initialized a webcam on %s.\n",
347 cam->pport->name
349 return 0;
353 // Terminate everything gracefully
354 static void w9966_term(struct w9966_dev* cam)
356 // Unregister from v4l
357 if (w9966_getState(cam, W9966_STATE_VDEV, W9966_STATE_VDEV)) {
358 video_unregister_device(&cam->vdev);
359 w9966_setState(cam, W9966_STATE_VDEV, 0);
362 // Terminate from IEEE1284 mode and release pdev block
363 if (w9966_getState(cam, W9966_STATE_PDEV, W9966_STATE_PDEV)) {
364 w9966_pdev_claim(cam);
365 parport_negotiate(cam->pport, IEEE1284_MODE_COMPAT);
366 w9966_pdev_release(cam);
369 // Unregister from parport
370 if (w9966_getState(cam, W9966_STATE_PDEV, W9966_STATE_PDEV)) {
371 parport_unregister_device(cam->pdev);
372 w9966_setState(cam, W9966_STATE_PDEV, 0);
377 // Find a good length for capture window (used both for W and H)
378 // A bit ugly but pretty functional. The capture length
379 // have to match the downscale
380 static int w9966_findlen(int near, int size, int maxlen)
382 int bestlen = size;
383 int besterr = abs(near - bestlen);
384 int len;
386 for(len = size+1;len < maxlen;len++)
388 int err;
389 if ( ((64*size) %len) != 0)
390 continue;
392 err = abs(near - len);
394 // Only continue as long as we keep getting better values
395 if (err > besterr)
396 break;
398 besterr = err;
399 bestlen = len;
402 return bestlen;
405 // Modify capture window (if necessary)
406 // and calculate downscaling
407 // Return -1 on error
408 static int w9966_calcscale(int size, int min, int max, int* beg, int* end, unsigned char* factor)
410 int maxlen = max - min;
411 int len = *end - *beg + 1;
412 int newlen = w9966_findlen(len, size, maxlen);
413 int err = newlen - len;
415 // Check for bad format
416 if (newlen > maxlen || newlen < size)
417 return -1;
419 // Set factor (6 bit fixed)
420 *factor = (64*size) / newlen;
421 if (*factor == 64)
422 *factor = 0x00; // downscale is disabled
423 else
424 *factor |= 0x80; // set downscale-enable bit
426 // Modify old beginning and end
427 *beg -= err / 2;
428 *end += err - (err / 2);
430 // Move window if outside borders
431 if (*beg < min) {
432 *end += min - *beg;
433 *beg += min - *beg;
435 if (*end > max) {
436 *beg -= *end - max;
437 *end -= *end - max;
440 return 0;
443 // Setup the cameras capture window etc.
444 // Expects a claimed pdev
445 // return -1 on error
446 static int w9966_setup(struct w9966_dev* cam, int x1, int y1, int x2, int y2, int w, int h)
448 unsigned int i;
449 unsigned int enh_s, enh_e;
450 unsigned char scale_x, scale_y;
451 unsigned char regs[0x1c];
452 unsigned char saa7111_regs[] = {
453 0x21, 0x00, 0xd8, 0x23, 0x00, 0x80, 0x80, 0x00,
454 0x88, 0x10, 0x80, 0x40, 0x40, 0x00, 0x01, 0x00,
455 0x48, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
456 0x00, 0x00, 0x00, 0x71, 0xe7, 0x00, 0x00, 0xc0
460 if (w*h*2 > W9966_SRAMSIZE)
462 DPRINTF("capture window exceeds SRAM size!.\n");
463 w = 200; h = 160; // Pick default values
466 w &= ~0x1;
467 if (w < 2) w = 2;
468 if (h < 1) h = 1;
469 if (w > W9966_WND_MAX_W) w = W9966_WND_MAX_W;
470 if (h > W9966_WND_MAX_H) h = W9966_WND_MAX_H;
472 cam->width = w;
473 cam->height = h;
475 enh_s = 0;
476 enh_e = w*h*2;
478 // Modify capture window if necessary and calculate downscaling
479 if (
480 w9966_calcscale(w, W9966_WND_MIN_X, W9966_WND_MAX_X, &x1, &x2, &scale_x) != 0 ||
481 w9966_calcscale(h, W9966_WND_MIN_Y, W9966_WND_MAX_Y, &y1, &y2, &scale_y) != 0
482 ) return -1;
484 DPRINTF(
485 "%dx%d, x: %d<->%d, y: %d<->%d, sx: %d/64, sy: %d/64.\n",
486 w, h, x1, x2, y1, y2, scale_x&~0x80, scale_y&~0x80
489 // Setup registers
490 regs[0x00] = 0x00; // Set normal operation
491 regs[0x01] = 0x18; // Capture mode
492 regs[0x02] = scale_y; // V-scaling
493 regs[0x03] = scale_x; // H-scaling
495 // Capture window
496 regs[0x04] = (x1 & 0x0ff); // X-start (8 low bits)
497 regs[0x05] = (x1 & 0x300)>>8; // X-start (2 high bits)
498 regs[0x06] = (y1 & 0x0ff); // Y-start (8 low bits)
499 regs[0x07] = (y1 & 0x300)>>8; // Y-start (2 high bits)
500 regs[0x08] = (x2 & 0x0ff); // X-end (8 low bits)
501 regs[0x09] = (x2 & 0x300)>>8; // X-end (2 high bits)
502 regs[0x0a] = (y2 & 0x0ff); // Y-end (8 low bits)
504 regs[0x0c] = W9966_SRAMID; // SRAM-banks (1x 128kb)
506 // Enhancement layer
507 regs[0x0d] = (enh_s& 0x000ff); // Enh. start (0-7)
508 regs[0x0e] = (enh_s& 0x0ff00)>>8; // Enh. start (8-15)
509 regs[0x0f] = (enh_s& 0x70000)>>16; // Enh. start (16-17/18??)
510 regs[0x10] = (enh_e& 0x000ff); // Enh. end (0-7)
511 regs[0x11] = (enh_e& 0x0ff00)>>8; // Enh. end (8-15)
512 regs[0x12] = (enh_e& 0x70000)>>16; // Enh. end (16-17/18??)
514 // Misc
515 regs[0x13] = 0x40; // VEE control (raw 4:2:2)
516 regs[0x17] = 0x00; // ???
517 regs[0x18] = cam->i2c_state = 0x00; // Serial bus
518 regs[0x19] = 0xff; // I/O port direction control
519 regs[0x1a] = 0xff; // I/O port data register
520 regs[0x1b] = 0x10; // ???
522 // SAA7111 chip settings
523 saa7111_regs[0x0a] = cam->brightness;
524 saa7111_regs[0x0b] = cam->contrast;
525 saa7111_regs[0x0c] = cam->color;
526 saa7111_regs[0x0d] = cam->hue;
528 // Reset (ECP-fifo & serial-bus)
529 if (w9966_wReg(cam, 0x00, 0x03) == -1)
530 return -1;
532 // Write regs to w9966cf chip
533 for (i = 0; i < 0x1c; i++)
534 if (w9966_wReg(cam, i, regs[i]) == -1)
535 return -1;
537 // Write regs to saa7111 chip
538 for (i = 0; i < 0x20; i++)
539 if (w9966_wReg_i2c(cam, i, saa7111_regs[i]) == -1)
540 return -1;
542 return 0;
546 * Ugly and primitive i2c protocol functions
549 // Sets the data line on the i2c bus.
550 // Expects a claimed pdev.
551 static inline void w9966_i2c_setsda(struct w9966_dev* cam, int state)
553 if (state)
554 cam->i2c_state |= W9966_I2C_W_DATA;
555 else
556 cam->i2c_state &= ~W9966_I2C_W_DATA;
558 w9966_wReg(cam, 0x18, cam->i2c_state);
559 udelay(5);
562 // Get peripheral clock line
563 // Expects a claimed pdev.
564 static inline int w9966_i2c_getscl(struct w9966_dev* cam)
566 const unsigned char state = w9966_rReg(cam, 0x18);
567 return ((state & W9966_I2C_R_CLOCK) > 0);
570 // Sets the clock line on the i2c bus.
571 // Expects a claimed pdev. -1 on error
572 static inline int w9966_i2c_setscl(struct w9966_dev* cam, int state)
574 unsigned long timeout;
576 if (state)
577 cam->i2c_state |= W9966_I2C_W_CLOCK;
578 else
579 cam->i2c_state &= ~W9966_I2C_W_CLOCK;
581 w9966_wReg(cam, 0x18, cam->i2c_state);
582 udelay(5);
584 // we go to high, we also expect the peripheral to ack.
585 if (state) {
586 timeout = jiffies + 100;
587 while (!w9966_i2c_getscl(cam)) {
588 if (time_after(jiffies, timeout))
589 return -1;
592 return 0;
595 // Get peripheral data line
596 // Expects a claimed pdev.
597 static inline int w9966_i2c_getsda(struct w9966_dev* cam)
599 const unsigned char state = w9966_rReg(cam, 0x18);
600 return ((state & W9966_I2C_R_DATA) > 0);
603 // Write a byte with ack to the i2c bus.
604 // Expects a claimed pdev. -1 on error
605 static int w9966_i2c_wbyte(struct w9966_dev* cam, int data)
607 int i;
608 for (i = 7; i >= 0; i--)
610 w9966_i2c_setsda(cam, (data >> i) & 0x01);
612 if (w9966_i2c_setscl(cam, 1) == -1)
613 return -1;
614 w9966_i2c_setscl(cam, 0);
617 w9966_i2c_setsda(cam, 1);
619 if (w9966_i2c_setscl(cam, 1) == -1)
620 return -1;
621 w9966_i2c_setscl(cam, 0);
623 return 0;
626 // Read a data byte with ack from the i2c-bus
627 // Expects a claimed pdev. -1 on error
628 #if 0
629 static int w9966_i2c_rbyte(struct w9966_dev* cam)
631 unsigned char data = 0x00;
632 int i;
634 w9966_i2c_setsda(cam, 1);
636 for (i = 0; i < 8; i++)
638 if (w9966_i2c_setscl(cam, 1) == -1)
639 return -1;
640 data = data << 1;
641 if (w9966_i2c_getsda(cam))
642 data |= 0x01;
644 w9966_i2c_setscl(cam, 0);
646 return data;
648 #endif
650 // Read a register from the i2c device.
651 // Expects claimed pdev. -1 on error
652 #if 0
653 static int w9966_rReg_i2c(struct w9966_dev* cam, int reg)
655 int data;
657 w9966_i2c_setsda(cam, 0);
658 w9966_i2c_setscl(cam, 0);
660 if (
661 w9966_i2c_wbyte(cam, W9966_I2C_W_ID) == -1 ||
662 w9966_i2c_wbyte(cam, reg) == -1
664 return -1;
666 w9966_i2c_setsda(cam, 1);
667 if (w9966_i2c_setscl(cam, 1) == -1)
668 return -1;
669 w9966_i2c_setsda(cam, 0);
670 w9966_i2c_setscl(cam, 0);
672 if (
673 w9966_i2c_wbyte(cam, W9966_I2C_R_ID) == -1 ||
674 (data = w9966_i2c_rbyte(cam)) == -1
676 return -1;
678 w9966_i2c_setsda(cam, 0);
680 if (w9966_i2c_setscl(cam, 1) == -1)
681 return -1;
682 w9966_i2c_setsda(cam, 1);
684 return data;
686 #endif
688 // Write a register to the i2c device.
689 // Expects claimed pdev. -1 on error
690 static int w9966_wReg_i2c(struct w9966_dev* cam, int reg, int data)
692 w9966_i2c_setsda(cam, 0);
693 w9966_i2c_setscl(cam, 0);
695 if (
696 w9966_i2c_wbyte(cam, W9966_I2C_W_ID) == -1 ||
697 w9966_i2c_wbyte(cam, reg) == -1 ||
698 w9966_i2c_wbyte(cam, data) == -1
700 return -1;
702 w9966_i2c_setsda(cam, 0);
703 if (w9966_i2c_setscl(cam, 1) == -1)
704 return -1;
706 w9966_i2c_setsda(cam, 1);
708 return 0;
712 * Video4linux interfacing
715 static int w9966_v4l_do_ioctl(struct inode *inode, struct file *file,
716 unsigned int cmd, void *arg)
718 struct video_device *vdev = video_devdata(file);
719 struct w9966_dev *cam = vdev->priv;
721 switch(cmd)
723 case VIDIOCGCAP:
725 static struct video_capability vcap = {
726 .name = W9966_DRIVERNAME,
727 .type = VID_TYPE_CAPTURE | VID_TYPE_SCALES,
728 .channels = 1,
729 .maxwidth = W9966_WND_MAX_W,
730 .maxheight = W9966_WND_MAX_H,
731 .minwidth = 2,
732 .minheight = 1,
734 struct video_capability *cap = arg;
735 *cap = vcap;
736 return 0;
738 case VIDIOCGCHAN:
740 struct video_channel *vch = arg;
741 if(vch->channel != 0) // We only support one channel (#0)
742 return -EINVAL;
743 memset(vch,0,sizeof(*vch));
744 strcpy(vch->name, "CCD-input");
745 vch->type = VIDEO_TYPE_CAMERA;
746 return 0;
748 case VIDIOCSCHAN:
750 struct video_channel *vch = arg;
751 if(vch->channel != 0)
752 return -EINVAL;
753 return 0;
755 case VIDIOCGTUNER:
757 struct video_tuner *vtune = arg;
758 if(vtune->tuner != 0)
759 return -EINVAL;
760 strcpy(vtune->name, "no tuner");
761 vtune->rangelow = 0;
762 vtune->rangehigh = 0;
763 vtune->flags = VIDEO_TUNER_NORM;
764 vtune->mode = VIDEO_MODE_AUTO;
765 vtune->signal = 0xffff;
766 return 0;
768 case VIDIOCSTUNER:
770 struct video_tuner *vtune = arg;
771 if (vtune->tuner != 0)
772 return -EINVAL;
773 if (vtune->mode != VIDEO_MODE_AUTO)
774 return -EINVAL;
775 return 0;
777 case VIDIOCGPICT:
779 struct video_picture vpic = {
780 cam->brightness << 8, // brightness
781 (cam->hue + 128) << 8, // hue
782 cam->color << 9, // color
783 cam->contrast << 9, // contrast
784 0x8000, // whiteness
785 16, VIDEO_PALETTE_YUV422// bpp, palette format
787 struct video_picture *pic = arg;
788 *pic = vpic;
789 return 0;
791 case VIDIOCSPICT:
793 struct video_picture *vpic = arg;
794 if (vpic->depth != 16 || (vpic->palette != VIDEO_PALETTE_YUV422 && vpic->palette != VIDEO_PALETTE_YUYV))
795 return -EINVAL;
797 cam->brightness = vpic->brightness >> 8;
798 cam->hue = (vpic->hue >> 8) - 128;
799 cam->color = vpic->colour >> 9;
800 cam->contrast = vpic->contrast >> 9;
802 w9966_pdev_claim(cam);
804 if (
805 w9966_wReg_i2c(cam, 0x0a, cam->brightness) == -1 ||
806 w9966_wReg_i2c(cam, 0x0b, cam->contrast) == -1 ||
807 w9966_wReg_i2c(cam, 0x0c, cam->color) == -1 ||
808 w9966_wReg_i2c(cam, 0x0d, cam->hue) == -1
810 w9966_pdev_release(cam);
811 return -EIO;
814 w9966_pdev_release(cam);
815 return 0;
817 case VIDIOCSWIN:
819 int ret;
820 struct video_window *vwin = arg;
822 if (vwin->flags != 0)
823 return -EINVAL;
824 if (vwin->clipcount != 0)
825 return -EINVAL;
826 if (vwin->width < 2 || vwin->width > W9966_WND_MAX_W)
827 return -EINVAL;
828 if (vwin->height < 1 || vwin->height > W9966_WND_MAX_H)
829 return -EINVAL;
831 // Update camera regs
832 w9966_pdev_claim(cam);
833 ret = w9966_setup(cam, 0, 0, 1023, 1023, vwin->width, vwin->height);
834 w9966_pdev_release(cam);
836 if (ret != 0) {
837 DPRINTF("VIDIOCSWIN: w9966_setup() failed.\n");
838 return -EIO;
841 return 0;
843 case VIDIOCGWIN:
845 struct video_window *vwin = arg;
846 memset(vwin, 0, sizeof(*vwin));
847 vwin->width = cam->width;
848 vwin->height = cam->height;
849 return 0;
851 // Unimplemented
852 case VIDIOCCAPTURE:
853 case VIDIOCGFBUF:
854 case VIDIOCSFBUF:
855 case VIDIOCKEY:
856 case VIDIOCGFREQ:
857 case VIDIOCSFREQ:
858 case VIDIOCGAUDIO:
859 case VIDIOCSAUDIO:
860 return -EINVAL;
861 default:
862 return -ENOIOCTLCMD;
864 return 0;
867 static int w9966_v4l_ioctl(struct inode *inode, struct file *file,
868 unsigned int cmd, unsigned long arg)
870 return video_usercopy(inode, file, cmd, arg, w9966_v4l_do_ioctl);
873 // Capture data
874 static ssize_t w9966_v4l_read(struct file *file, char __user *buf,
875 size_t count, loff_t *ppos)
877 struct video_device *vdev = video_devdata(file);
878 struct w9966_dev *cam = vdev->priv;
879 unsigned char addr = 0xa0; // ECP, read, CCD-transfer, 00000
880 unsigned char __user *dest = (unsigned char __user *)buf;
881 unsigned long dleft = count;
882 unsigned char *tbuf;
884 // Why would anyone want more than this??
885 if (count > cam->width * cam->height * 2)
886 return -EINVAL;
888 w9966_pdev_claim(cam);
889 w9966_wReg(cam, 0x00, 0x02); // Reset ECP-FIFO buffer
890 w9966_wReg(cam, 0x00, 0x00); // Return to normal operation
891 w9966_wReg(cam, 0x01, 0x98); // Enable capture
893 // write special capture-addr and negotiate into data transfer
894 if (
895 (parport_negotiate(cam->pport, cam->ppmode|IEEE1284_ADDR) != 0 )||
896 (parport_write(cam->pport, &addr, 1) != 1 )||
897 (parport_negotiate(cam->pport, cam->ppmode|IEEE1284_DATA) != 0 )
899 w9966_pdev_release(cam);
900 return -EFAULT;
903 tbuf = kmalloc(W9966_RBUFFER, GFP_KERNEL);
904 if (tbuf == NULL) {
905 count = -ENOMEM;
906 goto out;
909 while(dleft > 0)
911 unsigned long tsize = (dleft > W9966_RBUFFER) ? W9966_RBUFFER : dleft;
913 if (parport_read(cam->pport, tbuf, tsize) < tsize) {
914 count = -EFAULT;
915 goto out;
917 if (copy_to_user(dest, tbuf, tsize) != 0) {
918 count = -EFAULT;
919 goto out;
921 dest += tsize;
922 dleft -= tsize;
925 w9966_wReg(cam, 0x01, 0x18); // Disable capture
927 out:
928 kfree(tbuf);
929 w9966_pdev_release(cam);
931 return count;
935 // Called once for every parport on init
936 static void w9966_attach(struct parport *port)
938 int i;
940 for (i = 0; i < W9966_MAXCAMS; i++)
942 if (w9966_cams[i].dev_state != 0) // Cam is already assigned
943 continue;
944 if (
945 strcmp(pardev[i], "aggressive") == 0 ||
946 strcmp(pardev[i], port->name) == 0
948 if (w9966_init(&w9966_cams[i], port) != 0)
949 w9966_term(&w9966_cams[i]);
950 break; // return
955 // Called once for every parport on termination
956 static void w9966_detach(struct parport *port)
958 int i;
959 for (i = 0; i < W9966_MAXCAMS; i++)
960 if (w9966_cams[i].dev_state != 0 && w9966_cams[i].pport == port)
961 w9966_term(&w9966_cams[i]);
965 static struct parport_driver w9966_ppd = {
966 .name = W9966_DRIVERNAME,
967 .attach = w9966_attach,
968 .detach = w9966_detach,
971 // Module entry point
972 static int __init w9966_mod_init(void)
974 int i;
975 for (i = 0; i < W9966_MAXCAMS; i++)
976 w9966_cams[i].dev_state = 0;
978 return parport_register_driver(&w9966_ppd);
981 // Module cleanup
982 static void __exit w9966_mod_term(void)
984 parport_unregister_driver(&w9966_ppd);
987 module_init(w9966_mod_init);
988 module_exit(w9966_mod_term);