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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * cpia_usb CPiA USB driver
  3.  *
  4.  * Supports CPiA based parallel port Video Camera's.
  5.  *
  6.  * Copyright (C) 1999        Jochen Scharrlach <Jochen.Scharrlach@schwaben.de>
  7.  * Copyright (C) 1999, 2000  Johannes Erdfelt <johannes@erdfelt.com>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22.  */
  23. #include <linux/module.h>
  24. #include <linux/kernel.h>
  25. #include <linux/init.h>
  26. #include <linux/wait.h>
  27. #include <linux/sched.h>
  28. #include <linux/list.h>
  29. #include <linux/slab.h>
  30. #include <linux/vmalloc.h>
  31. #include <linux/usb.h>
  32. #include "cpia.h"
  33. #define USB_REQ_CPIA_GRAB_FRAME 0xC1
  34. #define USB_REQ_CPIA_UPLOAD_FRAME 0xC2
  35. #define  WAIT_FOR_NEXT_FRAME 0
  36. #define  FORCE_FRAME_UPLOAD 1
  37. #define FRAMES_PER_DESC 10
  38. #define FRAME_SIZE_PER_DESC 960 /* Shouldn't be hardcoded */
  39. #define CPIA_NUMSBUF 2
  40. #define STREAM_BUF_SIZE (PAGE_SIZE * 4)
  41. #define SCRATCH_BUF_SIZE (STREAM_BUF_SIZE * 2)
  42. struct cpia_sbuf {
  43. char *data;
  44. struct urb *urb;
  45. };
  46. #define FRAMEBUF_LEN (CPIA_MAX_FRAME_SIZE+100)
  47. enum framebuf_status {
  48. FRAME_EMPTY,
  49. FRAME_READING,
  50. FRAME_READY,
  51. FRAME_ERROR,
  52. };
  53. struct framebuf {
  54. int length;
  55. enum framebuf_status status;
  56. u8 data[FRAMEBUF_LEN];
  57. struct framebuf *next;
  58. };
  59. struct usb_cpia {
  60. /* Device structure */
  61. struct usb_device *dev;
  62. unsigned char iface;
  63. wait_queue_head_t wq_stream;
  64. int cursbuf; /* Current receiving sbuf */
  65. struct cpia_sbuf sbuf[CPIA_NUMSBUF]; /* Double buffering */
  66. int streaming;
  67. int open;
  68. int present;
  69. struct framebuf *buffers[3];
  70. struct framebuf *curbuff, *workbuff;
  71. };
  72. static int cpia_usb_open(void *privdata);
  73. static int cpia_usb_registerCallback(void *privdata, void (*cb) (void *cbdata),
  74.              void *cbdata);
  75. static int cpia_usb_transferCmd(void *privdata, u8 *command, u8 *data);
  76. static int cpia_usb_streamStart(void *privdata);
  77. static int cpia_usb_streamStop(void *privdata);
  78. static int cpia_usb_streamRead(void *privdata, u8 *frame, int noblock);
  79. static int cpia_usb_close(void *privdata);
  80. #define ABOUT "USB driver for Vision CPiA based cameras"
  81. static struct cpia_camera_ops cpia_usb_ops = {
  82. cpia_usb_open,
  83. cpia_usb_registerCallback,
  84. cpia_usb_transferCmd,
  85. cpia_usb_streamStart,
  86. cpia_usb_streamStop,
  87. cpia_usb_streamRead,
  88. cpia_usb_close,
  89. 0
  90. };
  91. static struct cam_data *cam_list;
  92. static spinlock_t cam_list_lock_usb;
  93. static void cpia_usb_complete(struct urb *urb)
  94. {
  95. int i;
  96. char *cdata;
  97. struct usb_cpia *ucpia;
  98. if (!urb || !urb->context)
  99. return;
  100. ucpia = (struct usb_cpia *) urb->context;
  101. if (!ucpia->dev || !ucpia->streaming || !ucpia->present || !ucpia->open)
  102. return;
  103. if (ucpia->workbuff->status == FRAME_EMPTY) {
  104. ucpia->workbuff->status = FRAME_READING;
  105. ucpia->workbuff->length = 0;
  106. }
  107.     
  108. for (i = 0; i < urb->number_of_packets; i++) {
  109. int n = urb->iso_frame_desc[i].actual_length;
  110. int st = urb->iso_frame_desc[i].status;
  111. cdata = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
  112. if (st)
  113. printk(KERN_DEBUG "cpia data error: [%d] len=%d, status=%Xn", i, n, st);
  114. if (FRAMEBUF_LEN < ucpia->workbuff->length + n) {
  115. printk(KERN_DEBUG "cpia: scratch buf overflow!scr_len: %d, n: %dn", ucpia->workbuff->length, n);
  116. return;
  117. }
  118.     
  119. if (n) {
  120. if ((ucpia->workbuff->length > 0) || 
  121.     (0x19 == cdata[0] && 0x68 == cdata[1])) {
  122. memcpy(ucpia->workbuff->data + ucpia->workbuff->length, cdata, n);
  123. ucpia->workbuff->length += n;
  124. } else
  125. DBG("Ignoring packet!n");
  126. } else {
  127. if (ucpia->workbuff->length > 4 &&
  128.     0xff == ucpia->workbuff->data[ucpia->workbuff->length-1] &&
  129.     0xff == ucpia->workbuff->data[ucpia->workbuff->length-2] &&
  130.     0xff == ucpia->workbuff->data[ucpia->workbuff->length-3] &&
  131.     0xff == ucpia->workbuff->data[ucpia->workbuff->length-4]) {
  132. ucpia->workbuff->status = FRAME_READY;
  133. ucpia->curbuff = ucpia->workbuff;
  134. ucpia->workbuff = ucpia->workbuff->next;
  135. ucpia->workbuff->status = FRAME_EMPTY;
  136. ucpia->workbuff->length = 0;
  137.   
  138. if (waitqueue_active(&ucpia->wq_stream))
  139. wake_up_interruptible(&ucpia->wq_stream);
  140. }
  141. }
  142. }
  143. }
  144. static int cpia_usb_open(void *privdata)
  145. {
  146. struct usb_cpia *ucpia = (struct usb_cpia *) privdata;
  147. struct urb *urb;
  148. int ret, retval = 0, fx, err;
  149.   
  150. if (!ucpia)
  151. return -EINVAL;
  152. ucpia->sbuf[0].data = kmalloc(FRAMES_PER_DESC * FRAME_SIZE_PER_DESC, GFP_KERNEL);
  153. if (!ucpia->sbuf[0].data)
  154. return -EINVAL;
  155. ucpia->sbuf[1].data = kmalloc(FRAMES_PER_DESC * FRAME_SIZE_PER_DESC, GFP_KERNEL);
  156. if (!ucpia->sbuf[1].data) {
  157. retval = -EINVAL;
  158. goto error_0;
  159. }
  160. ret = usb_set_interface(ucpia->dev, ucpia->iface, 3);
  161. if (ret < 0) {
  162. printk(KERN_ERR "cpia_usb_open: usb_set_interface error (ret = %d)n", ret);
  163. retval = -EBUSY;
  164. goto error_1;
  165. }
  166. ucpia->buffers[0]->status = FRAME_EMPTY;
  167. ucpia->buffers[0]->length = 0;
  168. ucpia->buffers[1]->status = FRAME_EMPTY;
  169. ucpia->buffers[1]->length = 0;
  170. ucpia->buffers[2]->status = FRAME_EMPTY;
  171. ucpia->buffers[2]->length = 0;
  172. ucpia->curbuff = ucpia->buffers[0];
  173. ucpia->workbuff = ucpia->buffers[1];
  174. /* We double buffer the Iso lists */
  175. urb = usb_alloc_urb(FRAMES_PER_DESC);
  176. if (!urb) {
  177. printk(KERN_ERR "cpia_init_isoc: usb_alloc_urb 0n");
  178. retval = -ENOMEM;
  179. goto error_1;
  180. }
  181. ucpia->sbuf[0].urb = urb;
  182. urb->dev = ucpia->dev;
  183. urb->context = ucpia;
  184. urb->pipe = usb_rcvisocpipe(ucpia->dev, 1);
  185. urb->transfer_flags = USB_ISO_ASAP;
  186. urb->transfer_buffer = ucpia->sbuf[0].data;
  187. urb->complete = cpia_usb_complete;
  188. urb->number_of_packets = FRAMES_PER_DESC;
  189. urb->transfer_buffer_length = FRAME_SIZE_PER_DESC * FRAMES_PER_DESC;
  190. for (fx = 0; fx < FRAMES_PER_DESC; fx++) {
  191. urb->iso_frame_desc[fx].offset = FRAME_SIZE_PER_DESC * fx;
  192. urb->iso_frame_desc[fx].length = FRAME_SIZE_PER_DESC;
  193. }
  194. urb = usb_alloc_urb(FRAMES_PER_DESC);
  195. if (!urb) {
  196. printk(KERN_ERR "cpia_init_isoc: usb_alloc_urb 1n");
  197. retval = -ENOMEM;
  198. goto error_urb0;
  199. }
  200. ucpia->sbuf[1].urb = urb;
  201. urb->dev = ucpia->dev;
  202. urb->context = ucpia;
  203. urb->pipe = usb_rcvisocpipe(ucpia->dev, 1);
  204. urb->transfer_flags = USB_ISO_ASAP;
  205. urb->transfer_buffer = ucpia->sbuf[1].data;
  206. urb->complete = cpia_usb_complete;
  207. urb->number_of_packets = FRAMES_PER_DESC;
  208. urb->transfer_buffer_length = FRAME_SIZE_PER_DESC * FRAMES_PER_DESC;
  209. for (fx = 0; fx < FRAMES_PER_DESC; fx++) {
  210. urb->iso_frame_desc[fx].offset = FRAME_SIZE_PER_DESC * fx;
  211. urb->iso_frame_desc[fx].length = FRAME_SIZE_PER_DESC;
  212. }
  213. ucpia->sbuf[1].urb->next = ucpia->sbuf[0].urb;
  214. ucpia->sbuf[0].urb->next = ucpia->sbuf[1].urb;
  215. err = usb_submit_urb(ucpia->sbuf[0].urb);
  216. if (err) {
  217. printk(KERN_ERR "cpia_init_isoc: usb_submit_urb 0 ret %dn",
  218. err);
  219. goto error_urb1;
  220. }
  221. err = usb_submit_urb(ucpia->sbuf[1].urb);
  222. if (err) {
  223. printk(KERN_ERR "cpia_init_isoc: usb_submit_urb 1 ret %dn",
  224. err);
  225. goto error_urb1;
  226. }
  227. ucpia->streaming = 1;
  228. ucpia->open = 1;
  229. return 0;
  230. error_urb1: /* free urb 1 */
  231. usb_free_urb(ucpia->sbuf[1].urb);
  232. ucpia->sbuf[1].urb = NULL;
  233. error_urb0: /* free urb 0 */
  234. usb_free_urb(ucpia->sbuf[0].urb);
  235. ucpia->sbuf[0].urb = NULL;
  236. error_1:
  237. kfree (ucpia->sbuf[1].data);
  238. ucpia->sbuf[1].data = NULL;
  239. error_0:
  240. kfree (ucpia->sbuf[0].data);
  241. ucpia->sbuf[0].data = NULL;
  242. return retval;
  243. }
  244. //
  245. // convenience functions
  246. //
  247. /****************************************************************************
  248.  *
  249.  *  WritePacket
  250.  *
  251.  ***************************************************************************/
  252. static int WritePacket(struct usb_device *udev, const u8 *packet, u8 *buf, size_t size)
  253. {
  254. if (!packet)
  255. return -EINVAL;
  256. return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  257.  packet[1] + (packet[0] << 8),
  258.  USB_TYPE_VENDOR | USB_RECIP_DEVICE,
  259.  packet[2] + (packet[3] << 8), 
  260.  packet[4] + (packet[5] << 8), buf, size, HZ);
  261. }
  262. /****************************************************************************
  263.  *
  264.  *  ReadPacket
  265.  *
  266.  ***************************************************************************/
  267. static int ReadPacket(struct usb_device *udev, u8 *packet, u8 *buf, size_t size)
  268. {
  269. if (!packet || size <= 0)
  270. return -EINVAL;
  271. return usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
  272.  packet[1] + (packet[0] << 8),
  273.  USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_DEVICE,
  274.  packet[2] + (packet[3] << 8), 
  275.  packet[4] + (packet[5] << 8), buf, size, HZ);
  276. }
  277. static int cpia_usb_transferCmd(void *privdata, u8 *command, u8 *data)
  278. {
  279. int err = 0;
  280. int databytes;
  281. struct usb_cpia *ucpia = (struct usb_cpia *)privdata;
  282. struct usb_device *udev = ucpia->dev;
  283. if (!udev) {
  284. DBG("Internal driver error: udev is NULLn");
  285. return -EINVAL;
  286. }
  287. if (!command) {
  288. DBG("Internal driver error: command is NULLn");
  289. return -EINVAL;
  290. }
  291. databytes = (((int)command[7])<<8) | command[6];
  292. if (command[0] == DATA_IN) {
  293. u8 buffer[8];
  294. if (!data) {
  295. DBG("Internal driver error: data is NULLn");
  296. return -EINVAL;
  297. }
  298. err = ReadPacket(udev, command, buffer, 8);
  299. if (err < 0)
  300. return err;
  301. memcpy(data, buffer, databytes);
  302. } else if(command[0] == DATA_OUT)
  303. WritePacket(udev, command, data, databytes);
  304. else {
  305. DBG("Unexpected first byte of command: %xn", command[0]);
  306. err = -EINVAL;
  307. }
  308. return 0;
  309. }
  310. static int cpia_usb_registerCallback(void *privdata, void (*cb) (void *cbdata),
  311. void *cbdata)
  312. {
  313. return -ENODEV;
  314. }
  315. static int cpia_usb_streamStart(void *privdata)
  316. {
  317. return -ENODEV;
  318. }
  319. static int cpia_usb_streamStop(void *privdata)
  320. {
  321. return -ENODEV;
  322. }
  323. static int cpia_usb_streamRead(void *privdata, u8 *frame, int noblock)
  324. {
  325. struct usb_cpia *ucpia = (struct usb_cpia *) privdata;
  326. struct framebuf *mybuff;
  327. if (!ucpia || !ucpia->present)
  328. return -1;
  329.   
  330. if (ucpia->curbuff->status != FRAME_READY)
  331. interruptible_sleep_on(&ucpia->wq_stream);
  332. else
  333. DBG("Frame already waiting!n");
  334. mybuff = ucpia->curbuff;
  335. if (!mybuff)
  336. return -1;
  337.   
  338. if (mybuff->status != FRAME_READY || mybuff->length < 4) {
  339. DBG("Something went wrong!n");
  340. return -1;
  341. }
  342. memcpy(frame, mybuff->data, mybuff->length);
  343. mybuff->status = FRAME_EMPTY;
  344.   
  345. /*   DBG("read done, %d bytes, Header: %x/%x, Footer: %x%x%x%xn",  */
  346. /*       mybuff->length, frame[0], frame[1], */
  347. /*       frame[mybuff->length-4], frame[mybuff->length-3],  */
  348. /*       frame[mybuff->length-2], frame[mybuff->length-1]); */
  349. return mybuff->length;
  350. }
  351. static void cpia_usb_free_resources(struct usb_cpia *ucpia, int try)
  352. {
  353. if (!ucpia->streaming)
  354. return;
  355. ucpia->streaming = 0;
  356. /* Set packet size to 0 */
  357. if (try) {
  358. int ret;
  359. ret = usb_set_interface(ucpia->dev, ucpia->iface, 0);
  360. if (ret < 0) {
  361. printk(KERN_ERR "usb_set_interface error (ret = %d)n", ret);
  362. return;
  363. }
  364. }
  365. /* Unschedule all of the iso td's */
  366. if (ucpia->sbuf[1].urb) {
  367. usb_unlink_urb(ucpia->sbuf[1].urb);
  368. usb_free_urb(ucpia->sbuf[1].urb);
  369. ucpia->sbuf[1].urb = NULL;
  370. }
  371. if (ucpia->sbuf[1].data) {
  372. kfree(ucpia->sbuf[1].data);
  373. ucpia->sbuf[1].data = NULL;
  374. }
  375.  
  376. if (ucpia->sbuf[0].urb) {
  377. usb_unlink_urb(ucpia->sbuf[0].urb);
  378. usb_free_urb(ucpia->sbuf[0].urb);
  379. ucpia->sbuf[0].urb = NULL;
  380. }
  381. if (ucpia->sbuf[0].data) {
  382. kfree(ucpia->sbuf[0].data);
  383. ucpia->sbuf[0].data = NULL;
  384. }
  385. }
  386. static int cpia_usb_close(void *privdata)
  387. {
  388. struct usb_cpia *ucpia = (struct usb_cpia *) privdata;
  389. ucpia->open = 0;
  390. cpia_usb_free_resources(ucpia, 1);
  391. if (!ucpia->present)
  392. kfree(ucpia);
  393. return 0;
  394. }
  395. int cpia_usb_init(void)
  396. {
  397. /* return -ENODEV; */
  398. return 0;
  399. }
  400. /* Probing and initializing */
  401. static void *cpia_probe(struct usb_device *udev, unsigned int ifnum,
  402. const struct usb_device_id *id)
  403. {
  404. struct usb_interface_descriptor *interface;
  405. struct usb_cpia *ucpia;
  406. struct cam_data *cam;
  407. int ret;
  408.   
  409. /* A multi-config CPiA camera? */
  410. if (udev->descriptor.bNumConfigurations != 1)
  411. return NULL;
  412. interface = &udev->actconfig->interface[ifnum].altsetting[0];
  413. printk(KERN_INFO "USB CPiA camera foundn");
  414. ucpia = kmalloc(sizeof(*ucpia), GFP_KERNEL);
  415. if (!ucpia) {
  416. printk(KERN_ERR "couldn't kmalloc cpia structn");
  417. return NULL;
  418. }
  419. memset(ucpia, 0, sizeof(*ucpia));
  420. ucpia->dev = udev;
  421. ucpia->iface = interface->bInterfaceNumber;
  422. init_waitqueue_head(&ucpia->wq_stream);
  423. ucpia->buffers[0] = vmalloc(sizeof(*ucpia->buffers[0]));
  424. if (!ucpia->buffers[0]) {
  425. printk(KERN_ERR "couldn't vmalloc frame buffer 0n");
  426. goto fail_alloc_0;
  427. }
  428. ucpia->buffers[1] = vmalloc(sizeof(*ucpia->buffers[1]));
  429. if (!ucpia->buffers[1]) {
  430. printk(KERN_ERR "couldn't vmalloc frame buffer 1n");
  431. goto fail_alloc_1;
  432. }
  433. ucpia->buffers[2] = vmalloc(sizeof(*ucpia->buffers[2]));
  434. if (!ucpia->buffers[2]) {
  435. printk(KERN_ERR "couldn't vmalloc frame buffer 2n");
  436. goto fail_alloc_2;
  437. }
  438. ucpia->buffers[0]->next = ucpia->buffers[1];
  439. ucpia->buffers[1]->next = ucpia->buffers[2];
  440. ucpia->buffers[2]->next = ucpia->buffers[0];
  441. ret = usb_set_interface(udev, ucpia->iface, 0);
  442. if (ret < 0) {
  443. printk(KERN_ERR "cpia_probe: usb_set_interface error (ret = %d)n", ret);
  444. /* goto fail_all; */
  445. }
  446. /* Before register_camera, important */
  447. ucpia->present = 1;
  448.   
  449. cam = cpia_register_camera(&cpia_usb_ops, ucpia);
  450. if (!cam) {
  451. LOG("failed to cpia_register_cameran");
  452. goto fail_all;
  453. }
  454. spin_lock( &cam_list_lock_usb );
  455. cpia_add_to_list(cam_list, cam);
  456. spin_unlock( &cam_list_lock_usb );
  457. return cam;
  458. fail_all:
  459. vfree(ucpia->buffers[2]);
  460. ucpia->buffers[2] = NULL;
  461. fail_alloc_2:
  462. vfree(ucpia->buffers[1]);
  463. ucpia->buffers[1] = NULL;
  464. fail_alloc_1:
  465. vfree(ucpia->buffers[0]);
  466. ucpia->buffers[0] = NULL;
  467. fail_alloc_0:
  468. return NULL;
  469. }
  470. static void cpia_disconnect(struct usb_device *dev, void *ptr);
  471. static struct usb_device_id cpia_id_table [] = {
  472. { USB_DEVICE(0x0553, 0x0002) },
  473. { USB_DEVICE(0x0813, 0x0001) },
  474. { } /* Terminating entry */
  475. };
  476. MODULE_DEVICE_TABLE (usb, cpia_id_table);
  477. MODULE_LICENSE("GPL");
  478. static struct usb_driver cpia_driver = {
  479. name: "cpia",
  480. probe: cpia_probe,
  481. disconnect: cpia_disconnect,
  482. id_table: cpia_id_table,
  483. };
  484. /* don't use dev, it may be NULL! (see usb_cpia_cleanup) */
  485. /* _disconnect from usb_cpia_cleanup is not necessary since usb_deregister */
  486. /* will do it for us as well as passing a udev structure - jerdfelt */
  487. static void cpia_disconnect(struct usb_device *udev, void *ptr)
  488. {
  489. struct cam_data *cam = (struct cam_data *) ptr;
  490. struct usb_cpia *ucpia = (struct usb_cpia *) cam->lowlevel_data;
  491.   
  492. spin_lock( &cam_list_lock_usb );
  493. cpia_remove_from_list(cam);
  494. spin_unlock( &cam_list_lock_usb );
  495. /* Don't even try to reset the altsetting if we're disconnected */
  496. cpia_usb_free_resources(ucpia, 0);
  497. ucpia->present = 0;
  498. cpia_unregister_camera(cam);
  499. ucpia->curbuff->status = FRAME_ERROR;
  500. if (waitqueue_active(&ucpia->wq_stream))
  501. wake_up_interruptible(&ucpia->wq_stream);
  502. usb_driver_release_interface(&cpia_driver,
  503.      &udev->actconfig->interface[0]);
  504. ucpia->curbuff = ucpia->workbuff = NULL;
  505. if (ucpia->buffers[2]) {
  506. vfree(ucpia->buffers[2]);
  507. ucpia->buffers[2] = NULL;
  508. }
  509. if (ucpia->buffers[1]) {
  510. vfree(ucpia->buffers[1]);
  511. ucpia->buffers[1] = NULL;
  512. }
  513. if (ucpia->buffers[0]) {
  514. vfree(ucpia->buffers[0]);
  515. ucpia->buffers[0] = NULL;
  516. }
  517. if (!ucpia->open) {
  518. kfree(ucpia);
  519. cam->lowlevel_data = NULL;
  520. }
  521. }
  522. static int __init usb_cpia_init(void)
  523. {
  524. cam_list = NULL;
  525. spin_lock_init(&cam_list_lock_usb);
  526. return usb_register(&cpia_driver);
  527. }
  528. static void __exit usb_cpia_cleanup(void)
  529. {
  530. /*
  531. struct cam_data *cam;
  532. while ((cam = cam_list) != NULL)
  533. cpia_disconnect(NULL, cam);
  534. */
  535. usb_deregister(&cpia_driver);
  536. }
  537. module_init (usb_cpia_init);
  538. module_exit (usb_cpia_cleanup);