copied over all of the custom pcb stuff and switched connectors + added PWM headers to the power board

git-svn-id: https://robotics.mvla.net/svn/frc971/2013/trunk/src@4029 f308d9b7-e957-4cde-b6ac-9a88185e7312
diff --git a/gyro_board/src/usb_driver/90-aschuh.rules b/gyro_board/src/usb_driver/90-aschuh.rules
new file mode 100644
index 0000000..7e7699e
--- /dev/null
+++ b/gyro_board/src/usb_driver/90-aschuh.rules
@@ -0,0 +1 @@
+KERNEL=="aschuh[0-9]*",GROUP="dialout"
diff --git a/gyro_board/src/usb_driver/Makefile b/gyro_board/src/usb_driver/Makefile
new file mode 100644
index 0000000..d7f5b55
--- /dev/null
+++ b/gyro_board/src/usb_driver/Makefile
@@ -0,0 +1,8 @@
+obj-m := deploy-module.o
+deploy-module-y := usb-aschuh_can_driver.o
+
+all:
+	@make -C /lib/modules/`uname -r | tr -d '\n'`/build M=`pwd` modules
+
+clean:
+	@make -C /lib/modules/`uname -r | tr -d '\n'`/build M=`pwd` clean
diff --git a/gyro_board/src/usb_driver/README b/gyro_board/src/usb_driver/README
new file mode 100644
index 0000000..7325d87
--- /dev/null
+++ b/gyro_board/src/usb_driver/README
@@ -0,0 +1,8 @@
+To build, run 
+
+make -C /lib/modules/`uname -r | tr -d '\n'`/build M=`pwd` modules
+
+Where 2.6.38... is what you get when you run uname -r
+
+To use from a dialout user (not root)
+cp 90-aschuh.rules /etc/udev/rules.d/
diff --git a/gyro_board/src/usb_driver/aschuh_dev_cat.rb b/gyro_board/src/usb_driver/aschuh_dev_cat.rb
new file mode 100755
index 0000000..2c314d5
--- /dev/null
+++ b/gyro_board/src/usb_driver/aschuh_dev_cat.rb
@@ -0,0 +1,23 @@
+#!/usr/bin/ruby
+
+device_number = 0
+max_device_number = 1
+device = nil
+while !(device)
+	begin
+		device = File.open("/dev/aschuh#{device_number}","r+")
+	rescue
+		puts("Opening /dev/aschuh#{device_number} failed")
+		sleep(0.2)
+		device_number += 1
+		if(device_number == max_device_number)
+			device_number = 0
+		end
+	end
+end
+
+# Set the device in debug mode to view debug prints.
+device.ioctl(1,254)
+while true
+	print device.read(1)
+end
diff --git a/gyro_board/src/usb_driver/usb-aschuh_can_device.c b/gyro_board/src/usb_driver/usb-aschuh_can_device.c
new file mode 100644
index 0000000..400cc91
--- /dev/null
+++ b/gyro_board/src/usb_driver/usb-aschuh_can_device.c
@@ -0,0 +1,190 @@
+#include "usb-aschuh_can_driver.h"
+#include "usb-aschuh_can_device.h"
+
+#define to_aschuh_dev(d) container_of(d, struct aschuh_dev, kref)
+static void aschuh_dev_delete(struct kref *kref)
+{
+    struct aschuh_dev *dev = to_aschuh_dev(kref);
+
+    usb_free_urb(dev->bulk.in_urb);
+	usb_free_urb(dev->intr.in_urb);
+    usb_put_dev(dev->udev);
+    kfree(dev->bulk.in_buffer);
+    kfree(dev->intr.in_buffer);
+    kfree(dev);
+}
+
+#include "usb-aschuh_fops_read.c"
+#include "usb-aschuh_fops_write.c"
+#include "usb-aschuh_fops_open.c"
+#include "usb-aschuh_fops_ioctl.c"
+#include "usb-aschuh_fops_release.c"
+
+static const struct file_operations aschuh_dev_fops = {
+	.owner =	THIS_MODULE,
+	.read  = 	aschuh_dev_read,
+	.write = 	aschuh_dev_write,
+	.open = 	aschuh_dev_open,
+	.release = 	aschuh_dev_release,
+	.flush = 	NULL,
+	.llseek = 	NULL,
+	.unlocked_ioctl = aschuh_dev_ioctl,
+};
+
+static int init_in_channel(struct aschuh_chan *chan,
+		struct usb_endpoint_descriptor *endpoint){
+    size_t buffer_size;
+    buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
+    chan->in_size = buffer_size;
+    chan->in_endpointAddr = endpoint->bEndpointAddress;
+    chan->in_buffer = kmalloc(buffer_size, GFP_KERNEL);
+    if (!chan->in_buffer) {
+        err("Could not allocate bulk_in_buffer");
+		return -1;
+    }
+    chan->in_urb = usb_alloc_urb(0, GFP_KERNEL);
+    if (!chan->in_urb) {
+        err("Could not allocate bulk_in_urb");
+		return -1;
+    }
+	return 0;
+}
+int aschuh_dev_connect_endpoints(struct aschuh_dev *dev,
+	    struct usb_host_interface *iface_desc){
+    struct usb_endpoint_descriptor *endpoint;
+    int i,rv;
+    for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
+        endpoint = &iface_desc->endpoint[i].desc;
+
+        if (!dev->bulk.in_endpointAddr &&
+                usb_endpoint_is_bulk_in(endpoint)) {
+    		/* we found a bulk in endpoint */
+    		printk("ASCHUH: found_bulk_in : 0x%x \n",endpoint->bEndpointAddress);
+			if((rv = init_in_channel(&dev->bulk,endpoint)))
+				return rv;
+        }
+        if (!dev->bulk.out_endpointAddr &&
+                usb_endpoint_is_bulk_out(endpoint)) {
+            /* we found a bulk out endpoint */
+            printk("ASCHUH: found_bulk_out : 0x%x \n",endpoint->bEndpointAddress);
+            dev->bulk.out_endpointAddr = endpoint->bEndpointAddress;
+        }
+        if (!dev->intr.in_endpointAddr &&
+                usb_endpoint_is_int_in(endpoint)) {
+    		/* we found a bulk in endpoint */
+    		printk("ASCHUH: found_intr_in : 0x%x \n",endpoint->bEndpointAddress);
+			if((rv = init_in_channel(&dev->intr,endpoint)))
+				return rv;
+			dev->intr.bEndpointInterval = endpoint->bInterval;
+        }
+        if (!dev->intr.out_endpointAddr &&
+                usb_endpoint_is_int_out(endpoint)) {
+            /* we found a intr out endpoint */
+            printk("ASCHUH: found_intr_out : 0x%x \n",endpoint->bEndpointAddress);
+            dev->intr.out_endpointAddr = endpoint->bEndpointAddress;
+        }
+    }
+    if (!(dev->bulk.in_endpointAddr && dev->bulk.out_endpointAddr)) {
+        err("Could not find both bulk-in and bulk-out endpoints");
+		return -1;
+    }
+    if (!(dev->intr.in_endpointAddr && dev->intr.out_endpointAddr)) {
+        err("Could not find both intr-in and intr-out endpoints");
+		return -1;
+    }
+	return 0;
+}
+
+#define ASCHUH_DEV_MINOR_BASE 192
+//used in getting the file in /dev/
+static struct usb_class_driver aschuh_dev_class = {
+    .name =         "aschuh%d",
+    .fops =         &aschuh_dev_fops,
+    .minor_base =   ASCHUH_DEV_MINOR_BASE,
+};
+static void init_aschuh_chan(struct aschuh_chan *chan,struct aschuh_dev *dev){
+	sema_init(&chan->limit_sem, WRITES_IN_FLIGHT);
+    mutex_init(&chan->io_mutex);
+    spin_lock_init(&chan->err_lock);
+    init_completion(&chan->in_completion);
+	chan->owner = dev;
+}
+static int aschuh_can_driver_probe(struct usb_interface *interface, 
+		const struct usb_device_id *id)
+{
+	// New Drivers Show up Here!
+	struct aschuh_dev *dev;
+    int retval = -ENOMEM;
+
+    /* allocate memory for our device state and initialize it */
+    dev = kzalloc(sizeof(*dev), GFP_KERNEL);
+    if (!dev) {
+        err("Out of memory");
+        goto error;
+    }
+    kref_init(&dev->kref);
+	
+    init_usb_anchor(&dev->submitted);
+	init_aschuh_chan(&dev->bulk,dev);
+	init_aschuh_chan(&dev->intr,dev);
+
+
+    dev->udev = usb_get_dev(interface_to_usbdev(interface));
+    dev->interface = interface;
+
+    /* set up the endpoint information */
+    /* use only the first bulk-in and bulk-out endpoints */
+	if(aschuh_dev_connect_endpoints(dev,interface->cur_altsetting))
+		goto error;
+
+    /* save our data pointer in this interface device */
+    usb_set_intfdata(interface, dev);
+
+    /* we can register the device now, as it is ready */
+    retval = usb_register_dev(interface, &aschuh_dev_class);
+    if (retval) {
+        /* something prevented us from registering this driver */
+        err("Not able to get a minor for this device.");
+        usb_set_intfdata(interface, NULL);
+        goto error;
+    }
+
+	printk("CAN driver has been probed - %d\n",interface->minor);
+    /* let the user know what node this device is now attached to */
+    dev_info(&interface->dev,
+            "USB aschuh_dev device now attached to USB_ASCHUH-%d",
+            interface->minor);
+    return 0;
+
+error:
+    if (dev)
+        /* this frees allocated memory */
+        kref_put(&dev->kref, aschuh_dev_delete);
+	return -ENOMEM;
+}
+static void aschuh_can_driver_disconnect(struct usb_interface *interface)
+{
+    struct aschuh_dev *dev;
+    int minor = interface->minor;
+
+    dev = usb_get_intfdata(interface);
+    usb_set_intfdata(interface, NULL);
+
+    /* give back our minor */
+    usb_deregister_dev(interface, &aschuh_dev_class);
+
+    /* prevent more I/O from starting */
+	mutex_lock(&dev->bulk.io_mutex);
+	mutex_lock(&dev->intr.io_mutex);
+    dev->interface = NULL;
+    mutex_unlock(&dev->bulk.io_mutex);
+    mutex_unlock(&dev->intr.io_mutex);
+
+    usb_kill_anchored_urbs(&dev->submitted);
+
+    /* decrement our usage count */
+    kref_put(&dev->kref, aschuh_dev_delete);
+
+    dev_info(&interface->dev, "USB aschuh_dev #%d now disconnected", minor);
+}
+
diff --git a/gyro_board/src/usb_driver/usb-aschuh_can_device.h b/gyro_board/src/usb_driver/usb-aschuh_can_device.h
new file mode 100644
index 0000000..0065839
--- /dev/null
+++ b/gyro_board/src/usb_driver/usb-aschuh_can_device.h
@@ -0,0 +1,37 @@
+#ifndef _USB_ASCHUH_CAN_DEVICE__H_
+#define _USB_ASCHUH_CAN_DEVICE__H_
+struct aschuh_dev;
+struct aschuh_chan{
+    struct urb              *in_urb;           /* the urb to read data with */
+    unsigned char           *in_buffer;        /* the buffer to receive data */
+    size_t                  in_size;           /* the size of the receive buffer */
+    size_t                  in_filled;         /* number of bytes in the buffer */
+    size_t                  in_copied;         /* already copied to user space */
+    __u8                    in_endpointAddr;   /* the address of the in endpoint */
+    __u8                    out_endpointAddr;  /* the address of the out endpoint */
+    int                     errors;            /* the last request tanked */
+    spinlock_t              err_lock;          /* lock for errors */
+    struct mutex            io_mutex;          /* synchronize I/O with disconnect */
+    struct semaphore        limit_sem;              /* limiting the number of writes in progress */
+    struct completion       in_completion;     /* to wait for an ongoing read */
+    bool                    ongoing_read;      /* a read is going on */
+    bool                    processed_urb;     /* indicates we haven't processed the urb */
+	__u8					bEndpointInterval; /* used in fill_int_urb */
+	struct aschuh_dev		*owner;
+};
+
+struct aschuh_dev{
+    struct usb_device       *udev;                  /* the usb device for this device */
+    struct usb_interface    *interface;             /* the interface for this device */
+    struct usb_anchor       submitted;              /* in case we need to retract our submissions */
+	struct aschuh_chan		bulk;					/* channel for handling bulk requests */
+	struct aschuh_chan		intr;
+    int                     open_count;             /* count the number of openers */
+    struct kref             kref;
+};
+static void aschuh_can_driver_disconnect(struct usb_interface *interface);
+static int aschuh_can_driver_probe(struct usb_interface *interface,
+        const struct usb_device_id *id);
+
+
+#endif
diff --git a/gyro_board/src/usb_driver/usb-aschuh_can_driver.c b/gyro_board/src/usb_driver/usb-aschuh_can_driver.c
new file mode 100644
index 0000000..44a7f6e
--- /dev/null
+++ b/gyro_board/src/usb_driver/usb-aschuh_can_driver.c
@@ -0,0 +1,46 @@
+#include "usb-aschuh_can_driver.h"
+#include "usb-aschuh_can_device.h"
+#define WRITES_IN_FLIGHT        8
+static const struct usb_device_id aschuh_can_device_table[] = {
+	{ USB_DEVICE(VENDOR_ID,	PRODUCT_ID) },
+	{ } /*terminating entry */
+};
+MODULE_DEVICE_TABLE(usb, aschuh_can_device_table);
+
+
+#include "usb-aschuh_can_device.c"
+static struct usb_driver aschuh_can_driver = {
+	.name = 	"aschuh_can_driver",
+	.probe =  	aschuh_can_driver_probe,
+	.disconnect = 	aschuh_can_driver_disconnect,
+	.suspend =	NULL,
+	.resume =	NULL,
+	.pre_reset = 	NULL,
+	.post_reset = 	NULL,
+	.id_table = 	aschuh_can_device_table,
+	.supports_autosuspend = 0,
+};
+
+static int __init aschuh_can_driver_init(void)
+{
+	int result;
+
+	result = usb_register(&aschuh_can_driver);
+	if(result)
+		err("usb_register failed. Error number %d",result);
+
+	printk("INIT CAN driver\n");
+	return result;
+}
+static void __exit aschuh_can_driver_exit(void)
+{
+	usb_deregister(&aschuh_can_driver);
+	printk("Closing CAN driver\n");
+}
+
+
+module_init(aschuh_can_driver_init);
+module_exit(aschuh_can_driver_exit);
+
+
+MODULE_LICENSE("GPL"); //not sure about this.
diff --git a/gyro_board/src/usb_driver/usb-aschuh_can_driver.h b/gyro_board/src/usb_driver/usb-aschuh_can_driver.h
new file mode 100644
index 0000000..73fcb1f
--- /dev/null
+++ b/gyro_board/src/usb_driver/usb-aschuh_can_driver.h
@@ -0,0 +1,21 @@
+#ifndef __USB_ASCHUH_CAN_DRIVER__H_
+#define __USB_ASCHUH_CAN_DRIVER__H_
+
+#include <linux/kernel.h>
+#include <linux/errno.h>
+#include <linux/init.h>
+#include <linux/slab.h>
+#include <linux/module.h>
+#include <linux/kref.h>
+#include <linux/uaccess.h>
+#include <linux/usb.h>
+#include <linux/mutex.h>
+
+struct aschuh_can_device {
+	struct usb_device	*udev;
+	struct usb_interface	*interface;
+};
+#define VENDOR_ID		0x1424
+#define PRODUCT_ID		0xd243
+
+#endif
diff --git a/gyro_board/src/usb_driver/usb-aschuh_fops_ioctl.c b/gyro_board/src/usb_driver/usb-aschuh_fops_ioctl.c
new file mode 100644
index 0000000..4229444
--- /dev/null
+++ b/gyro_board/src/usb_driver/usb-aschuh_fops_ioctl.c
@@ -0,0 +1,19 @@
+static long aschuh_dev_ioctl(struct file *file,
+		unsigned int cmd, unsigned long arg)
+{
+	struct aschuh_chan *new_chan;
+	struct aschuh_chan *chan = file->private_data;
+	struct aschuh_dev *dev = chan->owner;
+	printk("ioctl(%d,%d)\n",cmd,(int)arg);
+	if(cmd == 1){
+		if(arg == 254){
+			new_chan = &dev->bulk;
+		}else{
+			new_chan = &dev->intr;
+		}
+		file->private_data = new_chan;
+		return 0;
+	}else{
+		return 0;
+	}
+}
diff --git a/gyro_board/src/usb_driver/usb-aschuh_fops_open.c b/gyro_board/src/usb_driver/usb-aschuh_fops_open.c
new file mode 100644
index 0000000..5263acd
--- /dev/null
+++ b/gyro_board/src/usb_driver/usb-aschuh_fops_open.c
@@ -0,0 +1,60 @@
+static struct usb_driver aschuh_can_driver;
+static int aschuh_dev_open(struct inode *inode, struct file *file)
+{
+    struct aschuh_dev *dev;
+    struct usb_interface *interface;
+    int subminor;
+
+    subminor = iminor(inode);
+	printk("opening device!!!\n");
+    interface = usb_find_interface(&aschuh_can_driver, subminor);
+    if (!interface) {
+        err("%s - error, can't find device for minor %d",
+                __func__, subminor);
+        return( -ENODEV);
+    }
+
+    dev = usb_get_intfdata(interface);
+    if (!dev) {
+        return( -ENODEV);
+    }
+
+    /* increment our usage count for the device */
+    kref_get(&dev->kref);
+
+    /* lock the device to allow correctly handling errors
+     * in resumption */
+    mutex_lock(&dev->bulk.io_mutex);
+    mutex_lock(&dev->intr.io_mutex);
+	//TODO(parker): Hey folks! I just commented this out.
+	// it would be a good thing to check what usb_autopm_get_interface
+	// actually does :P. Good thing to check if you find errors.
+	/*
+    if (!dev->open_count++) {
+        int retval = usb_autopm_get_interface(interface);
+        if (retval) {
+            dev->open_count--;
+            mutex_unlock(&dev->bulk.io_mutex);
+            mutex_unlock(&dev->intr.io_mutex);
+            kref_put(&dev->kref, aschuh_dev_delete);
+            return retval;
+        }
+    }
+	*/
+	/* else { //uncomment this block if you want exclusive open
+         retval = -EBUSY;
+         dev->open_count--;
+         mutex_unlock(&dev->io_mutex);
+         kref_put(&dev->kref, aschuh_dev_delete);
+         goto exit;
+         } */
+    /* prevent the device from being autosuspended */
+
+    /* save our object in the file's private structure */
+    file->private_data = &dev->intr;
+    mutex_unlock(&dev->bulk.io_mutex);
+    mutex_unlock(&dev->intr.io_mutex);
+
+    return 0;
+}
+
diff --git a/gyro_board/src/usb_driver/usb-aschuh_fops_read.c b/gyro_board/src/usb_driver/usb-aschuh_fops_read.c
new file mode 100644
index 0000000..912e4b6
--- /dev/null
+++ b/gyro_board/src/usb_driver/usb-aschuh_fops_read.c
@@ -0,0 +1,207 @@
+static void aschuh_chan_read_callback(struct urb *urb)
+{
+    struct aschuh_chan *chan;
+
+    chan = urb->context;
+
+    spin_lock(&chan->err_lock);
+    /* sync/async unlink faults aren't errors */
+    if (urb->status) {
+        if (!(urb->status == -ENOENT ||
+                    urb->status == -ECONNRESET ||
+                    urb->status == -ESHUTDOWN))
+            err("%s - nonzero write bulk status received: %d",
+                    __func__, urb->status);
+
+        chan->errors = urb->status;
+    } else {
+        chan->in_filled = urb->actual_length;
+    }
+    chan->ongoing_read = 0;
+    spin_unlock(&chan->err_lock);
+
+    complete(&chan->in_completion);
+}
+
+static int aschuh_chan_submit(struct aschuh_chan *chan){
+    int rv;
+    /* tell everybody to leave the URB alone */
+    spin_lock_irq(&chan->err_lock);
+    chan->ongoing_read = 1;
+    spin_unlock_irq(&chan->err_lock);
+	
+
+    /* do it */
+    rv = usb_submit_urb(chan->in_urb, GFP_KERNEL);
+    if (rv < 0) {
+        err("%s - failed submitting read urb, error %d",
+                __func__, rv);
+        chan->in_filled = 0;
+        rv = (rv == -ENOMEM) ? rv : -EIO;
+        spin_lock_irq(&chan->err_lock);
+        chan->ongoing_read = 0;
+        spin_unlock_irq(&chan->err_lock);
+    }
+
+    return rv;
+}
+
+
+static int aschuh_dev_bulk_do_read_io(struct aschuh_dev *dev,size_t count)
+{
+	struct aschuh_chan *chan = &dev->bulk;
+    /* prepare a read */
+    usb_fill_bulk_urb(chan->in_urb, dev->udev,
+            usb_rcvbulkpipe(dev->udev, chan->in_endpointAddr),
+            chan->in_buffer,
+            min(chan->in_size, count),
+            aschuh_chan_read_callback,
+            chan);
+	return aschuh_chan_submit(chan);
+}
+
+static int aschuh_dev_intr_do_read_io(struct aschuh_dev *dev,size_t count)
+{
+	struct aschuh_chan *chan = &dev->intr;
+    /* prepare a read */
+    usb_fill_int_urb(chan->in_urb, dev->udev,
+            usb_rcvintpipe(dev->udev, chan->in_endpointAddr),
+            chan->in_buffer,
+            chan->in_size,
+            aschuh_chan_read_callback,
+            chan,chan->bEndpointInterval);
+	return aschuh_chan_submit(chan);
+}
+
+static ssize_t aschuh_dev_read(struct file *file, char *buffer, size_t count,
+        loff_t *ppos)
+{
+	int rv;
+	bool ongoing_io;
+	struct aschuh_chan *chan = file->private_data;
+	struct aschuh_dev *dev = chan->owner; 
+	enum chan_types{
+		BULK_CHAN, INTR_CHAN
+	} chan_type = INTR_CHAN;
+    size_t available;
+	if(chan == &dev->intr)
+		chan_type = INTR_CHAN;
+	else if(chan == &dev->bulk){
+		chan_type = BULK_CHAN;
+	}else{
+		printk("Chan type not debug or data!!!");
+		return 0;
+	}
+	
+
+	    /* if we cannot read at all, return EOF */
+    if (!chan->in_urb || !count)
+        return 0;
+
+	rv = mutex_lock_interruptible(&chan->io_mutex);
+    if (rv < 0)
+        return rv;
+
+	if (!dev->interface) {          /* disconnect() was called */
+        rv = -ENODEV;
+        goto exit;
+    }
+
+	    /* if IO is under way, we must not touch things */
+	while(true){
+    	spin_lock_irq(&chan->err_lock);
+    	ongoing_io = chan->ongoing_read;
+    	spin_unlock_irq(&chan->err_lock);
+
+    	if (ongoing_io) {
+        	/* nonblocking IO shall not wait */
+        	if (file->f_flags & O_NONBLOCK) {
+            	rv = -EAGAIN;
+            	goto exit;
+        	}
+        	/*
+         	 * IO may take forever
+         	 * hence wait in an interruptible state
+         	 */
+			mutex_unlock(&chan->io_mutex);
+        	rv = wait_for_completion_interruptible(&chan->in_completion);
+        	if (rv < 0)
+            	return rv;
+
+			rv = mutex_lock_interruptible(&chan->io_mutex);
+    		if (rv < 0)
+        		return rv;
+        	/*
+         	 * by waiting we also semiprocessed the urb
+         	 * we must finish now
+         	 */
+        	chan->in_copied = 0;
+    	}
+
+
+    	/* errors must be reported */
+    	rv = chan->errors;
+    	if (rv < 0) {
+        	/* any error is reported once */
+        	chan->errors = 0;
+        	/* to preserve notifications about reset */
+        	rv = (rv == -EPIPE) ? rv : -EIO;
+        	/* no data to deliver */
+        	chan->in_filled = 0;
+        	/* report it */
+        	goto exit;
+    	}
+		/*
+     	 * if the buffer is filled we may satisfy the read
+     	 * else we need to start IO
+     	 */
+
+    	/* we had read data */
+    	available = chan->in_filled - chan->in_copied;
+
+    	if (!chan->in_filled || !available) {
+        	/*
+         	 * all data has been used or no data is avaiable.
+         	 * actual IO needs to be done
+         	 */
+			if(chan_type == INTR_CHAN)
+        		rv = aschuh_dev_intr_do_read_io(dev, count);
+			else if(chan_type == BULK_CHAN){
+        		rv = aschuh_dev_bulk_do_read_io(dev, count);
+			}
+        	if (rv < 0)
+            	goto exit;
+    	}else{
+    		size_t chunk = min(available, count);
+    		/*
+     	 	 * data is available
+     	 	 * chunk tells us how much shall be copied
+     	 	 */
+
+    		if (copy_to_user(buffer,
+                		chan->in_buffer + chan->in_copied,
+                		chunk))
+        		rv = -EFAULT;
+    		else
+        		rv = chunk;
+
+    		chan->in_copied += chunk;
+
+    		/*
+     	 	 * if we are asked for more than we have,
+     	 	 * we start IO but don't wait
+     	 	 */
+    		//if (available < count){
+			//	if(chan_type == INTR_CHAN)
+        	//		aschuh_dev_intr_do_read_io(dev, count);
+			//	else if(chan_type == BULK_CHAN){
+        	//		aschuh_dev_bulk_do_read_io(dev, count);
+			//	}
+			//}
+			goto exit;
+		}
+	}
+exit:
+	mutex_unlock(&chan->io_mutex);
+	return rv;
+}
diff --git a/gyro_board/src/usb_driver/usb-aschuh_fops_release.c b/gyro_board/src/usb_driver/usb-aschuh_fops_release.c
new file mode 100644
index 0000000..259a1b9
--- /dev/null
+++ b/gyro_board/src/usb_driver/usb-aschuh_fops_release.c
@@ -0,0 +1,22 @@
+static int aschuh_dev_release(struct inode *inode, struct file *file)
+{
+    struct aschuh_dev *dev;
+	printk("closing device!!!\n");
+
+    dev = ((struct aschuh_chan *)file->private_data)->owner;
+    if (dev == NULL)
+        return -ENODEV;
+
+    /* allow the device to be autosuspended */
+   	//mutex_lock(&dev->bulk.io_mutex);
+    //mutex_lock(&dev->intr.io_mutex);
+    //if (!--dev->open_count && dev->interface)
+    //    usb_autopm_put_interface(dev->interface);
+    //mutex_unlock(&dev->bulk.io_mutex);
+    //mutex_unlock(&dev->intr.io_mutex);
+
+    /* decrement the count on our device */
+    kref_put(&dev->kref, aschuh_dev_delete);
+    return 0;
+}
+
diff --git a/gyro_board/src/usb_driver/usb-aschuh_fops_write.c b/gyro_board/src/usb_driver/usb-aschuh_fops_write.c
new file mode 100644
index 0000000..7a9e00e
--- /dev/null
+++ b/gyro_board/src/usb_driver/usb-aschuh_fops_write.c
@@ -0,0 +1,144 @@
+#include <linux/usb.h>
+static void aschuh_dev_write_callback(struct urb *urb)
+{
+    struct aschuh_chan *chan;
+
+    chan = urb->context;
+    /* sync/async unlink faults aren't errors */
+    if (urb->status) {
+        if (!(urb->status == -ENOENT ||
+                    urb->status == -ECONNRESET ||
+                    urb->status == -ESHUTDOWN))
+            err("%s - nonzero write bulk status received: %d",
+                    __func__, urb->status);
+
+        spin_lock(&chan->err_lock);
+        chan->errors = urb->status;
+        spin_unlock(&chan->err_lock);
+    }
+
+    /* free up our allocated buffer */
+    usb_free_coherent(urb->dev, urb->transfer_buffer_length,
+            urb->transfer_buffer, urb->transfer_dma);
+    up(&chan->limit_sem);
+}
+//#define WRITES_IN_FLIGHT        8
+#define MAX_TRANSFER	64
+
+static ssize_t aschuh_dev_write(struct file *file, const char *user_buffer,
+        size_t count, loff_t *ppos)
+{
+    struct aschuh_chan *chan;
+	struct aschuh_dev *dev;
+    int retval = 0;
+    struct urb *urb = NULL;
+    char *buf = NULL;
+    size_t writesize = min(count, (size_t)MAX_TRANSFER);
+
+    chan = file->private_data;
+	dev = chan->owner;
+
+    /* verify that we actually have some data to write */
+    if (count == 0)
+        goto exit;
+
+    /*
+     * limit the number of URBs in flight to stop a user from using up all
+     * RAM
+     */
+    if (!(file->f_flags & O_NONBLOCK)) {
+        if (down_interruptible(&chan->limit_sem)) {
+            retval = -ERESTARTSYS;
+            goto exit;
+        }
+    } else {
+        if (down_trylock(&chan->limit_sem)) {
+            retval = -EAGAIN;
+            goto exit;
+        }
+    }
+
+    spin_lock_irq(&chan->err_lock);
+    retval = chan->errors;
+    if (retval < 0) {
+        /* any error is reported once */
+        chan->errors = 0;
+        /* to preserve notifications about reset */
+        retval = (retval == -EPIPE) ? retval : -EIO;
+    }
+    spin_unlock_irq(&chan->err_lock);
+    if (retval < 0)
+        goto error;
+
+    /* create a urb, and a buffer for it, and copy the data to the urb */
+    urb = usb_alloc_urb(0, GFP_KERNEL);
+    if (!urb) {
+        retval = -ENOMEM;
+        goto error;
+    }
+
+    buf = usb_alloc_coherent(dev->udev, writesize, GFP_KERNEL,
+            &urb->transfer_dma);
+    if (!buf) {
+        retval = -ENOMEM;
+        goto error;
+    }
+
+    if (copy_from_user(buf, user_buffer, writesize)) {
+        retval = -EFAULT;
+        goto error;
+    }
+
+    /* this lock makes sure we don't submit URBs to gone devices */
+    mutex_lock(&chan->io_mutex);
+    if (!dev->interface) {          /* disconnect() was called */
+        mutex_unlock(&chan->io_mutex);
+		printk("Should be exiting shortly.... stay tuned for details\n");
+        retval = -ENODEV;
+        goto error;
+    }
+
+    /* initialize the urb properly */
+	if(chan == &dev->bulk){
+    	usb_fill_bulk_urb(urb, dev->udev,
+            usb_sndbulkpipe(dev->udev, chan->out_endpointAddr),
+            buf, writesize, aschuh_dev_write_callback, chan);
+	}else{
+		usb_fill_int_urb(urb, dev->udev,
+            usb_sndintpipe(dev->udev, chan->out_endpointAddr),
+            buf, writesize, aschuh_dev_write_callback, chan,
+			chan->bEndpointInterval);
+	}
+    urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
+
+    usb_anchor_urb(urb, &dev->submitted);
+    /* send the data out the bulk port */
+    retval = usb_submit_urb(urb, GFP_KERNEL);
+    mutex_unlock(&chan->io_mutex);
+    if (retval) {
+        err("%s - failed submitting write urb, error %d", __func__,
+                retval);
+    	usb_unanchor_urb(urb);
+		goto error;
+    }
+
+    /*
+     * release our reference to this urb, the USB core will eventually free
+     * it entirely
+     */
+    usb_free_urb(urb);
+
+
+    return writesize;
+
+error:
+    if (urb) {
+        usb_free_coherent(dev->udev, writesize, buf, urb->transfer_dma);
+        usb_free_urb(urb);
+    }
+    up(&chan->limit_sem);
+
+exit:
+    return retval;
+}
+
diff --git a/gyro_board/src/usb_driver/usb-skeleton.c b/gyro_board/src/usb_driver/usb-skeleton.c
new file mode 100644
index 0000000..1409724
--- /dev/null
+++ b/gyro_board/src/usb_driver/usb-skeleton.c
@@ -0,0 +1,713 @@
+/*
+ * USB Skeleton driver - 2.2
+ *
+ * Copyright (C) 2001-2004 Greg Kroah-Hartman (greg@kroah.com)
+ *
+ *      This program is free software; you can redistribute it and/or
+ *      modify it under the terms of the GNU General Public License as
+ *      published by the Free Software Foundation, version 2.
+ *
+ * This driver is based on the 2.6.3 version of drivers/usb/usb-skeleton.c
+ * but has been rewritten to be easier to read and use.
+ *
+ */
+
+#include <linux/kernel.h>
+#include <linux/errno.h>
+#include <linux/init.h>
+#include <linux/slab.h>
+#include <linux/module.h>
+#include <linux/kref.h>
+#include <linux/uaccess.h>
+#include <linux/usb.h>
+#include <linux/mutex.h>
+
+
+/* Define these values to match your devices */
+#define USB_SKEL_VENDOR_ID      0xfff0
+#define USB_SKEL_PRODUCT_ID     0xfff0
+
+/* table of devices that work with this driver */
+static const struct usb_device_id skel_table[] = {
+    { USB_DEVICE(USB_SKEL_VENDOR_ID, USB_SKEL_PRODUCT_ID) },
+    { }                                     /* Terminating entry */
+};
+MODULE_DEVICE_TABLE(usb, skel_table);
+
+
+/* Get a minor range for your devices from the usb maintainer */
+#define USB_SKEL_MINOR_BASE     192
+
+/* our private defines. if this grows any larger, use your own .h file */
+#define MAX_TRANSFER            (PAGE_SIZE - 512)
+/* MAX_TRANSFER is chosen so that the VM is not stressed by
+   allocations > PAGE_SIZE and the number of packets in a page
+   is an integer 512 is the largest possible packet on EHCI */
+#define WRITES_IN_FLIGHT        8
+/* arbitrarily chosen */
+
+/* Structure to hold all of our device specific stuff */
+struct usb_skel {
+    struct usb_device       *udev;                  /* the usb device for this device */
+    struct usb_interface    *interface;             /* the interface for this device */
+    struct semaphore        limit_sem;              /* limiting the number of writes in progress */
+    struct usb_anchor       submitted;              /* in case we need to retract our submissions */
+    struct urb              *bulk_in_urb;           /* the urb to read data with */
+    unsigned char           *bulk_in_buffer;        /* the buffer to receive data */
+    size_t                  bulk_in_size;           /* the size of the receive buffer */
+    size_t                  bulk_in_filled;         /* number of bytes in the buffer */
+    size_t                  bulk_in_copied;         /* already copied to user space */
+    __u8                    bulk_in_endpointAddr;   /* the address of the bulk in endpoint */
+    __u8                    bulk_out_endpointAddr;  /* the address of the bulk out endpoint */
+    int                     errors;                 /* the last request tanked */
+    int                     open_count;             /* count the number of openers */
+    bool                    ongoing_read;           /* a read is going on */
+    bool                    processed_urb;          /* indicates we haven't processed the urb */
+    spinlock_t              err_lock;               /* lock for errors */
+    struct kref             kref;
+    struct mutex            io_mutex;               /* synchronize I/O with disconnect */
+    struct completion       bulk_in_completion;     /* to wait for an ongoing read */
+};
+#define to_skel_dev(d) container_of(d, struct usb_skel, kref)
+
+static struct usb_driver skel_driver;
+static void skel_draw_down(struct usb_skel *dev);
+
+static void skel_delete(struct kref *kref)
+{
+    struct usb_skel *dev = to_skel_dev(kref);
+
+    usb_free_urb(dev->bulk_in_urb);
+    usb_put_dev(dev->udev);
+    kfree(dev->bulk_in_buffer);
+    kfree(dev);
+}
+
+static int skel_open(struct inode *inode, struct file *file)
+{
+    struct usb_skel *dev;
+    struct usb_interface *interface;
+    int subminor;
+    int retval = 0;
+
+    subminor = iminor(inode);
+
+    interface = usb_find_interface(&skel_driver, subminor);
+    if (!interface) {
+        err("%s - error, can't find device for minor %d",
+                __func__, subminor);
+        retval = -ENODEV;
+        goto exit;
+    }
+
+    dev = usb_get_intfdata(interface);
+    if (!dev) {
+        retval = -ENODEV;
+        goto exit;
+    }
+
+    /* increment our usage count for the device */
+    kref_get(&dev->kref);
+
+    /* lock the device to allow correctly handling errors
+     * in resumption */
+    mutex_lock(&dev->io_mutex);
+
+    if (!dev->open_count++) {
+        retval = usb_autopm_get_interface(interface);
+        if (retval) {
+            dev->open_count--;
+            mutex_unlock(&dev->io_mutex);
+            kref_put(&dev->kref, skel_delete);
+            goto exit;
+        }
+    } /* else { //uncomment this block if you want exclusive open
+         retval = -EBUSY;
+         dev->open_count--;
+         mutex_unlock(&dev->io_mutex);
+         kref_put(&dev->kref, skel_delete);
+         goto exit;
+         } */
+    /* prevent the device from being autosuspended */
+
+    /* save our object in the file's private structure */
+    file->private_data = dev;
+    mutex_unlock(&dev->io_mutex);
+
+exit:
+    return retval;
+}
+
+static int skel_release(struct inode *inode, struct file *file)
+{
+    struct usb_skel *dev;
+
+    dev = file->private_data;
+    if (dev == NULL)
+        return -ENODEV;
+
+    /* allow the device to be autosuspended */
+    mutex_lock(&dev->io_mutex);
+    if (!--dev->open_count && dev->interface)
+        usb_autopm_put_interface(dev->interface);
+    mutex_unlock(&dev->io_mutex);
+
+    /* decrement the count on our device */
+    kref_put(&dev->kref, skel_delete);
+    return 0;
+}
+
+static int skel_flush(struct file *file, fl_owner_t id)
+{
+    struct usb_skel *dev;
+    int res;
+
+    dev = file->private_data;
+    if (dev == NULL)
+        return -ENODEV;
+
+    /* wait for io to stop */
+    mutex_lock(&dev->io_mutex);
+    skel_draw_down(dev);
+
+    /* read out errors, leave subsequent opens a clean slate */
+    spin_lock_irq(&dev->err_lock);
+    res = dev->errors ? (dev->errors == -EPIPE ? -EPIPE : -EIO) : 0;
+    dev->errors = 0;
+    spin_unlock_irq(&dev->err_lock);
+
+    mutex_unlock(&dev->io_mutex);
+
+    return res;
+}
+
+static void skel_read_bulk_callback(struct urb *urb)
+{
+    struct usb_skel *dev;
+
+    dev = urb->context;
+
+    spin_lock(&dev->err_lock);
+    /* sync/async unlink faults aren't errors */
+    if (urb->status) {
+        if (!(urb->status == -ENOENT ||
+                    urb->status == -ECONNRESET ||
+                    urb->status == -ESHUTDOWN))
+            err("%s - nonzero write bulk status received: %d",
+                    __func__, urb->status);
+
+        dev->errors = urb->status;
+    } else {
+        dev->bulk_in_filled = urb->actual_length;
+    }
+    dev->ongoing_read = 0;
+    spin_unlock(&dev->err_lock);
+
+    complete(&dev->bulk_in_completion);
+}
+
+static int skel_do_read_io(struct usb_skel *dev, size_t count)
+{
+    int rv;
+
+    /* prepare a read */
+    usb_fill_bulk_urb(dev->bulk_in_urb,
+            dev->udev,
+            usb_rcvbulkpipe(dev->udev,
+                dev->bulk_in_endpointAddr),
+            dev->bulk_in_buffer,
+            min(dev->bulk_in_size, count),
+            skel_read_bulk_callback,
+            dev);
+    /* tell everybody to leave the URB alone */
+    spin_lock_irq(&dev->err_lock);
+    dev->ongoing_read = 1;
+    spin_unlock_irq(&dev->err_lock);
+
+    /* do it */
+    rv = usb_submit_urb(dev->bulk_in_urb, GFP_KERNEL);
+    if (rv < 0) {
+        err("%s - failed submitting read urb, error %d",
+                __func__, rv);
+        dev->bulk_in_filled = 0;
+        rv = (rv == -ENOMEM) ? rv : -EIO;
+        spin_lock_irq(&dev->err_lock);
+        dev->ongoing_read = 0;
+        spin_unlock_irq(&dev->err_lock);
+    }
+
+    return rv;
+}
+
+static ssize_t skel_read(struct file *file, char *buffer, size_t count,
+        loff_t *ppos)
+{
+    struct usb_skel *dev;
+    int rv;
+    bool ongoing_io;
+
+    dev = file->private_data;
+
+    /* if we cannot read at all, return EOF */
+    if (!dev->bulk_in_urb || !count)
+        return 0;
+
+    /* no concurrent readers */
+    rv = mutex_lock_interruptible(&dev->io_mutex);
+    if (rv < 0)
+        return rv;
+
+    if (!dev->interface) {          /* disconnect() was called */
+        rv = -ENODEV;
+        goto exit;
+    }
+
+    /* if IO is under way, we must not touch things */
+retry:
+    spin_lock_irq(&dev->err_lock);
+    ongoing_io = dev->ongoing_read;
+    spin_unlock_irq(&dev->err_lock);
+
+    if (ongoing_io) {
+        /* nonblocking IO shall not wait */
+        if (file->f_flags & O_NONBLOCK) {
+            rv = -EAGAIN;
+            goto exit;
+        }
+        /*
+         * IO may take forever
+         * hence wait in an interruptible state
+         */
+        rv = wait_for_completion_interruptible(&dev->bulk_in_completion);
+        if (rv < 0)
+            goto exit;
+        /*
+         * by waiting we also semiprocessed the urb
+         * we must finish now
+         */
+        dev->bulk_in_copied = 0;
+        dev->processed_urb = 1;
+    }
+
+    if (!dev->processed_urb) {
+        /*
+         * the URB hasn't been processed
+         * do it now
+         */
+        wait_for_completion(&dev->bulk_in_completion);
+        dev->bulk_in_copied = 0;
+        dev->processed_urb = 1;
+    }
+
+    /* errors must be reported */
+    rv = dev->errors;
+    if (rv < 0) {
+        /* any error is reported once */
+        dev->errors = 0;
+        /* to preserve notifications about reset */
+        rv = (rv == -EPIPE) ? rv : -EIO;
+        /* no data to deliver */
+        dev->bulk_in_filled = 0;
+        /* report it */
+        goto exit;
+    }
+
+    /*
+     * if the buffer is filled we may satisfy the read
+     * else we need to start IO
+     */
+
+    if (dev->bulk_in_filled) {
+        /* we had read data */
+        size_t available = dev->bulk_in_filled - dev->bulk_in_copied;
+        size_t chunk = min(available, count);
+
+        if (!available) {
+            /*
+             * all data has been used
+             * actual IO needs to be done
+             */
+            rv = skel_do_read_io(dev, count);
+            if (rv < 0)
+                goto exit;
+            else
+                goto retry;
+        }
+        /*
+         * data is available
+         * chunk tells us how much shall be copied
+         */
+
+        if (copy_to_user(buffer,
+                    dev->bulk_in_buffer + dev->bulk_in_copied,
+                    chunk))
+            rv = -EFAULT;
+        else
+            rv = chunk;
+
+        dev->bulk_in_copied += chunk;
+
+        /*
+         * if we are asked for more than we have,
+         * we start IO but don't wait
+         */
+        if (available < count)
+            skel_do_read_io(dev, count - chunk);
+    } else {
+        /* no data in the buffer */
+        rv = skel_do_read_io(dev, count);
+        if (rv < 0)
+            goto exit;
+        else if (!(file->f_flags & O_NONBLOCK))
+            goto retry;
+        rv = -EAGAIN;
+    }
+exit:
+    mutex_unlock(&dev->io_mutex);
+    return rv;
+}
+
+static void skel_write_bulk_callback(struct urb *urb)
+{
+    struct usb_skel *dev;
+
+    dev = urb->context;
+
+    /* sync/async unlink faults aren't errors */
+    if (urb->status) {
+        if (!(urb->status == -ENOENT ||
+                    urb->status == -ECONNRESET ||
+                    urb->status == -ESHUTDOWN))
+            err("%s - nonzero write bulk status received: %d",
+                    __func__, urb->status);
+
+        spin_lock(&dev->err_lock);
+        dev->errors = urb->status;
+        spin_unlock(&dev->err_lock);
+    }
+
+    /* free up our allocated buffer */
+    usb_free_coherent(urb->dev, urb->transfer_buffer_length,
+            urb->transfer_buffer, urb->transfer_dma);
+    up(&dev->limit_sem);
+}
+
+static ssize_t skel_write(struct file *file, const char *user_buffer,
+        size_t count, loff_t *ppos)
+{
+    struct usb_skel *dev;
+    int retval = 0;
+    struct urb *urb = NULL;
+    char *buf = NULL;
+    size_t writesize = min(count, (size_t)MAX_TRANSFER);
+
+    dev = file->private_data;
+
+    /* verify that we actually have some data to write */
+    if (count == 0)
+        goto exit;
+
+    /*
+     * limit the number of URBs in flight to stop a user from using up all
+     * RAM
+     */
+    if (!(file->f_flags & O_NONBLOCK)) {
+        if (down_interruptible(&dev->limit_sem)) {
+            retval = -ERESTARTSYS;
+            goto exit;
+        }
+    } else {
+        if (down_trylock(&dev->limit_sem)) {
+            retval = -EAGAIN;
+            goto exit;
+        }
+    }
+
+    spin_lock_irq(&dev->err_lock);
+    retval = dev->errors;
+    if (retval < 0) {
+        /* any error is reported once */
+        dev->errors = 0;
+        /* to preserve notifications about reset */
+        retval = (retval == -EPIPE) ? retval : -EIO;
+    }
+    spin_unlock_irq(&dev->err_lock);
+    if (retval < 0)
+        goto error;
+
+    /* create a urb, and a buffer for it, and copy the data to the urb */
+    urb = usb_alloc_urb(0, GFP_KERNEL);
+    if (!urb) {
+        retval = -ENOMEM;
+        goto error;
+    }
+
+    buf = usb_alloc_coherent(dev->udev, writesize, GFP_KERNEL,
+            &urb->transfer_dma);
+    if (!buf) {
+        retval = -ENOMEM;
+        goto error;
+    }
+
+    if (copy_from_user(buf, user_buffer, writesize)) {
+        retval = -EFAULT;
+        goto error;
+    }
+
+    /* this lock makes sure we don't submit URBs to gone devices */
+    mutex_lock(&dev->io_mutex);
+    if (!dev->interface) {          /* disconnect() was called */
+        mutex_unlock(&dev->io_mutex);
+        retval = -ENODEV;
+        goto error;
+    }
+
+    /* initialize the urb properly */
+    usb_fill_bulk_urb(urb, dev->udev,
+            usb_sndbulkpipe(dev->udev, dev->bulk_out_endpointAddr),
+            buf, writesize, skel_write_bulk_callback, dev);
+    urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
+    usb_anchor_urb(urb, &dev->submitted);
+
+    /* send the data out the bulk port */
+    retval = usb_submit_urb(urb, GFP_KERNEL);
+    mutex_unlock(&dev->io_mutex);
+    if (retval) {
+        err("%s - failed submitting write urb, error %d", __func__,
+                retval);
+        goto error_unanchor;
+    }
+
+    /*
+     * release our reference to this urb, the USB core will eventually free
+     * it entirely
+     */
+    usb_free_urb(urb);
+
+
+    return writesize;
+
+error_unanchor:
+    usb_unanchor_urb(urb);
+error:
+    if (urb) {
+        usb_free_coherent(dev->udev, writesize, buf, urb->transfer_dma);
+        usb_free_urb(urb);
+    }
+    up(&dev->limit_sem);
+
+exit:
+    return retval;
+}
+
+static const struct file_operations skel_fops = {
+    .owner =        THIS_MODULE,
+    .read =         skel_read,
+    .write =        skel_write,
+    .open =         skel_open,
+    .release =      skel_release,
+    .flush =        skel_flush,
+    .llseek =       noop_llseek,
+};
+
+/*
+ * usb class driver info in order to get a minor number from the usb core,
+ * and to have the device registered with the driver core
+ */
+static struct usb_class_driver skel_class = {
+    .name =         "skel%d",
+    .fops =         &skel_fops,
+    .minor_base =   USB_SKEL_MINOR_BASE,
+};
+
+static int skel_probe(struct usb_interface *interface,
+        const struct usb_device_id *id)
+{
+    struct usb_skel *dev;
+    struct usb_host_interface *iface_desc;
+    struct usb_endpoint_descriptor *endpoint;
+    size_t buffer_size;
+    int i;
+    int retval = -ENOMEM;
+
+    /* allocate memory for our device state and initialize it */
+    dev = kzalloc(sizeof(*dev), GFP_KERNEL);
+    if (!dev) {
+        err("Out of memory");
+        goto error;
+    }
+    kref_init(&dev->kref);
+    sema_init(&dev->limit_sem, WRITES_IN_FLIGHT);
+    mutex_init(&dev->io_mutex);
+    spin_lock_init(&dev->err_lock);
+    init_usb_anchor(&dev->submitted);
+    init_completion(&dev->bulk_in_completion);
+
+    dev->udev = usb_get_dev(interface_to_usbdev(interface));
+    dev->interface = interface;
+
+    /* set up the endpoint information */
+    /* use only the first bulk-in and bulk-out endpoints */
+    iface_desc = interface->cur_altsetting;
+    for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) {
+        endpoint = &iface_desc->endpoint[i].desc;
+
+        if (!dev->bulk_in_endpointAddr &&
+                usb_endpoint_is_bulk_in(endpoint)) {
+            /* we found a bulk in endpoint */
+            buffer_size = le16_to_cpu(endpoint->wMaxPacketSize);
+            dev->bulk_in_size = buffer_size;
+            dev->bulk_in_endpointAddr = endpoint->bEndpointAddress;
+            dev->bulk_in_buffer = kmalloc(buffer_size, GFP_KERNEL);
+            if (!dev->bulk_in_buffer) {
+                err("Could not allocate bulk_in_buffer");
+                goto error;
+            }
+            dev->bulk_in_urb = usb_alloc_urb(0, GFP_KERNEL);
+            if (!dev->bulk_in_urb) {
+                err("Could not allocate bulk_in_urb");
+                goto error;
+            }
+        }
+
+        if (!dev->bulk_out_endpointAddr &&
+                usb_endpoint_is_bulk_out(endpoint)) {
+            /* we found a bulk out endpoint */
+            dev->bulk_out_endpointAddr = endpoint->bEndpointAddress;
+        }
+    }
+    if (!(dev->bulk_in_endpointAddr && dev->bulk_out_endpointAddr)) {
+        err("Could not find both bulk-in and bulk-out endpoints");
+        goto error;
+    }
+
+    /* save our data pointer in this interface device */
+    usb_set_intfdata(interface, dev);
+
+    /* we can register the device now, as it is ready */
+    retval = usb_register_dev(interface, &skel_class);
+    if (retval) {
+        /* something prevented us from registering this driver */
+        err("Not able to get a minor for this device.");
+        usb_set_intfdata(interface, NULL);
+        goto error;
+    }
+
+    /* let the user know what node this device is now attached to */
+    dev_info(&interface->dev,
+            "USB Skeleton device now attached to USBSkel-%d",
+            interface->minor);
+    return 0;
+
+error:
+    if (dev)
+        /* this frees allocated memory */
+        kref_put(&dev->kref, skel_delete);
+    return retval;
+}
+
+static void skel_disconnect(struct usb_interface *interface)
+{
+    struct usb_skel *dev;
+    int minor = interface->minor;
+
+    dev = usb_get_intfdata(interface);
+    usb_set_intfdata(interface, NULL);
+
+    /* give back our minor */
+    usb_deregister_dev(interface, &skel_class);
+
+    /* prevent more I/O from starting */
+    mutex_lock(&dev->io_mutex);
+    dev->interface = NULL;
+    mutex_unlock(&dev->io_mutex);
+
+    usb_kill_anchored_urbs(&dev->submitted);
+
+    /* decrement our usage count */
+    kref_put(&dev->kref, skel_delete);
+
+    dev_info(&interface->dev, "USB Skeleton #%d now disconnected", minor);
+}
+
+static void skel_draw_down(struct usb_skel *dev)
+{
+    int time;
+
+    time = usb_wait_anchor_empty_timeout(&dev->submitted, 1000);
+    if (!time)
+        usb_kill_anchored_urbs(&dev->submitted);
+    usb_kill_urb(dev->bulk_in_urb);
+}
+
+static int skel_suspend(struct usb_interface *intf, pm_message_t message)
+{
+    struct usb_skel *dev = usb_get_intfdata(intf);
+
+    if (!dev)
+        return 0;
+    skel_draw_down(dev);
+    return 0;
+}
+
+static int skel_resume(struct usb_interface *intf)
+{
+    return 0;
+}
+
+static int skel_pre_reset(struct usb_interface *intf)
+{
+    struct usb_skel *dev = usb_get_intfdata(intf);
+
+    mutex_lock(&dev->io_mutex);
+    skel_draw_down(dev);
+
+    return 0;
+}
+
+static int skel_post_reset(struct usb_interface *intf)
+{
+    struct usb_skel *dev = usb_get_intfdata(intf);
+
+    /* we are sure no URBs are active - no locking needed */
+    dev->errors = -EPIPE;
+    mutex_unlock(&dev->io_mutex);
+
+    return 0;
+}
+
+static struct usb_driver skel_driver = {
+    .name =         "skeleton",
+    .probe =        skel_probe,
+    .disconnect =   skel_disconnect,
+    .suspend =      skel_suspend,
+    .resume =       skel_resume,
+    .pre_reset =    skel_pre_reset,
+    .post_reset =   skel_post_reset,
+    .id_table =     skel_table,
+    .supports_autosuspend = 1,
+};
+
+static int __init usb_skel_init(void)
+{
+    int result;
+
+    /* register this driver with the USB subsystem */
+    result = usb_register(&skel_driver);
+    if (result)
+        err("usb_register failed. Error number %d", result);
+
+    return result;
+}
+
+static void __exit usb_skel_exit(void)
+{
+    /* deregister this driver with the USB subsystem */
+    usb_deregister(&skel_driver);
+}
+
+module_init(usb_skel_init);
+module_exit(usb_skel_exit);
+
+MODULE_LICENSE("GPL");
+