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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Endpoints (formerly known as AOX) se401 USB Camera Driver
  3.  *
  4.  * Copyright (c) 2000 Jeroen B. Vreeken (pe1rxq@amsat.org)
  5.  *
  6.  * Still somewhat based on the Linux ov511 driver.
  7.  * 
  8.  * This program is free software; you can redistribute it and/or modify it
  9.  * under the terms of the GNU General Public License as published by the
  10.  * Free Software Foundation; either version 2 of the License, or (at your
  11.  * option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful, but
  14.  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  15.  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16.  * for more details.
  17.  *
  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 Foundation,
  20.  * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  *
  22.  *
  23.  * Thanks to Endpoints Inc. (www.endpoints.com) for making documentation on
  24.  * their chipset available and supporting me while writing this driver.
  25.  *  - Jeroen Vreeken
  26.  */
  27. static const char version[] = "0.23";
  28. #include <linux/config.h>
  29. #include <linux/module.h>
  30. #include <linux/version.h>
  31. #include <linux/init.h>
  32. #include <linux/fs.h>
  33. #include <linux/vmalloc.h>
  34. #include <linux/slab.h>
  35. #include <linux/proc_fs.h>
  36. #include <linux/pagemap.h>
  37. #include <linux/usb.h>
  38. #include <asm/io.h>
  39. #include <asm/semaphore.h>
  40. #include <linux/wrapper.h>
  41. #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 3, 0)
  42. #define virt_to_page(arg) MAP_NR(arg)
  43. #define vmalloc_32 vmalloc
  44. #endif
  45. #include "se401.h"
  46. static int flickerless=0;
  47. static int video_nr = -1;
  48. #if LINUX_VERSION_CODE > KERNEL_VERSION(2, 3, 0)
  49. static __devinitdata struct usb_device_id device_table [] = {
  50. { USB_DEVICE(0x03e8, 0x0004) },/* Endpoints/Aox SE401 */
  51. { USB_DEVICE(0x0471, 0x030b) },/* Philips PCVC665K */
  52. { USB_DEVICE(0x047d, 0x5001) },/* Kensington 67014 */
  53. { USB_DEVICE(0x047d, 0x5002) },/* Kensington 6701(5/7) */
  54. { USB_DEVICE(0x047d, 0x5003) },/* Kensington 67016 */
  55. { }
  56. };
  57. MODULE_DEVICE_TABLE(usb, device_table);
  58. #endif
  59. MODULE_AUTHOR("Jeroen Vreeken <pe1rxq@amsat.org>");
  60. MODULE_DESCRIPTION("SE401 USB Camera Driver");
  61. MODULE_LICENSE("GPL");
  62. MODULE_PARM(flickerless, "i");
  63. MODULE_PARM_DESC(flickerless, "Net frequency to adjust exposure time to (0/50/60)");
  64. MODULE_PARM(video_nr, "i");
  65. EXPORT_NO_SYMBOLS;
  66. static struct usb_driver se401_driver;
  67. /**********************************************************************
  68.  *
  69.  * Memory management
  70.  *
  71.  * This is a shameless copy from the USB-cpia driver (linux kernel
  72.  * version 2.3.29 or so, I have no idea what this code actually does ;).
  73.  * Actually it seems to be a copy of a shameless copy of the bttv-driver.
  74.  * Or that is a copy of a shameless copy of ... (To the powers: is there
  75.  * no generic kernel-function to do this sort of stuff?)
  76.  *
  77.  * Yes, it was a shameless copy from the bttv-driver. IIRC, Alan says
  78.  * there will be one, but apparentely not yet -jerdfelt
  79.  *
  80.  * So I copied it again for the ov511 driver -claudio
  81.  *
  82.  * Same for the se401 driver -Jeroen
  83.  **********************************************************************/
  84. /* Given PGD from the address space's page table, return the kernel
  85.  * virtual mapping of the physical memory mapped at ADR.
  86.  */
  87. static inline unsigned long uvirt_to_kva(pgd_t *pgd, unsigned long adr)
  88. {
  89. unsigned long ret = 0UL;
  90. pmd_t *pmd;
  91. pte_t *ptep, pte;
  92. if (!pgd_none(*pgd)) {
  93. pmd = pmd_offset(pgd, adr);
  94. if (!pmd_none(*pmd)) {
  95. ptep = pte_offset(pmd, adr);
  96. pte = *ptep;
  97. if (pte_present(pte)) {
  98. ret = (unsigned long) page_address(pte_page(pte));
  99. ret |= (adr & (PAGE_SIZE - 1));
  100. }
  101. }
  102. }
  103. return ret;
  104. }
  105. /* Here we want the physical address of the memory.
  106.  * This is used when initializing the contents of the
  107.  * area and marking the pages as reserved.
  108.  */
  109. static inline unsigned long kvirt_to_pa(unsigned long adr)
  110. {
  111. unsigned long va, kva, ret;
  112. va = VMALLOC_VMADDR(adr);
  113. kva = uvirt_to_kva(pgd_offset_k(va), va);
  114. ret = __pa(kva);
  115. return ret;
  116. }
  117. static void *rvmalloc(unsigned long size)
  118. {
  119. void *mem;
  120. unsigned long adr, page;
  121. /* Round it off to PAGE_SIZE */
  122. size += (PAGE_SIZE - 1);
  123. size &= ~(PAGE_SIZE - 1);
  124. mem = vmalloc_32(size);
  125. if (!mem)
  126. return NULL;
  127. memset(mem, 0, size); /* Clear the ram out, no junk to the user */
  128. adr = (unsigned long) mem;
  129. while (size > 0) {
  130. page = kvirt_to_pa(adr);
  131. mem_map_reserve(virt_to_page(__va(page)));
  132. adr += PAGE_SIZE;
  133. if (size > PAGE_SIZE)
  134. size -= PAGE_SIZE;
  135. else
  136. size = 0;
  137. }
  138. return mem;
  139. }
  140. static void rvfree(void *mem, unsigned long size)
  141. {
  142. unsigned long adr, page;
  143. if (!mem)
  144. return;
  145. size += (PAGE_SIZE - 1);
  146. size &= ~(PAGE_SIZE - 1);
  147. adr=(unsigned long) mem;
  148. while (size > 0) {
  149. page = kvirt_to_pa(adr);
  150. mem_map_unreserve(virt_to_page(__va(page)));
  151. adr += PAGE_SIZE;
  152. if (size > PAGE_SIZE)
  153. size -= PAGE_SIZE;
  154. else
  155. size = 0;
  156. }
  157. vfree(mem);
  158. }
  159. /****************************************************************************
  160.  *
  161.  * /proc interface
  162.  *
  163.  ***************************************************************************/
  164. #if defined(CONFIG_PROC_FS) && defined(CONFIG_VIDEO_PROC_FS)
  165. static struct proc_dir_entry *se401_proc_entry = NULL;
  166. extern struct proc_dir_entry *video_proc_entry;
  167. #define YES_NO(x) ((x) ? "yes" : "no")
  168. static int se401_read_proc(char *page, char **start, off_t off, int count,
  169.    int *eof, void *data)
  170. {
  171. char *out = page;
  172. int i, len;
  173. struct usb_se401 *se401 = data;
  174. /* Stay under PAGE_SIZE or else bla bla bla.... */
  175. out+=sprintf(out, "driver_version  : %sn", version);
  176. out+=sprintf(out, "model           : %sn", se401->camera_name);
  177. out+=sprintf(out, "in use          : %sn", YES_NO (se401->user));
  178. out+=sprintf(out, "streaming       : %sn", YES_NO (se401->streaming));
  179. out+=sprintf(out, "button state    : %sn", YES_NO (se401->button));
  180. out+=sprintf(out, "button pressed  : %sn", YES_NO (se401->buttonpressed));
  181. out+=sprintf(out, "num_frames      : %dn", SE401_NUMFRAMES);
  182. out+=sprintf(out, "Sizes           :");
  183. for (i=0; i<se401->sizes; i++) {
  184. out+=sprintf(out, " %dx%d", se401->width[i],
  185.     se401->height[i]);
  186. }
  187. out+=sprintf(out, "n");
  188. out+=sprintf(out, "Frames total    : %dn", se401->readcount);
  189. out+=sprintf(out, "Frames read     : %dn", se401->framecount);
  190. out+=sprintf(out, "Packets dropped : %dn", se401->dropped);
  191. out+=sprintf(out, "Decoding Errors : %dn", se401->error);
  192. len = out - page;
  193. len -= off;
  194. if (len < count) {
  195. *eof = 1;
  196. if (len <= 0) return 0;
  197. } else
  198. len = count;
  199. *start = page + off;
  200. return len;
  201. }
  202. static int se401_write_proc(struct file *file, const char *buffer, 
  203.     unsigned long count, void *data)
  204. {
  205. return -EINVAL;
  206. }
  207. static void create_proc_se401_cam (struct usb_se401 *se401)
  208. {
  209. char name[7];
  210. struct proc_dir_entry *ent;
  211. if (!se401_proc_entry || !se401)
  212. return;
  213. sprintf (name, "video%d", se401->vdev.minor);
  214. ent = create_proc_entry(name, S_IFREG | S_IRUGO | S_IWUSR,
  215. se401_proc_entry);
  216. if (!ent)
  217. return;
  218. ent->data = se401;
  219. ent->read_proc = se401_read_proc;
  220. ent->write_proc = se401_write_proc;
  221. se401->proc_entry = ent;
  222. }
  223. static void destroy_proc_se401_cam (struct usb_se401 *se401)
  224. {
  225. /* One to much, just to be sure :) */
  226. char name[9];
  227. if (!se401 || !se401->proc_entry)
  228. return;
  229. sprintf(name, "video%d", se401->vdev.minor);
  230. remove_proc_entry(name, se401_proc_entry);
  231. se401->proc_entry = NULL;
  232. }
  233. static void proc_se401_create (void)
  234. {
  235. if (video_proc_entry == NULL) {
  236. err("/proc/video/ doesn't exist");
  237. return;
  238. }
  239. se401_proc_entry=create_proc_entry("se401", S_IFDIR, video_proc_entry);
  240. if (se401_proc_entry)
  241. se401_proc_entry->owner = THIS_MODULE;
  242. else
  243. err("Unable to initialize /proc/video/se401");
  244. }
  245. static void proc_se401_destroy(void)
  246. {
  247. if (se401_proc_entry == NULL)
  248. return;
  249. remove_proc_entry("se401", video_proc_entry);
  250. }
  251. #endif /* CONFIG_PROC_FS && CONFIG_VIDEO_PROC_FS */
  252. /****************************************************************************
  253.  *
  254.  * se401 register read/write functions
  255.  *
  256.  ***************************************************************************/
  257. static int se401_sndctrl(int set, struct usb_se401 *se401, unsigned short req,
  258.  unsigned short value, unsigned char *cp, int size)
  259. {
  260. return usb_control_msg (
  261.                 se401->dev,
  262.                 set ? usb_sndctrlpipe(se401->dev, 0) : usb_rcvctrlpipe(se401->dev, 0),
  263.                 req,
  264.                 (set ? USB_DIR_OUT : USB_DIR_IN) | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
  265.                 value,
  266.                 0,
  267.                 cp,
  268.                 size,
  269.                 HZ
  270.         );
  271. }
  272. static int se401_set_feature(struct usb_se401 *se401, unsigned short selector,
  273.      unsigned short param)
  274. {
  275. /* specs say that the selector (address) should go in the value field
  276.    and the param in index, but in the logs of the windows driver they do
  277.    this the other way around...
  278.  */
  279. return usb_control_msg (
  280. se401->dev,
  281. usb_sndctrlpipe(se401->dev, 0),
  282. SE401_REQ_SET_EXT_FEATURE,
  283. USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
  284. param,
  285. selector,
  286.                 NULL,
  287.                 0,
  288.                 HZ
  289.         );
  290. }
  291. static unsigned short se401_get_feature(struct usb_se401 *se401, 
  292.         unsigned short selector)
  293. {
  294. /* For 'set' the selecetor should be in index, not sure if the spec is
  295.    wrong here to....
  296.  */
  297. unsigned char cp[2];
  298.         usb_control_msg (
  299.                 se401->dev,
  300.                 usb_rcvctrlpipe(se401->dev, 0),
  301.                 SE401_REQ_GET_EXT_FEATURE,
  302.                 USB_DIR_OUT | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
  303.          0,
  304.                 selector,
  305.                 cp,
  306.                 2,
  307.                 HZ
  308.         );
  309. return cp[0]+cp[1]*256;
  310. }
  311. /****************************************************************************
  312.  *
  313.  * Camera control
  314.  *
  315.  ***************************************************************************/
  316. static int se401_send_pict(struct usb_se401 *se401)
  317. {
  318. se401_set_feature(se401, HV7131_REG_TITL, se401->expose_l);/* integration time low */
  319. se401_set_feature(se401, HV7131_REG_TITM, se401->expose_m);/* integration time mid */
  320. se401_set_feature(se401, HV7131_REG_TITU, se401->expose_h);/* integration time mid */
  321. se401_set_feature(se401, HV7131_REG_ARLV, se401->resetlevel);/* reset level value */
  322. se401_set_feature(se401, HV7131_REG_ARCG, se401->rgain);/* red color gain */
  323. se401_set_feature(se401, HV7131_REG_AGCG, se401->ggain);/* green color gain */
  324. se401_set_feature(se401, HV7131_REG_ABCG, se401->bgain);/* blue color gain */
  325.     
  326. return 0;
  327. }
  328. static void se401_set_exposure(struct usb_se401 *se401, int brightness)
  329. {
  330. int integration=brightness<<5;
  331. if (flickerless==50) {
  332. integration=integration-integration%106667;
  333. }
  334. if (flickerless==60) {
  335. integration=integration-integration%88889;
  336. }
  337. se401->brightness=integration>>5;
  338. se401->expose_h=(integration>>16)&0xff;
  339. se401->expose_m=(integration>>8)&0xff;
  340. se401->expose_l=integration&0xff;
  341. }
  342. static int se401_get_pict(struct usb_se401 *se401, struct video_picture *p)
  343. {
  344. p->brightness=se401->brightness;
  345. if (se401->enhance) {
  346. p->whiteness=32768;
  347. } else {
  348. p->whiteness=0;
  349. }
  350. p->colour=65535;
  351. p->contrast=65535;
  352. p->hue=se401->rgain<<10;
  353. p->palette=se401->palette;
  354. p->depth=3; /* rgb24 */
  355. return 0;
  356. }
  357. static int se401_set_pict(struct usb_se401 *se401, struct video_picture *p)
  358. {
  359. if (p->palette != VIDEO_PALETTE_RGB24)
  360. return 1;
  361. se401->palette=p->palette;
  362. if (p->hue!=se401->hue) {
  363. se401->rgain= p->hue>>10;
  364. se401->bgain= 0x40-(p->hue>>10);
  365. se401->hue=p->hue;
  366. }
  367. if (p->brightness!=se401->brightness) {
  368. se401_set_exposure(se401, p->brightness);
  369. }
  370. if (p->whiteness>=32768) {
  371. se401->enhance=1;
  372. } else {
  373. se401->enhance=0;
  374. }
  375. se401_send_pict(se401);
  376. se401_send_pict(se401);
  377. return 0;
  378. }
  379. /*
  380. Hyundai have some really nice docs about this and other sensor related
  381. stuff on their homepage: www.hei.co.kr
  382. */
  383. static void se401_auto_resetlevel(struct usb_se401 *se401)
  384. {
  385. unsigned int ahrc, alrc;
  386. int oldreset=se401->resetlevel;
  387. /* For some reason this normally read-only register doesn't get reset
  388.    to zero after reading them just once...
  389.  */
  390. se401_get_feature(se401, HV7131_REG_HIREFNOH); 
  391. se401_get_feature(se401, HV7131_REG_HIREFNOL);
  392. se401_get_feature(se401, HV7131_REG_LOREFNOH);
  393. se401_get_feature(se401, HV7131_REG_LOREFNOL);
  394. ahrc=256*se401_get_feature(se401, HV7131_REG_HIREFNOH) + 
  395.     se401_get_feature(se401, HV7131_REG_HIREFNOL);
  396. alrc=256*se401_get_feature(se401, HV7131_REG_LOREFNOH) +
  397.     se401_get_feature(se401, HV7131_REG_LOREFNOL);
  398. /* Not an exact science, but it seems to work pretty well... */
  399. if (alrc > 10) {
  400. while (alrc>=10 && se401->resetlevel < 63) {
  401. se401->resetlevel++;
  402. alrc /=2;
  403. }
  404. } else if (ahrc > 20) {
  405. while (ahrc>=20 && se401->resetlevel > 0) {
  406. se401->resetlevel--;
  407. ahrc /=2;
  408. }
  409. }
  410. if (se401->resetlevel!=oldreset)
  411. se401_set_feature(se401, HV7131_REG_ARLV, se401->resetlevel);
  412. return;
  413. }
  414. /* irq handler for snapshot button */
  415. static void se401_button_irq(struct urb *urb)
  416. {
  417. struct usb_se401 *se401 = urb->context;
  418. if (!se401->dev) {
  419. info("ohoh: device vapourished");
  420. return;
  421. }
  422. if (urb->actual_length >=2 && !urb->status) {
  423. if (se401->button)
  424. se401->buttonpressed=1;
  425. }
  426. }
  427. static void se401_video_irq(struct urb *urb)
  428. {
  429. struct usb_se401 *se401 = urb->context;
  430. int length = urb->actual_length;
  431. /* ohoh... */
  432. if (!se401->streaming)
  433. return;
  434. if (!se401->dev) {
  435. info ("ohoh: device vapourished");
  436. return;
  437. }
  438. /* 0 sized packets happen if we are to fast, but sometimes the camera
  439.    keeps sending them forever...
  440.  */
  441. if (length && !urb->status) {
  442. se401->nullpackets=0;
  443. switch(se401->scratch[se401->scratch_next].state) {
  444. case BUFFER_READY:
  445. case BUFFER_BUSY: {
  446. se401->dropped++;
  447. break;
  448. }
  449. case BUFFER_UNUSED: {
  450. memcpy(se401->scratch[se401->scratch_next].data, (unsigned char *)urb->transfer_buffer, length);
  451. se401->scratch[se401->scratch_next].state=BUFFER_READY;
  452. se401->scratch[se401->scratch_next].offset=se401->bayeroffset;
  453. se401->scratch[se401->scratch_next].length=length;
  454. if (waitqueue_active(&se401->wq)) {
  455. wake_up_interruptible(&se401->wq);
  456. }
  457. se401->scratch_overflow=0;
  458. se401->scratch_next++;
  459. if (se401->scratch_next>=SE401_NUMSCRATCH)
  460. se401->scratch_next=0;;
  461. break;
  462. }
  463. }
  464. se401->bayeroffset+=length;
  465. if (se401->bayeroffset>=se401->cheight*se401->cwidth) {
  466. se401->bayeroffset=0;
  467. }
  468. } else {
  469. se401->nullpackets++;
  470. if (se401->nullpackets > SE401_MAX_NULLPACKETS) {
  471. if (waitqueue_active(&se401->wq)) {
  472. wake_up_interruptible(&se401->wq);
  473. }
  474. }
  475. }
  476. /* Resubmit urb for new data */
  477. urb->status=0;
  478. urb->dev=se401->dev;
  479. if(usb_submit_urb(urb))
  480. info("urb burned down");
  481. return;
  482. }
  483. static void se401_send_size(struct usb_se401 *se401, int width, int height)
  484. {
  485. int i=0;
  486. int mode=0x03; /* No compression */
  487. int sendheight=height;
  488. int sendwidth=width;
  489. /* JangGu compression can only be used with the camera supported sizes,
  490.    but bayer seems to work with any size that fits on the sensor.
  491.    We check if we can use compression with the current size with either
  492.    4 or 16 times subcapturing, if not we use uncompressed bayer data
  493.    but this will result in cutouts of the maximum size....
  494.  */
  495. while (i<se401->sizes && !(se401->width[i]==width && se401->height[i]==height))
  496. i++;
  497. while (i<se401->sizes) {
  498. if (se401->width[i]==width*2 && se401->height[i]==height*2) {
  499. sendheight=se401->height[i];
  500. sendwidth=se401->width[i];
  501. mode=0x40;
  502. }
  503. if (se401->width[i]==width*4 && se401->height[i]==height*4) {
  504. sendheight=se401->height[i];
  505. sendwidth=se401->width[i];
  506. mode=0x42;
  507. }
  508. i++;
  509. }
  510. se401_sndctrl(1, se401, SE401_REQ_SET_WIDTH, sendwidth, NULL, 0);
  511. se401_sndctrl(1, se401, SE401_REQ_SET_HEIGHT, sendheight, NULL, 0);
  512. se401_set_feature(se401, SE401_OPERATINGMODE, mode);
  513. if (mode==0x03) {
  514. se401->format=FMT_BAYER;
  515. } else {
  516. se401->format=FMT_JANGGU;
  517. }
  518. return;
  519. }
  520. /*
  521. In this function se401_send_pict is called several times,
  522. for some reason (depending on the state of the sensor and the phase of
  523. the moon :) doing this only in either place doesn't always work...
  524. */
  525. static int se401_start_stream(struct usb_se401 *se401)
  526. {
  527. urb_t *urb;
  528. int err=0, i;
  529. se401->streaming=1;
  530.         se401_sndctrl(1, se401, SE401_REQ_CAMERA_POWER, 1, NULL, 0);
  531.         se401_sndctrl(1, se401, SE401_REQ_LED_CONTROL, 1, NULL, 0);
  532. /* Set picture settings */
  533. se401_set_feature(se401, HV7131_REG_MODE_B, 0x05);/*windowed + pix intg */
  534. se401_send_pict(se401);
  535. se401_send_size(se401, se401->cwidth, se401->cheight);
  536. se401_sndctrl(1, se401, SE401_REQ_START_CONTINUOUS_CAPTURE, 0, NULL, 0);
  537. /* Do some memory allocation */
  538. for (i=0; i<SE401_NUMFRAMES; i++) {
  539. se401->frame[i].data=se401->fbuf + i * se401->maxframesize;
  540. se401->frame[i].curpix=0;
  541. }
  542. for (i=0; i<SE401_NUMSBUF; i++) {
  543. se401->sbuf[i].data=kmalloc(SE401_PACKETSIZE, GFP_KERNEL);
  544. }
  545. se401->bayeroffset=0;
  546. se401->scratch_next=0;
  547. se401->scratch_use=0;
  548. se401->scratch_overflow=0;
  549. for (i=0; i<SE401_NUMSCRATCH; i++) {
  550. se401->scratch[i].data=kmalloc(SE401_PACKETSIZE, GFP_KERNEL);
  551. se401->scratch[i].state=BUFFER_UNUSED;
  552. }
  553. for (i=0; i<SE401_NUMSBUF; i++) {
  554. urb=usb_alloc_urb(0);
  555. if(!urb)
  556. return ENOMEM;
  557. FILL_BULK_URB(urb, se401->dev,
  558. usb_rcvbulkpipe(se401->dev, SE401_VIDEO_ENDPOINT),
  559. se401->sbuf[i].data, SE401_PACKETSIZE,
  560. se401_video_irq,
  561. se401);
  562. urb->transfer_flags |= USB_QUEUE_BULK;
  563. se401->urb[i]=urb;
  564. err=usb_submit_urb(se401->urb[i]);
  565. if(err)
  566. err("urb burned down");
  567. }
  568. se401->framecount=0;
  569. return 0;
  570. }
  571. static int se401_stop_stream(struct usb_se401 *se401)
  572. {
  573. int i;
  574. if (!se401->streaming || !se401->dev)
  575. return 1;
  576. se401->streaming=0;
  577. se401_sndctrl(1, se401, SE401_REQ_STOP_CONTINUOUS_CAPTURE, 0, NULL, 0);
  578. se401_sndctrl(1, se401, SE401_REQ_LED_CONTROL, 0, NULL, 0);
  579. se401_sndctrl(1, se401, SE401_REQ_CAMERA_POWER, 0, NULL, 0);
  580. for (i=0; i<SE401_NUMSBUF; i++) if (se401->urb[i]) {
  581. se401->urb[i]->next=NULL;
  582. usb_unlink_urb(se401->urb[i]);
  583. usb_free_urb(se401->urb[i]);
  584. se401->urb[i]=NULL;
  585. kfree(se401->sbuf[i].data);
  586. }
  587. for (i=0; i<SE401_NUMSCRATCH; i++) {
  588. kfree(se401->scratch[i].data);
  589. se401->scratch[i].data=NULL;
  590. }
  591. return 0;
  592. }
  593. static int se401_set_size(struct usb_se401 *se401, int width, int height)
  594. {
  595. int wasstreaming=se401->streaming;
  596. /* Check to see if we need to change */
  597. if (se401->cwidth==width && se401->cheight==height)
  598. return 0;
  599. /* Check for a valid mode */
  600. if (!width || !height)
  601. return 1;
  602. if ((width & 1) || (height & 1))
  603. return 1;
  604. if (width>se401->width[se401->sizes-1])
  605. return 1;
  606. if (height>se401->height[se401->sizes-1])
  607. return 1;
  608. /* Stop a current stream and start it again at the new size */
  609. if (wasstreaming)
  610. se401_stop_stream(se401);
  611. se401->cwidth=width;
  612. se401->cheight=height;
  613. if (wasstreaming)
  614. se401_start_stream(se401);
  615. return 0;
  616. }
  617. /****************************************************************************
  618.  *
  619.  * Video Decoding
  620.  *
  621.  ***************************************************************************/
  622. /*
  623. This shouldn't really be done in a v4l driver....
  624. But it does make the image look a lot more usable.
  625. Basicly it lifts the dark pixels more than the light pixels.
  626. */
  627. static inline void enhance_picture(unsigned char *frame, int len)
  628. {
  629. while (len--) {
  630. *frame++=(((*frame^255)*(*frame^255))/255)^255;
  631. }
  632. }
  633. static inline void decode_JangGu_integrate(struct usb_se401 *se401, int data)
  634. {
  635. struct se401_frame *frame=&se401->frame[se401->curframe];
  636. int linelength=se401->cwidth*3;
  637. if (frame->curlinepix >= linelength) {
  638. frame->curlinepix=0;
  639. frame->curline+=linelength;
  640. }
  641. /* First three are absolute, all others relative.
  642.  * Format is rgb from right to left (mirrorred image), 
  643.  * we flip it to get bgr from left to right. */
  644. if (frame->curlinepix < 3) {
  645. *(frame->curline-frame->curlinepix)=1+data*4;
  646. } else {
  647. *(frame->curline-frame->curlinepix)=
  648.     *(frame->curline-frame->curlinepix+3)+data*4;
  649. }
  650. frame->curlinepix++;
  651. }
  652. static inline void decode_JangGu_vlc (struct usb_se401 *se401, unsigned char *data, int bit_exp, int packetlength)
  653. {
  654. int pos=0;
  655. int vlc_cod=0;
  656. int vlc_size=0;
  657. int vlc_data=0;
  658. int bit_cur;
  659. int bit;
  660. data+=4;
  661. while (pos < packetlength) {
  662. bit_cur=8;
  663. while (bit_cur && bit_exp) {
  664. bit=((*data)>>(bit_cur-1))&1;
  665. if (!vlc_cod) {
  666. if (bit) {
  667. vlc_size++;
  668. } else {
  669. if (!vlc_size) {
  670. decode_JangGu_integrate(se401, 0);
  671. } else {
  672. vlc_cod=2;
  673. vlc_data=0;
  674. }
  675. }
  676. } else {
  677. if (vlc_cod==2) {
  678. if (!bit) vlc_data=-(1<<vlc_size)+1;
  679. vlc_cod--;
  680. }
  681. vlc_size--;
  682. vlc_data+=bit<<vlc_size;
  683. if (!vlc_size) {
  684. decode_JangGu_integrate(se401, vlc_data);
  685. vlc_cod=0;
  686. }
  687. }
  688. bit_cur--;
  689. bit_exp--;
  690. }
  691. pos++;
  692. data++;
  693. }
  694. }
  695. static inline void decode_JangGu (struct usb_se401 *se401, struct se401_scratch *buffer)
  696. {
  697. unsigned char *data=buffer->data;
  698. int len=buffer->length;
  699. int bit_exp=0, pix_exp=0, frameinfo=0, packetlength=0, size;
  700. int datapos=0;
  701. /* New image? */
  702. if (!se401->frame[se401->curframe].curpix) {
  703. se401->frame[se401->curframe].curlinepix=0;
  704. se401->frame[se401->curframe].curline=
  705.     se401->frame[se401->curframe].data+
  706.     se401->cwidth*3-1;
  707. if (se401->frame[se401->curframe].grabstate==FRAME_READY)
  708. se401->frame[se401->curframe].grabstate=FRAME_GRABBING;
  709. se401->vlcdatapos=0;
  710. }
  711. while (datapos < len) {
  712. size=1024-se401->vlcdatapos;
  713. if (size+datapos > len)
  714. size=len-datapos;
  715. memcpy(se401->vlcdata+se401->vlcdatapos, data+datapos, size);
  716. se401->vlcdatapos+=size;
  717. packetlength=0;
  718. if (se401->vlcdatapos >= 4) {
  719. bit_exp=se401->vlcdata[3]+(se401->vlcdata[2]<<8);
  720. pix_exp=se401->vlcdata[1]+((se401->vlcdata[0]&0x3f)<<8);
  721. frameinfo=se401->vlcdata[0]&0xc0;
  722. packetlength=((bit_exp+47)>>4)<<1;
  723. if (packetlength > 1024) {
  724. se401->vlcdatapos=0;
  725. datapos=len;
  726. packetlength=0;
  727. se401->error++;
  728. se401->frame[se401->curframe].curpix=0;
  729. }
  730. }
  731. if (packetlength && se401->vlcdatapos >= packetlength) {
  732. decode_JangGu_vlc(se401, se401->vlcdata, bit_exp, packetlength);
  733. se401->frame[se401->curframe].curpix+=pix_exp*3;
  734. datapos+=size-(se401->vlcdatapos-packetlength);
  735. se401->vlcdatapos=0;
  736. if (se401->frame[se401->curframe].curpix>=se401->cwidth*se401->cheight*3) {
  737. if (se401->frame[se401->curframe].curpix==se401->cwidth*se401->cheight*3) {
  738. if (se401->frame[se401->curframe].grabstate==FRAME_GRABBING) {
  739. se401->frame[se401->curframe].grabstate=FRAME_DONE;
  740. se401->framecount++;
  741. se401->readcount++;
  742. }
  743. if (se401->frame[(se401->curframe+1)&(SE401_NUMFRAMES-1)].grabstate==FRAME_READY) {
  744. se401->curframe=(se401->curframe+1) & (SE401_NUMFRAMES-1);
  745. }
  746. } else {
  747. se401->error++;
  748. }
  749. se401->frame[se401->curframe].curpix=0;
  750. datapos=len;
  751. }
  752. } else {
  753. datapos+=size;
  754. }
  755. }
  756. }
  757. static inline void decode_bayer (struct usb_se401 *se401, struct se401_scratch *buffer)
  758. {
  759. unsigned char *data=buffer->data;
  760. int len=buffer->length;
  761. int offset=buffer->offset;
  762. int datasize=se401->cwidth*se401->cheight;
  763. struct se401_frame *frame=&se401->frame[se401->curframe];
  764. unsigned char *framedata=frame->data, *curline, *nextline;
  765. int width=se401->cwidth;
  766. int blineoffset=0, bline;
  767. int linelength=width*3, i;
  768. if (frame->curpix==0) {
  769. if (frame->grabstate==FRAME_READY) {
  770. frame->grabstate=FRAME_GRABBING;
  771. }
  772. frame->curline=framedata+linelength;
  773. frame->curlinepix=0;
  774. }
  775. if (offset!=frame->curpix) {
  776. /* Regard frame as lost :( */
  777. frame->curpix=0;
  778. se401->error++;
  779. return;
  780. }
  781. /* Check if we have to much data */
  782. if (frame->curpix+len > datasize) {
  783. len=datasize-frame->curpix;
  784. }
  785. if (se401->cheight%4)
  786. blineoffset=1;
  787. bline=frame->curpix/se401->cwidth+blineoffset;
  788. curline=frame->curline;
  789. nextline=curline+linelength;
  790. if (nextline >= framedata+datasize*3)
  791. nextline=curline;
  792. while (len) {
  793. if (frame->curlinepix>=width) {
  794. frame->curlinepix-=width;
  795. bline=frame->curpix/width+blineoffset;
  796. curline+=linelength*2;
  797. nextline+=linelength*2;
  798. if (curline >= framedata+datasize*3) {
  799. frame->curlinepix++;
  800. curline-=3;
  801. nextline-=3;
  802. len--;
  803. data++;
  804. frame->curpix++;
  805. }
  806. if (nextline >= framedata+datasize*3)
  807. nextline=curline;
  808. }
  809. if ((bline&1)) {
  810. if ((frame->curlinepix&1)) {
  811. *(curline+2)=*data;
  812. *(curline-1)=*data;
  813. *(nextline+2)=*data;
  814. *(nextline-1)=*data;
  815. } else {
  816. *(curline+1)=
  817. (*(curline+1)+*data)/2;
  818. *(curline-2)=
  819. (*(curline-2)+*data)/2;
  820. *(nextline+1)=*data;
  821. *(nextline-2)=*data;
  822. }
  823. } else {
  824. if ((frame->curlinepix&1)) {
  825. *(curline+1)=
  826. (*(curline+1)+*data)/2;
  827. *(curline-2)=
  828. (*(curline-2)+*data)/2;
  829. *(nextline+1)=*data;
  830. *(nextline-2)=*data;
  831. } else {
  832. *curline=*data;
  833. *(curline-3)=*data;
  834. *nextline=*data;
  835. *(nextline-3)=*data;
  836. }
  837. }
  838. frame->curlinepix++;
  839. curline-=3;
  840. nextline-=3;
  841. len--;
  842. data++;
  843. frame->curpix++;
  844. }
  845. frame->curline=curline;
  846. if (frame->curpix>=datasize) {
  847. /* Fix the top line */
  848. framedata+=linelength;
  849. for (i=0; i<linelength; i++) {
  850. *--framedata=*(framedata+linelength);
  851. }
  852. /* Fix the left side (green is already present) */
  853. for (i=0; i<se401->cheight; i++) {
  854. *framedata=*(framedata+3);
  855. *(framedata+1)=*(framedata+4);
  856. *(framedata+2)=*(framedata+5);
  857. framedata+=linelength;
  858. }
  859. frame->curpix=0;
  860. frame->grabstate=FRAME_DONE;
  861. se401->framecount++;
  862. se401->readcount++;
  863. if (se401->frame[(se401->curframe+1)&(SE401_NUMFRAMES-1)].grabstate==FRAME_READY) {
  864. se401->curframe=(se401->curframe+1) & (SE401_NUMFRAMES-1);
  865. }
  866. }
  867. }
  868. static int se401_newframe(struct usb_se401 *se401, int framenr)
  869. {
  870. DECLARE_WAITQUEUE(wait, current);
  871. int errors=0;
  872. while (se401->streaming &&
  873.     (se401->frame[framenr].grabstate==FRAME_READY ||
  874.      se401->frame[framenr].grabstate==FRAME_GRABBING) ) {
  875. if(!se401->frame[framenr].curpix) {
  876. errors++;
  877. }
  878. wait_interruptible(
  879.     se401->scratch[se401->scratch_use].state!=BUFFER_READY,
  880.     &se401->wq,
  881.     &wait
  882. );
  883. if (se401->nullpackets > SE401_MAX_NULLPACKETS) {
  884. se401->nullpackets=0;
  885. info("to many null length packets, restarting capture");
  886. se401_stop_stream(se401);
  887. se401_start_stream(se401);
  888. } else {
  889. if (se401->scratch[se401->scratch_use].state!=BUFFER_READY) {
  890. se401->frame[framenr].grabstate=FRAME_ERROR;
  891. return -EIO;
  892. }
  893. se401->scratch[se401->scratch_use].state=BUFFER_BUSY;
  894. if (se401->format==FMT_JANGGU) {
  895. decode_JangGu(se401, &se401->scratch[se401->scratch_use]);
  896. } else {
  897. decode_bayer(se401, &se401->scratch[se401->scratch_use]);
  898. }
  899. se401->scratch[se401->scratch_use].state=BUFFER_UNUSED;
  900. se401->scratch_use++;
  901. if (se401->scratch_use>=SE401_NUMSCRATCH)
  902. se401->scratch_use=0;
  903. if (errors > SE401_MAX_ERRORS) {
  904. errors=0;
  905. info("to much errors, restarting capture");
  906. se401_stop_stream(se401);
  907. se401_start_stream(se401);
  908. }
  909. }
  910. }
  911. if (se401->frame[framenr].grabstate==FRAME_DONE)
  912. if (se401->enhance)
  913. enhance_picture(se401->frame[framenr].data, se401->cheight*se401->cwidth*3);
  914. return 0;
  915. }
  916. /****************************************************************************
  917.  *
  918.  * Video4Linux
  919.  *
  920.  ***************************************************************************/
  921. static int se401_open(struct video_device *dev, int flags)
  922. {
  923. struct usb_se401 *se401 = (struct usb_se401 *)dev;
  924. int err = 0;
  925. /* we are called with the BKL held */
  926. MOD_INC_USE_COUNT;
  927. se401->user=1;
  928. se401->fbuf=rvmalloc(se401->maxframesize * SE401_NUMFRAMES);
  929. if(!se401->fbuf) err=-ENOMEM;
  930.         if (err) {
  931. MOD_DEC_USE_COUNT;
  932. se401->user = 0;
  933. }
  934. return err;
  935. }
  936. static void se401_close(struct video_device *dev)
  937. {
  938. /* called with BKL held */
  939.         struct usb_se401 *se401 = (struct usb_se401 *)dev;
  940. int i;
  941. for (i=0; i<SE401_NUMFRAMES; i++)
  942. se401->frame[i].grabstate=FRAME_UNUSED;
  943. if (se401->streaming)
  944. se401_stop_stream(se401);
  945. rvfree(se401->fbuf, se401->maxframesize * SE401_NUMFRAMES);
  946. se401->user=0;
  947.         if (se401->removed) {
  948.                 video_unregister_device(&se401->vdev);
  949. kfree(se401->width);
  950. kfree(se401->height);
  951.                 kfree(se401);
  952.                 se401 = NULL;
  953. info("device unregistered");
  954. }
  955.         MOD_DEC_USE_COUNT;
  956. }
  957. static int se401_init_done(struct video_device *dev)
  958. {
  959. #if defined(CONFIG_PROC_FS) && defined(CONFIG_VIDEO_PROC_FS)
  960.         create_proc_se401_cam((struct usb_se401 *)dev);
  961. #endif
  962.         return 0;
  963. }
  964. static long se401_write(struct video_device *dev, const char *buf, unsigned long
  965.  count, int noblock)
  966. {
  967.         return -EINVAL;
  968. }
  969. static int se401_ioctl(struct video_device *vdev, unsigned int cmd, void *arg)
  970. {
  971.         struct usb_se401 *se401 = (struct usb_se401 *)vdev;
  972.         if (!se401->dev)
  973.                 return -EIO;
  974.         switch (cmd) {
  975. case VIDIOCGCAP:
  976. {
  977. struct video_capability b;
  978. strcpy(b.name, se401->camera_name);
  979. b.type = VID_TYPE_CAPTURE;
  980. b.channels = 1;
  981. b.audios = 0;
  982. b.maxwidth = se401->width[se401->sizes-1];
  983. b.maxheight = se401->height[se401->sizes-1];
  984. b.minwidth = se401->width[0];
  985. b.minheight = se401->height[0];
  986. if (copy_to_user(arg, &b, sizeof(b)))
  987. return -EFAULT;
  988. return 0;
  989. }
  990. case VIDIOCGCHAN:
  991. {
  992. struct video_channel v;
  993. if (copy_from_user(&v, arg, sizeof(v)))
  994. return -EFAULT;
  995. if (v.channel != 0)
  996. return -EINVAL;
  997. v.flags = 0;
  998. v.tuners = 0;
  999. v.type = VIDEO_TYPE_CAMERA;
  1000. strcpy(v.name, "Camera");
  1001. if (copy_to_user(arg, &v, sizeof(v)))
  1002. return -EFAULT;
  1003. return 0;
  1004. }
  1005. case VIDIOCSCHAN:
  1006. {
  1007. int v;
  1008. if (copy_from_user(&v, arg, sizeof(v)))
  1009. return -EFAULT;
  1010. if (v != 0)
  1011. return -EINVAL;
  1012. return 0;
  1013. }
  1014.         case VIDIOCGPICT:
  1015.         {
  1016. struct video_picture p;
  1017. se401_get_pict(se401, &p);
  1018. if (copy_to_user(arg, &p, sizeof(p)))
  1019. return -EFAULT;
  1020. return 0;
  1021. }
  1022. case VIDIOCSPICT:
  1023. {
  1024. struct video_picture p;
  1025. if (copy_from_user(&p, arg, sizeof(p)))
  1026. return -EFAULT;
  1027. if (se401_set_pict(se401, &p))
  1028. return -EINVAL;
  1029. return 0;
  1030. }
  1031. case VIDIOCSWIN:
  1032. {
  1033. struct video_window vw;
  1034. if (copy_from_user(&vw, arg, sizeof(vw)))
  1035. return -EFAULT;
  1036. if (vw.flags)
  1037. return -EINVAL;
  1038. if (vw.clipcount)
  1039. return -EINVAL;
  1040. if (se401_set_size(se401, vw.width, vw.height))
  1041. return -EINVAL;
  1042. return 0;
  1043.         }
  1044. case VIDIOCGWIN:
  1045. {
  1046. struct video_window vw;
  1047. vw.x = 0;               /* FIXME */
  1048. vw.y = 0;
  1049. vw.chromakey = 0;
  1050. vw.flags = 0;
  1051. vw.clipcount = 0;
  1052. vw.width = se401->cwidth;
  1053. vw.height = se401->cheight;
  1054. if (copy_to_user(arg, &vw, sizeof(vw)))
  1055. return -EFAULT;
  1056. return 0;
  1057. }
  1058. case VIDIOCGMBUF:
  1059. {
  1060. struct video_mbuf vm;
  1061. int i;
  1062. memset(&vm, 0, sizeof(vm));
  1063. vm.size = SE401_NUMFRAMES * se401->maxframesize;
  1064. vm.frames = SE401_NUMFRAMES;
  1065. for (i=0; i<SE401_NUMFRAMES; i++)
  1066. vm.offsets[i] = se401->maxframesize * i;
  1067. if (copy_to_user((void *)arg, (void *)&vm, sizeof(vm)))
  1068. return -EFAULT;
  1069. return 0;
  1070. }
  1071. case VIDIOCMCAPTURE:
  1072. {
  1073. struct video_mmap vm;
  1074. if (copy_from_user(&vm, arg, sizeof(vm)))
  1075. return -EFAULT;
  1076. if (vm.format != VIDEO_PALETTE_RGB24)
  1077. return -EINVAL;
  1078. if (vm.frame >= SE401_NUMFRAMES)
  1079. return -EINVAL;
  1080. if (se401->frame[vm.frame].grabstate != FRAME_UNUSED)
  1081. return -EBUSY;
  1082. /* Is this according to the v4l spec??? */
  1083. if (se401_set_size(se401, vm.width, vm.height))
  1084. return -EINVAL;
  1085. se401->frame[vm.frame].grabstate=FRAME_READY;
  1086. if (!se401->streaming)
  1087. se401_start_stream(se401);
  1088. /* Set the picture properties */
  1089. if (se401->framecount==0)
  1090. se401_send_pict(se401);
  1091. /* Calibrate the reset level after a few frames. */
  1092. if (se401->framecount%20==1)
  1093. se401_auto_resetlevel(se401);
  1094. return 0;
  1095. }
  1096. case VIDIOCSYNC:
  1097. {
  1098. int frame, ret=0;
  1099. if (copy_from_user((void *)&frame, arg, sizeof(int)))
  1100. return -EFAULT;
  1101. if(frame <0 || frame >= SE401_NUMFRAMES)
  1102. return -EINVAL;
  1103. ret=se401_newframe(se401, frame);
  1104. se401->frame[frame].grabstate=FRAME_UNUSED;
  1105. return ret;
  1106. }
  1107. case VIDIOCGFBUF:
  1108. {
  1109. struct video_buffer vb;
  1110. memset(&vb, 0, sizeof(vb));
  1111. vb.base = NULL; /* frame buffer not supported, not used */
  1112. if (copy_to_user((void *)arg, (void *)&vb, sizeof(vb)))
  1113. return -EFAULT;
  1114. return 0;
  1115. }
  1116. case VIDIOCKEY:
  1117. return 0;
  1118. case VIDIOCCAPTURE:
  1119. return -EINVAL;
  1120. case VIDIOCSFBUF:
  1121. return -EINVAL;
  1122. case VIDIOCGTUNER:
  1123. case VIDIOCSTUNER:
  1124. return -EINVAL;
  1125. case VIDIOCGFREQ:
  1126. case VIDIOCSFREQ:
  1127. return -EINVAL;
  1128. case VIDIOCGAUDIO:
  1129. case VIDIOCSAUDIO:
  1130. return -EINVAL;
  1131.         default:
  1132.                 return -ENOIOCTLCMD;
  1133.         } /* end switch */
  1134.         return 0;
  1135. }
  1136. static long se401_read(struct video_device *dev, char *buf, unsigned long count,
  1137.  int noblock)
  1138. {
  1139. int realcount=count, ret=0;
  1140. struct usb_se401 *se401 = (struct usb_se401 *)dev;
  1141. if (se401->dev == NULL)
  1142. return -EIO;
  1143. if (realcount > se401->cwidth*se401->cheight*3)
  1144. realcount=se401->cwidth*se401->cheight*3;
  1145. /* Shouldn't happen: */
  1146. if (se401->frame[0].grabstate==FRAME_GRABBING)
  1147. return -EBUSY;
  1148. se401->frame[0].grabstate=FRAME_READY;
  1149. se401->frame[1].grabstate=FRAME_UNUSED;
  1150. se401->curframe=0;
  1151. if (!se401->streaming)
  1152. se401_start_stream(se401);
  1153. /* Set the picture properties */
  1154. if (se401->framecount==0)
  1155. se401_send_pict(se401);
  1156. /* Calibrate the reset level after a few frames. */
  1157. if (se401->framecount%20==1)
  1158. se401_auto_resetlevel(se401);
  1159. ret=se401_newframe(se401, 0);
  1160. se401->frame[0].grabstate=FRAME_UNUSED;
  1161. if (ret)
  1162. return ret;
  1163. if (copy_to_user(buf, se401->frame[0].data, realcount))
  1164. return -EFAULT;
  1165. return realcount;
  1166. }
  1167. static int se401_mmap(struct video_device *dev, const char *adr,
  1168.         unsigned long size)
  1169. {
  1170. struct usb_se401 *se401 = (struct usb_se401 *)dev;
  1171. unsigned long start = (unsigned long)adr;
  1172. unsigned long page, pos;
  1173. down(&se401->lock);
  1174. if (se401->dev == NULL) {
  1175. up(&se401->lock);
  1176. return -EIO;
  1177. }
  1178. if (size > (((SE401_NUMFRAMES * se401->maxframesize) + PAGE_SIZE - 1) & ~(PAGE_SIZE - 1))) {
  1179. up(&se401->lock);
  1180. return -EINVAL;
  1181. }
  1182. pos = (unsigned long)se401->fbuf;
  1183. while (size > 0) {
  1184. page = kvirt_to_pa(pos);
  1185. if (remap_page_range(start, page, PAGE_SIZE, PAGE_SHARED)) {
  1186. up(&se401->lock);
  1187. return -EAGAIN;
  1188. }
  1189. start += PAGE_SIZE;
  1190. pos += PAGE_SIZE;
  1191. if (size > PAGE_SIZE)
  1192. size -= PAGE_SIZE;
  1193. else
  1194. size = 0;
  1195. }
  1196. up(&se401->lock);
  1197.         return 0;
  1198. }
  1199. static struct video_device se401_template = {
  1200.         name:           "se401 USB camera",
  1201.         type:           VID_TYPE_CAPTURE,
  1202.         hardware:       VID_HARDWARE_SE401,
  1203.         open:           se401_open,
  1204.         close:          se401_close,
  1205.         read:           se401_read,
  1206.         write:          se401_write,
  1207.         ioctl:          se401_ioctl,
  1208.         mmap:           se401_mmap,
  1209.         initialize:     se401_init_done,
  1210. };
  1211. /***************************/
  1212. static int se401_init(struct usb_se401 *se401)
  1213. {
  1214.         int i=0, rc;
  1215.         unsigned char cp[0x40];
  1216. char temp[200];
  1217. /* led on */
  1218.         se401_sndctrl(1, se401, SE401_REQ_LED_CONTROL, 1, NULL, 0);
  1219. /* get camera descriptor */
  1220. rc=se401_sndctrl(0, se401, SE401_REQ_GET_CAMERA_DESCRIPTOR, 0, cp, sizeof(cp));
  1221. if (cp[1]!=0x41) {
  1222. err("Wrong descriptor type");
  1223. return 1;
  1224. }
  1225. sprintf (temp, "ExtraFeatures: %d", cp[3]);
  1226. se401->sizes=cp[4]+cp[5]*256;
  1227. se401->width=kmalloc(se401->sizes*sizeof(int), GFP_KERNEL);
  1228. se401->height=kmalloc(se401->sizes*sizeof(int), GFP_KERNEL);
  1229. for (i=0; i<se401->sizes; i++) {
  1230.     se401->width[i]=cp[6+i*4+0]+cp[6+i*4+1]*256;
  1231.     se401->height[i]=cp[6+i*4+2]+cp[6+i*4+3]*256;
  1232. }
  1233. sprintf (temp, "%s Sizes:", temp);
  1234. for (i=0; i<se401->sizes; i++) {
  1235. sprintf(temp, "%s %dx%d", temp, se401->width[i], se401->height[i]);
  1236. }
  1237. info("%s", temp);
  1238. se401->maxframesize=se401->width[se401->sizes-1]*se401->height[se401->sizes-1]*3;
  1239. rc=se401_sndctrl(0, se401, SE401_REQ_GET_WIDTH, 0, cp, sizeof(cp));
  1240. se401->cwidth=cp[0]+cp[1]*256;
  1241. rc=se401_sndctrl(0, se401, SE401_REQ_GET_HEIGHT, 0, cp, sizeof(cp));
  1242. se401->cheight=cp[0]+cp[1]*256;
  1243. if (!cp[2] && SE401_FORMAT_BAYER) {
  1244. err("Bayer format not supported!");
  1245. return 1;
  1246. }
  1247. /* set output mode (BAYER) */
  1248.         se401_sndctrl(1, se401, SE401_REQ_SET_OUTPUT_MODE, SE401_FORMAT_BAYER, NULL, 0);
  1249. rc=se401_sndctrl(0, se401, SE401_REQ_GET_BRT, 0, cp, sizeof(cp));
  1250. se401->brightness=cp[0]+cp[1]*256;
  1251. /* some default values */
  1252. se401->resetlevel=0x2d;
  1253. se401->rgain=0x20;
  1254. se401->ggain=0x20;
  1255. se401->bgain=0x20;
  1256. se401_set_exposure(se401, 20000);
  1257. se401->palette=VIDEO_PALETTE_RGB24;
  1258. se401->enhance=1;
  1259. se401->dropped=0;
  1260. se401->error=0;
  1261. se401->framecount=0;
  1262. se401->readcount=0;
  1263. /* Start interrupt transfers for snapshot button */
  1264. se401->inturb=usb_alloc_urb(0);
  1265. if (!se401->inturb) {
  1266. info("Allocation of inturb failed");
  1267. return 1;
  1268. }
  1269. FILL_INT_URB(se401->inturb, se401->dev,
  1270.     usb_rcvintpipe(se401->dev, SE401_BUTTON_ENDPOINT),
  1271.     &se401->button, sizeof(se401->button),
  1272.     se401_button_irq,
  1273.     se401,
  1274.     HZ/10
  1275. );
  1276. if (usb_submit_urb(se401->inturb)) {
  1277. info("int urb burned down");
  1278. return 1;
  1279. }
  1280.         /* Flash the led */
  1281.         se401_sndctrl(1, se401, SE401_REQ_CAMERA_POWER, 1, NULL, 0);
  1282.         se401_sndctrl(1, se401, SE401_REQ_LED_CONTROL, 1, NULL, 0);
  1283.         se401_sndctrl(1, se401, SE401_REQ_CAMERA_POWER, 0, NULL, 0);
  1284. se401_sndctrl(1, se401, SE401_REQ_LED_CONTROL, 0, NULL, 0);
  1285.         return 0;
  1286. }
  1287. #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 3, 0)
  1288. static void* se401_probe(struct usb_device *dev, unsigned int ifnum)
  1289. #else
  1290. static void* __devinit se401_probe(struct usb_device *dev, unsigned int ifnum,
  1291. const struct usb_device_id *id)
  1292. #endif
  1293. {
  1294.         struct usb_interface_descriptor *interface;
  1295.         struct usb_se401 *se401;
  1296.         char *camera_name=NULL;
  1297.         /* We don't handle multi-config cameras */
  1298.         if (dev->descriptor.bNumConfigurations != 1)
  1299.                 return NULL;
  1300.         interface = &dev->actconfig->interface[ifnum].altsetting[0];
  1301.         /* Is it an se401? */
  1302.         if (dev->descriptor.idVendor == 0x03e8 &&
  1303.             dev->descriptor.idProduct == 0x0004) {
  1304.                 camera_name="Endpoints/Aox SE401";
  1305.         } else if (dev->descriptor.idVendor == 0x0471 &&
  1306.             dev->descriptor.idProduct == 0x030b) {
  1307.                 camera_name="Philips PCVC665K";
  1308.         } else if (dev->descriptor.idVendor == 0x047d &&
  1309.     dev->descriptor.idProduct == 0x5001) {
  1310. camera_name="Kensington VideoCAM 67014";
  1311.         } else if (dev->descriptor.idVendor == 0x047d &&
  1312.     dev->descriptor.idProduct == 0x5002) {
  1313. camera_name="Kensington VideoCAM 6701(5/7)";
  1314.         } else if (dev->descriptor.idVendor == 0x047d &&
  1315.     dev->descriptor.idProduct == 0x5003) {
  1316. camera_name="Kensington VideoCAM 67016";
  1317. } else
  1318. return NULL;
  1319.         /* Checking vendor/product should be enough, but what the hell */
  1320.         if (interface->bInterfaceClass != 0x00)
  1321.                 return NULL;
  1322.         if (interface->bInterfaceSubClass != 0x00)
  1323.                 return NULL;
  1324.         /* We found one */
  1325.         info("SE401 camera found: %s", camera_name);
  1326.         if ((se401 = kmalloc(sizeof(*se401), GFP_KERNEL)) == NULL) {
  1327.                 err("couldn't kmalloc se401 struct");
  1328.                 return NULL;
  1329.         }
  1330.         memset(se401, 0, sizeof(*se401));
  1331.         se401->dev = dev;
  1332.         se401->iface = interface->bInterfaceNumber;
  1333.         se401->camera_name = camera_name;
  1334. info("firmware version: %02x", dev->descriptor.bcdDevice & 255);
  1335.         if (se401_init(se401)) {
  1336. kfree(se401);
  1337. return NULL;
  1338. }
  1339. memcpy(&se401->vdev, &se401_template, sizeof(se401_template));
  1340. memcpy(se401->vdev.name, se401->camera_name, strlen(se401->camera_name));
  1341. init_waitqueue_head(&se401->wq);
  1342. init_MUTEX(&se401->lock);
  1343. wmb();
  1344. if (video_register_device(&se401->vdev, VFL_TYPE_GRABBER, video_nr) == -1) {
  1345. kfree(se401);
  1346. err("video_register_device failed");
  1347. return NULL;
  1348. }
  1349. info("registered new video device: video%d", se401->vdev.minor);
  1350.         return se401;
  1351. }
  1352. static void se401_disconnect(struct usb_device *dev, void *ptr)
  1353. {
  1354. struct usb_se401 *se401 = (struct usb_se401 *) ptr;
  1355. lock_kernel();
  1356. /* We don't want people trying to open up the device */
  1357. if (!se401->user){
  1358. video_unregister_device(&se401->vdev);
  1359. usb_se401_remove_disconnected(se401);
  1360. } else {
  1361. se401->removed = 1;
  1362. }
  1363. unlock_kernel();
  1364. }
  1365. static inline void usb_se401_remove_disconnected (struct usb_se401 *se401)
  1366. {
  1367. int i;
  1368.         se401->dev = NULL;
  1369.         se401->frame[0].grabstate = FRAME_ERROR;
  1370.         se401->frame[1].grabstate = FRAME_ERROR;
  1371. se401->streaming = 0;
  1372. wake_up_interruptible(&se401->wq);
  1373. for (i=0; i<SE401_NUMSBUF; i++) if (se401->urb[i]) {
  1374. se401->urb[i]->next = NULL;
  1375. usb_unlink_urb(se401->urb[i]);
  1376. usb_free_urb(se401->urb[i]);
  1377. se401->urb[i] = NULL;
  1378. kfree(se401->sbuf[i].data);
  1379. }
  1380. for (i=0; i<SE401_NUMSCRATCH; i++) if (se401->scratch[i].data) {
  1381. kfree(se401->scratch[i].data);
  1382. }
  1383. if (se401->inturb) {
  1384. usb_unlink_urb(se401->inturb);
  1385. usb_free_urb(se401->inturb);
  1386. }
  1387.         info("%s disconnected", se401->camera_name);
  1388. #if defined(CONFIG_PROC_FS) && defined(CONFIG_VIDEO_PROC_FS)
  1389. destroy_proc_se401_cam(se401);
  1390. #endif
  1391.         /* Free the memory */
  1392. kfree(se401->width);
  1393. kfree(se401->height);
  1394. kfree(se401);
  1395. }
  1396. static struct usb_driver se401_driver = {
  1397.         name: "se401",
  1398. #if LINUX_VERSION_CODE > KERNEL_VERSION(2, 3, 0)
  1399.         id_table: device_table,
  1400. #endif
  1401. probe: se401_probe,
  1402.         disconnect: se401_disconnect
  1403. };
  1404. /****************************************************************************
  1405.  *
  1406.  *  Module routines
  1407.  *
  1408.  ***************************************************************************/
  1409. static int __init usb_se401_init(void)
  1410. {
  1411. #if defined(CONFIG_PROC_FS) && defined(CONFIG_VIDEO_PROC_FS)
  1412. proc_se401_create();
  1413. #endif
  1414. info("SE401 usb camera driver version %s registering", version);
  1415. if (flickerless)
  1416. if (flickerless!=50 && flickerless!=60) {
  1417. info("Invallid flickerless value, use 0, 50 or 60.");
  1418. return -1;
  1419. }
  1420. if (usb_register(&se401_driver) < 0)
  1421. return -1;
  1422. return 0;
  1423. }
  1424. static void __exit usb_se401_exit(void)
  1425. {
  1426. usb_deregister(&se401_driver);
  1427. info("SE401 driver deregistered");
  1428. #if defined(CONFIG_PROC_FS) && defined(CONFIG_VIDEO_PROC_FS)
  1429. proc_se401_destroy();
  1430. #endif
  1431. }
  1432. module_init(usb_se401_init);
  1433. module_exit(usb_se401_exit);