w9966.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:24k
源码类别:

嵌入式Linux

开发平台:

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 (using the Philips saa7111a chip)
  19. Todo:
  20.   * Add a working EPP mode
  21.   * Support other ccd-control chips than the saa7111
  22.     (what combinations exists?)
  23.   * Add proper probing. IEEE1284 probing of w9966 chips haven't
  24.     worked since parport drivers changed in 2.4.x.
  25.   * Probe for onboard SRAM, port directions etc. (if possible)
  26. Changes:
  27. Alan Cox: Removed RGB mode for kernel merge, added THIS_MODULE
  28. and owner support for newer module locks
  29. */
  30. #include <linux/module.h>
  31. #include <linux/init.h>
  32. #include <linux/delay.h>
  33. #include <linux/videodev.h>
  34. #include <linux/parport.h>
  35. #include <linux/types.h>
  36. #include <linux/slab.h>
  37. //#define DEBUG // Undef me for production
  38. #ifdef DEBUG
  39. #define DPRINTF(x, a...) printk(KERN_DEBUG "W9966: "__FUNCTION__ "(): "x, ##a)
  40. #else
  41. #define DPRINTF(x...)
  42. #endif
  43. /*
  44.  * Defines, simple typedefs etc.
  45.  */
  46. #define W9966_DRIVERNAME "W9966CF Webcam"
  47. #define W9966_MAXCAMS 4 // Maximum number of cameras
  48. #define W9966_RBUFFER 2048 // Read buffer (must be an even number)
  49. #define W9966_SRAMSIZE 131072 // 128kb
  50. #define W9966_SRAMID 0x02 // check w9966cf.pdf
  51. // Empirically determined window limits
  52. #define W9966_WND_MIN_X 16
  53. #define W9966_WND_MIN_Y 14
  54. #define W9966_WND_MAX_X 705
  55. #define W9966_WND_MAX_Y 253
  56. #define W9966_WND_MAX_W (W9966_WND_MAX_X - W9966_WND_MIN_X)
  57. #define W9966_WND_MAX_H (W9966_WND_MAX_Y - W9966_WND_MIN_Y)
  58. // Keep track of our current state
  59. #define W9966_STATE_PDEV 0x01
  60. #define W9966_STATE_CLAIMED 0x02
  61. #define W9966_STATE_VDEV 0x04
  62. #define W9966_I2C_W_ID 0x48
  63. #define W9966_I2C_R_ID 0x49
  64. #define W9966_I2C_R_DATA 0x08
  65. #define W9966_I2C_R_CLOCK 0x04
  66. #define W9966_I2C_W_DATA 0x02
  67. #define W9966_I2C_W_CLOCK 0x01
  68. struct w9966_dev {
  69. u8 dev_state;
  70. u8 i2c_state;
  71. int ppmode;
  72. struct parport* pport;
  73. struct pardevice* pdev;
  74. struct video_device vdev;
  75. u16 width;
  76. u16 height;
  77. u8 brightness;
  78. s8 contrast;
  79. s8 color;
  80. s8 hue;
  81. u8* buffer;
  82. };
  83. /*
  84.  * Module specific properties
  85.  */
  86. MODULE_AUTHOR("Jakob Kemi <jakob.kemi@telia.com>");
  87. MODULE_DESCRIPTION("Winbond w9966cf WebCam driver (FlyCam Supra and others)");
  88. MODULE_LICENSE("GPL");
  89. static const char* pardev[] = {[0 ... W9966_MAXCAMS] = "auto"};
  90. MODULE_PARM(pardev, "0-" __MODULE_STRING(W9966_MAXCAMS) "s");
  91. MODULE_PARM_DESC(pardev,"n
  92. <auto|name|none[,...]> Where to find cameras.n
  93.   auto = probe all parports for cameran
  94.   name = name of parport (eg parport0)n
  95.   none = don't search for this cameran
  96. You can specify all cameras this way, for example:
  97.   pardev=parport2,auto,none,parport0 would search for cam1 on parport2, searchn
  98.   for cam2 on all parports, skip cam3 and search for cam4 on parport0");
  99. static int parmode = 0;
  100. MODULE_PARM(parmode, "i");
  101. MODULE_PARM_DESC(parmode, "n<0|1|2> transfer mode (0=auto, 1=ecp, 2=epp)");
  102. static int video_nr = -1;
  103. MODULE_PARM(video_nr, "i");
  104. /*
  105.  * Private data
  106.  */
  107. static struct w9966_dev w9966_cams[W9966_MAXCAMS];
  108. /*
  109.  * Private function declares
  110.  */
  111. static inline void w9966_setState(struct w9966_dev* cam, int mask, int val);
  112. static inline int  w9966_getState(struct w9966_dev* cam, int mask, int val);
  113. static inline void w9966_pdev_claim(struct w9966_dev *vdev);
  114. static inline void w9966_pdev_release(struct w9966_dev *vdev);
  115. static int w9966_rReg(struct w9966_dev* cam, int reg);
  116. static int w9966_wReg(struct w9966_dev* cam, int reg, int data);
  117. static int w9966_rReg_i2c(struct w9966_dev* cam, int reg);
  118. static int w9966_wReg_i2c(struct w9966_dev* cam, int reg, int data);
  119. static int w9966_findlen(int near, int size, int maxlen);
  120. static int w9966_calcscale(int size, int min, int max, int* beg, int* end, unsigned char* factor);
  121. static int w9966_setup(struct w9966_dev* cam, int x1, int y1, int x2, int y2, int w, int h);
  122. static int  w9966_init(struct w9966_dev* cam, struct parport* port);
  123. static void w9966_term(struct w9966_dev* cam);
  124. static inline void w9966_i2c_setsda(struct w9966_dev* cam, int state);
  125. static inline int  w9966_i2c_setscl(struct w9966_dev* cam, int state);
  126. static inline int  w9966_i2c_getsda(struct w9966_dev* cam);
  127. static inline int  w9966_i2c_getscl(struct w9966_dev* cam);
  128. static int w9966_i2c_wbyte(struct w9966_dev* cam, int data);
  129. static int w9966_i2c_rbyte(struct w9966_dev* cam);
  130. static int  w9966_v4l_open(struct video_device *vdev, int mode);
  131. static void w9966_v4l_close(struct video_device *vdev);
  132. static int  w9966_v4l_ioctl(struct video_device *vdev, unsigned int cmd, void *arg);
  133. static long w9966_v4l_read(struct video_device *vdev, char *buf, unsigned long count, int noblock);
  134. /*
  135.  * Private function defines
  136.  */
  137. // Set camera phase flags, so we know what to uninit when terminating 
  138. static inline void w9966_setState(struct w9966_dev* cam, int mask, int val)
  139. {
  140. cam->dev_state = (cam->dev_state & ~mask) ^ val;
  141. }
  142. // Get camera phase flags
  143. static inline int w9966_getState(struct w9966_dev* cam, int mask, int val)
  144. {
  145. return ((cam->dev_state & mask) == val);
  146. }
  147. // Claim parport for ourself
  148. static inline void w9966_pdev_claim(struct w9966_dev* cam)
  149. {
  150. if (w9966_getState(cam, W9966_STATE_CLAIMED, W9966_STATE_CLAIMED))
  151. return;
  152. parport_claim_or_block(cam->pdev);
  153. w9966_setState(cam, W9966_STATE_CLAIMED, W9966_STATE_CLAIMED);
  154. }
  155. // Release parport for others to use
  156. static inline void w9966_pdev_release(struct w9966_dev* cam)
  157. {
  158. if (w9966_getState(cam, W9966_STATE_CLAIMED, 0))
  159. return;
  160. parport_release(cam->pdev);
  161. w9966_setState(cam, W9966_STATE_CLAIMED, 0);
  162. }
  163.  
  164. // Read register from W9966 interface-chip
  165. // Expects a claimed pdev
  166. // -1 on error, else register data (byte)
  167. static int w9966_rReg(struct w9966_dev* cam, int reg)
  168. {
  169. // ECP, read, regtransfer, REG, REG, REG, REG, REG
  170. const unsigned char addr = 0x80 | (reg & 0x1f);
  171. unsigned char val;
  172. if (parport_negotiate(cam->pport, cam->ppmode | IEEE1284_ADDR) != 0)
  173. return -1;
  174. if (parport_write(cam->pport, &addr, 1) != 1)
  175. return -1;
  176. if (parport_negotiate(cam->pport, cam->ppmode | IEEE1284_DATA) != 0)
  177. return -1;
  178. if (parport_read(cam->pport, &val, 1) != 1)
  179. return -1;
  180. return val;
  181. }
  182. // Write register to W9966 interface-chip
  183. // Expects a claimed pdev
  184. // -1 on error
  185. static int w9966_wReg(struct w9966_dev* cam, int reg, int data)
  186. {
  187. // ECP, write, regtransfer, REG, REG, REG, REG, REG
  188. const unsigned char addr = 0xc0 | (reg & 0x1f);
  189. const unsigned char val = data;
  190. if (parport_negotiate(cam->pport, cam->ppmode | IEEE1284_ADDR) != 0)
  191. return -1;
  192. if (parport_write(cam->pport, &addr, 1) != 1)
  193. return -1;
  194. if (parport_negotiate(cam->pport, cam->ppmode | IEEE1284_DATA) != 0)
  195. return -1;
  196. if (parport_write(cam->pport, &val, 1) != 1)
  197. return -1;
  198. return 0;
  199. }
  200. // Initialize camera device. Setup all internal flags, set a
  201. // default video mode, setup ccd-chip, register v4l device etc..
  202. // Also used for 'probing' of hardware.
  203. // -1 on error
  204. static int w9966_init(struct w9966_dev* cam, struct parport* port)
  205. {
  206. if (cam->dev_state != 0)
  207. return -1;
  208. cam->pport = port;
  209. cam->brightness = 128;
  210. cam->contrast = 64;
  211. cam->color = 64;
  212. cam->hue = 0;
  213. // Select requested transfer mode
  214. switch(parmode)
  215. {
  216. default: // Auto-detect (priority: hw-ecp, hw-epp, sw-ecp)
  217. case 0:
  218. if (port->modes & PARPORT_MODE_ECP)
  219. cam->ppmode = IEEE1284_MODE_ECP;
  220. /* else if (port->modes & PARPORT_MODE_EPP)
  221. cam->ppmode = IEEE1284_MODE_EPP;*/
  222. else
  223. cam->ppmode = IEEE1284_MODE_ECPSWE;
  224. break;
  225. case 1: // hw- or sw-ecp
  226. if (port->modes & PARPORT_MODE_ECP)
  227. cam->ppmode = IEEE1284_MODE_ECP;
  228. else
  229. cam->ppmode = IEEE1284_MODE_ECPSWE;
  230. break;
  231. case 2: // hw- or sw-epp
  232. if (port->modes & PARPORT_MODE_EPP)
  233. cam->ppmode = IEEE1284_MODE_EPP;
  234. else
  235. cam->ppmode = IEEE1284_MODE_EPPSWE;
  236. break;
  237. }
  238. // Tell the parport driver that we exists
  239. cam->pdev = parport_register_device(port, "w9966", NULL, NULL, NULL, 0, NULL);
  240. if (cam->pdev == NULL) {
  241. DPRINTF("parport_register_device() failedn");
  242. return -1;
  243. }
  244. w9966_setState(cam, W9966_STATE_PDEV, W9966_STATE_PDEV);
  245. w9966_pdev_claim(cam);
  246. // Setup a default capture mode
  247. if (w9966_setup(cam, 0, 0, 1023, 1023, 200, 160) != 0) {
  248. DPRINTF("w9966_setup() failed.n");
  249. return -1;
  250. }
  251. w9966_pdev_release(cam);
  252. // Fill in the video_device struct and register us to v4l
  253. memset(&cam->vdev, 0, sizeof(struct video_device));
  254. strcpy(cam->vdev.name, W9966_DRIVERNAME);
  255. cam->vdev.type = VID_TYPE_CAPTURE | VID_TYPE_SCALES;
  256. cam->vdev.hardware = VID_HARDWARE_W9966;
  257. cam->vdev.open = &w9966_v4l_open;
  258. cam->vdev.close = &w9966_v4l_close;
  259. cam->vdev.read = &w9966_v4l_read;
  260. cam->vdev.ioctl = &w9966_v4l_ioctl;
  261. cam->vdev.priv = (void*)cam;
  262. cam->vdev.owner = THIS_MODULE;
  263. if (video_register_device(&cam->vdev, VFL_TYPE_GRABBER, video_nr) == -1)  
  264. return -1;
  265. w9966_setState(cam, W9966_STATE_VDEV, W9966_STATE_VDEV);
  266. cam->buffer = NULL;
  267. // All ok
  268. printk(
  269. "w9966cf: Found and initialized a webcam on %s.n",
  270. cam->pport->name
  271. );
  272. return 0;
  273. }
  274. // Terminate everything gracefully
  275. static void w9966_term(struct w9966_dev* cam)
  276. {
  277. // Delete allocated buffer if needed
  278. if (cam->buffer != NULL) {
  279. kfree(cam->buffer);
  280. cam->buffer = NULL;
  281. }
  282. // Unregister from v4l
  283. if (w9966_getState(cam, W9966_STATE_VDEV, W9966_STATE_VDEV)) {
  284. video_unregister_device(&cam->vdev);
  285. w9966_setState(cam, W9966_STATE_VDEV, 0);
  286. }
  287. // Terminate from IEEE1284 mode and release pdev block
  288. if (w9966_getState(cam, W9966_STATE_PDEV, W9966_STATE_PDEV)) {
  289. w9966_pdev_claim(cam);
  290. parport_negotiate(cam->pport, IEEE1284_MODE_COMPAT);
  291. w9966_pdev_release(cam);
  292. }
  293. // Unregister from parport
  294. if (w9966_getState(cam, W9966_STATE_PDEV, W9966_STATE_PDEV)) {
  295. parport_unregister_device(cam->pdev);
  296. w9966_setState(cam, W9966_STATE_PDEV, 0);
  297. }
  298. }
  299. // Find a good length for capture window (used both for W and H)
  300. // A bit ugly but pretty functional. The capture length
  301. // have to match the downscale
  302. static int w9966_findlen(int near, int size, int maxlen)
  303. {
  304. int bestlen = size;
  305. int besterr = abs(near - bestlen);
  306. int len;
  307. for(len = size+1;len < maxlen;len++)
  308. {
  309. int err;
  310. if ( ((64*size) %len) != 0)
  311. continue;
  312. err = abs(near - len);
  313. // Only continue as long as we keep getting better values
  314. if (err > besterr)
  315. break;
  316. besterr = err;
  317. bestlen = len;
  318. }
  319. return bestlen;
  320. }
  321. // Modify capture window (if necessary) 
  322. // and calculate downscaling
  323. // Return -1 on error
  324. static int w9966_calcscale(int size, int min, int max, int* beg, int* end, unsigned char* factor)
  325. {
  326. int maxlen = max - min;
  327. int len = *end - *beg + 1;
  328. int newlen = w9966_findlen(len, size, maxlen);
  329. int err = newlen - len; 
  330. // Check for bad format
  331. if (newlen > maxlen || newlen < size)
  332. return -1;
  333. // Set factor (6 bit fixed)
  334. *factor = (64*size) / newlen;
  335. if (*factor == 64)
  336. *factor = 0x00; // downscale is disabled
  337. else
  338. *factor |= 0x80; // set downscale-enable bit
  339. // Modify old beginning and end
  340. *beg -= err / 2;
  341. *end += err - (err / 2);
  342. // Move window if outside borders
  343. if (*beg < min) {
  344. *end += min - *beg;
  345. *beg += min - *beg;
  346. }
  347. if (*end > max) {
  348. *beg -= *end - max;
  349. *end -= *end - max;
  350. }
  351. return 0;
  352. }
  353. // Setup the cameras capture window etc.
  354. // Expects a claimed pdev
  355. // return -1 on error
  356. static int w9966_setup(struct w9966_dev* cam, int x1, int y1, int x2, int y2, int w, int h)
  357. {
  358. unsigned int i;
  359. unsigned int enh_s, enh_e;
  360. u8 scale_x, scale_y;
  361. u8 regs[0x1c];
  362. u8 saa7111_regs[] = {
  363. 0x21, 0x00, 0xd8, 0x23, 0x00, 0x80, 0x80, 0x00,
  364. 0x88, 0x10, 0x80, 0x40, 0x40, 0x00, 0x01, 0x00,
  365. 0x48, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  366. 0x00, 0x00, 0x00, 0x71, 0xe7, 0x00, 0x00, 0xc0
  367. };
  368. if (w*h*2 > W9966_SRAMSIZE)
  369. {
  370. DPRINTF("capture window exceeds SRAM size!.n");
  371. w = 200; h = 160; // Pick default values
  372. }
  373. w &= ~0x1;
  374. if (w < 2) w = 2;
  375. if (h < 1) h = 1;
  376. if (w > W9966_WND_MAX_W) w = W9966_WND_MAX_W;
  377. if (h > W9966_WND_MAX_H) h = W9966_WND_MAX_H;
  378. cam->width = w;
  379. cam->height = h;
  380. enh_s = 0;
  381. enh_e = w*h*2;
  382. // Modify capture window if necessary and calculate downscaling
  383. if (
  384. w9966_calcscale(w, W9966_WND_MIN_X, W9966_WND_MAX_X, &x1, &x2, &scale_x) != 0 ||
  385. w9966_calcscale(h, W9966_WND_MIN_Y, W9966_WND_MAX_Y, &y1, &y2, &scale_y) != 0
  386. ) return -1;
  387. DPRINTF(
  388. "%dx%d, x: %d<->%d, y: %d<->%d, sx: %d/64, sy: %d/64.n",
  389. w, h, x1, x2, y1, y2, scale_x&~0x80, scale_y&~0x80
  390. );
  391. // Setup registers
  392. regs[0x00] = 0x00; // Set normal operation
  393. regs[0x01] = 0x18; // Capture mode
  394. regs[0x02] = scale_y; // V-scaling
  395. regs[0x03] = scale_x; // H-scaling
  396. // Capture window
  397. regs[0x04] = (x1 & 0x0ff); // X-start (8 low bits)
  398. regs[0x05] = (x1 & 0x300)>>8; // X-start (2 high bits)
  399. regs[0x06] = (y1 & 0x0ff); // Y-start (8 low bits)
  400. regs[0x07] = (y1 & 0x300)>>8; // Y-start (2 high bits)
  401. regs[0x08] = (x2 & 0x0ff); // X-end (8 low bits)
  402. regs[0x09] = (x2 & 0x300)>>8; // X-end (2 high bits)
  403. regs[0x0a] = (y2 & 0x0ff); // Y-end (8 low bits)
  404. regs[0x0c] = W9966_SRAMID; // SRAM-banks (1x 128kb)
  405. // Enhancement layer
  406. regs[0x0d] = (enh_s& 0x000ff); // Enh. start (0-7)
  407. regs[0x0e] = (enh_s& 0x0ff00)>>8; // Enh. start (8-15)
  408. regs[0x0f] = (enh_s& 0x70000)>>16; // Enh. start (16-17/18??)
  409. regs[0x10] = (enh_e& 0x000ff); // Enh. end (0-7)
  410. regs[0x11] = (enh_e& 0x0ff00)>>8; // Enh. end (8-15)
  411. regs[0x12] = (enh_e& 0x70000)>>16; // Enh. end (16-17/18??)
  412. // Misc
  413. regs[0x13] = 0x40; // VEE control (raw 4:2:2)
  414. regs[0x17] = 0x00; // ???
  415. regs[0x18] = cam->i2c_state = 0x00; // Serial bus
  416. regs[0x19] = 0xff; // I/O port direction control
  417. regs[0x1a] = 0xff; // I/O port data register
  418. regs[0x1b] = 0x10; // ???
  419. // SAA7111 chip settings
  420. saa7111_regs[0x0a] = cam->brightness;
  421. saa7111_regs[0x0b] = cam->contrast;
  422. saa7111_regs[0x0c] = cam->color;
  423. saa7111_regs[0x0d] = cam->hue;
  424. // Reset (ECP-fifo & serial-bus)
  425. if (w9966_wReg(cam, 0x00, 0x03) == -1)
  426. return -1;
  427. // Write regs to w9966cf chip
  428. for (i = 0; i < 0x1c; i++)
  429. if (w9966_wReg(cam, i, regs[i]) == -1)
  430. return -1;
  431. // Write regs to saa7111 chip
  432. for (i = 0; i < 0x20; i++)
  433. if (w9966_wReg_i2c(cam, i, saa7111_regs[i]) == -1)
  434. return -1;
  435. return 0;
  436. }
  437. /*
  438.  * Ugly and primitive i2c protocol functions
  439.  */
  440. // Sets the data line on the i2c bus.
  441. // Expects a claimed pdev.
  442. static inline void w9966_i2c_setsda(struct w9966_dev* cam, int state)
  443. {
  444. if (state)
  445. cam->i2c_state |= W9966_I2C_W_DATA;
  446. else
  447. cam->i2c_state &= ~W9966_I2C_W_DATA;
  448. w9966_wReg(cam, 0x18, cam->i2c_state);
  449. udelay(5);
  450. }
  451. // Sets the clock line on the i2c bus.
  452. // Expects a claimed pdev. -1 on error
  453. static inline int w9966_i2c_setscl(struct w9966_dev* cam, int state)
  454. {
  455. int timeout;
  456. if (state)
  457. cam->i2c_state |= W9966_I2C_W_CLOCK;
  458. else
  459. cam->i2c_state &= ~W9966_I2C_W_CLOCK;
  460. w9966_wReg(cam, 0x18, cam->i2c_state);
  461. udelay(5);
  462. // we go to high, we also expect the peripheral to ack.
  463. if (state) {
  464. timeout = jiffies + 100;
  465. while (!w9966_i2c_getscl(cam)) {
  466. if (jiffies > timeout)
  467. return -1;
  468. }
  469. }
  470. return 0;
  471. }
  472. // Get peripheral data line
  473. // Expects a claimed pdev.
  474. static inline int w9966_i2c_getsda(struct w9966_dev* cam)
  475. {
  476. const unsigned char state = w9966_rReg(cam, 0x18);
  477. return ((state & W9966_I2C_R_DATA) > 0);
  478. }
  479. // Get peripheral clock line
  480. // Expects a claimed pdev.
  481. static inline int w9966_i2c_getscl(struct w9966_dev* cam)
  482. {
  483. const unsigned char state = w9966_rReg(cam, 0x18);
  484. return ((state & W9966_I2C_R_CLOCK) > 0);
  485. }
  486. // Write a byte with ack to the i2c bus.
  487. // Expects a claimed pdev. -1 on error
  488. static int w9966_i2c_wbyte(struct w9966_dev* cam, int data)
  489. {
  490. int i;
  491. for (i = 7; i >= 0; i--)
  492. {
  493. w9966_i2c_setsda(cam, (data >> i) & 0x01);
  494. if (w9966_i2c_setscl(cam, 1) == -1)
  495. return -1;
  496. w9966_i2c_setscl(cam, 0);
  497. }
  498. w9966_i2c_setsda(cam, 1);
  499. if (w9966_i2c_setscl(cam, 1) == -1)
  500. return -1;
  501. w9966_i2c_setscl(cam, 0);
  502. return 0;
  503. }
  504. // Read a data byte with ack from the i2c-bus
  505. // Expects a claimed pdev. -1 on error
  506. static int w9966_i2c_rbyte(struct w9966_dev* cam)
  507. {
  508. unsigned char data = 0x00;
  509. int i;
  510. w9966_i2c_setsda(cam, 1);
  511. for (i = 0; i < 8; i++)
  512. {
  513. if (w9966_i2c_setscl(cam, 1) == -1)
  514. return -1;
  515. data = data << 1;
  516. if (w9966_i2c_getsda(cam))
  517. data |= 0x01;
  518. w9966_i2c_setscl(cam, 0);
  519. }
  520. return data;
  521. }
  522. // Read a register from the i2c device.
  523. // Expects claimed pdev. -1 on error
  524. static int w9966_rReg_i2c(struct w9966_dev* cam, int reg)
  525. {
  526. int data;
  527. w9966_i2c_setsda(cam, 0);
  528. w9966_i2c_setscl(cam, 0);
  529. if (
  530. w9966_i2c_wbyte(cam, W9966_I2C_W_ID) == -1 ||
  531. w9966_i2c_wbyte(cam, reg) == -1
  532. )
  533. return -1;
  534. w9966_i2c_setsda(cam, 1);
  535. if (w9966_i2c_setscl(cam, 1) == -1)
  536. return -1;
  537. w9966_i2c_setsda(cam, 0);
  538. w9966_i2c_setscl(cam, 0);
  539. if (
  540. w9966_i2c_wbyte(cam, W9966_I2C_R_ID) == -1 ||
  541. (data = w9966_i2c_rbyte(cam)) == -1
  542. )
  543. return -1;
  544. w9966_i2c_setsda(cam, 0);
  545. if (w9966_i2c_setscl(cam, 1) == -1)
  546. return -1;
  547. w9966_i2c_setsda(cam, 1);
  548. return data;
  549. }
  550. // Write a register to the i2c device.
  551. // Expects claimed pdev. -1 on error
  552. static int w9966_wReg_i2c(struct w9966_dev* cam, int reg, int data)
  553. {
  554. w9966_i2c_setsda(cam, 0);
  555. w9966_i2c_setscl(cam, 0);
  556. if (
  557. w9966_i2c_wbyte(cam, W9966_I2C_W_ID) == -1 ||
  558. w9966_i2c_wbyte(cam, reg) == -1 ||
  559. w9966_i2c_wbyte(cam, data) == -1
  560. )
  561. return -1;
  562. w9966_i2c_setsda(cam, 0);
  563. if (w9966_i2c_setscl(cam, 1) == -1)
  564. return -1;
  565. w9966_i2c_setsda(cam, 1);
  566. return 0;
  567. }
  568. /*
  569.  * Video4linux interfacing
  570.  */
  571. static int w9966_v4l_open(struct video_device *vdev, int flags)
  572. {
  573. struct w9966_dev *cam = (struct w9966_dev*)vdev->priv;
  574. cam->buffer = (u8*)kmalloc(W9966_RBUFFER, GFP_KERNEL);
  575. if (cam->buffer == NULL)
  576. return -EFAULT;
  577. return 0;
  578. }
  579. static void w9966_v4l_close(struct video_device *vdev)
  580. {
  581. struct w9966_dev *cam = (struct w9966_dev*)vdev->priv;
  582. if (cam->buffer != NULL) {
  583. kfree(cam->buffer);
  584. cam->buffer = NULL;
  585. }
  586. }
  587. static int w9966_v4l_ioctl(struct video_device *vdev, unsigned int cmd, void *arg)
  588. {
  589. struct w9966_dev *cam = (struct w9966_dev*)vdev->priv;
  590. switch(cmd)
  591. {
  592. case VIDIOCGCAP:
  593. {
  594. struct video_capability vcap = {
  595. W9966_DRIVERNAME, // name
  596. VID_TYPE_CAPTURE | VID_TYPE_SCALES, // type
  597. 1, 0, // vid, aud channels
  598. W9966_WND_MAX_W, // max w
  599. W9966_WND_MAX_H, // max h
  600. 2, 1 // min w, min h
  601. };
  602. if(copy_to_user(arg, &vcap, sizeof(vcap)) != 0)
  603. return -EFAULT;
  604. return 0;
  605. }
  606. case VIDIOCGCHAN:
  607. {
  608. struct video_channel vch;
  609. if(copy_from_user(&vch, arg, sizeof(vch)) != 0)
  610. return -EFAULT;
  611. if(vch.channel != 0) // We only support one channel (#0)
  612. return -EINVAL;
  613. strcpy(vch.name, "CCD-input");
  614. vch.flags = 0; // We have no tuner or audio
  615. vch.tuners = 0;
  616. vch.type = VIDEO_TYPE_CAMERA;
  617. vch.norm = 0; // ???
  618. if(copy_to_user(arg, &vch, sizeof(vch)) != 0)
  619. return -EFAULT;
  620. return 0;
  621. }
  622. case VIDIOCSCHAN:
  623. {
  624. struct video_channel vch;
  625. if(copy_from_user(&vch, arg, sizeof(vch) ) != 0)
  626. return -EFAULT;
  627. if(vch.channel != 0)
  628. return -EINVAL;
  629. return 0;
  630. }
  631. case VIDIOCGTUNER:
  632. {
  633. struct video_tuner vtune;
  634. if(copy_from_user(&vtune, arg, sizeof(vtune)) != 0)
  635. return -EFAULT;
  636. if(vtune.tuner != 0);
  637. return -EINVAL;
  638. strcpy(vtune.name, "no tuner");
  639. vtune.rangelow = 0;
  640. vtune.rangehigh = 0;
  641. vtune.flags = VIDEO_TUNER_NORM;
  642. vtune.mode = VIDEO_MODE_AUTO;
  643. vtune.signal = 0xffff;
  644. if(copy_to_user(arg, &vtune, sizeof(vtune)) != 0)
  645. return -EFAULT;
  646. return 0;
  647. }
  648. case VIDIOCSTUNER:
  649. {
  650. struct video_tuner vtune;
  651. if (copy_from_user(&vtune, arg, sizeof(vtune)) != 0)
  652. return -EFAULT;
  653. if (vtune.tuner != 0)
  654. return -EINVAL;
  655. if (vtune.mode != VIDEO_MODE_AUTO)
  656. return -EINVAL;
  657. return 0;
  658. }
  659. case VIDIOCGPICT:
  660. {
  661. struct video_picture vpic = {
  662. cam->brightness << 8, // brightness
  663. (cam->hue + 128) << 8, // hue
  664. cam->color << 9, // color
  665. cam->contrast << 9, // contrast
  666. 0x8000, // whiteness
  667. 16, VIDEO_PALETTE_YUV422// bpp, palette format
  668. };
  669. if(copy_to_user(arg, &vpic, sizeof(vpic)) != 0)
  670. return -EFAULT;
  671. return 0;
  672. }
  673. case VIDIOCSPICT:
  674. {
  675. struct video_picture vpic;
  676. if(copy_from_user(&vpic, arg, sizeof(vpic)) != 0)
  677. return -EFAULT;
  678. if (vpic.depth != 16 || vpic.palette != VIDEO_PALETTE_YUV422)
  679. return -EINVAL;
  680. cam->brightness = vpic.brightness >> 8;
  681. cam->hue = (vpic.hue >> 8) - 128;
  682. cam->color = vpic.colour >> 9;
  683. cam->contrast = vpic.contrast >> 9;
  684. w9966_pdev_claim(cam);
  685. if (
  686. w9966_wReg_i2c(cam, 0x0a, cam->brightness) == -1 ||
  687. w9966_wReg_i2c(cam, 0x0b, cam->contrast) == -1 ||
  688. w9966_wReg_i2c(cam, 0x0c, cam->color) == -1 ||
  689. w9966_wReg_i2c(cam, 0x0d, cam->hue) == -1
  690. ) {
  691. w9966_pdev_release(cam);
  692. return -EFAULT;
  693. }
  694. w9966_pdev_release(cam);
  695. return 0;
  696. }
  697. case VIDIOCSWIN:
  698. {
  699. int ret;
  700. struct video_window vwin;
  701. if (copy_from_user(&vwin, arg, sizeof(vwin)) != 0)
  702. return -EFAULT;
  703. if (vwin.flags != 0)
  704. return -EINVAL;
  705. if (vwin.clipcount != 0)
  706. return -EINVAL;
  707. if (vwin.width < 2 || vwin.width > W9966_WND_MAX_W)
  708. return -EINVAL;
  709. if (vwin.height < 1 || vwin.height > W9966_WND_MAX_H)
  710. return -EINVAL;
  711. // Update camera regs
  712. w9966_pdev_claim(cam);
  713. ret = w9966_setup(cam, 0, 0, 1023, 1023, vwin.width, vwin.height);
  714. w9966_pdev_release(cam);
  715. if (ret != 0) {
  716. DPRINTF("VIDIOCSWIN: w9966_setup() failed.n");
  717. return -EFAULT;
  718. }
  719. return 0;
  720. }
  721. case VIDIOCGWIN:
  722. {
  723. struct video_window vwin;
  724. memset(&vwin, 0, sizeof(vwin));
  725. vwin.width = cam->width;
  726. vwin.height = cam->height;
  727. if(copy_to_user(arg, &vwin, sizeof(vwin)) != 0)
  728. return -EFAULT;
  729. return 0;
  730. }
  731. // Unimplemented
  732. case VIDIOCCAPTURE:
  733. case VIDIOCGFBUF:
  734. case VIDIOCSFBUF:
  735. case VIDIOCKEY:
  736. case VIDIOCGFREQ:
  737. case VIDIOCSFREQ:
  738. case VIDIOCGAUDIO:
  739. case VIDIOCSAUDIO:
  740. return -EINVAL;
  741. default:
  742. return -ENOIOCTLCMD;
  743. }
  744. return 0;
  745. }
  746. // Capture data
  747. static long w9966_v4l_read(struct video_device *vdev, char *buf, unsigned long count,  int noblock)
  748. {
  749. struct w9966_dev *cam = (struct w9966_dev *)vdev->priv;
  750. unsigned char addr = 0xa0; // ECP, read, CCD-transfer, 00000
  751. unsigned char* dest = (unsigned char*)buf;
  752. unsigned long dleft = count;
  753. // Why would anyone want more than this??
  754. if (count > cam->width * cam->height * 2)
  755. return -EINVAL;
  756. w9966_pdev_claim(cam);
  757. w9966_wReg(cam, 0x00, 0x02); // Reset ECP-FIFO buffer
  758. w9966_wReg(cam, 0x00, 0x00); // Return to normal operation
  759. w9966_wReg(cam, 0x01, 0x98); // Enable capture
  760. // write special capture-addr and negotiate into data transfer
  761. if (
  762. (parport_negotiate(cam->pport, cam->ppmode|IEEE1284_ADDR) != 0 )||
  763. (parport_write(cam->pport, &addr, 1) != 1 )||
  764. (parport_negotiate(cam->pport, cam->ppmode|IEEE1284_DATA) != 0 )
  765. ) {
  766. w9966_pdev_release(cam);
  767. return -EFAULT;
  768. }
  769. while(dleft > 0)
  770. {
  771. unsigned long tsize = (dleft > W9966_RBUFFER) ? W9966_RBUFFER : dleft;
  772. if (parport_read(cam->pport, cam->buffer, tsize) < tsize) {
  773. w9966_pdev_release(cam);
  774. return -EFAULT;
  775. }
  776. if (copy_to_user(dest, cam->buffer, tsize) != 0) {
  777. w9966_pdev_release(cam);
  778. return -EFAULT;
  779. }
  780. dest += tsize;
  781. dleft -= tsize;
  782. }
  783. w9966_wReg(cam, 0x01, 0x18); // Disable capture
  784. w9966_pdev_release(cam);
  785. return count;
  786. }
  787. // Called once for every parport on init
  788. static void w9966_attach(struct parport *port)
  789. {
  790. int i;
  791. for (i = 0; i < W9966_MAXCAMS; i++)
  792. {
  793. if (strcmp(pardev[i], "none") == 0) // Skip if 'none'
  794. continue;
  795. if (w9966_cams[i].dev_state != 0) // Cam is already assigned
  796. continue;
  797. if (strcmp(pardev[i], "auto") == 0 ||
  798.     strcmp(pardev[i], port->name) == 0) {
  799. if (w9966_init(&w9966_cams[i], port) != 0)
  800. w9966_term(&w9966_cams[i]);
  801. break; // return
  802. }
  803. }
  804. }
  805. // Called once for every parport on termination
  806. static void w9966_detach(struct parport *port)
  807. {
  808. int i;
  809. for (i = 0; i < W9966_MAXCAMS; i++)
  810. if (w9966_cams[i].dev_state != 0 && w9966_cams[i].pport == port)
  811. w9966_term(&w9966_cams[i]);
  812. }
  813. static struct parport_driver w9966_ppd = {
  814. W9966_DRIVERNAME,
  815. w9966_attach,
  816. w9966_detach,
  817. NULL
  818. };
  819. // Module entry point
  820. static int __init w9966_mod_init(void)
  821. {
  822. int i;
  823. for (i = 0; i < W9966_MAXCAMS; i++)
  824. w9966_cams[i].dev_state = 0;
  825. return parport_register_driver(&w9966_ppd);
  826. }
  827. // Module cleanup
  828. static void __exit w9966_mod_term(void)
  829. {
  830. parport_unregister_driver(&w9966_ppd);
  831. }
  832. module_init(w9966_mod_init);
  833. module_exit(w9966_mod_term);