w9966.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:29k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2. Winbond w9966cf Webcam parport driver.
  3. Copyright (C) 2001 Jakob Kemi <jakob.kemi@telia.com>
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. */
  16. /*
  17. Supported devices:
  18.   * Lifeview Flycam Supra (Philips saa7111a chip)
  19.   * Mikrotek Eyestar2 (Sanyo lc99053 chip)
  20.     Very rudimentary support, total lack of ccd-control chip settings.
  21.     Only green video data and no image properties (brightness, etc..)
  22.     If anyone can parse the Japanese data-sheet for the Sanyo lc99053
  23.     chip, feel free to help.
  24.     <http://service.semic.sanyo.co.jp/semi/ds_pdf_j/LC99053.pdf>
  25.     Thanks to Steven Griffiths <steve@sgriff.com> and
  26.     James Murray <jsm@jsm-net.demon.co.uk> for testing.
  27. Todo:
  28.   * Add a working EPP mode (Is this a parport or a w9966 issue?)
  29.   * Add proper probing. IEEE1284 probing of w9966 chips haven't
  30.     worked since parport drivers changed in 2.4.x.
  31.   * Probe for onboard SRAM, port directions etc. (possible?)
  32. Changes:
  33. Alan Cox: Removed RGB mode for kernel merge, added THIS_MODULE
  34. and owner support for newer module locks
  35. */
  36. #include <linux/module.h>
  37. #include <linux/init.h>
  38. #include <linux/delay.h>
  39. #include <linux/videodev.h>
  40. #include <linux/parport.h>
  41. #include <linux/types.h>
  42. #include <linux/slab.h>
  43. //#define DEBUG // Define for debug output.
  44. #ifdef DEBUG
  45. #   define DPRINTF(f, a...)
  46.         do {
  47.             printk ("%s%s, %d (DEBUG) %s(): ",
  48.                 KERN_DEBUG, __FILE__, __LINE__, __func__);
  49.             printk (f, ##a);
  50.         } while (0)
  51. #   define DASSERT(x)
  52.         do {
  53.             if (!x)
  54.                 DPRINTF("Assertion failed at line %d.n", __LINE__);
  55.         } while (0)
  56. #else
  57. #   define DPRINTF(f, a...) do {} while(0)
  58. #   define DASSERT(f, a...) do {} while(0)
  59. #endif
  60. /*
  61.  * Defines, simple typedefs etc.
  62.  */
  63. #define W9966_DRIVERNAME "w9966cf"
  64. #define W9966_MAXCAMS 4 // Maximum number of cameras
  65. #define W9966_RBUFFER 8096 // Read buffer (must be an even number)
  66. #define W9966_WND_MIN_W 2
  67. #define W9966_WND_MIN_H 1
  68. // Keep track of our current state
  69. #define W9966_STATE_PDEV 0x01 // pdev registered
  70. #define W9966_STATE_CLAIMED 0x02 // pdev claimed
  71. #define W9966_STATE_VDEV 0x04 // vdev registered
  72. #define W9966_STATE_BUFFER 0x08 // buffer allocated
  73. #define W9966_STATE_DETECTED 0x10 // model identified
  74. #define W9966_SAA7111_ID 0x24 // I2C device id
  75. #define W9966_I2C_UDELAY 5
  76. #define W9966_I2C_TIMEOUT 100
  77. #define W9966_I2C_R_DATA 0x08
  78. #define W9966_I2C_R_CLOCK 0x04
  79. #define W9966_I2C_W_DATA 0x02
  80. #define W9966_I2C_W_CLOCK 0x01
  81. #define MAX(a, b) ((a > b) ? a : b)
  82. #define MIN(a, b) ((a > b) ? b : a)
  83. struct w9966_dev {
  84. struct video_device vdev;
  85. struct parport*     pport;
  86. struct pardevice*   pdev;
  87. int ppmode;
  88. u8* buffer;
  89. u8  dev_state;
  90. u8  i2c_state;
  91. u16 width;
  92. u16 height;
  93. // Image properties
  94. u8 brightness;
  95. s8 contrast;
  96. s8 color;
  97. s8 hue;
  98. // Model specific:
  99. const char* name;
  100. u32 sramsize;
  101. u8  sramid; // reg 0x0c, bank layout
  102. u8  cmask; // reg 0x01, for polarity
  103. u16 min_x, max_x; // Capture window limits
  104. u16 min_y, max_y;
  105. int (*image)(struct w9966_dev* cam);
  106. };
  107. /*
  108.  * Module properties
  109.  */
  110. MODULE_AUTHOR("Jakob Kemi <jakob.kemi@telia.com>");
  111. MODULE_DESCRIPTION("Winbond w9966cf webcam driver (Flycam Supra and others)");
  112. MODULE_LICENSE("GPL");
  113. static const char* pardev[] = {[0 ... W9966_MAXCAMS-1] = "auto"};
  114. MODULE_PARM(pardev, "0-" __MODULE_STRING(W9966_MAXCAMS) "s");
  115. MODULE_PARM_DESC(pardev,"n
  116. <auto|name|none[,...]> Where to find cameras.n
  117.   auto = probe all parports for camera (default)n
  118.   name = name of parport (eg parport0)n
  119.   none = don't use this cameran
  120. You can specify all cameras this way, for example:n
  121.   pardev=parport2,auto,none,parport0 would search for cam1 on parport2, searchn
  122.   for cam2 on all parports, skip cam3 and search for cam4 on parport0");
  123. static int parmode = 1;
  124. MODULE_PARM(parmode, "i");
  125. MODULE_PARM_DESC(parmode, "n<0|1|2|3> transfer mode (0=auto, 1=ecp(default), 2=epp, 3=forced hw-ecp)");
  126. static int video_nr[] = {[0 ... W9966_MAXCAMS-1] = -1};
  127. MODULE_PARM(video_nr, "0-" __MODULE_STRING(W9966_MAXCAMS) "i");
  128. MODULE_PARM_DESC(video_nr,"n
  129. <-1|n[,...]> Specify V4L minor mode number.n
  130.   -1 = use next available (default)n
  131.    n = use minor number n (integer >= 0)n
  132. You can specify all cameras this way, for example:n
  133.   video_nr=-1,2,-1 would assign minor number 2 for cam2 and use auto for cam1,n
  134.   cam3 and cam4");
  135. /*
  136.  * Private data
  137.  */
  138. static struct w9966_dev* w9966_cams;
  139. /*
  140.  * Private function declarations
  141.  */
  142. static inline void w9966_flag_set(struct w9966_dev* cam, int flag) {
  143. cam->dev_state |= flag;}
  144. static inline void w9966_flag_clear(struct w9966_dev* cam, int flag) {
  145. cam->dev_state &= ~flag;}
  146. static inline int  w9966_flag_test(struct w9966_dev* cam, int flag) {
  147. return (cam->dev_state & flag);}
  148. static inline int  w9966_pdev_claim(struct w9966_dev *vdev);
  149. static inline void w9966_pdev_release(struct w9966_dev *vdev);
  150. static int w9966_rreg(struct w9966_dev* cam, int reg);
  151. static int w9966_wreg(struct w9966_dev* cam, int reg, int data);
  152. static int  w9966_init(struct w9966_dev* cam, struct parport* port, int vidnr);
  153. static void w9966_term(struct w9966_dev* cam);
  154. static int  w9966_setup(struct w9966_dev* cam);
  155. static int  w9966_findlen(int near, int size, int maxlen);
  156. static int  w9966_calcscale(int size, int min, int max,
  157. int* beg, int* end, u8* factor);
  158. static int  w9966_window(struct w9966_dev* cam, int x1, int y1,
  159. int x2, int y2, int w, int h);
  160. static int w9966_saa7111_init(struct w9966_dev* cam);
  161. static int w9966_saa7111_image(struct w9966_dev* cam);
  162. static int w9966_lc99053_init(struct w9966_dev* cam);
  163. static int w9966_lc99053_image(struct w9966_dev* cam);
  164. static inline void w9966_i2c_setsda(struct w9966_dev* cam, int state);
  165. static inline int  w9966_i2c_setscl(struct w9966_dev* cam, int state);
  166. static inline int  w9966_i2c_getsda(struct w9966_dev* cam);
  167. static inline int  w9966_i2c_getscl(struct w9966_dev* cam);
  168. static int w9966_i2c_wbyte(struct w9966_dev* cam, int data);
  169. static int w9966_i2c_rbyte(struct w9966_dev* cam);
  170. static int w9966_i2c_rreg(struct w9966_dev* cam, int device, int reg);
  171. static int w9966_i2c_wreg(struct w9966_dev* cam, int device, int reg, int data);
  172. static int  w9966_v4l_open(struct video_device *vdev, int mode);
  173. static void w9966_v4l_close(struct video_device *vdev);
  174. static int  w9966_v4l_ioctl(struct video_device *vdev,
  175. unsigned int cmd, void *arg);
  176. static long w9966_v4l_read(struct video_device *vdev,
  177. char *buf, unsigned long count, int noblock);
  178. /*
  179.  * Private function definitions
  180.  */
  181. // Claim parport for ourself
  182. // 1 on success, else 0
  183. static inline int w9966_pdev_claim(struct w9966_dev* cam)
  184. {
  185. if (w9966_flag_test(cam, W9966_STATE_CLAIMED))
  186. return 1;
  187. if (parport_claim_or_block(cam->pdev) < 0)
  188. return 0;
  189. w9966_flag_set(cam, W9966_STATE_CLAIMED);
  190. return 1;
  191. }
  192. // Release parport for others to use
  193. static inline void w9966_pdev_release(struct w9966_dev* cam)
  194. {
  195. if (!w9966_flag_test(cam, W9966_STATE_CLAIMED))
  196. return;
  197. parport_release(cam->pdev);
  198. w9966_flag_clear(cam, W9966_STATE_CLAIMED);
  199. }
  200. // Read register from w9966 interface-chip
  201. // Expects a claimed pdev
  202. // -1 on error, else register data (byte)
  203. static int w9966_rreg(struct w9966_dev* cam, int reg)
  204. {
  205. // ECP, read, regtransfer, REG, REG, REG, REG, REG
  206. const u8 addr = 0x80 | (reg & 0x1f);
  207. u8 val;
  208. if (parport_negotiate(cam->pport, cam->ppmode | IEEE1284_ADDR) != 0 ||
  209.     parport_write(cam->pport, &addr, 1) != 1 ||
  210.     parport_negotiate(cam->pport, cam->ppmode | IEEE1284_DATA) != 0 ||
  211.     parport_read(cam->pport, &val, 1) != 1)
  212. return -1;
  213. return val;
  214. }
  215. // Write register to w9966 interface-chip
  216. // Expects a claimed pdev
  217. // 1 on success, else 0
  218. static int w9966_wreg(struct w9966_dev* cam, int reg, int data)
  219. {
  220. // ECP, write, regtransfer, REG, REG, REG, REG, REG
  221. const u8 addr = 0xc0 | (reg & 0x1f);
  222. const u8 val = data;
  223. if (parport_negotiate(cam->pport, cam->ppmode | IEEE1284_ADDR) != 0 ||
  224.     parport_write(cam->pport, &addr, 1) != 1 ||
  225.     parport_negotiate(cam->pport, cam->ppmode | IEEE1284_DATA) != 0 ||
  226.     parport_write(cam->pport, &val, 1) != 1)
  227. return 0;
  228. return 1;
  229. }
  230. // Initialize camera device. Setup all internal flags, set a
  231. // default video mode, setup ccd-chip, register v4l device etc..
  232. // Also used for 'probing' of hardware.
  233. // 1 on success, else 0
  234. static int w9966_init(struct w9966_dev* cam, struct parport* port, int vidnr)
  235. {
  236. if (cam->dev_state != 0)
  237. return 0;
  238. cam->pport = port;
  239. cam->brightness = 128;
  240. cam->contrast = 64;
  241. cam->color = 64;
  242. cam->hue = 0;
  243. // Select requested transfer mode
  244. switch(parmode)
  245. {
  246. default: // Auto-detect (priority: hw-ecp, hw-epp, sw-ecp)
  247. case 0:
  248. if (port->modes & PARPORT_MODE_ECP)
  249. cam->ppmode = IEEE1284_MODE_ECP;
  250. else if (port->modes & PARPORT_MODE_EPP)
  251. cam->ppmode = IEEE1284_MODE_EPP;
  252. else
  253. cam->ppmode = IEEE1284_MODE_ECPSWE;
  254. break;
  255. case 1: // hw- or sw-ecp
  256. if (port->modes & PARPORT_MODE_ECP)
  257. cam->ppmode = IEEE1284_MODE_ECP;
  258. else
  259. cam->ppmode = IEEE1284_MODE_ECPSWE;
  260. break;
  261. case 2: // hw- or sw-epp
  262. if (port->modes & PARPORT_MODE_EPP)
  263. cam->ppmode = IEEE1284_MODE_EPP;
  264. else
  265. cam->ppmode = IEEE1284_MODE_EPPSWE;
  266. break;
  267. case 3: // hw-ecp
  268. cam->ppmode = IEEE1284_MODE_ECP;
  269. break;
  270. }
  271. // Tell the parport driver that we exists
  272. cam->pdev = parport_register_device(
  273.     port, W9966_DRIVERNAME, NULL, NULL, NULL, 0, NULL);
  274. if (cam->pdev == NULL) {
  275. DPRINTF("parport_register_device() failed.n");
  276. return 0;
  277. }
  278. w9966_flag_set(cam, W9966_STATE_PDEV);
  279. // Claim parport
  280. if (!w9966_pdev_claim(cam)) {
  281. DPRINTF("w9966_pdev_claim() failed.n");
  282. return 0;
  283. }
  284. // Perform initial w9966 setup
  285. if (!w9966_setup(cam)) {
  286. DPRINTF("w9966_setup() failed.n");
  287. return 0;
  288. }
  289. // Detect model
  290. if (!w9966_saa7111_init(cam)) {
  291. DPRINTF("w9966_saa7111_init() failed.n");
  292. return 0;
  293. }
  294. if (!w9966_lc99053_init(cam)) {
  295. DPRINTF("w9966_lc99053_init() failed.n");
  296. return 0;
  297. }
  298. if (!w9966_flag_test(cam, W9966_STATE_DETECTED)) {
  299. DPRINTF("Camera model not identified.n");
  300. return 0;
  301. }
  302. // Setup w9966 with a default capture mode (QCIF res.)
  303. if (!w9966_window(cam, 0, 0, 1023, 1023, 176, 144)) {
  304. DPRINTF("w9966_window() failed.n");
  305. return 0;
  306. }
  307. w9966_pdev_release(cam);
  308. // Fill in the video_device struct and register us to v4l
  309. memset(&cam->vdev, 0, sizeof(struct video_device));
  310. strcpy(cam->vdev.name, W9966_DRIVERNAME);
  311. cam->vdev.type = VID_TYPE_CAPTURE | VID_TYPE_SCALES;
  312. cam->vdev.hardware = VID_HARDWARE_W9966;
  313. cam->vdev.open = &w9966_v4l_open;
  314. cam->vdev.close = &w9966_v4l_close;
  315. cam->vdev.read = &w9966_v4l_read;
  316. cam->vdev.ioctl = &w9966_v4l_ioctl;
  317. cam->vdev.priv = (void*)cam;
  318. cam->vdev.owner = THIS_MODULE;
  319. if (video_register_device(&cam->vdev, VFL_TYPE_GRABBER, vidnr) == -1) {
  320. DPRINTF("video_register_device() failed (minor: %d).n", vidnr);
  321. return 0;
  322. }
  323. w9966_flag_set(cam, W9966_STATE_VDEV);
  324. // All ok
  325. printk("w9966: Found and initialized %s on %s.n",
  326. cam->name, cam->pport->name);
  327. return 1;
  328. }
  329. // Terminate everything gracefully
  330. static void w9966_term(struct w9966_dev* cam)
  331. {
  332. // Delete allocated buffer
  333. if (w9966_flag_test(cam, W9966_STATE_BUFFER))
  334. kfree(cam->buffer);
  335. // Unregister from v4l
  336. if (w9966_flag_test(cam, W9966_STATE_VDEV))
  337. video_unregister_device(&cam->vdev);
  338. // Terminate from IEEE1284 mode and unregister from parport
  339. if (w9966_flag_test(cam, W9966_STATE_PDEV)) {
  340. if (w9966_pdev_claim(cam))
  341. parport_negotiate(cam->pport, IEEE1284_MODE_COMPAT);
  342. w9966_pdev_release(cam);
  343. parport_unregister_device(cam->pdev);
  344. }
  345. cam->dev_state = 0x00;
  346. }
  347. // Do initial setup for the w9966 chip, init i2c bus, etc.
  348. // this is generic for all models
  349. // expects a claimed pdev
  350. // 1 on success, else 0
  351. static int w9966_setup(struct w9966_dev* cam)
  352. {
  353. const u8 i2c = cam->i2c_state = W9966_I2C_W_DATA | W9966_I2C_W_CLOCK;
  354. const u8 regs[] = {
  355. 0x40, // 0x13 - VEE control (raw 4:2:2)
  356. 0x00, 0x00, 0x00, // 0x14 - 0x16
  357. 0x00, // 0x17 - ???
  358. i2c, // 0x18 - Serial bus
  359. 0xff, // 0x19 - I/O port direction control
  360. 0xff, // 0x1a - I/O port data register
  361. 0x10 // 0x1b - ???
  362. };
  363. int i;
  364. DASSERT(w9966_flag_test(cam, W9966_STATE_CLAIMED));
  365. // Reset (ECP-fifo & serial-bus)
  366. if (!w9966_wreg(cam, 0x00, 0x03) ||
  367.     !w9966_wreg(cam, 0x00, 0x00))
  368. return 0;
  369. // Write regs to w9966cf chip
  370. for (i = 0x13; i < 0x1c; i++)
  371. if (!w9966_wreg(cam, i, regs[i-0x13]))
  372. return 0;
  373. return 1;
  374. }
  375. // Find a good length for capture window (used both for W and H)
  376. // A bit ugly but pretty functional. The capture length
  377. // have to match the downscale
  378. static int w9966_findlen(int near, int size, int maxlen)
  379. {
  380. int bestlen = size;
  381. int besterr = abs(near - bestlen);
  382. int len;
  383. for(len = size+1; len < maxlen; len++)
  384. {
  385. int err;
  386. if ( ((64*size) %len) != 0)
  387. continue;
  388. err = abs(near - len);
  389. // Only continue as long as we keep getting better values
  390. if (err > besterr)
  391. break;
  392. besterr = err;
  393. bestlen = len;
  394. }
  395. return bestlen;
  396. }
  397. // Modify capture window (if necessary)
  398. // and calculate downscaling
  399. // 1 on success, else 0
  400. static int w9966_calcscale(int size, int min, int max, int* beg, int* end, u8* factor)
  401. {
  402. const int maxlen = max - min;
  403. const int len = *end - *beg + 1;
  404. const int newlen = w9966_findlen(len, size, maxlen);
  405. const int err = newlen - len;
  406. // Check for bad format
  407. if (newlen > maxlen || newlen < size)
  408. return 0;
  409. // Set factor (6 bit fixed)
  410. *factor = (64*size) / newlen;
  411. if (*factor == 64)
  412. *factor = 0x00; // downscale is disabled
  413. else
  414. *factor |= 0x80; // set downscale-enable bit
  415. // Modify old beginning and end
  416. *beg -= err / 2;
  417. *end += err - (err / 2);
  418. // Move window if outside borders
  419. if (*beg < min) {
  420. *end += min - *beg;
  421. *beg += min - *beg;
  422. }
  423. if (*end > max) {
  424. *beg -= *end - max;
  425. *end -= *end - max;
  426. }
  427. return 1;
  428. }
  429. // Setup the w9966 capture window and also set SRAM settings
  430. // expects a claimed pdev and detected camera model
  431. // 1 on success, else 0
  432. static int w9966_window(struct w9966_dev* cam, int x1, int y1, int x2, int y2, int w, int h)
  433. {
  434. unsigned int enh_s, enh_e;
  435. u8 scale_x, scale_y;
  436. u8 regs[0x13];
  437. int i;
  438. // Modify width and height to match capture window and SRAM
  439. w = MAX(W9966_WND_MIN_W, w);
  440. h = MAX(W9966_WND_MIN_H, h);
  441. w = MIN(cam->max_x - cam->min_x, w);
  442. h = MIN(cam->max_y - cam->min_y, h);
  443. w &= ~0x1;
  444. if (w*h*2 > cam->sramsize)
  445. h = cam->sramsize / (w*2);
  446. cam->width = w;
  447. cam->height = h;
  448. enh_s = 0;
  449. enh_e = w*h*2;
  450. // Calculate downscaling
  451. if (!w9966_calcscale(w, cam->min_x, cam->max_x, &x1, &x2, &scale_x) ||
  452.     !w9966_calcscale(h, cam->min_y, cam->max_y, &y1, &y2, &scale_y))
  453. return 0;
  454. DPRINTF("%dx%d, x: %d<->%d, y: %d<->%d, sx: %d/64, sy: %d/64.n",
  455. w, h, x1, x2, y1, y2, scale_x&~0x80, scale_y&~0x80);
  456. // Setup registers
  457. regs[0x00] = 0x00; // Set normal operation
  458. regs[0x01] = cam->cmask; // Capture mode
  459. regs[0x02] = scale_y; // V-scaling
  460. regs[0x03] = scale_x; // H-scaling
  461. // Capture window
  462. regs[0x04] = (x1 & 0x0ff); // X-start (8 low bits)
  463. regs[0x05] = (x1 & 0x300)>>8; // X-start (2 high bits)
  464. regs[0x06] = (y1 & 0x0ff); // Y-start (8 low bits)
  465. regs[0x07] = (y1 & 0x300)>>8; // Y-start (2 high bits)
  466. regs[0x08] = (x2 & 0x0ff); // X-end (8 low bits)
  467. regs[0x09] = (x2 & 0x300)>>8; // X-end (2 high bits)
  468. regs[0x0a] = (y2 & 0x0ff); // Y-end (8 low bits)
  469. regs[0x0c] = cam->sramid; // SRAM layout
  470. // Enhancement layer
  471. regs[0x0d] = (enh_s& 0x000ff); // Enh. start (0-7)
  472. regs[0x0e] = (enh_s& 0x0ff00)>>8; // Enh. start (8-15)
  473. regs[0x0f] = (enh_s& 0x70000)>>16; // Enh. start (16-17/18??)
  474. regs[0x10] = (enh_e& 0x000ff); // Enh. end (0-7)
  475. regs[0x11] = (enh_e& 0x0ff00)>>8; // Enh. end (8-15)
  476. regs[0x12] = (enh_e& 0x70000)>>16; // Enh. end (16-17/18??)
  477. // Write regs to w9966cf chip
  478. for (i = 0x01; i < 0x13; i++)
  479. if (!w9966_wreg(cam, i, regs[i]))
  480. return 0;
  481. return 1;
  482. }
  483. // Detect and initialize saa7111 ccd-controller chip.
  484. // expects a claimed parport
  485. // expected to always return 1 unless error is _fatal_
  486. // 1 on success, else 0
  487. static int w9966_saa7111_init(struct w9966_dev* cam)
  488. {
  489. // saa7111 regs 0x00 trough 0x12
  490. const u8 regs[] = {
  491. 0x00, // not written
  492. 0x00, 0xd8, 0x23, 0x00, 0x80, 0x80, 0x00, 0x88, 0x10,
  493. cam->brightness, // 0x0a
  494. cam->contrast, // 0x0b
  495. cam->color, // 0x0c
  496. cam->hue, // 0x0d
  497. 0x01, 0x00, 0x48, 0x0c, 0x00,
  498. };
  499. int i;
  500. if (w9966_flag_test(cam, W9966_STATE_DETECTED))
  501. return 1;
  502. // Write regs to saa7111 chip
  503. for (i = 1; i < 0x13; i++)
  504. if (!w9966_i2c_wreg(cam, W9966_SAA7111_ID, i, regs[i]))
  505. return 1;
  506. // Read back regs
  507. for (i = 1; i < 0x13; i++)
  508. if (w9966_i2c_rreg(cam, W9966_SAA7111_ID, i) != regs[i])
  509. return 1;
  510. // Fill in model specific data
  511. cam->name = "Lifeview Flycam Supra";
  512. cam->sramsize = 128 << 10; // 128 kib
  513. cam->sramid = 0x02; // see w9966.pdf
  514. cam->cmask = 0x18; // normal polarity
  515. cam->min_x = 16; // empirically determined
  516. cam->max_x = 705;
  517. cam->min_y = 14;
  518. cam->max_y = 253;
  519. cam->image = &w9966_saa7111_image;
  520. DPRINTF("Found and initialized a saa7111 chip.n");
  521. w9966_flag_set(cam, W9966_STATE_DETECTED);
  522. return 1;
  523. }
  524. // Setup image properties (brightness, hue, etc.) for the saa7111 chip
  525. // expects a claimed parport
  526. // 1 on success, else 0
  527. static int w9966_saa7111_image(struct w9966_dev* cam)
  528. {
  529. if (!w9966_i2c_wreg(cam, W9966_SAA7111_ID, 0x0a, cam->brightness) ||
  530.     !w9966_i2c_wreg(cam, W9966_SAA7111_ID, 0x0b, cam->contrast) ||
  531.     !w9966_i2c_wreg(cam, W9966_SAA7111_ID, 0x0c, cam->color) ||
  532.     !w9966_i2c_wreg(cam, W9966_SAA7111_ID, 0x0d, cam->hue))
  533. return 0;
  534. return 1;
  535. }
  536. // Detect and initialize lc99053 ccd-controller chip.
  537. // expects a claimed parport
  538. // this is currently a hack, no detection is done, we just assume an Eyestar2
  539. // 1 on success, else 0
  540. static int w9966_lc99053_init(struct w9966_dev* cam)
  541. {
  542. if (w9966_flag_test(cam, W9966_STATE_DETECTED))
  543. return 1;
  544. // Fill in model specific data
  545. cam->name = "Microtek Eyestar2";
  546. cam->sramsize = 128 << 10; // 128 kib
  547. cam->sramid = 0x02; // w9966cf.pdf
  548. cam->cmask = 0x10; // reverse polarity
  549. cam->min_x = 16; // empirically determined
  550. cam->max_x = 705;
  551. cam->min_y = 14;
  552. cam->max_y = 253;
  553. cam->image = &w9966_lc99053_image;
  554. DPRINTF("Found and initialized a lc99053 chip.n");
  555. w9966_flag_set(cam, W9966_STATE_DETECTED);
  556. return 1;
  557. }
  558. // Setup image properties (brightness, hue, etc.) for the lc99053 chip
  559. // expects a claimed parport
  560. // 1 on success, else 0
  561. static int w9966_lc99053_image(struct w9966_dev* cam)
  562. {
  563. return 1;
  564. }
  565. /*
  566.  * Ugly and primitive i2c protocol functions
  567.  */
  568. // Sets the data line on the i2c bus.
  569. // Expects a claimed pdev.
  570. static inline void w9966_i2c_setsda(struct w9966_dev* cam, int state)
  571. {
  572. if (state)
  573. cam->i2c_state |= W9966_I2C_W_DATA;
  574. else
  575. cam->i2c_state &= ~W9966_I2C_W_DATA;
  576. w9966_wreg(cam, 0x18, cam->i2c_state);
  577. udelay(W9966_I2C_UDELAY);
  578. }
  579. // Sets the clock line on the i2c bus.
  580. // Expects a claimed pdev.
  581. // 1 on success, else 0
  582. static inline int w9966_i2c_setscl(struct w9966_dev* cam, int state)
  583. {
  584. if (state)
  585. cam->i2c_state |= W9966_I2C_W_CLOCK;
  586. else
  587. cam->i2c_state &= ~W9966_I2C_W_CLOCK;
  588. w9966_wreg(cam, 0x18, cam->i2c_state);
  589. udelay(W9966_I2C_UDELAY);
  590. // when we go to high, we also expect the peripheral to ack.
  591. if (state) {
  592. const int timeout = jiffies + W9966_I2C_TIMEOUT;
  593. while (!w9966_i2c_getscl(cam)) {
  594. if (time_after(jiffies, timeout))
  595. return 0;
  596. }
  597. }
  598. return 1;
  599. }
  600. // Get peripheral data line
  601. // Expects a claimed pdev.
  602. static inline int w9966_i2c_getsda(struct w9966_dev* cam)
  603. {
  604. const u8 pins = w9966_rreg(cam, 0x18);
  605. return ((pins & W9966_I2C_R_DATA) > 0);
  606. }
  607. // Get peripheral clock line
  608. // Expects a claimed pdev.
  609. static inline int w9966_i2c_getscl(struct w9966_dev* cam)
  610. {
  611. const u8 pins = w9966_rreg(cam, 0x18);
  612. return ((pins & W9966_I2C_R_CLOCK) > 0);
  613. }
  614. // Write a byte with ack to the i2c bus.
  615. // Expects a claimed pdev.
  616. // 1 on success, else 0
  617. static int w9966_i2c_wbyte(struct w9966_dev* cam, int data)
  618. {
  619. int i;
  620. for (i = 7; i >= 0; i--) {
  621. w9966_i2c_setsda(cam, (data >> i) & 0x01);
  622. if (!w9966_i2c_setscl(cam, 1) ||
  623.     !w9966_i2c_setscl(cam, 0))
  624. return 0;
  625. }
  626. w9966_i2c_setsda(cam, 1);
  627. if (!w9966_i2c_setscl(cam, 1) ||
  628.     !w9966_i2c_setscl(cam, 0))
  629. return 0;
  630. return 1;
  631. }
  632. // Read a data byte with ack from the i2c-bus
  633. // Expects a claimed pdev. -1 on error
  634. static int w9966_i2c_rbyte(struct w9966_dev* cam)
  635. {
  636. u8 data = 0x00;
  637. int i;
  638. w9966_i2c_setsda(cam, 1);
  639. for (i = 0; i < 8; i++)
  640. {
  641. if (!w9966_i2c_setscl(cam, 1))
  642. return -1;
  643. data = data << 1;
  644. if (w9966_i2c_getsda(cam))
  645. data |= 0x01;
  646. w9966_i2c_setscl(cam, 0);
  647. }
  648. return data;
  649. }
  650. // Read a register from the i2c device.
  651. // Expects claimed pdev. -1 on error
  652. static int w9966_i2c_rreg(struct w9966_dev* cam, int device, int reg)
  653. {
  654. int data;
  655. w9966_i2c_setsda(cam, 0);
  656. w9966_i2c_setscl(cam, 0);
  657. if (!w9966_i2c_wbyte(cam, device << 1) ||
  658.     !w9966_i2c_wbyte(cam, reg))
  659. return -1;
  660. w9966_i2c_setsda(cam, 1);
  661. if (!w9966_i2c_setscl(cam, 1))
  662. return -1;
  663. w9966_i2c_setsda(cam, 0);
  664. w9966_i2c_setscl(cam, 0);
  665. if (!w9966_i2c_wbyte(cam, (device << 1) | 1) ||
  666.     (data = w9966_i2c_rbyte(cam)) == -1)
  667. return -1;
  668. w9966_i2c_setsda(cam, 0);
  669. if (!w9966_i2c_setscl(cam, 1))
  670. return -1;
  671. w9966_i2c_setsda(cam, 1);
  672. return data;
  673. }
  674. // Write a register to the i2c device.
  675. // Expects claimed pdev.
  676. // 1 on success, else 0
  677. static int w9966_i2c_wreg(struct w9966_dev* cam, int device, int reg, int data)
  678. {
  679. w9966_i2c_setsda(cam, 0);
  680. w9966_i2c_setscl(cam, 0);
  681. if (!w9966_i2c_wbyte(cam, device << 1) ||
  682.     !w9966_i2c_wbyte(cam, reg) ||
  683.     !w9966_i2c_wbyte(cam, data))
  684. return 0;
  685. w9966_i2c_setsda(cam, 0);
  686. if (!w9966_i2c_setscl(cam, 1))
  687. return 0;
  688. w9966_i2c_setsda(cam, 1);
  689. return 1;
  690. }
  691. /*
  692.  * Video4linux interface
  693.  */
  694. static int w9966_v4l_open(struct video_device *vdev, int flags)
  695. {
  696. struct w9966_dev *cam = (struct w9966_dev*)vdev->priv;
  697. // Claim parport
  698. if (!w9966_pdev_claim(cam)) {
  699. DPRINTF("Unable to claim parport");
  700. return -EFAULT;
  701. }
  702. // Allocate read buffer
  703. cam->buffer = (u8*)kmalloc(W9966_RBUFFER, GFP_KERNEL);
  704. if (cam->buffer == NULL) {
  705. w9966_pdev_release(cam);
  706. return -ENOMEM;
  707. }
  708. w9966_flag_set(cam, W9966_STATE_BUFFER);
  709. return 0;
  710. }
  711. static void w9966_v4l_close(struct video_device *vdev)
  712. {
  713. struct w9966_dev *cam = (struct w9966_dev*)vdev->priv;
  714. // Free read buffer
  715. if (w9966_flag_test(cam, W9966_STATE_BUFFER)) {
  716. kfree(cam->buffer);
  717. w9966_flag_clear(cam, W9966_STATE_BUFFER);
  718. }
  719. // release parport
  720. w9966_pdev_release(cam);
  721. }
  722. // expects a claimed parport
  723. static int w9966_v4l_ioctl(struct video_device *vdev, unsigned int cmd, void *arg)
  724. {
  725. struct w9966_dev *cam = (struct w9966_dev*)vdev->priv;
  726. switch(cmd)
  727. {
  728. case VIDIOCGCAP:
  729. {
  730. struct video_capability vcap = {
  731. W9966_DRIVERNAME, // name
  732. VID_TYPE_CAPTURE | VID_TYPE_SCALES, // type
  733. 1, 0, // vid, aud channels
  734. cam->max_x - cam->min_x,
  735. cam->max_y - cam->min_y,
  736. W9966_WND_MIN_W,
  737. W9966_WND_MIN_H
  738. };
  739. if(copy_to_user(arg, &vcap, sizeof(vcap)) != 0)
  740. return -EFAULT;
  741. return 0;
  742. }
  743. case VIDIOCGCHAN:
  744. {
  745. struct video_channel vch;
  746. if(copy_from_user(&vch, arg, sizeof(vch)) != 0)
  747. return -EFAULT;
  748. if(vch.channel != 0) // We only support one channel (#0)
  749. return -EINVAL;
  750. strcpy(vch.name, "CCD-input");
  751. vch.flags = 0; // We have no tuner or audio
  752. vch.tuners = 0;
  753. vch.type = VIDEO_TYPE_CAMERA;
  754. vch.norm = 0; // ???
  755. if(copy_to_user(arg, &vch, sizeof(vch)) != 0)
  756. return -EFAULT;
  757. return 0;
  758. }
  759. case VIDIOCSCHAN:
  760. {
  761. struct video_channel vch;
  762. if(copy_from_user(&vch, arg, sizeof(vch) ) != 0)
  763. return -EFAULT;
  764. if(vch.channel != 0)
  765. return -EINVAL;
  766. return 0;
  767. }
  768. case VIDIOCGTUNER:
  769. {
  770. struct video_tuner vtune;
  771. if(copy_from_user(&vtune, arg, sizeof(vtune)) != 0)
  772. return -EFAULT;
  773. if(vtune.tuner != 0);
  774. return -EINVAL;
  775. strcpy(vtune.name, "no tuner");
  776. vtune.rangelow = 0;
  777. vtune.rangehigh = 0;
  778. vtune.flags = VIDEO_TUNER_NORM;
  779. vtune.mode = VIDEO_MODE_AUTO;
  780. vtune.signal = 0xffff;
  781. if(copy_to_user(arg, &vtune, sizeof(vtune)) != 0)
  782. return -EFAULT;
  783. return 0;
  784. }
  785. case VIDIOCSTUNER:
  786. {
  787. struct video_tuner vtune;
  788. if (copy_from_user(&vtune, arg, sizeof(vtune)) != 0)
  789. return -EFAULT;
  790. if (vtune.tuner != 0)
  791. return -EINVAL;
  792. if (vtune.mode != VIDEO_MODE_AUTO)
  793. return -EINVAL;
  794. return 0;
  795. }
  796. case VIDIOCGPICT:
  797. {
  798. struct video_picture vpic = {
  799. cam->brightness << 8, // brightness
  800. (cam->hue + 128) << 8, // hue
  801. cam->color << 9, // color
  802. cam->contrast << 9, // contrast
  803. 0x8000, // whiteness
  804. 16, VIDEO_PALETTE_YUV422// bpp, palette format
  805. };
  806. if(copy_to_user(arg, &vpic, sizeof(vpic)) != 0)
  807. return -EFAULT;
  808. return 0;
  809. }
  810. case VIDIOCSPICT:
  811. {
  812. struct video_picture vpic;
  813. if(copy_from_user(&vpic, arg, sizeof(vpic)) != 0)
  814. return -EFAULT;
  815. if (vpic.depth != 16 || vpic.palette != VIDEO_PALETTE_YUV422)
  816. return -EINVAL;
  817. cam->brightness = vpic.brightness >> 8;
  818. cam->hue = (vpic.hue >> 8) - 128;
  819. cam->color = vpic.colour >> 9;
  820. cam->contrast = vpic.contrast >> 9;
  821. if (!cam->image(cam))
  822. return -EFAULT;
  823. return 0;
  824. }
  825. case VIDIOCSWIN:
  826. {
  827. struct video_window vwin;
  828. if (copy_from_user(&vwin, arg, sizeof(vwin)) != 0)
  829. return -EFAULT;
  830. if (
  831.   vwin.flags != 0 ||
  832.   vwin.clipcount != 0)
  833. return -EINVAL;
  834. if (vwin.width  > cam->max_x - cam->min_x ||
  835.     vwin.height > cam->max_y - cam->min_y ||
  836.     vwin.width  < W9966_WND_MIN_W ||
  837.     vwin.height < W9966_WND_MIN_H)
  838. return -EINVAL;
  839. // Update camera regs
  840. if (!w9966_window(cam, 0, 0, 1023, 1023, vwin.width, vwin.height))
  841. return -EFAULT;
  842. return 0;
  843. }
  844. case VIDIOCGWIN:
  845. {
  846. struct video_window vwin;
  847. memset(&vwin, 0, sizeof(vwin));
  848. vwin.width = cam->width;
  849. vwin.height = cam->height;
  850. if(copy_to_user(arg, &vwin, sizeof(vwin)) != 0)
  851. return -EFAULT;
  852. return 0;
  853. }
  854. // Unimplemented
  855. case VIDIOCCAPTURE:
  856. case VIDIOCGFBUF:
  857. case VIDIOCSFBUF:
  858. case VIDIOCKEY:
  859. case VIDIOCGFREQ:
  860. case VIDIOCSFREQ:
  861. case VIDIOCGAUDIO:
  862. case VIDIOCSAUDIO:
  863. return -EINVAL;
  864. default:
  865. return -ENOIOCTLCMD;
  866. }
  867. return 0;
  868. }
  869. // Capture data
  870. // expects a claimed parport and allocated read buffer
  871. static long w9966_v4l_read(struct video_device *vdev, char *buf, unsigned long count,  int noblock)
  872. {
  873. struct w9966_dev *cam = (struct w9966_dev *)vdev->priv;
  874. const u8 addr = 0xa0; // ECP, read, CCD-transfer, 00000
  875. u8* dest = (u8*)buf;
  876. unsigned long dleft = count;
  877. // Why would anyone want more than this??
  878. if (count > cam->width * cam->height * 2)
  879. count = cam->width * cam->height * 2;
  880. w9966_wreg(cam, 0x00, 0x02); // Reset ECP-FIFO buffer
  881. w9966_wreg(cam, 0x00, 0x00); // Return to normal operation
  882. w9966_wreg(cam, 0x01, cam->cmask | 0x80); // Enable capture
  883. // write special capture-addr and negotiate into data transfer
  884. if (parport_negotiate(cam->pport, cam->ppmode|IEEE1284_ADDR) != 0 ||
  885.     parport_write(cam->pport, &addr, 1) != 1 ||
  886.     parport_negotiate(cam->pport, cam->ppmode|IEEE1284_DATA) != 0) {
  887. DPRINTF("Unable to write capture-addr.n");
  888. return -EFAULT;
  889. }
  890. while(dleft > 0)
  891. {
  892. const size_t tsize = (dleft > W9966_RBUFFER) ? W9966_RBUFFER : dleft;
  893. if (parport_read(cam->pport, cam->buffer, tsize) < tsize)
  894. return -EFAULT;
  895. if (copy_to_user(dest, cam->buffer, tsize) != 0)
  896. return -EFAULT;
  897. dest += tsize;
  898. dleft -= tsize;
  899. }
  900. w9966_wreg(cam, 0x01, cam->cmask); // Disable capture
  901. return count;
  902. }
  903. // Called once for every parport on init
  904. static void w9966_attach(struct parport *port)
  905. {
  906. int i;
  907. for (i = 0; i < W9966_MAXCAMS; i++) {
  908. if (strcmp(pardev[i], "none") == 0 || // Skip if 'none' or if
  909.     w9966_cams[i].dev_state != 0) // cam already assigned
  910. continue;
  911. if (strcmp(pardev[i], "auto") == 0 ||
  912.     strcmp(pardev[i], port->name) == 0) {
  913. if (!w9966_init(&w9966_cams[i], port, video_nr[i]))
  914. w9966_term(&w9966_cams[i]);
  915. break; // return
  916. }
  917. }
  918. }
  919. // Called once for every parport on termination
  920. static void w9966_detach(struct parport *port)
  921. {
  922. int i;
  923. for (i = 0; i < W9966_MAXCAMS; i++)
  924. if (w9966_cams[i].dev_state != 0 && w9966_cams[i].pport == port)
  925. w9966_term(&w9966_cams[i]);
  926. }
  927. static struct parport_driver w9966_ppd = {
  928. W9966_DRIVERNAME,
  929. w9966_attach,
  930. w9966_detach,
  931. NULL
  932. };
  933. // Module entry point
  934. static int __init w9966_mod_init(void)
  935. {
  936. int i, err;
  937. w9966_cams = kmalloc(
  938. sizeof(struct w9966_dev) * W9966_MAXCAMS, GFP_KERNEL);
  939. if (!w9966_cams)
  940. return -ENOMEM;
  941. for (i = 0; i < W9966_MAXCAMS; i++)
  942. w9966_cams[i].dev_state = 0;
  943. // Register parport driver
  944. if ((err = parport_register_driver(&w9966_ppd)) != 0) {
  945. kfree(w9966_cams);
  946. w9966_cams = 0;
  947. return err;
  948. }
  949. return 0;
  950. }
  951. // Module cleanup
  952. static void __exit w9966_mod_term(void)
  953. {
  954. if (w9966_cams)
  955. kfree(w9966_cams);
  956. parport_unregister_driver(&w9966_ppd);
  957. }
  958. module_init(w9966_mod_init);
  959. module_exit(w9966_mod_term);