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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* -*- linux-c -*- */
  2. /* 
  3.  * Driver for USB Rio 500
  4.  *
  5.  * Cesar Miquel (miquel@df.uba.ar)
  6.  * 
  7.  * based on hp_scanner.c by David E. Nelson (dnelson@jump.net)
  8.  * 
  9.  * This program is free software; you can redistribute it and/or
  10.  * modify it under the terms of the GNU General Public License as
  11.  * published by the Free Software Foundation; either version 2 of the
  12.  * License, or (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful, but
  15.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  17.  * 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.  * Based upon mouse.c (Brad Keryan) and printer.c (Michael Gee).
  24.  *
  25.  * */
  26. #include <linux/module.h>
  27. #include <linux/kernel.h>
  28. #include <linux/signal.h>
  29. #include <linux/sched.h>
  30. #include <linux/errno.h>
  31. #include <linux/miscdevice.h>
  32. #include <linux/random.h>
  33. #include <linux/poll.h>
  34. #include <linux/init.h>
  35. #include <linux/slab.h>
  36. #include <linux/spinlock.h>
  37. #include <linux/usb.h>
  38. #include <linux/smp_lock.h>
  39. #include <linux/devfs_fs_kernel.h>
  40. #include "rio500_usb.h"
  41. /*
  42.  * Version Information
  43.  */
  44. #define DRIVER_VERSION "v1.1"
  45. #define DRIVER_AUTHOR "Cesar Miquel <miquel@df.uba.ar>"
  46. #define DRIVER_DESC "USB Rio 500 driver"
  47. #define RIO_MINOR   64
  48. /* stall/wait timeout for rio */
  49. #define NAK_TIMEOUT (HZ)
  50. #define IBUF_SIZE 0x1000
  51. /* Size of the rio buffer */
  52. #define OBUF_SIZE 0x10000
  53. struct rio_usb_data {
  54.         struct usb_device *rio_dev;     /* init: probe_rio */
  55.         devfs_handle_t devfs;           /* devfs device */
  56.         unsigned int ifnum;             /* Interface number of the USB device */
  57.         int isopen;                     /* nz if open */
  58.         int present;                    /* Device is present on the bus */
  59.         char *obuf, *ibuf;              /* transfer buffers */
  60.         char bulk_in_ep, bulk_out_ep;   /* Endpoint assignments */
  61.         wait_queue_head_t wait_q;       /* for timeouts */
  62. struct semaphore lock;          /* general race avoidance */
  63. };
  64. extern devfs_handle_t usb_devfs_handle; /* /dev/usb dir. */
  65. static struct rio_usb_data rio_instance;
  66. static int open_rio(struct inode *inode, struct file *file)
  67. {
  68. struct rio_usb_data *rio = &rio_instance;
  69. lock_kernel();
  70. if (rio->isopen || !rio->present) {
  71. unlock_kernel();
  72. return -EBUSY;
  73. }
  74. rio->isopen = 1;
  75. init_waitqueue_head(&rio->wait_q);
  76. MOD_INC_USE_COUNT;
  77. unlock_kernel();
  78. info("Rio opened.");
  79. return 0;
  80. }
  81. static int close_rio(struct inode *inode, struct file *file)
  82. {
  83. struct rio_usb_data *rio = &rio_instance;
  84. rio->isopen = 0;
  85. MOD_DEC_USE_COUNT;
  86. info("Rio closed.");
  87. return 0;
  88. }
  89. static int
  90. ioctl_rio(struct inode *inode, struct file *file, unsigned int cmd,
  91.   unsigned long arg)
  92. {
  93. struct RioCommand rio_cmd;
  94. struct rio_usb_data *rio = &rio_instance;
  95. void *data;
  96. unsigned char *buffer;
  97. int result, requesttype;
  98. int retries;
  99. int retval=0;
  100. down(&(rio->lock));
  101.         /* Sanity check to make sure rio is connected, powered, etc */
  102.         if ( rio == NULL ||
  103.              rio->present == 0 ||
  104.              rio->rio_dev == NULL )
  105. {
  106. retval = -ENODEV;
  107. goto err_out;
  108. }
  109. switch (cmd) {
  110. case RIO_RECV_COMMAND:
  111. data = (void *) arg;
  112. if (data == NULL)
  113. break;
  114. if (copy_from_user(&rio_cmd, data, sizeof(struct RioCommand))) {
  115. retval = -EFAULT;
  116. goto err_out;
  117. }
  118. if (rio_cmd.length > PAGE_SIZE) {
  119. retval = -EINVAL;
  120. goto err_out;
  121. }
  122. buffer = (unsigned char *) __get_free_page(GFP_KERNEL);
  123. if (buffer == NULL) {
  124. retval = -ENOMEM;
  125. goto err_out;
  126. }
  127. if (copy_from_user(buffer, rio_cmd.buffer, rio_cmd.length)) {
  128. retval = -EFAULT;
  129. free_page((unsigned long) buffer);
  130. goto err_out;
  131. }
  132. requesttype = rio_cmd.requesttype | USB_DIR_IN |
  133.     USB_TYPE_VENDOR | USB_RECIP_DEVICE;
  134. dbg
  135.     ("sending command:reqtype=%0x req=%0x value=%0x index=%0x len=%0x",
  136.      requesttype, rio_cmd.request, rio_cmd.value,
  137.      rio_cmd.index, rio_cmd.length);
  138. /* Send rio control message */
  139. retries = 3;
  140. while (retries) {
  141. result = usb_control_msg(rio->rio_dev,
  142.  usb_rcvctrlpipe(rio-> rio_dev, 0),
  143.  rio_cmd.request,
  144.  requesttype,
  145.  rio_cmd.value,
  146.  rio_cmd.index, buffer,
  147.  rio_cmd.length,
  148.  rio_cmd.timeout);
  149. if (result == -ETIMEDOUT)
  150. retries--;
  151. else if (result < 0) {
  152. err("Error executing ioctrl. code = %d",
  153.      le32_to_cpu(result));
  154. retries = 0;
  155. } else {
  156. dbg("Executed ioctl. Result = %d (data=%04x)",
  157.      le32_to_cpu(result),
  158.      le32_to_cpu(*((long *) buffer)));
  159. if (copy_to_user(rio_cmd.buffer, buffer,
  160.  rio_cmd.length)) {
  161. free_page((unsigned long) buffer);
  162. retval = -EFAULT;
  163. goto err_out;
  164. }
  165. retries = 0;
  166. }
  167. /* rio_cmd.buffer contains a raw stream of single byte
  168.    data which has been returned from rio.  Data is
  169.    interpreted at application level.  For data that
  170.    will be cast to data types longer than 1 byte, data
  171.    will be little_endian and will potentially need to
  172.    be swapped at the app level */
  173. }
  174. free_page((unsigned long) buffer);
  175. break;
  176. case RIO_SEND_COMMAND:
  177. data = (void *) arg;
  178. if (data == NULL)
  179. break;
  180. if (copy_from_user(&rio_cmd, data, sizeof(struct RioCommand))) {
  181. retval = -EFAULT;
  182. goto err_out;
  183. }
  184. if (rio_cmd.length > PAGE_SIZE) {
  185. retval = -EINVAL;
  186. goto err_out;
  187. }
  188. buffer = (unsigned char *) __get_free_page(GFP_KERNEL);
  189. if (buffer == NULL) {
  190. retval = -ENOMEM;
  191. goto err_out;
  192. }
  193. if (copy_from_user(buffer, rio_cmd.buffer, rio_cmd.length)) {
  194. free_page((unsigned long)buffer);
  195. retval = -EFAULT;
  196. goto err_out;
  197. }
  198. requesttype = rio_cmd.requesttype | USB_DIR_OUT |
  199.     USB_TYPE_VENDOR | USB_RECIP_DEVICE;
  200. dbg("sending command: reqtype=%0x req=%0x value=%0x index=%0x len=%0x",
  201.      requesttype, rio_cmd.request, rio_cmd.value,
  202.      rio_cmd.index, rio_cmd.length);
  203. /* Send rio control message */
  204. retries = 3;
  205. while (retries) {
  206. result = usb_control_msg(rio->rio_dev,
  207.  usb_sndctrlpipe(rio-> rio_dev, 0),
  208.  rio_cmd.request,
  209.  requesttype,
  210.  rio_cmd.value,
  211.  rio_cmd.index, buffer,
  212.  rio_cmd.length,
  213.  rio_cmd.timeout);
  214. if (result == -ETIMEDOUT)
  215. retries--;
  216. else if (result < 0) {
  217. err("Error executing ioctrl. code = %d",
  218.      le32_to_cpu(result));
  219. retries = 0;
  220. } else {
  221. dbg("Executed ioctl. Result = %d",
  222.        le32_to_cpu(result));
  223. retries = 0;
  224. }
  225. }
  226. free_page((unsigned long) buffer);
  227. break;
  228. default:
  229. retval = -ENOTTY;
  230. break;
  231. }
  232. err_out:
  233. up(&(rio->lock));
  234. return retval;
  235. }
  236. static ssize_t
  237. write_rio(struct file *file, const char *buffer,
  238.   size_t count, loff_t * ppos)
  239. {
  240. struct rio_usb_data *rio = &rio_instance;
  241. unsigned long copy_size;
  242. unsigned long bytes_written = 0;
  243. unsigned int partial;
  244. int result = 0;
  245. int maxretry;
  246. int errn = 0;
  247. down(&(rio->lock));
  248.         /* Sanity check to make sure rio is connected, powered, etc */
  249.         if ( rio == NULL ||
  250.              rio->present == 0 ||
  251.              rio->rio_dev == NULL )
  252. {
  253. up(&(rio->lock));
  254. return -ENODEV;
  255. }
  256. do {
  257. unsigned long thistime;
  258. char *obuf = rio->obuf;
  259. thistime = copy_size =
  260.     (count >= OBUF_SIZE) ? OBUF_SIZE : count;
  261. if (copy_from_user(rio->obuf, buffer, copy_size)) {
  262. errn = -EFAULT;
  263. goto error;
  264. }
  265. maxretry = 5;
  266. while (thistime) {
  267. if (!rio->rio_dev) {
  268. errn = -ENODEV;
  269. goto error;
  270. }
  271. if (signal_pending(current)) {
  272. up(&(rio->lock));
  273. return bytes_written ? bytes_written : -EINTR;
  274. }
  275. result = usb_bulk_msg(rio->rio_dev,
  276.  usb_sndbulkpipe(rio->rio_dev, 2),
  277.  obuf, thistime, &partial, 5 * HZ);
  278. dbg("write stats: result:%d thistime:%lu partial:%u",
  279.      result, thistime, partial);
  280. if (result == USB_ST_TIMEOUT) { /* NAK - so hold for a while */
  281. if (!maxretry--) {
  282. errn = -ETIME;
  283. goto error;
  284. }
  285. interruptible_sleep_on_timeout(&rio-> wait_q, NAK_TIMEOUT);
  286. continue;
  287. } else if (!result & partial) {
  288. obuf += partial;
  289. thistime -= partial;
  290. } else
  291. break;
  292. };
  293. if (result) {
  294. err("Write Whoops - %x", result);
  295. errn = -EIO;
  296. goto error;
  297. }
  298. bytes_written += copy_size;
  299. count -= copy_size;
  300. buffer += copy_size;
  301. } while (count > 0);
  302. up(&(rio->lock));
  303. return bytes_written ? bytes_written : -EIO;
  304. error:
  305. up(&(rio->lock));
  306. return errn;
  307. }
  308. static ssize_t
  309. read_rio(struct file *file, char *buffer, size_t count, loff_t * ppos)
  310. {
  311. struct rio_usb_data *rio = &rio_instance;
  312. ssize_t read_count;
  313. unsigned int partial;
  314. int this_read;
  315. int result;
  316. int maxretry = 10;
  317. char *ibuf;
  318. down(&(rio->lock));
  319. /* Sanity check to make sure rio is connected, powered, etc */
  320.         if ( rio == NULL ||
  321.              rio->present == 0 ||
  322.              rio->rio_dev == NULL )
  323. {
  324. up(&(rio->lock));
  325. return -ENODEV;
  326. }
  327. ibuf = rio->ibuf;
  328. read_count = 0;
  329. while (count > 0) {
  330. if (signal_pending(current)) {
  331. up(&(rio->lock));
  332. return read_count ? read_count : -EINTR;
  333. }
  334. if (!rio->rio_dev) {
  335. up(&(rio->lock));
  336. return -ENODEV;
  337. }
  338. this_read = (count >= IBUF_SIZE) ? IBUF_SIZE : count;
  339. result = usb_bulk_msg(rio->rio_dev,
  340.       usb_rcvbulkpipe(rio->rio_dev, 1),
  341.       ibuf, this_read, &partial,
  342.       (int) (HZ * 8));
  343. dbg(KERN_DEBUG "read stats: result:%d this_read:%u partial:%u",
  344.        result, this_read, partial);
  345. if (partial) {
  346. count = this_read = partial;
  347. } else if (result == USB_ST_TIMEOUT || result == 15) { /* FIXME: 15 ??? */
  348. if (!maxretry--) {
  349. up(&(rio->lock));
  350. err("read_rio: maxretry timeout");
  351. return -ETIME;
  352. }
  353. interruptible_sleep_on_timeout(&rio->wait_q,
  354.        NAK_TIMEOUT);
  355. continue;
  356. } else if (result != USB_ST_DATAUNDERRUN) {
  357. up(&(rio->lock));
  358. err("Read Whoops - result:%u partial:%u this_read:%u",
  359.      result, partial, this_read);
  360. return -EIO;
  361. } else {
  362. up(&(rio->lock));
  363. return (0);
  364. }
  365. if (this_read) {
  366. if (copy_to_user(buffer, ibuf, this_read)) {
  367. up(&(rio->lock));
  368. return -EFAULT;
  369. }
  370. count -= this_read;
  371. read_count += this_read;
  372. buffer += this_read;
  373. }
  374. }
  375. up(&(rio->lock));
  376. return read_count;
  377. }
  378. static struct
  379. file_operations usb_rio_fops = {
  380. read: read_rio,
  381. write: write_rio,
  382. ioctl: ioctl_rio,
  383. open: open_rio,
  384. release: close_rio,
  385. };
  386. static void *probe_rio(struct usb_device *dev, unsigned int ifnum,
  387.        const struct usb_device_id *id)
  388. {
  389. struct rio_usb_data *rio = &rio_instance;
  390. info("USB Rio found at address %d", dev->devnum);
  391. rio->present = 1;
  392. rio->rio_dev = dev;
  393. if (!(rio->obuf = (char *) kmalloc(OBUF_SIZE, GFP_KERNEL))) {
  394. err("probe_rio: Not enough memory for the output buffer");
  395. return NULL;
  396. }
  397. dbg("probe_rio: obuf address:%p", rio->obuf);
  398. if (!(rio->ibuf = (char *) kmalloc(IBUF_SIZE, GFP_KERNEL))) {
  399. err("probe_rio: Not enough memory for the input buffer");
  400. kfree(rio->obuf);
  401. return NULL;
  402. }
  403. dbg("probe_rio: ibuf address:%p", rio->ibuf);
  404. rio->devfs = devfs_register(usb_devfs_handle, "rio500",
  405.     DEVFS_FL_DEFAULT, USB_MAJOR,
  406.     RIO_MINOR,
  407.     S_IFCHR | S_IRUSR | S_IWUSR | S_IRGRP |
  408.     S_IWGRP, &usb_rio_fops, NULL);
  409. if (rio->devfs == NULL)
  410. dbg("probe_rio: device node registration failed");
  411. init_MUTEX(&(rio->lock));
  412. return rio;
  413. }
  414. static void disconnect_rio(struct usb_device *dev, void *ptr)
  415. {
  416. struct rio_usb_data *rio = (struct rio_usb_data *) ptr;
  417. devfs_unregister(rio->devfs);
  418. down(&(rio->lock));
  419. if (rio->isopen) {
  420. rio->isopen = 0;
  421. /* better let it finish - the release will do whats needed */
  422. rio->rio_dev = NULL;
  423. up(&(rio->lock));
  424. return;
  425. }
  426. kfree(rio->ibuf);
  427. kfree(rio->obuf);
  428. info("USB Rio disconnected.");
  429. rio->present = 0;
  430. up(&(rio->lock));
  431. }
  432. static struct usb_device_id rio_table [] = {
  433. { USB_DEVICE(0x0841, 1) },  /* Rio 500 */
  434. { } /* Terminating entry */
  435. };
  436. MODULE_DEVICE_TABLE (usb, rio_table);
  437. static struct usb_driver rio_driver = {
  438. name: "rio500",
  439. probe: probe_rio,
  440. disconnect: disconnect_rio,
  441. fops: &usb_rio_fops,
  442. minor: RIO_MINOR,
  443. id_table: rio_table,
  444. };
  445. int usb_rio_init(void)
  446. {
  447. if (usb_register(&rio_driver) < 0)
  448. return -1;
  449. info(DRIVER_VERSION ":" DRIVER_DESC);
  450. return 0;
  451. }
  452. void usb_rio_cleanup(void)
  453. {
  454. struct rio_usb_data *rio = &rio_instance;
  455. rio->present = 0;
  456. usb_deregister(&rio_driver);
  457. }
  458. module_init(usb_rio_init);
  459. module_exit(usb_rio_cleanup);
  460. MODULE_AUTHOR( DRIVER_AUTHOR );
  461. MODULE_DESCRIPTION( DRIVER_DESC );
  462. MODULE_LICENSE("GPL");