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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * USB Skeleton driver - 0.6
  3.  *
  4.  * Copyright (c) 2001 Greg Kroah-Hartman (greg@kroah.com)
  5.  *
  6.  * This program is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License as
  8.  * published by the Free Software Foundation; either version 2 of
  9.  * the License, or (at your option) any later version.
  10.  *
  11.  *
  12.  * This driver is to be used as a skeleton driver to be able to create a
  13.  * USB driver quickly.  The design of it is based on the usb-serial and
  14.  * dc2xx drivers.
  15.  *
  16.  * Thanks to Oliver Neukum and David Brownell for their help in debugging
  17.  * this driver.
  18.  *
  19.  * TODO:
  20.  * - fix urb->status race condition in write sequence
  21.  * - move minor_table to a dynamic list.
  22.  *
  23.  * History:
  24.  *
  25.  * 2001_11_05 - 0.6 - fix minor locking problem in skel_disconnect.
  26.  * Thanks to Pete Zaitcev for the fix.
  27.  * 2001_09_04 - 0.5 - fix devfs bug in skel_disconnect. Thanks to wim delvaux
  28.  * 2001_08_21 - 0.4 - more small bug fixes.
  29.  * 2001_05_29 - 0.3 - more bug fixes based on review from linux-usb-devel
  30.  * 2001_05_24 - 0.2 - bug fixes based on review from linux-usb-devel people
  31.  * 2001_05_01 - 0.1 - first version
  32.  * 
  33.  */
  34. #include <linux/config.h>
  35. #include <linux/kernel.h>
  36. #include <linux/sched.h>
  37. #include <linux/signal.h>
  38. #include <linux/errno.h>
  39. #include <linux/poll.h>
  40. #include <linux/init.h>
  41. #include <linux/slab.h>
  42. #include <linux/fcntl.h>
  43. #include <linux/module.h>
  44. #include <linux/spinlock.h>
  45. #include <linux/list.h>
  46. #include <linux/smp_lock.h>
  47. #include <linux/devfs_fs_kernel.h>
  48. #include <linux/usb.h>
  49. #ifdef CONFIG_USB_DEBUG
  50. static int debug = 1;
  51. #else
  52. static int debug;
  53. #endif
  54. /* Use our own dbg macro */
  55. #undef dbg
  56. #define dbg(format, arg...) do { if (debug) printk(KERN_DEBUG __FILE__ ": " format "n" , ## arg); } while (0)
  57. /* Version Information */
  58. #define DRIVER_VERSION "v0.4"
  59. #define DRIVER_AUTHOR "Greg Kroah-Hartman, greg@kroah.com"
  60. #define DRIVER_DESC "USB Skeleton Driver"
  61. /* Module paramaters */
  62. MODULE_PARM(debug, "i");
  63. MODULE_PARM_DESC(debug, "Debug enabled or not");
  64. /* Define these values to match your device */
  65. #define USB_SKEL_VENDOR_ID 0xfff0
  66. #define USB_SKEL_PRODUCT_ID 0xfff0
  67. /* table of devices that work with this driver */
  68. static struct usb_device_id skel_table [] = {
  69. { USB_DEVICE(USB_SKEL_VENDOR_ID, USB_SKEL_PRODUCT_ID) },
  70. { } /* Terminating entry */
  71. };
  72. MODULE_DEVICE_TABLE (usb, skel_table);
  73. /* Get a minor range for your devices from the usb maintainer */
  74. #define USB_SKEL_MINOR_BASE 200
  75. /* we can have up to this number of device plugged in at once */
  76. #define MAX_DEVICES 16
  77. /* Structure to hold all of our device specific stuff */
  78. struct usb_skel {
  79. struct usb_device * udev; /* save off the usb device pointer */
  80. struct usb_interface * interface; /* the interface for this device */
  81. devfs_handle_t devfs; /* devfs device node */
  82. unsigned char minor; /* the starting minor number for this device */
  83. unsigned char num_ports; /* the number of ports this device has */
  84. char num_interrupt_in; /* number of interrupt in endpoints we have */
  85. char num_bulk_in; /* number of bulk in endpoints we have */
  86. char num_bulk_out; /* number of bulk out endpoints we have */
  87. unsigned char * bulk_in_buffer; /* the buffer to receive data */
  88. int bulk_in_size; /* the size of the receive buffer */
  89. __u8 bulk_in_endpointAddr; /* the address of the bulk in endpoint */
  90. unsigned char * bulk_out_buffer; /* the buffer to send data */
  91. int bulk_out_size; /* the size of the send buffer */
  92. struct urb * write_urb; /* the urb used to send data */
  93. __u8 bulk_out_endpointAddr; /* the address of the bulk out endpoint */
  94. struct tq_struct tqueue; /* task queue for line discipline waking up */
  95. int open_count; /* number of times this port has been opened */
  96. struct semaphore sem; /* locks this structure */
  97. };
  98. /* the global usb devfs handle */
  99. extern devfs_handle_t usb_devfs_handle;
  100. /* local function prototypes */
  101. static ssize_t skel_read (struct file *file, char *buffer, size_t count, loff_t *ppos);
  102. static ssize_t skel_write (struct file *file, const char *buffer, size_t count, loff_t *ppos);
  103. static int skel_ioctl (struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg);
  104. static int skel_open (struct inode *inode, struct file *file);
  105. static int skel_release (struct inode *inode, struct file *file);
  106. static void * skel_probe (struct usb_device *dev, unsigned int ifnum, const struct usb_device_id *id);
  107. static void skel_disconnect (struct usb_device *dev, void *ptr);
  108. static void skel_write_bulk_callback (struct urb *urb);
  109. /* array of pointers to our devices that are currently connected */
  110. static struct usb_skel *minor_table[MAX_DEVICES];
  111. /* lock to protect the minor_table structure */
  112. static DECLARE_MUTEX (minor_table_mutex);
  113. /*
  114.  * File operations needed when we register this driver.
  115.  * This assumes that this driver NEEDS file operations,
  116.  * of course, which means that the driver is expected
  117.  * to have a node in the /dev directory. If the USB
  118.  * device were for a network interface then the driver
  119.  * would use "struct net_driver" instead, and a serial
  120.  * device would use "struct tty_driver". 
  121.  */
  122. static struct file_operations skel_fops = {
  123. /*
  124.  * The owner field is part of the module-locking
  125.  * mechanism. The idea is that the kernel knows
  126.  * which module to increment the use-counter of
  127.  * BEFORE it calls the device's open() function.
  128.  * This also means that the kernel can decrement
  129.  * the use-counter again before calling release()
  130.  * or should the open() function fail.
  131.  *
  132.  * Not all device structures have an "owner" field
  133.  * yet. "struct file_operations" and "struct net_device"
  134.  * do, while "struct tty_driver" does not. If the struct
  135.  * has an "owner" field, then initialize it to the value
  136.  * THIS_MODULE and the kernel will handle all module
  137.  * locking for you automatically. Otherwise, you must
  138.  * increment the use-counter in the open() function
  139.  * and decrement it again in the release() function
  140.  * yourself.
  141.  */
  142. owner: THIS_MODULE,
  143. read: skel_read,
  144. write: skel_write,
  145. ioctl: skel_ioctl,
  146. open: skel_open,
  147. release: skel_release,
  148. };      
  149. /* usb specific object needed to register this driver with the usb subsystem */
  150. static struct usb_driver skel_driver = {
  151. name: "skeleton",
  152. probe: skel_probe,
  153. disconnect: skel_disconnect,
  154. fops: &skel_fops,
  155. minor: USB_SKEL_MINOR_BASE,
  156. id_table: skel_table,
  157. };
  158. /**
  159.  * usb_skel_debug_data
  160.  */
  161. static inline void usb_skel_debug_data (const char *function, int size, const unsigned char *data)
  162. {
  163. int i;
  164. if (!debug)
  165. return;
  166. printk (KERN_DEBUG __FILE__": %s - length = %d, data = ", 
  167. function, size);
  168. for (i = 0; i < size; ++i) {
  169. printk ("%.2x ", data[i]);
  170. }
  171. printk ("n");
  172. }
  173. /**
  174.  * skel_delete
  175.  */
  176. static inline void skel_delete (struct usb_skel *dev)
  177. {
  178. minor_table[dev->minor] = NULL;
  179. if (dev->bulk_in_buffer != NULL)
  180. kfree (dev->bulk_in_buffer);
  181. if (dev->bulk_out_buffer != NULL)
  182. kfree (dev->bulk_out_buffer);
  183. if (dev->write_urb != NULL)
  184. usb_free_urb (dev->write_urb);
  185. kfree (dev);
  186. }
  187. /**
  188.  * skel_open
  189.  */
  190. static int skel_open (struct inode *inode, struct file *file)
  191. {
  192. struct usb_skel *dev = NULL;
  193. int subminor;
  194. int retval = 0;
  195. dbg(__FUNCTION__);
  196. subminor = MINOR (inode->i_rdev) - USB_SKEL_MINOR_BASE;
  197. if ((subminor < 0) ||
  198.     (subminor >= MAX_DEVICES)) {
  199. return -ENODEV;
  200. }
  201. /* Increment our usage count for the module.
  202.  * This is redundant here, because "struct file_operations"
  203.  * has an "owner" field. This line is included here soley as
  204.  * a reference for drivers using lesser structures... ;-)
  205.  */
  206. MOD_INC_USE_COUNT;
  207. /* lock our minor table and get our local data for this minor */
  208. down (&minor_table_mutex);
  209. dev = minor_table[subminor];
  210. if (dev == NULL) {
  211. up (&minor_table_mutex);
  212. MOD_DEC_USE_COUNT;
  213. return -ENODEV;
  214. }
  215. /* lock this device */
  216. down (&dev->sem);
  217. /* unlock the minor table */
  218. up (&minor_table_mutex);
  219. /* increment our usage count for the driver */
  220. ++dev->open_count;
  221. /* save our object in the file's private structure */
  222. file->private_data = dev;
  223. /* unlock this device */
  224. up (&dev->sem);
  225. return retval;
  226. }
  227. /**
  228.  * skel_release
  229.  */
  230. static int skel_release (struct inode *inode, struct file *file)
  231. {
  232. struct usb_skel *dev;
  233. int retval = 0;
  234. dev = (struct usb_skel *)file->private_data;
  235. if (dev == NULL) {
  236. dbg (__FUNCTION__ " - object is NULL");
  237. return -ENODEV;
  238. }
  239. dbg(__FUNCTION__ " - minor %d", dev->minor);
  240. /* lock our minor table */
  241. down (&minor_table_mutex);
  242. /* lock our device */
  243. down (&dev->sem);
  244. if (dev->open_count <= 0) {
  245. dbg (__FUNCTION__ " - device not opened");
  246. retval = -ENODEV;
  247. goto exit_not_opened;
  248. }
  249. if (dev->udev == NULL) {
  250. /* the device was unplugged before the file was released */
  251. up (&dev->sem);
  252. skel_delete (dev);
  253. up (&minor_table_mutex);
  254. MOD_DEC_USE_COUNT;
  255. return 0;
  256. }
  257. /* decrement our usage count for the device */
  258. --dev->open_count;
  259. if (dev->open_count <= 0) {
  260. /* shutdown any bulk writes that might be going on */
  261. usb_unlink_urb (dev->write_urb);
  262. dev->open_count = 0;
  263. }
  264. /* decrement our usage count for the module */
  265. MOD_DEC_USE_COUNT;
  266. exit_not_opened:
  267. up (&dev->sem);
  268. up (&minor_table_mutex);
  269. return retval;
  270. }
  271. /**
  272.  * skel_read
  273.  */
  274. static ssize_t skel_read (struct file *file, char *buffer, size_t count, loff_t *ppos)
  275. {
  276. struct usb_skel *dev;
  277. int retval = 0;
  278. dev = (struct usb_skel *)file->private_data;
  279. dbg(__FUNCTION__ " - minor %d, count = %d", dev->minor, count);
  280. /* lock this object */
  281. down (&dev->sem);
  282. /* verify that the device wasn't unplugged */
  283. if (dev->udev == NULL) {
  284. up (&dev->sem);
  285. return -ENODEV;
  286. }
  287. /* do an immediate bulk read to get data from the device */
  288. retval = usb_bulk_msg (dev->udev,
  289.        usb_rcvbulkpipe (dev->udev, 
  290. dev->bulk_in_endpointAddr),
  291.        dev->bulk_in_buffer, dev->bulk_in_size,
  292.        &count, HZ*10);
  293. /* if the read was successful, copy the data to userspace */
  294. if (!retval) {
  295. if (copy_to_user (buffer, dev->bulk_in_buffer, count))
  296. retval = -EFAULT;
  297. else
  298. retval = count;
  299. }
  300. /* unlock the device */
  301. up (&dev->sem);
  302. return retval;
  303. }
  304. /**
  305.  * skel_write
  306.  */
  307. static ssize_t skel_write (struct file *file, const char *buffer, size_t count, loff_t *ppos)
  308. {
  309. struct usb_skel *dev;
  310. ssize_t bytes_written = 0;
  311. int retval = 0;
  312. dev = (struct usb_skel *)file->private_data;
  313. dbg(__FUNCTION__ " - minor %d, count = %d", dev->minor, count);
  314. /* lock this object */
  315. down (&dev->sem);
  316. /* verify that the device wasn't unplugged */
  317. if (dev->udev == NULL) {
  318. retval = -ENODEV;
  319. goto exit;
  320. }
  321. /* verify that we actually have some data to write */
  322. if (count == 0) {
  323. dbg(__FUNCTION__ " - write request of 0 bytes");
  324. goto exit;
  325. }
  326. /* see if we are already in the middle of a write */
  327. if (dev->write_urb->status == -EINPROGRESS) {
  328. dbg (__FUNCTION__ " - already writing");
  329. goto exit;
  330. }
  331. /* we can only write as much as 1 urb will hold */
  332. bytes_written = (count > dev->bulk_out_size) ? 
  333. dev->bulk_out_size : count;
  334. /* copy the data from userspace into our urb */
  335. if (copy_from_user(dev->write_urb->transfer_buffer, buffer, 
  336.    bytes_written)) {
  337. retval = -EFAULT;
  338. goto exit;
  339. }
  340. usb_skel_debug_data (__FUNCTION__, bytes_written, 
  341.      dev->write_urb->transfer_buffer);
  342. /* set up our urb */
  343. FILL_BULK_URB(dev->write_urb, dev->udev, 
  344.       usb_sndbulkpipe(dev->udev, dev->bulk_out_endpointAddr),
  345.       dev->write_urb->transfer_buffer, bytes_written,
  346.       skel_write_bulk_callback, dev);
  347. /* send the data out the bulk port */
  348. retval = usb_submit_urb(dev->write_urb);
  349. if (retval) {
  350. err(__FUNCTION__ " - failed submitting write urb, error %d",
  351.     retval);
  352. } else {
  353. retval = bytes_written;
  354. }
  355. exit:
  356. /* unlock the device */
  357. up (&dev->sem);
  358. return retval;
  359. }
  360. /**
  361.  * skel_ioctl
  362.  */
  363. static int skel_ioctl (struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
  364. {
  365. struct usb_skel *dev;
  366. dev = (struct usb_skel *)file->private_data;
  367. /* lock this object */
  368. down (&dev->sem);
  369. /* verify that the device wasn't unplugged */
  370. if (dev->udev == NULL) {
  371. up (&dev->sem);
  372. return -ENODEV;
  373. }
  374. dbg(__FUNCTION__ " - minor %d, cmd 0x%.4x, arg %ld", 
  375.     dev->minor, cmd, arg);
  376. /* fill in your device specific stuff here */
  377. /* unlock the device */
  378. up (&dev->sem);
  379. /* return that we did not understand this ioctl call */
  380. return -ENOTTY;
  381. }
  382. /**
  383.  * skel_write_bulk_callback
  384.  */
  385. static void skel_write_bulk_callback (struct urb *urb)
  386. {
  387. struct usb_skel *dev = (struct usb_skel *)urb->context;
  388. dbg(__FUNCTION__ " - minor %d", dev->minor);
  389. if ((urb->status != -ENOENT) && 
  390.     (urb->status != -ECONNRESET)) {
  391. dbg(__FUNCTION__ " - nonzero write bulk status received: %d",
  392.     urb->status);
  393. return;
  394. }
  395. return;
  396. }
  397. /**
  398.  * skel_probe
  399.  *
  400.  * Called by the usb core when a new device is connected that it thinks
  401.  * this driver might be interested in.
  402.  */
  403. static void * skel_probe(struct usb_device *udev, unsigned int ifnum, const struct usb_device_id *id)
  404. {
  405. struct usb_skel *dev = NULL;
  406. struct usb_interface *interface;
  407. struct usb_interface_descriptor *iface_desc;
  408. struct usb_endpoint_descriptor *endpoint;
  409. int minor;
  410. int buffer_size;
  411. int i;
  412. char name[10];
  413. /* See if the device offered us matches what we can accept */
  414. if ((udev->descriptor.idVendor != USB_SKEL_VENDOR_ID) ||
  415.     (udev->descriptor.idProduct != USB_SKEL_PRODUCT_ID)) {
  416. return NULL;
  417. }
  418. /* select a "subminor" number (part of a minor number) */
  419. down (&minor_table_mutex);
  420. for (minor = 0; minor < MAX_DEVICES; ++minor) {
  421. if (minor_table[minor] == NULL)
  422. break;
  423. }
  424. if (minor >= MAX_DEVICES) {
  425. info ("Too many devices plugged in, can not handle this device.");
  426. goto exit;
  427. }
  428. /* allocate memory for our device state and intialize it */
  429. dev = kmalloc (sizeof(struct usb_skel), GFP_KERNEL);
  430. if (dev == NULL) {
  431. err ("Out of memory");
  432. goto exit;
  433. }
  434. minor_table[minor] = dev;
  435. interface = &udev->actconfig->interface[ifnum];
  436. init_MUTEX (&dev->sem);
  437. dev->udev = udev;
  438. dev->interface = interface;
  439. dev->minor = minor;
  440. /* set up the endpoint information */
  441. /* check out the endpoints */
  442. iface_desc = &interface->altsetting[0];
  443. for (i = 0; i < iface_desc->bNumEndpoints; ++i) {
  444. endpoint = &iface_desc->endpoint[i];
  445. if ((endpoint->bEndpointAddress & 0x80) &&
  446.     ((endpoint->bmAttributes & 3) == 0x02)) {
  447. /* we found a bulk in endpoint */
  448. buffer_size = endpoint->wMaxPacketSize;
  449. dev->bulk_in_size = buffer_size;
  450. dev->bulk_in_endpointAddr = endpoint->bEndpointAddress;
  451. dev->bulk_in_buffer = kmalloc (buffer_size, GFP_KERNEL);
  452. if (!dev->bulk_in_buffer) {
  453. err("Couldn't allocate bulk_in_buffer");
  454. goto error;
  455. }
  456. }
  457. if (((endpoint->bEndpointAddress & 0x80) == 0x00) &&
  458.     ((endpoint->bmAttributes & 3) == 0x02)) {
  459. /* we found a bulk out endpoint */
  460. dev->write_urb = usb_alloc_urb(0);
  461. if (!dev->write_urb) {
  462. err("No free urbs available");
  463. goto error;
  464. }
  465. buffer_size = endpoint->wMaxPacketSize;
  466. dev->bulk_out_size = buffer_size;
  467. dev->bulk_out_endpointAddr = endpoint->bEndpointAddress;
  468. dev->bulk_out_buffer = kmalloc (buffer_size, GFP_KERNEL);
  469. if (!dev->bulk_out_buffer) {
  470. err("Couldn't allocate bulk_out_buffer");
  471. goto error;
  472. }
  473. FILL_BULK_URB(dev->write_urb, udev, 
  474.       usb_sndbulkpipe(udev, 
  475.       endpoint->bEndpointAddress),
  476.       dev->bulk_out_buffer, buffer_size,
  477.       skel_write_bulk_callback, dev);
  478. }
  479. }
  480. /* initialize the devfs node for this device and register it */
  481. sprintf(name, "skel%d", dev->minor);
  482. dev->devfs = devfs_register (usb_devfs_handle, name,
  483.      DEVFS_FL_DEFAULT, USB_MAJOR,
  484.      USB_SKEL_MINOR_BASE + dev->minor,
  485.      S_IFCHR | S_IRUSR | S_IWUSR | 
  486.      S_IRGRP | S_IWGRP | S_IROTH, 
  487.      &skel_fops, NULL);
  488. /* let the user know what node this device is now attached to */
  489. info ("USB Skeleton device now attached to USBSkel%d", dev->minor);
  490. goto exit;
  491. error:
  492. skel_delete (dev);
  493. dev = NULL;
  494. exit:
  495. up (&minor_table_mutex);
  496. return dev;
  497. }
  498. /**
  499.  * skel_disconnect
  500.  *
  501.  * Called by the usb core when the device is removed from the system.
  502.  */
  503. static void skel_disconnect(struct usb_device *udev, void *ptr)
  504. {
  505. struct usb_skel *dev;
  506. int minor;
  507. dev = (struct usb_skel *)ptr;
  508. down (&minor_table_mutex);
  509. down (&dev->sem);
  510. minor = dev->minor;
  511. /* remove our devfs node */
  512. devfs_unregister(dev->devfs);
  513. /* if the device is not opened, then we clean up right now */
  514. if (!dev->open_count) {
  515. up (&dev->sem);
  516. skel_delete (dev);
  517. } else {
  518. dev->udev = NULL;
  519. up (&dev->sem);
  520. }
  521. info("USB Skeleton #%d now disconnected", minor);
  522. up (&minor_table_mutex);
  523. }
  524. /**
  525.  * usb_skel_init
  526.  */
  527. static int __init usb_skel_init(void)
  528. {
  529. int result;
  530. /* register this driver with the USB subsystem */
  531. result = usb_register(&skel_driver);
  532. if (result < 0) {
  533. err("usb_register failed for the "__FILE__" driver. Error number %d",
  534.     result);
  535. return -1;
  536. }
  537. info(DRIVER_DESC " " DRIVER_VERSION);
  538. return 0;
  539. }
  540. /**
  541.  * usb_skel_exit
  542.  */
  543. static void __exit usb_skel_exit(void)
  544. {
  545. /* deregister this driver with the USB subsystem */
  546. usb_deregister(&skel_driver);
  547. }
  548. module_init (usb_skel_init);
  549. module_exit (usb_skel_exit);
  550. MODULE_AUTHOR(DRIVER_AUTHOR);
  551. MODULE_DESCRIPTION(DRIVER_DESC);
  552. MODULE_LICENSE("GPL");