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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* Linux driver for Philips webcam 
  2.    USB and Video4Linux interface part.
  3.    (C) 1999-2002 Nemosoft Unv.
  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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15. */
  16. /*  
  17.    This code forms the interface between the USB layers and the Philips
  18.    specific stuff. Some adanved stuff of the driver falls under an
  19.    NDA, signed between me and Philips B.V., Eindhoven, the Netherlands, and
  20.    is thus not distributed in source form. The binary pwcx.o module 
  21.    contains the code that falls under the NDA.
  22.    
  23.    In case you're wondering: 'pwc' stands for "Philips WebCam", but 
  24.    I really didn't want to type 'philips_web_cam' every time (I'm lazy as
  25.    any Linux kernel hacker, but I don't like uncomprehensible abbreviations
  26.    without explanation).
  27.    
  28.    Oh yes, convention: to disctinguish between all the various pointers to
  29.    device-structures, I use these names for the pointer variables:
  30.    udev: struct usb_device *
  31.    vdev: struct video_device *
  32.    pdev: struct pwc_devive *
  33. */
  34. /* Contributors:
  35.    - Alvarado: adding whitebalance code
  36.    - Alistar Moire: QuickCam 3000 Pro device/product ID
  37.    - Tony Hoyle: Creative Labs Webcam 5 device/product ID
  38.    - Mark Burazin: solving hang in VIDIOCSYNC when camera gets unplugged
  39.    - Jk Fang: SOTEC device/product ID
  40. */
  41. #include <linux/errno.h>
  42. #include <linux/init.h>
  43. #include <linux/module.h>
  44. #include <linux/poll.h>
  45. #include <linux/slab.h>
  46. #include <linux/vmalloc.h>
  47. #include <linux/wrapper.h>
  48. #include <asm/io.h>
  49. #include "pwc.h"
  50. #include "pwc-ioctl.h"
  51. #include "pwc-uncompress.h"
  52. #if !defined(MAP_NR)
  53. #define MAP_NR(a) virt_to_page(a)
  54. #endif
  55. /* Function prototypes and driver templates */
  56. /* hotplug device table support */
  57. static struct usb_device_id pwc_device_table [] = {
  58. { USB_DEVICE(0x0471, 0x0302) }, /* Philips models */
  59. { USB_DEVICE(0x0471, 0x0303) },
  60. { USB_DEVICE(0x0471, 0x0304) },
  61. { USB_DEVICE(0x0471, 0x0307) },
  62. { USB_DEVICE(0x0471, 0x0308) },
  63. { USB_DEVICE(0x0471, 0x030C) },
  64. { USB_DEVICE(0x0471, 0x0310) },
  65. { USB_DEVICE(0x0471, 0x0311) },
  66. { USB_DEVICE(0x0471, 0x0312) },
  67. { USB_DEVICE(0x069A, 0x0001) }, /* Askey */
  68. { USB_DEVICE(0x046D, 0x08b0) }, /* Logitech */
  69. { USB_DEVICE(0x055D, 0x9000) }, /* Samsung */
  70. { USB_DEVICE(0x055D, 0x9001) },
  71. { USB_DEVICE(0x041E, 0x400C) }, /* Creative */
  72. { USB_DEVICE(0x04CC, 0x8116) }, /* Afina Eye */
  73. { USB_DEVICE(0x0d81, 0x1910) }, /* Visionite */
  74. { USB_DEVICE(0x0d81, 0x1900) },
  75. { }
  76. };
  77. MODULE_DEVICE_TABLE(usb, pwc_device_table);
  78. static void *usb_pwc_probe(struct usb_device *udev, unsigned int ifnum, const struct usb_device_id *id);
  79. static void usb_pwc_disconnect(struct usb_device *udev, void *ptr);
  80. static struct usb_driver pwc_driver =
  81. {
  82. name: "Philips webcam", /* name */
  83. id_table: pwc_device_table,
  84. probe: usb_pwc_probe, /* probe() */
  85. disconnect: usb_pwc_disconnect, /* disconnect() */
  86. };
  87. #define MAX_DEV_HINTS 10
  88. static int default_size = PSZ_QCIF;
  89. static int default_fps = 10;
  90. static int default_palette = VIDEO_PALETTE_YUV420P; /* This format is understood by most tools */
  91. static int default_fbufs = 3;   /* Default number of frame buffers */
  92. static int default_mbufs = 2; /* Default number of mmap() buffers */
  93.        int pwc_trace = TRACE_MODULE | TRACE_FLOW | TRACE_PWCX;
  94. static int power_save = 0;
  95. static int led_on = 100, led_off = 0; /* defaults to LED that is on while in use */
  96.        int pwc_preferred_compression = 2; /* 0..3 = uncompressed..high */
  97. static struct {
  98. int type;
  99. char serial_number[30];
  100. int device_node;
  101. struct pwc_device *pdev;
  102. } device_hint[MAX_DEV_HINTS];
  103. static struct semaphore mem_lock;
  104. static void *mem_leak = NULL; /* For delayed kfree()s. See below */
  105. /***/
  106. static int  pwc_video_open(struct video_device *vdev, int mode);
  107. static void pwc_video_close(struct video_device *vdev);
  108. static long pwc_video_read(struct video_device *vdev, char *buf, unsigned long count, int noblock);
  109. static long pwc_video_write(struct video_device *vdev, const char *buf, unsigned long count, int noblock);
  110. static unsigned int pwc_video_poll(struct video_device *vdev, struct file *file, poll_table *wait);
  111. static int  pwc_video_ioctl(struct video_device *vdev, unsigned int cmd, void *arg);
  112. static int  pwc_video_mmap(struct video_device *dev, const char *adr, unsigned long size);
  113. static struct video_device pwc_template = {
  114. owner: THIS_MODULE,
  115. name: "Philips Webcam", /* Filled in later */
  116. type: VID_TYPE_CAPTURE,
  117. hardware: VID_HARDWARE_PWC,
  118. open: pwc_video_open,
  119. close: pwc_video_close,
  120. read: pwc_video_read,
  121. write: pwc_video_write,
  122. poll: pwc_video_poll,
  123. ioctl: pwc_video_ioctl,
  124. mmap: pwc_video_mmap,
  125. initialize: NULL, /* initialize */
  126. minor: 0 /* minor */
  127. };
  128. /***************************************************************************/
  129. /* Okay, this is some magic that I worked out and the reasoning behind it...
  130.    The biggest problem with any USB device is of course: "what to do 
  131.    when the user unplugs the device while it is in use by an application?"
  132.    We have several options:
  133.    1) Curse them with the 7 plagues when they do (requires divine intervention)
  134.    2) Tell them not to (won't work: they'll do it anyway)
  135.    3) Oops the kernel (this will have a negative effect on a user's uptime)
  136.    4) Do something sensible.
  137.    
  138.    Of course, we go for option 4.
  139.    It happens that this device will be linked to two times, once from
  140.    usb_device and once from the video_device in their respective 'private'
  141.    pointers. This is done when the device is probed() and all initialization
  142.    succeeded. The pwc_device struct links back to both structures.
  143.    When a device is unplugged while in use it will be removed from the 
  144.    list of known USB devices; I also de-register it as a V4L device, but 
  145.    unfortunately I can't free the memory since the struct is still in use
  146.    by the file descriptor. This free-ing is then deferend until the first
  147.    opportunity. Crude, but it works.
  148.    
  149.    A small 'advantage' is that if a user unplugs the cam and plugs it back
  150.    in, it should get assigned the same video device minor, but unfortunately
  151.    it's non-trivial to re-link the cam back to the video device... (that 
  152.    would surely be magic! :))
  153. */
  154. /***************************************************************************/
  155. /* Private functions */
  156. /* Here we want the physical address of the memory.
  157.  * This is used when initializing the contents of the area.
  158.  */
  159. static inline unsigned long kvirt_to_pa(unsigned long adr) 
  160. {
  161.         unsigned long kva, ret;
  162. kva = (unsigned long) page_address(vmalloc_to_page((void *)adr));
  163. kva |= adr & (PAGE_SIZE-1); /* restore the offset */
  164. ret = __pa(kva);
  165.         return ret;
  166. }
  167. static void * rvmalloc(unsigned long size)
  168. {
  169. void * mem;
  170. unsigned long adr;
  171. size=PAGE_ALIGN(size);
  172.         mem=vmalloc_32(size);
  173. if (mem) 
  174. {
  175. memset(mem, 0, size); /* Clear the ram out, no junk to the user */
  176.         adr=(unsigned long) mem;
  177. while (size > 0) 
  178.                 {
  179. mem_map_reserve(vmalloc_to_page((void *)adr));
  180. adr+=PAGE_SIZE;
  181. size-=PAGE_SIZE;
  182. }
  183. }
  184. return mem;
  185. }
  186. static void rvfree(void * mem, unsigned long size)
  187. {
  188.         unsigned long adr;
  189. if (mem) 
  190. {
  191.         adr=(unsigned long) mem;
  192. while ((long) size > 0) 
  193.                 {
  194. mem_map_unreserve(vmalloc_to_page((void *)adr));
  195. adr+=PAGE_SIZE;
  196. size-=PAGE_SIZE;
  197. }
  198. vfree(mem);
  199. }
  200. }
  201. static int pwc_allocate_buffers(struct pwc_device *pdev)
  202. {
  203. int i;
  204. void *kbuf;
  205. Trace(TRACE_MEMORY, "Entering allocate_buffers(%p).n", pdev);
  206. if (pdev == NULL)
  207. return -ENXIO;
  208. #ifdef PWC_MAGIC
  209. if (pdev->magic != PWC_MAGIC) {
  210. Err("allocate_buffers(): magic failed.n");
  211. return -ENXIO;
  212. }
  213. #endif
  214. /* Allocate Isochronuous pipe buffers */
  215. for (i = 0; i < MAX_ISO_BUFS; i++) {
  216. if (pdev->sbuf[i].data == NULL) {
  217. kbuf = kmalloc(ISO_BUFFER_SIZE, GFP_KERNEL);
  218. if (kbuf == NULL) {
  219. Err("Failed to allocate iso buffer %d.n", i);
  220. return -ENOMEM;
  221. }
  222. Trace(TRACE_MEMORY, "Allocated iso buffer at %p.n", kbuf);
  223. pdev->sbuf[i].data = kbuf;
  224. memset(kbuf, 0, ISO_BUFFER_SIZE);
  225. }
  226. }
  227. /* Allocate frame buffer structure */
  228. if (pdev->fbuf == NULL) {
  229. kbuf = kmalloc(default_fbufs * sizeof(struct pwc_frame_buf), GFP_KERNEL);
  230. if (kbuf == NULL) {
  231. Err("Failed to allocate frame buffer structure.n");
  232. return -ENOMEM;
  233. }
  234. Trace(TRACE_MEMORY, "Allocated frame buffer structure at %p.n", kbuf);
  235. pdev->fbuf = kbuf;
  236. memset(kbuf, 0, default_fbufs * sizeof(struct pwc_frame_buf));
  237. }
  238. /* create frame buffers, and make circular ring */
  239. for (i = 0; i < default_fbufs; i++) {
  240. if (pdev->fbuf[i].data == NULL) {
  241. kbuf = vmalloc(PWC_FRAME_SIZE); /* need vmalloc since frame buffer > 128K */
  242. if (kbuf == NULL) {
  243. Err("Failed to allocate frame buffer %d.n", i);
  244. return -ENOMEM;
  245. }
  246. Trace(TRACE_MEMORY, "Allocated frame buffer %d at %p.n", i, kbuf);
  247. pdev->fbuf[i].data = kbuf;
  248. memset(kbuf, 128, PWC_FRAME_SIZE);
  249. }
  250. }
  251. /* Allocate decompressor table space */
  252. kbuf = NULL;
  253. if (pdev->decompressor != NULL) {
  254. kbuf = kmalloc(pdev->decompressor->table_size, GFP_KERNEL);
  255. if (kbuf == NULL) {
  256. Err("Failed to allocate decompress table.n");
  257. return -ENOMEM;
  258. }
  259. Trace(TRACE_MEMORY, "Allocated decompress table %p.n", kbuf);
  260. }
  261. pdev->decompress_data = kbuf;
  262. /* Allocate image buffer; double buffer for mmap() */
  263. kbuf = rvmalloc(default_mbufs * pdev->len_per_image);
  264. if (kbuf == NULL) {
  265. Err("Failed to allocate image buffer(s).n");
  266. return -ENOMEM;
  267. }
  268. Trace(TRACE_MEMORY, "Allocated image buffer at %p.n", kbuf);
  269. pdev->image_data = kbuf;
  270. for (i = 0; i < default_mbufs; i++)
  271. pdev->image_ptr[i] = kbuf + i * pdev->len_per_image;
  272. for (; i < MAX_IMAGES; i++)
  273. pdev->image_ptr[i] = NULL;
  274. kbuf = NULL;
  275.   
  276. Trace(TRACE_MEMORY, "Leaving pwc_allocate_buffers().n");
  277. return 0;
  278. }
  279. static void pwc_free_buffers(struct pwc_device *pdev)
  280. {
  281. int i;
  282. Trace(TRACE_MEMORY, "Entering free_buffers(%p).n", pdev);
  283. if (pdev == NULL)
  284. return;
  285. #ifdef PWC_MAGIC
  286. if (pdev->magic != PWC_MAGIC) {
  287. Err("free_buffers(): magic failed.n");
  288. return;
  289. }
  290. #endif
  291. /* Release Iso-pipe buffers */
  292. for (i = 0; i < MAX_ISO_BUFS; i++)
  293. if (pdev->sbuf[i].data != NULL) {
  294. Trace(TRACE_MEMORY, "Freeing ISO buffer at %p.n", pdev->sbuf[i].data);
  295. kfree(pdev->sbuf[i].data);
  296. pdev->sbuf[i].data = NULL;
  297. }
  298. /* The same for frame buffers */
  299. if (pdev->fbuf != NULL) {
  300. for (i = 0; i < default_fbufs; i++) {
  301. if (pdev->fbuf[i].data != NULL) {
  302. Trace(TRACE_MEMORY, "Freeing frame buffer %d at %p.n", i, pdev->fbuf[i].data);
  303. vfree(pdev->fbuf[i].data);
  304. pdev->fbuf[i].data = NULL;
  305. }
  306. }
  307. kfree(pdev->fbuf);
  308. pdev->fbuf = NULL;
  309. }
  310. /* Intermediate decompression buffer & tables */
  311. if (pdev->decompress_data != NULL) {
  312. Trace(TRACE_MEMORY, "Freeing decompression buffer at %p.n", pdev->decompress_data);
  313. kfree(pdev->decompress_data);
  314. pdev->decompress_data = NULL;
  315. }
  316. pdev->decompressor = NULL;
  317. /* Release image buffers */
  318. if (pdev->image_data != NULL) {
  319. Trace(TRACE_MEMORY, "Freeing image buffer at %p.n", pdev->image_data);
  320. rvfree(pdev->image_data, default_mbufs * pdev->len_per_image);
  321. }
  322. pdev->image_data = NULL;
  323. Trace(TRACE_MEMORY, "Leaving free_buffers().n");
  324. }
  325. /* The frame & image buffer mess. 
  326.    Yes, this is a mess. Well, it used to be simple, but alas...  In this
  327.    module, 3 buffers schemes are used to get the data from the USB bus to
  328.    the user program. The first scheme involves the ISO buffers (called thus
  329.    since they transport ISO data from the USB controller), and not really
  330.    interesting. Suffices to say the data from this buffer is quickly 
  331.    gathered in an interrupt handler (pwc_isoc_handler) and placed into the 
  332.    frame buffer.
  333.    
  334.    The frame buffer is the second scheme, and is the central element here.
  335.    It collects the data from a single frame from the camera (hence, the
  336.    name). Frames are delimited by the USB camera with a short USB packet,
  337.    so that's easy to detect. The frame buffers form a list that is filled
  338.    by the camera+USB controller and drained by the user process through 
  339.    either read() or mmap().
  340.    
  341.    The image buffer is the third scheme, in which frames are decompressed
  342.    and possibly converted into planar format. For mmap() there is more than
  343.    one image buffer available.
  344.    The frame buffers provide the image buffering, in case the user process
  345.    is a bit slow. This introduces lag and some undesired side-effects.
  346.    The problem arises when the frame buffer is full. I used to drop the last 
  347.    frame, which makes the data in the queue stale very quickly. But dropping 
  348.    the frame at the head of the queue proved to be a litte bit more difficult.
  349.    I tried a circular linked scheme, but this introduced more problems than
  350.    it solved.
  351.    Because filling and draining are completely asynchronous processes, this
  352.    requires some fiddling with pointers and mutexes.
  353.    
  354.    Eventually, I came up with a system with 2 lists: an 'empty' frame list
  355.    and a 'full' frame list:
  356.      * Initially, all frame buffers but one are on the 'empty' list; the one
  357.        remaining buffer is our initial fill frame.
  358.      * If a frame is needed for filling, we take it from the 'empty' list, 
  359.        unless that list is empty, in which case we take the buffer at the 
  360.        head of the 'full' list.
  361.      * When our fill buffer has been filled, it is appended to the 'full' 
  362.        list.
  363.      * If a frame is needed by read() or mmap(), it is taken from the head of 
  364.        the 'full' list, handled, and then appended to the 'empty' list. If no
  365.        buffer is present on the 'full' list, we wait.
  366.    The advantage is that the buffer that is currently being decompressed/
  367.    converted, is on neither list, and thus not in our way (any other scheme 
  368.    I tried had the problem of old data lingering in the queue).
  369.    Whatever strategy you choose, it always remains a tradeoff: with more
  370.    frame buffers the chances of a missed frame are reduced. On the other
  371.    hand, on slower machines it introduces lag because the queue will 
  372.    always be full.
  373.  */
  374. /**
  375.   brief Find next frame buffer to fill. Take from empty or full list, whichever comes first.
  376.  */
  377. static inline int pwc_next_fill_frame(struct pwc_device *pdev)
  378. {
  379. int ret;
  380. unsigned long flags;
  381. ret = 0;
  382. spin_lock_irqsave(&pdev->ptrlock, flags);
  383. if (pdev->fill_frame != NULL) {
  384. /* append to 'full' list */
  385. if (pdev->full_frames == NULL) {
  386. pdev->full_frames = pdev->fill_frame;
  387. pdev->full_frames_tail = pdev->full_frames;
  388. }
  389. else {
  390. pdev->full_frames_tail->next = pdev->fill_frame;
  391. pdev->full_frames_tail = pdev->fill_frame;
  392. }
  393. }
  394. if (pdev->empty_frames != NULL) {
  395. /* We have empty frames available. That's easy */
  396. pdev->fill_frame = pdev->empty_frames;
  397. pdev->empty_frames = pdev->empty_frames->next;
  398. }
  399. else {
  400. /* Hmm. Take it from the full list */
  401. #if PWC_DEBUG
  402. /* sanity check */
  403. if (pdev->full_frames == NULL) {
  404. Err("Neither empty or full frames available!n");
  405. spin_unlock_irqrestore(&pdev->ptrlock, flags);
  406. return -EINVAL;
  407. }
  408. #endif
  409. pdev->fill_frame = pdev->full_frames;
  410. pdev->full_frames = pdev->full_frames->next;
  411. ret = 1;
  412. }
  413. pdev->fill_frame->next = NULL;
  414. #if PWC_DEBUG
  415. Trace(TRACE_SEQUENCE, "Assigning sequence number %d.n", pdev->sequence);
  416. pdev->fill_frame->sequence = pdev->sequence++;
  417. #endif
  418. spin_unlock_irqrestore(&pdev->ptrlock, flags);
  419. return ret;
  420. }
  421.  
  422. /**
  423.   brief Reset all buffers, pointers and lists, except for the image_used[] buffer. 
  424.   
  425.   If the image_used[] buffer is cleared too, mmap()/VIDIOCSYNC will run into trouble.
  426.  */
  427. static void pwc_reset_buffers(struct pwc_device *pdev)
  428. {
  429. int i;
  430. unsigned long flags;
  431. spin_lock_irqsave(&pdev->ptrlock, flags);
  432. pdev->full_frames = NULL;
  433. pdev->full_frames_tail = NULL;
  434. for (i = 0; i < default_fbufs; i++) {
  435. pdev->fbuf[i].filled = 0;
  436. if (i > 0)
  437. pdev->fbuf[i].next = &pdev->fbuf[i - 1];
  438. else
  439. pdev->fbuf->next = NULL;
  440. }
  441. pdev->empty_frames = &pdev->fbuf[default_fbufs - 1];
  442. pdev->empty_frames_tail = pdev->fbuf;
  443. pdev->read_frame = NULL;
  444. pdev->fill_frame = pdev->empty_frames;
  445. pdev->empty_frames = pdev->empty_frames->next;
  446. pdev->image_read_pos = 0;
  447. pdev->fill_image = 0;
  448. spin_unlock_irqrestore(&pdev->ptrlock, flags);
  449. }
  450. /**
  451.   brief Do all the handling for getting one frame: get pointer, decompress, advance pointers.
  452.  */
  453. static int pwc_handle_frame(struct pwc_device *pdev)
  454. {
  455. int ret = 0;
  456. unsigned long flags;
  457. spin_lock_irqsave(&pdev->ptrlock, flags);
  458. /* First grab our read_frame; this is removed from all lists, so
  459.    we can release the lock after this without problems */
  460. if (pdev->read_frame != NULL) {
  461. /* This can't theoretically happen */
  462. Err("Huh? Read frame still in use?n");
  463. }
  464. else {
  465. if (pdev->full_frames == NULL) {
  466. Err("Woops. No frames ready.n");
  467. }
  468. else {
  469. pdev->read_frame = pdev->full_frames;
  470. pdev->full_frames = pdev->full_frames->next;
  471. pdev->read_frame->next = NULL;
  472. }
  473. if (pdev->read_frame != NULL) {
  474. #if PWC_DEBUG
  475. Trace(TRACE_SEQUENCE, "Decompressing frame %dn", pdev->read_frame->sequence);
  476. #endif
  477. /* Decompression is a lenghty process, so it's outside of the lock.
  478.    This gives the isoc_handler the opportunity to fill more frames 
  479.    in the mean time.
  480. */
  481. spin_unlock_irqrestore(&pdev->ptrlock, flags);
  482. ret = pwc_decompress(pdev);
  483. spin_lock_irqsave(&pdev->ptrlock, flags);
  484. /* We're done with read_buffer, tack it to the end of the empty buffer list */
  485. if (pdev->empty_frames == NULL) {
  486. pdev->empty_frames = pdev->read_frame;
  487. pdev->empty_frames_tail = pdev->empty_frames;
  488. }
  489. else {
  490. pdev->empty_frames_tail->next = pdev->read_frame;
  491. pdev->empty_frames_tail = pdev->read_frame;
  492. }
  493. pdev->read_frame = NULL;
  494. }
  495. }
  496. spin_unlock_irqrestore(&pdev->ptrlock, flags);
  497. return ret;
  498. }
  499. /**
  500.   brief Advance pointers of image buffer (after each user request) 
  501. */
  502. static inline void pwc_next_image(struct pwc_device *pdev)
  503. {
  504. pdev->image_used[pdev->fill_image] = 0;
  505. pdev->fill_image = (pdev->fill_image + 1) % default_mbufs;
  506. }
  507. /* 2001-10-14: YUV420P is the only palette remaining. */
  508. static int pwc_set_palette(struct pwc_device *pdev, int pal)
  509. {
  510. if (   pal == VIDEO_PALETTE_YUV420P
  511. #if PWC_DEBUG
  512.             || pal == VIDEO_PALETTE_RAW
  513. #endif
  514. ) {
  515. pdev->vpalette = pal;
  516. pwc_set_image_buffer_size(pdev);
  517. return 0;
  518. }
  519. Trace(TRACE_READ, "Palette %d not supported.n", pal);
  520. return -1;
  521. }
  522. /* This gets called for the Isochronous pipe (video). This is done in
  523.  * interrupt time, so it has to be fast, not crash, and not stall. Neat.
  524.  */
  525. static void pwc_isoc_handler(struct urb *urb)
  526. {
  527. struct pwc_device *pdev;
  528. int i, fst, flen;
  529. int awake;
  530. struct pwc_frame_buf *fbuf;
  531. unsigned char *fillptr, *iso_buf;
  532. pdev = (struct pwc_device *)urb->context;
  533. if (pdev == NULL) {
  534. Err("isoc_handler() called with NULL device?!n");
  535. return;
  536. }
  537. #ifdef PWC_MAGIC
  538. if (pdev->magic != PWC_MAGIC) {
  539. Err("isoc_handler() called with bad magic!n");
  540. return;
  541. }
  542. #endif
  543. if (urb->status == -ENOENT || urb->status == -ECONNRESET) {
  544. Trace(TRACE_OPEN, "pwc_isoc_handler(): URB unlinked.n");
  545. return;
  546. }
  547. if (urb->status != -EINPROGRESS && urb->status != 0) {
  548. char *errmsg;
  549. errmsg = "Unknown";
  550. switch(urb->status) {
  551. case -ENOSR: errmsg = "Buffer error (overrun)"; break;
  552. case -EPIPE: errmsg = "Stalled (device not responding)"; break;
  553. case -EOVERFLOW: errmsg = "Babble (bad cable?)"; break;
  554. case -EPROTO: errmsg = "Bit-stuff error (bad cable?)"; break;
  555. case -EILSEQ: errmsg = "CRC/Timeout"; break;
  556. case -ETIMEDOUT: errmsg = "NAK (device does not respond)"; break;
  557. }
  558. Trace(TRACE_FLOW, "pwc_isoc_handler() called with status %d [%s].n", urb->status, errmsg);
  559. return;
  560. }
  561. fbuf = pdev->fill_frame;
  562. if (fbuf == NULL) {
  563. Err("pwc_isoc_handler without valid fill frame.n");
  564. wake_up_interruptible(&pdev->frameq);
  565. return;
  566. }
  567. fillptr = fbuf->data + fbuf->filled;
  568. awake = 0;
  569. /* vsync: 0 = don't copy data
  570.           1 = sync-hunt
  571.           2 = synched 
  572.  */
  573. /* Compact data */
  574. for (i = 0; i < urb->number_of_packets; i++) {
  575. fst  = urb->iso_frame_desc[i].status;
  576. flen = urb->iso_frame_desc[i].actual_length;
  577. iso_buf = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
  578. if (fst == 0) {
  579. if (flen > 0) { /* if valid data... */
  580. if (pdev->vsync > 0) { /* ...and we are not sync-hunting... */
  581. pdev->vsync = 2;
  582. /* ...copy data to frame buffer, if possible */
  583. if (flen + fbuf->filled > pdev->frame_size) {
  584. Trace(TRACE_FLOW, "Frame buffer overflow (flen = %d, frame_size = %d).n", flen, pdev->frame_size);
  585. pdev->vsync = 0; /* Hmm, let's wait for an EOF (end-of-frame) */
  586. pdev->vframes_error++;
  587. }
  588. else {
  589. memmove(fillptr, iso_buf, flen);
  590. fillptr += flen;
  591. }
  592. }
  593. fbuf->filled += flen;
  594. } /* ..flen > 0 */
  595. if (flen < pdev->vlast_packet_size) {
  596. /* Shorter packet... We probably have the end of an image-frame; 
  597.    wake up read() process and let select()/poll() do something.
  598.    Decompression is done in user time over there. 
  599.  */
  600. if (pdev->vsync == 2) {
  601. /* The ToUCam Fun CMOS sensor causes the firmware to send 2 or 3 bogus 
  602.    frames on the USB wire after an exposure change. This conditition is 
  603.    however detected  in the cam and a bit is set in the header.
  604.  */
  605. if (pdev->type == 730) {
  606. unsigned char *ptr = (unsigned char *)fbuf->data;
  607. if (ptr[1] == 1 && ptr[0] & 0x10) {
  608. #if PWC_DEBUG
  609. Debug("Hyundai CMOS sensor bug. Dropping frame %d.n", fbuf->sequence);
  610. #endif
  611. pdev->drop_frames = 2;
  612. pdev->vframes_error++;
  613. }
  614. /* Sometimes the trailer of the 730 is still sent as a 4 byte packet 
  615.    after a short frame; this condition is filtered out specifically. A 4 byte
  616.    frame doesn't make sense anyway.
  617.    So we get either this sequence: 
  618.     drop_bit set -> 4 byte frame -> short frame -> good frame
  619.    Or this one:
  620.     drop_bit set -> short frame -> good frame
  621.    So we drop either 3 or 2 frames in all!
  622.  */
  623. if (fbuf->filled == 4)
  624. pdev->drop_frames++;
  625. }
  626. /* In case we were instructed to drop the frame, do so silently.
  627.    The buffer pointers are not updated either (but the counters are reset below).
  628.  */
  629. if (pdev->drop_frames)
  630. pdev->drop_frames--;
  631. else {
  632. /* Check for underflow first */
  633. if (fbuf->filled < pdev->frame_size) {
  634. Trace(TRACE_FLOW, "Frame buffer underflow (%d bytes); discarded.n", fbuf->filled);
  635. pdev->vframes_error++;
  636. }
  637. else {
  638. /* Send only once per EOF */
  639. awake = 1; /* delay wake_ups */
  640. /* Find our next frame to fill. This will always succeed, since we
  641.  * nick a frame from either empty or full list, but if we had to
  642.  * take it from the full list, it means a frame got dropped.
  643.  */
  644. if (pwc_next_fill_frame(pdev)) {
  645. pdev->vframes_dumped++;
  646. if ((pdev->vframe_count > FRAME_LOWMARK) && (pwc_trace & TRACE_FLOW)) {
  647. if (pdev->vframes_dumped < 20)
  648. Trace(TRACE_FLOW, "Dumping frame %d.n", pdev->vframe_count);
  649. if (pdev->vframes_dumped == 20)
  650. Trace(TRACE_FLOW, "Dumping frame %d (last message).n", pdev->vframe_count);
  651. }
  652. }
  653. fbuf = pdev->fill_frame;
  654. }
  655. } /* !drop_frames */
  656. pdev->vframe_count++;
  657. }
  658. fbuf->filled = 0;
  659. fillptr = fbuf->data;
  660. pdev->vsync = 1;
  661. } /* .. flen < last_packet_size */
  662. pdev->vlast_packet_size = flen;
  663. } /* ..status == 0 */
  664. #ifdef PWC_DEBUG
  665. /* This is normally not interesting to the user, unless you are really debugging something */
  666. else 
  667. Trace(TRACE_FLOW, "Iso frame %d of USB has error %dn", i, fst);
  668. #endif
  669. }
  670. if (awake)
  671. wake_up_interruptible(&pdev->frameq);
  672. }
  673. static int pwc_isoc_init(struct pwc_device *pdev)
  674. {
  675. struct usb_device *udev;
  676. struct urb *urb;
  677. int i, j, ret;
  678. struct usb_interface_descriptor *idesc;
  679. int cur_alt;
  680. if (pdev == NULL)
  681. return -EFAULT;
  682. if (pdev->iso_init)
  683. return 0;
  684. pdev->vsync = 0;
  685. udev = pdev->udev;
  686. /* Get the current alternate interface, adjust packet size */
  687. if (!udev->actconfig)
  688. return -EFAULT;
  689. cur_alt = udev->actconfig->interface[0].act_altsetting;
  690. idesc = &udev->actconfig->interface[0].altsetting[cur_alt];
  691. if (!idesc)
  692. return -EFAULT;
  693. /* Search video endpoint */
  694. pdev->vmax_packet_size = -1;
  695. for (i = 0; i < idesc->bNumEndpoints; i++)
  696. if ((idesc->endpoint[i].bEndpointAddress & 0xF) == pdev->vendpoint) {
  697. pdev->vmax_packet_size = idesc->endpoint[i].wMaxPacketSize;
  698. break;
  699. }
  700. if (pdev->vmax_packet_size < 0) {
  701. Err("Failed to find packet size for video endpoint in current alternate setting.n");
  702. return -ENFILE; /* Odd error, that should be noticable */
  703. }
  704. ret = 0;
  705. for (i = 0; i < MAX_ISO_BUFS; i++) {
  706. urb = usb_alloc_urb(ISO_FRAMES_PER_DESC);
  707. if (urb == NULL) {
  708. Err("Failed to allocate urb %dn", i);
  709. ret = -ENOMEM;
  710. break;
  711. }
  712. pdev->sbuf[i].urb = urb;
  713. }
  714. if (ret) {
  715. /* De-allocate in reverse order */
  716. while (i >= 0) {
  717. if (pdev->sbuf[i].urb != NULL)
  718. usb_free_urb(pdev->sbuf[i].urb);
  719. pdev->sbuf[i].urb = NULL;
  720. i--;
  721. }
  722. return ret;
  723. }
  724. /* init URB structure */
  725. for (i = 0; i < MAX_ISO_BUFS; i++) {
  726. urb = pdev->sbuf[i].urb;
  727. urb->next = pdev->sbuf[(i + 1) % MAX_ISO_BUFS].urb;
  728. urb->dev = udev;
  729.         urb->pipe = usb_rcvisocpipe(udev, pdev->vendpoint);
  730. urb->transfer_flags = USB_ISO_ASAP;
  731.         urb->transfer_buffer = pdev->sbuf[i].data;
  732.         urb->transfer_buffer_length = ISO_BUFFER_SIZE;
  733.         urb->complete = pwc_isoc_handler;
  734.         urb->context = pdev;
  735. urb->start_frame = 0;
  736. urb->number_of_packets = ISO_FRAMES_PER_DESC;
  737. for (j = 0; j < ISO_FRAMES_PER_DESC; j++) {
  738. urb->iso_frame_desc[j].offset = j * ISO_MAX_FRAME_SIZE;
  739. urb->iso_frame_desc[j].length = ISO_MAX_FRAME_SIZE;
  740. }
  741. }
  742. /* link */
  743. for (i = 0; i < MAX_ISO_BUFS; i++) {
  744. ret = usb_submit_urb(pdev->sbuf[i].urb);
  745. if (ret)
  746. Err("isoc_init() submit_urb %d failed with error %dn", i, ret);
  747. else
  748. Trace(TRACE_OPEN, "pwc_isoc_init(): URB submitted.n");
  749. }
  750. /* data should stream in now */
  751. pdev->iso_init = 1;
  752. return 0;
  753. }
  754. static void pwc_isoc_cleanup(struct pwc_device *pdev)
  755. {
  756. int i;
  757. if (pdev == NULL)
  758. return;
  759. if (!pdev->iso_init)
  760. return;
  761. /* Stop camera, but only if we are sure the camera is still there */
  762. if (!pdev->unplugged)
  763. usb_set_interface(pdev->udev, 0, 0);
  764. /* Unlinking ISOC buffers one by one */
  765. for (i = MAX_ISO_BUFS - 1; i >= 0; i--) {
  766. pdev->sbuf[i].urb->next = NULL;
  767. usb_unlink_urb(pdev->sbuf[i].urb);
  768. usb_free_urb(pdev->sbuf[i].urb);
  769. pdev->sbuf[i].urb = NULL;
  770. }
  771. pdev->iso_init = 0;
  772. }
  773. int pwc_try_video_mode(struct pwc_device *pdev, int width, int height, int new_fps, int new_compression, int new_snapshot)
  774. {
  775. int ret;
  776. /* Stop isoc stuff */
  777. pwc_isoc_cleanup(pdev);
  778. /* Reset parameters */
  779. pwc_reset_buffers(pdev);
  780. /* Try to set video mode... */
  781. ret = pwc_set_video_mode(pdev, width, height, new_fps, new_compression, new_snapshot);
  782. if (ret) /* That failed... restore old mode (we know that worked) */
  783. ret = pwc_set_video_mode(pdev, pdev->view.x, pdev->view.y, pdev->vframes, pdev->vcompression, pdev->vsnapshot);
  784. else /* Set (new) alternate interface */
  785. ret = usb_set_interface(pdev->udev, 0, pdev->valternate);
  786. if (!ret)
  787. ret = pwc_isoc_init(pdev);
  788. pdev->drop_frames = 1; /* try to avoid garbage during switch */
  789. return ret;
  790. }
  791. static inline void set_mem_leak(void *ptr)
  792. {
  793. down(&mem_lock);
  794. if (mem_leak != NULL)
  795. Err("Memleak: overwriting mem_leak pointer!n");
  796. Trace(TRACE_MEMORY, "Setting mem_leak to 0x%p.n", ptr);
  797. mem_leak = ptr;
  798. up(&mem_lock);
  799. }
  800. static inline void free_mem_leak(void)
  801. {
  802. down(&mem_lock);
  803. if (mem_leak != NULL) {
  804. Trace(TRACE_MEMORY, "Freeing mem_leak ptr 0x%p.n", mem_leak);
  805. kfree(mem_leak);
  806. mem_leak = NULL;
  807. }
  808. up(&mem_lock);
  809. }
  810. /***************************************************************************/
  811. /* Video4Linux functions */
  812. static int pwc_video_open(struct video_device *vdev, int mode)
  813. {
  814. int i;
  815. struct pwc_device *pdev;
  816. Trace(TRACE_OPEN, "video_open called(0x%p, 0%o).n", vdev, mode);
  817. if (vdev == NULL)
  818. BUG();
  819. pdev = (struct pwc_device *)vdev->priv;
  820. if (pdev == NULL)
  821. BUG();
  822. down(&pdev->modlock);
  823. if (!pdev->usb_init) {
  824. Trace(TRACE_OPEN, "Doing first time initialization.n");
  825. /* Reset camera */
  826. if (usb_set_interface(pdev->udev, 0, 0))
  827. Info("Failed to set alternate interface to 0.n");
  828. pdev->usb_init = 1;
  829. if (pwc_trace & TRACE_OPEN) {
  830. /* Query CMOS sensor type */
  831. const char *sensor_type = NULL;
  832. i = pwc_get_cmos_sensor(pdev);
  833. switch(i) {
  834. case -1: /* Unknown, show nothing */; break;
  835. case 0x00:  sensor_type = "Hyundai CMOS sensor"; break;
  836. case 0x20:  sensor_type = "Sony CCD sensor + TDA8787"; break;
  837. case 0x2E:  sensor_type = "Sony CCD sensor + Exas 98L59"; break;
  838. case 0x2F:  sensor_type = "Sony CCD sensor + ADI 9804"; break;
  839. case 0x30:  sensor_type = "Sharp CCD sensor + TDA8787"; break;
  840. case 0x3E:  sensor_type = "Sharp CCD sensor + Exas 98L59"; break;
  841. case 0x3F:  sensor_type = "Sharp CCD sensor + ADI 9804"; break;
  842. case 0x40:  sensor_type = "UPA 1021 sensor"; break;
  843. case 0x100: sensor_type = "VGA sensor"; break;
  844. case 0x101: sensor_type = "PAL MR sensor"; break;
  845. default:   sensor_type = "unknown type of sensor"; break;
  846. }
  847. if (sensor_type != NULL)
  848. Info("Thes %s camera is equipped with a %s (%d).n", pdev->vdev->name, sensor_type, i);
  849. }
  850. }
  851. /* Turn on camera */
  852. if (power_save) {
  853. i = pwc_camera_power(pdev, 1);
  854. if (i < 0)
  855. Info("Failed to restore power to the camera! (%d)n", i);
  856. }
  857. /* Set LED on/off time */
  858. if (pwc_set_leds(pdev, led_on, led_off) < 0)
  859. Info("Failed to set LED on/off time.n");
  860. /* Find our decompressor, if any */
  861. pdev->decompressor = pwc_find_decompressor(pdev->type);
  862. #if PWC_DEBUG
  863. Debug("Found decompressor for %d at 0x%pn", pdev->type, pdev->decompressor);
  864. #endif
  865. /* So far, so good. Allocate memory. */
  866. i = pwc_allocate_buffers(pdev);
  867. if (i < 0) {
  868. Trace(TRACE_OPEN, "Failed to allocate buffer memory.n");
  869. up(&pdev->modlock);
  870. return i;
  871. }
  872. /* Reset buffers & parameters */
  873. pwc_reset_buffers(pdev);
  874. for (i = 0; i < default_mbufs; i++)
  875. pdev->image_used[i] = 0;
  876. pdev->vframe_count = 0;
  877. pdev->vframes_dumped = 0;
  878. pdev->vframes_error = 0;
  879. pdev->vpalette = default_palette;
  880. #if PWC_DEBUG
  881. pdev->sequence = 0;
  882. #endif
  883. /* Set some defaults */
  884. pdev->vsnapshot = 0;
  885. if (pdev->type == 730 || pdev->type == 740 || pdev->type == 750)
  886. pdev->vsize = PSZ_QSIF;
  887. else
  888. pdev->vsize = PSZ_QCIF;
  889. pdev->vframes = 10;
  890. /* Start iso pipe for video; first try user-supplied size/fps, if
  891.    that fails try QCIF/10 or QSIF/10 (a reasonable default), 
  892.    then give up 
  893.  */
  894. i = pwc_set_video_mode(pdev, pwc_image_sizes[default_size].x, pwc_image_sizes[default_size].y, default_fps, pdev->vcompression, 0);
  895. if (i) {
  896. Trace(TRACE_OPEN, "First attempt at set_video_mode failed.n");
  897. if (pdev->type == 730 || pdev->type == 740 || pdev->type == 750)
  898. i = pwc_set_video_mode(pdev, pwc_image_sizes[PSZ_QSIF].x, pwc_image_sizes[PSZ_QSIF].y, 10, pdev->vcompression, 0);
  899. else
  900. i = pwc_set_video_mode(pdev, pwc_image_sizes[PSZ_QCIF].x, pwc_image_sizes[PSZ_QCIF].y, 10, pdev->vcompression, 0);
  901. }
  902. if (i) {
  903. Trace(TRACE_OPEN, "Second attempt at set_video_mode failed.n");
  904. up(&pdev->modlock);
  905. return i;
  906. }
  907. i = usb_set_interface(pdev->udev, 0, pdev->valternate);
  908. if (i) {
  909. Trace(TRACE_OPEN, "Failed to set alternate interface = %d.n", i);
  910. up(&pdev->modlock);
  911. return -EINVAL;
  912. }
  913. i = pwc_isoc_init(pdev);
  914. if (i) {
  915. Trace(TRACE_OPEN, "Failed to init ISOC stuff = %d.n", i);
  916. MOD_DEC_USE_COUNT;
  917. up(&pdev->modlock);
  918. return i;
  919. }
  920. pdev->vopen++;
  921. /* lock decompressor; this has a small race condition, since we 
  922.    could in theory unload pwcx.o between pwc_find_decompressor()
  923.    above and this call. I doubt it's ever going to be a problem.
  924.  */
  925. if (pdev->decompressor != NULL)
  926. pdev->decompressor->lock();
  927. up(&pdev->modlock);
  928. Trace(TRACE_OPEN, "video_open() returning 0.n");
  929. return 0;
  930. }
  931. /* Note that all cleanup is done in the reverse order as in _open */
  932. static void pwc_video_close(struct video_device *vdev)
  933. {
  934. struct pwc_device *pdev;
  935. int i;
  936. Trace(TRACE_OPEN, "video_close called(0x%p).n", vdev);
  937. pdev = (struct pwc_device *)vdev->priv;
  938. if (pdev->vopen == 0)
  939. Info("video_close() called on closed device?n");
  940. /* Free isoc URBs */
  941. pwc_isoc_cleanup(pdev);
  942. /* Dump statistics, but only if a reasonable amount of frames were
  943.    processed (to prevent endless log-entries in case of snap-shot
  944.    programs) 
  945.  */
  946. if (pdev->vframe_count > 20)
  947. Info("Closing video device: %d frames received, dumped %d frames, %d frames with errors.n", pdev->vframe_count, pdev->vframes_dumped, pdev->vframes_error);
  948. if (pdev->unplugged) {
  949. /* The device was unplugged or some other error occured */
  950. /* We unregister the video_device */
  951. Trace(TRACE_OPEN, "Delayed video device unregistered.n");
  952. video_unregister_device(pdev->vdev);
  953. }
  954. else {
  955. /* Normal close: stop isochronuous and interrupt endpoint */
  956. Trace(TRACE_OPEN, "Normal close(): setting interface to 0.n");
  957. usb_set_interface(pdev->udev, 0, 0);
  958. /* Turn LEDs off */
  959. if (pwc_set_leds(pdev, 0, 0) < 0)
  960. Info("Failed to set LED on/off time..n");
  961. /* Power down camere to save energy */
  962. if (power_save) {
  963. i = pwc_camera_power(pdev, 0);
  964. if (i < 0) 
  965. Err("Failed to power down camera (%d)n", i);
  966. }
  967. }
  968. pdev->vopen = 0;
  969. if (pdev->decompressor != NULL) {
  970. pdev->decompressor->exit();
  971. pdev->decompressor->unlock();
  972. }
  973. pwc_free_buffers(pdev);
  974. /* wake up _disconnect() routine */
  975. if (pdev->unplugged)
  976. wake_up(&pdev->remove_ok);
  977. }
  978. /*
  979.  * FIXME: what about two parallel reads ????
  980.  *      ANSWER: Not supported. You can't open the device more than once,
  981.                 despite what the V4L1 interface says. First, I don't see 
  982.                 the need, second there's no mechanism of alerting the 
  983.                 2nd/3rd/... process of events like changing image size.
  984.                 And I don't see the point of blocking that for the 
  985.                 2nd/3rd/... process.
  986.                 In multi-threaded environments reading parallel from any
  987.                 device is tricky anyhow.
  988.  */
  989.  
  990. static long pwc_video_read(struct video_device *vdev, char *buf, unsigned long count, int noblock)
  991. {
  992. struct pwc_device *pdev;
  993. DECLARE_WAITQUEUE(wait, current);
  994. Trace(TRACE_READ, "video_read(0x%p, %p, %ld, %d) called.n", vdev, buf, count, noblock);
  995. if (vdev == NULL)
  996. return -EFAULT;
  997. pdev = vdev->priv;
  998. if (pdev == NULL)
  999. return -EFAULT;
  1000. if (pdev->unplugged) {
  1001. Info("pwc_video_read: Device got unplugged (1).n");
  1002. return -EPIPE; /* unplugged device! */
  1003. }
  1004. /* In case we're doing partial reads, we don't have to wait for a frame */
  1005. if (pdev->image_read_pos == 0) {
  1006. /* Do wait queueing according to the (doc)book */
  1007. add_wait_queue(&pdev->frameq, &wait);
  1008. while (pdev->full_frames == NULL) {
  1009.                 if (noblock) {
  1010.                  remove_wait_queue(&pdev->frameq, &wait);
  1011.                  set_current_state(TASK_RUNNING);
  1012.                  return -EWOULDBLOCK;
  1013.                 }
  1014.                 if (signal_pending(current)) {
  1015.                  remove_wait_queue(&pdev->frameq, &wait);
  1016.                  set_current_state(TASK_RUNNING);
  1017.                  return -ERESTARTSYS;
  1018.                 }
  1019.                 schedule();
  1020.                 set_current_state(TASK_INTERRUPTIBLE);
  1021. }
  1022. remove_wait_queue(&pdev->frameq, &wait);
  1023. set_current_state(TASK_RUNNING);
  1024.                                                                                                                                                                                 
  1025. /* Decompress [, convert] and release frame */
  1026. if (pwc_handle_frame(pdev))
  1027. return -EFAULT;
  1028. }
  1029. Trace(TRACE_READ, "Copying data to user space.n");
  1030. /* copy bytes to user space; we allow for partial reads */
  1031. if (count + pdev->image_read_pos > pdev->view.size)
  1032. count = pdev->view.size - pdev->image_read_pos;
  1033. if (copy_to_user(buf, pdev->image_ptr[pdev->fill_image] + pdev->image_read_pos, count))
  1034. return -EFAULT;
  1035. pdev->image_read_pos += count;
  1036. if (pdev->image_read_pos >= pdev->view.size) { /* All data has been read */
  1037. pdev->image_read_pos = 0;
  1038. pwc_next_image(pdev);
  1039. }
  1040. return count;
  1041. }
  1042. static long pwc_video_write(struct video_device *vdev, const char *buf, unsigned long count, int noblock)
  1043. {
  1044. return -EINVAL;   
  1045. }
  1046. static unsigned int pwc_video_poll(struct video_device *vdev, struct file *file, poll_table *wait)
  1047. {
  1048. struct pwc_device *pdev;
  1049. if (vdev == NULL)
  1050. return -EFAULT;
  1051. pdev = vdev->priv;
  1052. if (pdev == NULL)
  1053. return -EFAULT;
  1054. poll_wait(file, &pdev->frameq, wait);
  1055. if (pdev->unplugged) {
  1056. Info("pwc_video_poll: Device got unplugged.n");
  1057. return POLLERR;
  1058. }
  1059. if (pdev->full_frames != NULL) /* we have frames waiting */
  1060. return (POLLIN | POLLRDNORM);
  1061. return 0;
  1062. }
  1063.         
  1064. static int pwc_video_ioctl(struct video_device *vdev, unsigned int cmd, void *arg)
  1065. {
  1066. struct pwc_device *pdev;
  1067. DECLARE_WAITQUEUE(wait, current);
  1068. if (vdev == NULL)
  1069. return -EFAULT;
  1070. pdev = vdev->priv;
  1071. if (pdev == NULL)
  1072. return -EFAULT;
  1073. switch (cmd) {
  1074. /* Query cabapilities */
  1075. case VIDIOCGCAP: 
  1076. {
  1077. struct video_capability caps;
  1078. strcpy(caps.name, vdev->name);
  1079. caps.type = VID_TYPE_CAPTURE;
  1080. caps.channels = 1;
  1081. caps.audios = 1;
  1082. caps.minwidth  = pdev->view_min.x;
  1083. caps.minheight = pdev->view_min.y;
  1084. caps.maxwidth  = pdev->view_max.x;
  1085. caps.maxheight = pdev->view_max.y;
  1086. if (copy_to_user(arg, &caps, sizeof(caps)))
  1087. return -EFAULT;
  1088. break;
  1089. }
  1090. /* Channel functions (simulate 1 channel) */
  1091. case VIDIOCGCHAN:
  1092. {
  1093. struct video_channel v;
  1094. if (copy_from_user(&v, arg, sizeof(v)))
  1095. return -EFAULT;
  1096. if (v.channel != 0)
  1097. return -EINVAL;
  1098. v.flags = 0;
  1099. v.tuners = 0;
  1100. v.type = VIDEO_TYPE_CAMERA;
  1101. strcpy(v.name, "Webcam");
  1102. if (copy_to_user(arg, &v, sizeof(v)))
  1103. return -EFAULT;
  1104. return 0;
  1105. }
  1106. case VIDIOCSCHAN:
  1107. {
  1108. /* The spec says the argument is an integer, but
  1109.    the bttv driver uses a video_channel arg, which
  1110.    makes sense becasue it also has the norm flag.
  1111.  */
  1112. struct video_channel v;
  1113. if (copy_from_user(&v, arg, sizeof(v)))
  1114. return -EFAULT;
  1115. if (v.channel != 0)
  1116. return -EINVAL;
  1117. return 0;
  1118. }
  1119. /* Picture functions; contrast etc. */
  1120. case VIDIOCGPICT:
  1121. {
  1122. struct video_picture p;
  1123. int val;
  1124. p.colour = 0x8000;
  1125. p.hue = 0x8000;
  1126. val = pwc_get_brightness(pdev);
  1127. if (val >= 0)
  1128. p.brightness = val;
  1129. else
  1130. p.brightness = 0xffff;
  1131. val = pwc_get_contrast(pdev);
  1132. if (val >= 0)
  1133. p.contrast = val;
  1134. else
  1135. p.contrast = 0xffff;
  1136. /* Gamma, Whiteness, what's the difference? :) */
  1137. val = pwc_get_gamma(pdev);
  1138. if (val >= 0)
  1139. p.whiteness = val;
  1140. else
  1141. p.whiteness = 0xffff;
  1142. val = pwc_get_saturation(pdev);
  1143. if (val >= 0)
  1144. p.colour = val;
  1145. else
  1146. p.colour = 0xffff;
  1147. p.depth = 24;
  1148. p.palette = pdev->vpalette;
  1149. p.hue = 0xFFFF; /* N/A */
  1150. if (copy_to_user(arg, &p, sizeof(p)))
  1151. return -EFAULT;
  1152. break;
  1153. }
  1154. case VIDIOCSPICT:
  1155. {
  1156. struct video_picture p;
  1157. if (copy_from_user(&p, arg, sizeof(p)))
  1158. return -EFAULT;
  1159. /*
  1160.  * FIXME: Suppose we are mid read
  1161.         ANSWER: No problem: the firmware of the camera
  1162.                 can handle brightness/contrast/etc
  1163.                 changes at _any_ time, and the palette
  1164.                 is used exactly once in the uncompress
  1165.                 routine.
  1166.  */
  1167. pwc_set_brightness(pdev, p.brightness);
  1168. pwc_set_contrast(pdev, p.contrast);
  1169. pwc_set_gamma(pdev, p.whiteness);
  1170. pwc_set_saturation(pdev, p.colour);
  1171. if (p.palette && p.palette != pdev->vpalette) {
  1172. if (pwc_set_palette(pdev, p.palette) < 0)
  1173. return -EINVAL;
  1174. }
  1175. break;
  1176. }
  1177. /* Window/size parameters */
  1178. case VIDIOCGWIN:
  1179. {
  1180. struct video_window vw;
  1181. vw.x = 0;
  1182. vw.y = 0;
  1183. vw.width = pdev->view.x;
  1184. vw.height = pdev->view.y;
  1185. vw.chromakey = 0;
  1186. vw.flags = (pdev->vframes << PWC_FPS_SHIFT) | 
  1187.            (pdev->vsnapshot ? PWC_FPS_SNAPSHOT : 0);
  1188. if (copy_to_user(arg, &vw, sizeof(vw)))
  1189. return -EFAULT;
  1190. break;
  1191. }
  1192. case VIDIOCSWIN:
  1193. {
  1194. struct video_window vw;
  1195. int fps, snapshot, ret;
  1196. if (copy_from_user(&vw, arg, sizeof(vw)))
  1197. return -EFAULT;
  1198. fps = (vw.flags & PWC_FPS_FRMASK) >> PWC_FPS_SHIFT;
  1199. snapshot = vw.flags & PWC_FPS_SNAPSHOT;
  1200. if (fps == 0)
  1201. fps = pdev->vframes;
  1202. if (pdev->view.x == vw.width && pdev->view.y && fps == pdev->vframes && snapshot == pdev->vsnapshot)
  1203. return 0;
  1204. ret = pwc_try_video_mode(pdev, vw.width, vw.height, fps, pdev->vcompression, snapshot);
  1205. if (ret)
  1206. return ret;
  1207. break;
  1208. }
  1209. /* We don't have overlay support (yet) */
  1210. case VIDIOCGFBUF:
  1211. {
  1212. struct video_buffer vb;
  1213. vb.base = NULL;
  1214. vb.height = 0;
  1215. vb.width = 0;
  1216. vb.depth = 0;
  1217. vb.bytesperline = 0;
  1218. if (copy_to_user((void *)arg, (void *)&vb, sizeof(vb)))
  1219. return -EFAULT;
  1220. break;
  1221. }
  1222. /* mmap() functions */
  1223. case VIDIOCGMBUF:
  1224. {
  1225. /* Tell the user program how much memory is needed for a mmap() */
  1226. struct video_mbuf vm;
  1227. int i;
  1228. memset(&vm, 0, sizeof(vm));
  1229. vm.size = default_mbufs * pdev->len_per_image;
  1230. vm.frames = default_mbufs; /* double buffering should be enough for most applications */
  1231. for (i = 0; i < default_mbufs; i++)
  1232. vm.offsets[i] = i * pdev->len_per_image;
  1233. if (copy_to_user((void *)arg, (void *)&vm, sizeof(vm)))
  1234. return -EFAULT;
  1235. break;
  1236. }
  1237. case VIDIOCMCAPTURE:
  1238. {
  1239. /* Start capture into a given image buffer (called 'frame' in video_mmap structure) */
  1240. struct video_mmap vm;
  1241. if (copy_from_user((void *)&vm, (void *)arg, sizeof(vm)))
  1242. return -EFAULT;
  1243. Trace(TRACE_READ, "VIDIOCMCAPTURE: %dx%d, frame %d, format %dn", vm.width, vm.height, vm.frame, vm.format);
  1244. if (vm.frame < 0 || vm.frame >= default_mbufs)
  1245. return -EINVAL;
  1246. /* xawtv is nasty. It probes the available palettes
  1247.    by setting a very small image size and trying
  1248.    various palettes... The driver doesn't support
  1249.    such small images, so I'm working around it.
  1250.  */
  1251. if (vm.format && vm.format != pdev->vpalette)
  1252. if (pwc_set_palette(pdev, vm.format) < 0)
  1253. return -EINVAL;
  1254.  
  1255. if ((vm.width != pdev->view.x || vm.height != pdev->view.y) &&
  1256.     (vm.width >= pdev->view_min.x && vm.height >= pdev->view_min.y)) {
  1257. int ret;
  1258. Trace(TRACE_OPEN, "VIDIOCMCAPTURE: changing size to please xawtv :-(.n");
  1259. ret = pwc_try_video_mode(pdev, vm.width, vm.height, pdev->vframes, pdev->vcompression, pdev->vsnapshot);
  1260. if (ret)
  1261. return ret;
  1262. } /* ... size mismatch */
  1263. /* FIXME: should we lock here? */
  1264. if (pdev->image_used[vm.frame])
  1265. return -EBUSY; /* buffer wasn't available. Bummer */
  1266. pdev->image_used[vm.frame] = 1;
  1267. /* Okay, we're done here. In the SYNC call we wait until a 
  1268.    frame comes available, then expand image into the given 
  1269.    buffer.
  1270.    In contrast to the CPiA cam the Philips cams deliver a 
  1271.    constant stream, almost like a grabber card. Also,
  1272.    we have separate buffers for the rawdata and the image,
  1273.    meaning we can nearly always expand into the requested buffer.
  1274.  */
  1275. Trace(TRACE_READ, "VIDIOCMCAPTURE done.n");
  1276. break;
  1277. }
  1278. case VIDIOCSYNC:
  1279. {
  1280. /* The doc says: "Whenever a buffer is used it should
  1281.    call VIDIOCSYNC to free this frame up and continue."
  1282.    
  1283.    The only odd thing about this whole procedure is 
  1284.    that MCAPTURE flags the buffer as "in use", and
  1285.    SYNC immediately unmarks it, while it isn't 
  1286.    after SYNC that you know that the buffer actually
  1287.    got filled! So you better not start a CAPTURE in
  1288.    the same frame immediately (use double buffering). 
  1289.    This is not a problem for this cam, since it has 
  1290.    extra intermediate buffers, but a hardware 
  1291.    grabber card will then overwrite the buffer 
  1292.    you're working on.
  1293.  */
  1294. int mbuf, ret;
  1295. if (copy_from_user((void *)&mbuf, arg, sizeof(int)))
  1296. return -EFAULT;
  1297. Trace(TRACE_READ, "VIDIOCSYNC called (%d).n", mbuf);
  1298. /* bounds check */
  1299. if (mbuf < 0 || mbuf >= default_mbufs)
  1300. return -EINVAL;
  1301. /* check if this buffer was requested anyway */
  1302. if (pdev->image_used[mbuf] == 0)
  1303. return -EINVAL;
  1304. /* Add ourselves to the frame wait-queue.
  1305.    
  1306.    FIXME: needs auditing for safety.
  1307.    QUSTION: In what respect? I think that using the
  1308.             frameq is safe now.
  1309.  */
  1310. add_wait_queue(&pdev->frameq, &wait);
  1311. while (pdev->full_frames == NULL) {
  1312. if (pdev->unplugged) {
  1313. remove_wait_queue(&pdev->frameq, &wait);
  1314. set_current_state(TASK_RUNNING);
  1315. return -ENODEV;
  1316. }
  1317.                  if (signal_pending(current)) {
  1318.                  remove_wait_queue(&pdev->frameq, &wait);
  1319.                  set_current_state(TASK_RUNNING);
  1320.                  return -ERESTARTSYS;
  1321.                  }
  1322.                  schedule();
  1323.                 set_current_state(TASK_INTERRUPTIBLE);
  1324. }
  1325. remove_wait_queue(&pdev->frameq, &wait);
  1326. set_current_state(TASK_RUNNING);
  1327. /* The frame is ready. Expand in the image buffer 
  1328.    requested by the user. I don't care if you 
  1329.    mmap() 5 buffers and request data in this order: 
  1330.    buffer 4 2 3 0 1 2 3 0 4 3 1 . . .
  1331.    Grabber hardware may not be so forgiving.
  1332.  */
  1333. Trace(TRACE_READ, "VIDIOCSYNC: frame ready.n");
  1334. pdev->fill_image = mbuf; /* tell in which buffer we want the image to be expanded */
  1335. /* Decompress, etc */
  1336. ret = pwc_handle_frame(pdev);
  1337. pdev->image_used[mbuf] = 0;
  1338. if (ret)
  1339. return -EFAULT;
  1340. break;
  1341. }
  1342. case VIDIOCGAUDIO:
  1343. {
  1344. struct video_audio v;
  1345. strcpy(v.name, "Microphone");
  1346. v.audio = -1; /* unknown audio minor */
  1347. v.flags = 0;
  1348. v.mode = VIDEO_SOUND_MONO;
  1349. v.volume = 0;
  1350. v.bass = 0;
  1351. v.treble = 0;
  1352. v.balance = 0x8000;
  1353. v.step = 1;
  1354. if (copy_to_user(arg, &v, sizeof(v)))
  1355. return -EFAULT;
  1356. break;
  1357. }
  1358. case VIDIOCSAUDIO:
  1359. {
  1360. struct video_audio v;
  1361. if (copy_from_user(&v, arg, sizeof(v)))
  1362. return -EFAULT;
  1363. /* Dummy: nothing can be set */
  1364. break;
  1365. }
  1366. case VIDIOCGUNIT:
  1367. {
  1368. struct video_unit vu;
  1369. vu.video = pdev->vdev->minor & 0x3F;
  1370. vu.audio = -1; /* not known yet */
  1371. vu.vbi = -1;
  1372. vu.radio = -1;
  1373. vu.teletext = -1;
  1374. if (copy_to_user(arg, &vu, sizeof(vu)))
  1375. return -EFAULT;
  1376. break;
  1377. }
  1378. default:
  1379. return pwc_ioctl(pdev, cmd, arg);
  1380. } /* ..switch */
  1381. return 0;
  1382. }
  1383. static int pwc_video_mmap(struct video_device *vdev, const char *adr, unsigned long size)
  1384. {
  1385. struct pwc_device *pdev;
  1386. unsigned long start = (unsigned long)adr;
  1387. unsigned long page, pos;
  1388. Trace(TRACE_MEMORY, "mmap(0x%p, 0x%p, %lu) called.n", vdev, adr, size);
  1389. pdev = vdev->priv;
  1390. /* FIXME - audit mmap during a read */
  1391. /* Nemo: 9 months and 20 kernel revisions later I still don't know what you mean by this :-) */
  1392. pos = (unsigned long)pdev->image_data;
  1393. while (size > 0) {
  1394. page = kvirt_to_pa(pos);
  1395. if (remap_page_range(start, page, PAGE_SIZE, PAGE_SHARED))
  1396. return -EAGAIN;
  1397. start += PAGE_SIZE;
  1398. pos += PAGE_SIZE;
  1399. if (size > PAGE_SIZE)
  1400. size -= PAGE_SIZE;
  1401. else
  1402. size = 0;
  1403. }
  1404. return 0;
  1405. }
  1406. /***************************************************************************/
  1407. /* USB functions */
  1408. /* This function gets called when a new device is plugged in or the usb core
  1409.  * is loaded.
  1410.  */
  1411. static void *usb_pwc_probe(struct usb_device *udev, unsigned int ifnum, const struct usb_device_id *id)
  1412. {
  1413. struct pwc_device *pdev = NULL;
  1414. struct video_device *vdev;
  1415. int vendor_id, product_id, type_id;
  1416. int i, hint;
  1417. int video_nr = -1; /* default: use next available device */
  1418. char serial_number[30], *name;
  1419. free_mem_leak();
  1420. /* Check if we can handle this device */
  1421. Trace(TRACE_PROBE, "probe() called [%04X %04X], if %dn", udev->descriptor.idVendor, udev->descriptor.idProduct, ifnum);
  1422. /* the interfaces are probed one by one. We are only interested in the
  1423.    video interface (0) now.
  1424.    Interface 1 is the Audio Control, and interface 2 Audio itself.
  1425.  */
  1426. if (ifnum > 0) 
  1427. return NULL;
  1428. vendor_id = udev->descriptor.idVendor;
  1429. product_id = udev->descriptor.idProduct;
  1430. if (vendor_id == 0x0471) {
  1431. switch (product_id) {
  1432. case 0x0302:
  1433. Info("Philips PCA645VC USB webcam detected.n");
  1434. name = "Philips 645 webcam";
  1435. type_id = 645;
  1436. break;
  1437. case 0x0303:
  1438. Info("Philips PCA646VC USB webcam detected.n");
  1439. name = "Philips 646 webcam";
  1440. type_id = 646;
  1441. break;
  1442. case 0x0304:
  1443. Info("Askey VC010 type 2 USB webcam detected.n");
  1444. name = "Askey VC010 webcam";
  1445. type_id = 646;
  1446. break;
  1447. case 0x0307:
  1448. Info("Philips PCVC675K (Vesta) USB webcam detected.n");
  1449. name = "Philips 675 webcam";
  1450. type_id = 675;
  1451. break;
  1452. case 0x0308:
  1453. Info("Philips PCVC680K (Vesta Pro) USB webcam detected.n");
  1454. name = "Philips 680 webcam";
  1455. type_id = 680;
  1456. break;
  1457. case 0x030C:
  1458. Info("Philips PCVC690K (Vesta Pro Scan) USB webcam detected.n");
  1459. name = "Philips 690 webcam";
  1460. type_id = 690;
  1461. break;
  1462. case 0x0310:
  1463. Info("Philips PCVC730K (ToUCam Fun) USB webcam detected.n");
  1464. name = "Philips 730 webcam";
  1465. type_id = 730;
  1466. break;
  1467. case 0x0311:
  1468. Info("Philips PCVC740K (ToUCam Pro) USB webcam detected.n");
  1469. name = "Philips 740 webcam";
  1470. type_id = 740;
  1471. break;
  1472. case 0x0312:
  1473. Info("Philips PCVC750K (ToUCam Pro Scan) USB webcam detected.n");
  1474. name = "Philips 750 webcam";
  1475. type_id = 750;
  1476. break;
  1477. default:
  1478. return NULL;
  1479. break;
  1480. }
  1481. }
  1482. else if (vendor_id == 0x069A) {
  1483. switch(product_id) {
  1484. case 0x0001:
  1485. Info("Askey VC010 type 1 USB webcam detected.n");
  1486. name = "Askey VC010 webcam";
  1487. type_id = 645;
  1488. break;
  1489. default:
  1490. return NULL;
  1491. break;
  1492. }
  1493. }
  1494. else if (vendor_id == 0x046d) {
  1495. switch(product_id) {
  1496. case 0x08b0:
  1497. Info("Logitech QuickCam 3000 Pro USB webcam detected.n");
  1498. name = "Logitech QuickCam 3000 Pro";
  1499. type_id = 730;
  1500.          break;
  1501.          default:
  1502.          return NULL;
  1503.          break;
  1504.          }
  1505.         }
  1506. else if (vendor_id == 0x055d) {
  1507. /* I don't know the difference between the C10 and the C30;
  1508.    I suppose the difference is the sensor, but both cameras
  1509.    work equally well with a type_id of 675
  1510.  */
  1511. switch(product_id) {
  1512. case 0x9000:
  1513. Info("Samsung MPC-C10 USB webcam detected.n");
  1514. name = "Samsung MPC-C10";
  1515. type_id = 675;
  1516. break;
  1517. case 0x9001:
  1518. Info("Samsung MPC-C30 USB webcam detected.n");
  1519. name = "Samsung MPC-C30";
  1520. type_id = 675;
  1521. break;
  1522. default:
  1523. return NULL;
  1524. break;
  1525. }
  1526. }
  1527. else if (vendor_id == 0x041e) {
  1528. switch(product_id) {
  1529. case 0x400c:
  1530. Info("Creative Labs Webcam 5 detected.n");
  1531. name = "Creative Labs Webcam 5";
  1532. type_id = 730;
  1533. break;
  1534. default:
  1535. return NULL;
  1536. break;
  1537. }
  1538. }
  1539. else if (vendor_id == 0x04cc) { 
  1540. switch(product_id) {
  1541. case 0x8116:
  1542. Info("Sotec Afina Eye USB webcam detected.n");
  1543. name = "Sotec Afina Eye";
  1544. type_id = 730;
  1545. break;  
  1546. default:
  1547. return NULL;
  1548. break;
  1549. }
  1550. }
  1551. else if (vendor_id == 0x0d81) {
  1552. switch(product_id) {
  1553. case 0x1900:
  1554. Info("Visionite VCS-UC300 USB webcam detected.n");
  1555. name = "Visionite VCS-UC300";
  1556. type_id = 740; /* CCD sensor */
  1557. break;
  1558. case 0x1910:
  1559. Info("Visionite VCS-UM100 USB webcam detected.n");
  1560. name = "Visionite VCS-UM100";
  1561. type_id = 730; /* CMOS sensor */
  1562. break;
  1563. default:
  1564. return NULL;
  1565. break;
  1566. }
  1567. }
  1568. else 
  1569. return NULL; /* Not any of the know types; but the list keeps growing. */
  1570. memset(serial_number, 0, 30);
  1571. usb_string(udev, udev->descriptor.iSerialNumber, serial_number, 29);
  1572. Trace(TRACE_PROBE, "Device serial number is %sn", serial_number);
  1573. if (udev->descriptor.bNumConfigurations > 1)
  1574. Info("Warning: more than 1 configuration available.n");
  1575. /* Allocate structure, initialize pointers, mutexes, etc. and link it to the usb_device */
  1576. pdev = kmalloc(sizeof(struct pwc_device), GFP_KERNEL);
  1577. if (pdev == NULL) {
  1578. Err("Oops, could not allocate memory for pwc_device.n");
  1579. return NULL;
  1580. }
  1581. memset(pdev, 0, sizeof(struct pwc_device));
  1582. pdev->type = type_id;
  1583. pwc_construct(pdev);
  1584. init_MUTEX(&pdev->modlock);
  1585. pdev->ptrlock = SPIN_LOCK_UNLOCKED;
  1586. pdev->udev = udev;
  1587. init_waitqueue_head(&pdev->frameq);
  1588. init_waitqueue_head(&pdev->remove_ok);
  1589. pdev->vcompression = pwc_preferred_compression;
  1590. /* Now hook it up to the video subsystem */
  1591. vdev = kmalloc(sizeof(struct video_device), GFP_KERNEL);
  1592. if (vdev == NULL) {
  1593. Err("Oops, could not allocate memory for video_device.n");
  1594. return NULL;
  1595. }
  1596. memcpy(vdev, &pwc_template, sizeof(pwc_template));
  1597. strcpy(vdev->name, name);
  1598. SET_MODULE_OWNER(vdev);
  1599. pdev->vdev = vdev;
  1600. vdev->priv = pdev;
  1601. pdev->release = udev->descriptor.bcdDevice;
  1602. Trace(TRACE_PROBE, "Release: %04xn", pdev->release);
  1603. /* Now search device_hint[] table for a match, so we can hint a node number. */
  1604. for (hint = 0; hint < MAX_DEV_HINTS; hint++) {
  1605. if (((device_hint[hint].type == -1) || (device_hint[hint].type == pdev->type)) &&
  1606.      (device_hint[hint].pdev == NULL)) {
  1607. /* so far, so good... try serial number */
  1608. if ((device_hint[hint].serial_number[0] == '*') || !strcmp(device_hint[hint].serial_number, serial_number)) {
  1609.      /* match! */
  1610.      video_nr = device_hint[hint].device_node;
  1611.      Trace(TRACE_PROBE, "Found hint, will try to register as /dev/video%dn", video_nr);
  1612.      break;
  1613. }
  1614. }
  1615. }
  1616. i = video_register_device(vdev, VFL_TYPE_GRABBER, video_nr);
  1617. if (i < 0) {
  1618. Err("Failed to register as video device (%d).n", i);
  1619. return NULL;
  1620. }
  1621. else {
  1622. Trace(TRACE_PROBE, "Registered video struct at 0x%p.n", vdev);
  1623. Info("Registered as /dev/video%d.n", vdev->minor & 0x3F);
  1624. }
  1625. /* occupy slot */
  1626. if (hint < MAX_DEV_HINTS) 
  1627. device_hint[hint].pdev = pdev;
  1628. Trace(TRACE_PROBE, "probe() function returning struct at 0x%p.n", pdev);
  1629. return pdev;
  1630. }
  1631. /* The user janked out the cable... */
  1632. static void usb_pwc_disconnect(struct usb_device *udev, void *ptr)
  1633. {
  1634. struct pwc_device *pdev;
  1635. int hint;
  1636. DECLARE_WAITQUEUE(wait, current);
  1637. lock_kernel();
  1638. free_mem_leak();
  1639. pdev = (struct pwc_device *)ptr;
  1640. if (pdev == NULL) {
  1641. Err("pwc_disconnect() Called without private pointer.n");
  1642. return;
  1643. }
  1644. if (pdev->udev == NULL) {
  1645. Err("pwc_disconnect() already called for %pn", pdev);
  1646. return;
  1647. }
  1648. if (pdev->udev != udev) {
  1649. Err("pwc_disconnect() Woops: pointer mismatch udev/pdev.n");
  1650. return;
  1651. }
  1652. #ifdef PWC_MAGIC
  1653. if (pdev->magic != PWC_MAGIC) {
  1654. Err("pwc_disconnect() Magic number failed. Consult your scrolls and try again.n");
  1655. return;
  1656. }
  1657. #endif
  1658. pdev->unplugged = 1;
  1659. if (pdev->vdev != NULL) {
  1660. if (pdev->vopen) {
  1661. Info("Disconnected while device/video is open!n");
  1662. /* Wake up any processes that might be waiting for
  1663.    a frame, let them return an error condition
  1664.  */
  1665. wake_up(&pdev->frameq);
  1666. /* Wait until we get a 'go' from _close(). This used
  1667.    to have a gigantic race condition, since we kfree()
  1668.    stuff here, but we have to wait until close() 
  1669.    is finished. 
  1670.  */
  1671.    
  1672. Trace(TRACE_PROBE, "Sleeping on remove_ok.n");
  1673. add_wait_queue(&pdev->remove_ok, &wait);
  1674. set_current_state(TASK_UNINTERRUPTIBLE);
  1675. /* ... wait ... */
  1676. schedule();
  1677. remove_wait_queue(&pdev->remove_ok, &wait);
  1678. set_current_state(TASK_RUNNING);
  1679. Trace(TRACE_PROBE, "Done sleeping.n");
  1680. set_mem_leak(pdev->vdev);
  1681. pdev->vdev = NULL;
  1682. }
  1683. else {
  1684. /* Normal disconnect; remove from available devices */
  1685. Trace(TRACE_PROBE, "Unregistering video device normally.n");
  1686. video_unregister_device(pdev->vdev); 
  1687. kfree(pdev->vdev);
  1688. pdev->vdev = NULL;
  1689. }
  1690. }
  1691. /* search device_hint[] table if we occupy a slot, by any chance */
  1692. for (hint = 0; hint < MAX_DEV_HINTS; hint++)
  1693. if (device_hint[hint].pdev == pdev)
  1694. device_hint[hint].pdev = NULL;
  1695. pdev->udev = NULL;
  1696. unlock_kernel();
  1697. kfree(pdev);
  1698. }
  1699. /* *grunt* We have to do atoi ourselves :-( */
  1700. static int pwc_atoi(char *s)
  1701. {
  1702. int k = 0;
  1703. k = 0;
  1704. while (*s != '' && *s >= '0' && *s <= '9') {
  1705. k = 10 * k + (*s - '0');
  1706. s++;
  1707. }
  1708. return k;
  1709. }
  1710. /* 
  1711.  * Initialization code & module stuff 
  1712.  */
  1713. static char *size = NULL;
  1714. static int fps = 0;
  1715. static int fbufs = 0;
  1716. static int mbufs = 0;
  1717. static int trace = -1;
  1718. static int compression = -1;
  1719. static int leds[2] = { -1, -1 };
  1720. static char *dev_hint[10] = { };
  1721. MODULE_PARM(size, "s");
  1722. MODULE_PARM_DESC(size, "Initial image size. One of sqcif, qsif, qcif, sif, cif, vga");
  1723. MODULE_PARM(fps, "i");
  1724. MODULE_PARM_DESC(fps, "Initial frames per second. Varies with model, useful range 5-30");
  1725. MODULE_PARM(fbufs, "i");
  1726. MODULE_PARM_DESC(fbufs, "Number of internal frame buffers to reserve");
  1727. MODULE_PARM(mbufs, "i");
  1728. MODULE_PARM_DESC(mbufs, "Number of external (mmap()ed) image buffers");
  1729. MODULE_PARM(trace, "i");
  1730. MODULE_PARM_DESC(trace, "For debugging purposes");
  1731. MODULE_PARM(power_save, "i");
  1732. MODULE_PARM_DESC(power_save, "Turn power save feature in camera on or off");
  1733. MODULE_PARM(compression, "i");
  1734. MODULE_PARM_DESC(compression, "Preferred compression quality. Range 0 (uncompressed) to 3 (high compression)");
  1735. MODULE_PARM(leds, "2i");
  1736. MODULE_PARM_DESC(leds, "LED on,off time in milliseconds");
  1737. MODULE_PARM(dev_hint, "0-10s");
  1738. MODULE_PARM_DESC(dev_hint, "Device node hints");
  1739. MODULE_DESCRIPTION("Philips USB webcam driver");
  1740. MODULE_AUTHOR("Nemosoft Unv. <nemosoft@smcc.demon.nl>");
  1741. MODULE_LICENSE("GPL");
  1742. static int __init usb_pwc_init(void)
  1743. {
  1744. int i, sz;
  1745. char *sizenames[PSZ_MAX] = { "sqcif", "qsif", "qcif", "sif", "cif", "vga" };
  1746. Info("Philips PCA645/646 + PCVC675/680/690 + PCVC730/740/750 webcam module version " PWC_VERSION " loaded.n");
  1747. Info("Also supports the Askey VC010, Logitech Quickcam 3000 Pro, Samsung MPC-C10 and MPC-C30,n");
  1748. Info("the Creative WebCam 5, SOTEC Afina Eye and Visionite VCS-UC300 and VCS-UM100.n");
  1749. if (fps) {
  1750. if (fps < 4 || fps > 30) {
  1751. Err("Framerate out of bounds (4-30).n");
  1752. return -EINVAL;
  1753. }
  1754. default_fps = fps;
  1755. Info("Default framerate set to %d.n", default_fps);
  1756. }
  1757. if (size) {
  1758. /* string; try matching with array */
  1759. for (sz = 0; sz < PSZ_MAX; sz++) {
  1760. if (!strcmp(sizenames[sz], size)) { /* Found! */
  1761. default_size = sz;
  1762. break;
  1763. }
  1764. }
  1765. if (sz == PSZ_MAX) {
  1766. Err("Size not recognized; try size=[sqcif | qsif | qcif | sif | cif | vga].n");
  1767. return -EINVAL;
  1768. }
  1769. Info("Default image size set to %s [%dx%d].n", sizenames[default_size], pwc_image_sizes[default_size].x, pwc_image_sizes[default_size].y);
  1770. }
  1771. if (mbufs) {
  1772. if (mbufs < 1 || mbufs > MAX_IMAGES) {
  1773. Err("Illegal number of mmap() buffers; use a number between 1 and %d.n", MAX_IMAGES);
  1774. return -EINVAL;
  1775. }
  1776. default_mbufs = mbufs;
  1777. Info("Number of image buffers set to %d.n", default_mbufs);
  1778. }
  1779. if (fbufs) {
  1780. if (fbufs < 2 || fbufs > MAX_FRAMES) {
  1781. Err("Illegal number of frame buffers; use a number between 2 and %d.n", MAX_FRAMES);
  1782. return -EINVAL;
  1783. }
  1784. default_fbufs = fbufs;
  1785. Info("Number of frame buffers set to %d.n", default_fbufs);
  1786. }
  1787. if (trace >= 0) {
  1788. Info("Trace options: 0x%04xn", trace);
  1789. pwc_trace = trace;
  1790. }
  1791. if (compression >= 0) {
  1792. if (compression > 3) {
  1793. Err("Invalid compression setting; use a number between 0 (uncompressed) and 3 (high).n");
  1794. return -EINVAL;
  1795. }
  1796. pwc_preferred_compression = compression;
  1797. Info("Preferred compression set to %d.n", pwc_preferred_compression);
  1798. }
  1799. if (power_save)
  1800. Info("Enabling power save on open/close.n");
  1801. if (leds[0] >= 0)
  1802. led_on = leds[0];
  1803. if (leds[1] >= 0)
  1804. led_off = leds[1];
  1805. /* Big device node whoopla. Basicly, it allows you to assign a 
  1806.    device node (/dev/videoX) to a camera, based on its type 
  1807.    & serial number. The format is [type[.serialnumber]:]node.
  1808.            Any camera that isn't matched by these rules gets the next 
  1809.            available free device node.
  1810.  */
  1811. for (i = 0; i < MAX_DEV_HINTS; i++) {
  1812. char *s, *colon, *dot;
  1813. /* This loop also initializes the array */
  1814. device_hint[i].pdev = NULL;
  1815. s = dev_hint[i];
  1816. if (s != NULL && *s != '') {
  1817. device_hint[i].type = -1; /* wildcard */
  1818. strcpy(device_hint[i].serial_number, "*");
  1819. /* parse string: chop at ':' & '/' */
  1820. colon = dot = s;
  1821. while (*colon != '' && *colon != ':')
  1822. colon++;
  1823. while (*dot != '' && *dot != '.')
  1824. dot++;
  1825. /* Few sanity checks */
  1826. if (*dot != '' && dot > colon) {
  1827. Err("Malformed camera hint: the colon must be after the dot.n");
  1828. return -EINVAL;
  1829. }
  1830. if (*colon == '') {
  1831. /* No colon */
  1832. if (*dot != '') {
  1833. Err("Malformed camera hint: no colon + device node given.n");
  1834. return -EINVAL;
  1835. }
  1836. else {
  1837. /* No type or serial number specified, just a number. */
  1838. device_hint[i].device_node = pwc_atoi(s);
  1839. }
  1840. }
  1841. else {
  1842. /* There's a colon, so we have at least a type and a device node */
  1843. device_hint[i].type = pwc_atoi(s);
  1844. device_hint[i].device_node = pwc_atoi(colon + 1);
  1845. if (*dot != '') {
  1846. /* There's a serial number as well */
  1847. int k;
  1848. dot++;
  1849. k = 0;
  1850. while (*dot != ':' && k < 29) {
  1851. device_hint[i].serial_number[k++] = *dot;
  1852. dot++;
  1853. }
  1854. device_hint[i].serial_number[k] = '';
  1855. }
  1856. }
  1857. #ifdef PWC_DEBUG
  1858. Debug("device_hint[%d]:n", i);
  1859. Debug("  type    : %dn", device_hint[i].type);
  1860. Debug("  serial# : %sn", device_hint[i].serial_number);
  1861. Debug("  node    : %dn", device_hint[i].device_node);
  1862. #endif
  1863. }
  1864. else
  1865. device_hint[i].type = 0; /* not filled */
  1866. } /* ..for MAX_DEV_HINTS */
  1867. init_MUTEX(&mem_lock);
  1868.   Trace(TRACE_PROBE, "Registering driver at address 0x%p.n", &pwc_driver);
  1869. return usb_register(&pwc_driver);
  1870. }
  1871. static void __exit usb_pwc_exit(void)
  1872. {
  1873. free_mem_leak();
  1874. Trace(TRACE_MODULE, "Deregistering driver.n");
  1875. usb_deregister(&pwc_driver);
  1876. Info("Philips webcam module removed.n");
  1877. }
  1878. module_init(usb_pwc_init);
  1879. module_exit(usb_pwc_exit);