USB Drivers in Linux

This eleventh article, which is part of the series on Linux device drivers, gets you started with writing your first USB driver in Linux.

<< Tenth Article

Pugs’ pen drive was the device, Shweta was playing with, when both of them sat down to explore the world of USB drivers in Linux. The fastest way to get hang of one, the usual Pugs’ way, was to pick up a USB device and write a driver for it to experiment with. So, they chose pen drive aka USB stick, available at hand. It was JetFlash from Transcend with vendor ID 0x058f and product ID 0x6387.

USB device detection in Linux

Whether a driver of a USB device is there or not on a Linux system, a valid USB device would always get detected at the hardware and kernel spaces of a USB-enabled Linux system. A valid USB device is a device designed and detected as per USB protocol specifications. Hardware space detection is done by the USB host controller – typically a native bus device, e.g. a PCI device on x86 systems. The corresponding host controller driver would pick and translate the low-level physical layer information into higher level USB protocol specific information. The USB protocol formatted information about the USB device is then populated into the generic USB core layer (usbcore driver) in the kernel space, thus enabling the detection of a USB device in the kernel space, even without having its specific driver.

After this, it is up to the various drivers, interfaces, and applications (which are dependent on the various Linux distributions), to have the user space view of the detected devices. Figure 17 shows a top to bottom view of USB subsystem in Linux. A basic listing of all detected USB devices can be obtained using the lsusb command, as root. Figure 18 shows the same, without and with the pen drive being inserted into the system. A -v option to lsusb provides detailed information. In many Linux distributions like Mandriva, Fedora, … usbfs driver is loaded as part of the default configuration. This enables the detected USB device details to be viewed in a more techno-friendly way through the /proc window using cat /proc/bus/usb/devices. Figure 19 shows a typical snippet of the same, clipped around the pen drive specific section. The complete listing basically contains such sections, each for one of the valid USB devices detected on the Linux system.

Figure 17: USB subsystem in Linux

Figure 17: USB subsystem in Linux

Figure 18: Output of lsusb

Figure 18: Output of lsusb

Figure 19: USB's proc window snippet

Figure 19: USB’s proc window snippet

Decoding a USB device section

To further decode these sections, a valid USB device needs to be understood first. All valid USB devices contain one or more configurations. A configuration of a USB device is like a profile, where the default one is the commonly used one. As such, Linux supports only one configuration per device – the default one. For every configuration, the device may have one or more interfaces. An interface corresponds to the functionality provided by the device. There would be as many interfaces as the number of independent functionalities provided by the device. So, say an MFD (multi-function device) USB printer can do printing, scanning, and faxing, then it most likely would have at least three interfaces – one for each of the functionalities. So, unlike other device drivers, a USB device driver is typically associated/written per interface, rather than the device as a whole – meaning one USB device may have multiple device drivers. Though definitely one interface can have a maximum of one driver only.

Moreover, it is okay and common to have a single USB device driver for all the interfaces of a USB device. The “Driver=…” entry in the proc window output (Figure 19) shows the interface is to driver mapping – a “(none)” indicating no associated driver. For every interface, there would be one or more end points. An endpoint is like a pipe for transferring information either into or from the interface of the device, depending on the functionality. Depending on the type of information, the endpoints have four types:

  • Control
  • Interrupt
  • Bulk
  • Isochronous

As per USB protocol specification, all valid USB devices have an implicit special control endpoint zero, the only bi-directional endpoint. Figure 20 shows the complete pictorial representation of a valid USB device, based on the above explanation.

Coming back to the USB device sections (Figure 19), the first letter on each line represents the various parts of the USB device specification just explained. For example, D for device, C for configuration, I for interface, E for endpoint, etc. Details about them and various others are available under the kernel source Documentation/usb/proc_usb_info.txt

Figure 20: USB device overview

Figure 20: USB device overview

The USB pen drive driver registration

“Seems like there are so many things to know about the USB protocol to be able to write the first USB driver itself – device configuration, interfaces, transfer pipes, their four types, and so many other symbols like T, B, S, … under a USB device specification”, sighed Shweta. “Yes, but don’t you worry – all these can be talked in detail, later. Let’s do the first thing first – get our pen drive’s interface associated with our USB device driver (pen_register.ko)”, consoled Pugs. Like any other Linux device driver, here also we need the constructor and the destructor – basically the same driver template that has been used for all the drivers. Though the content would vary as this is a hardware protocol layer driver, i.e. a horizontal driver unlike a character driver, which was one of the vertical drivers, discussed so far. And the difference would be that instead of registering with & unregistering from VFS, here we would do that with the corresponding protocol layer – the USB core in this case; instead of providing a user space interface like a device file, it would get connected with the actual device in the hardware space. The USB core APIs for the same are as follows (prototyped in <linux/usb.h>):

int usb_register(struct usb_driver *driver);
void usb_deregister(struct usb_driver *);

As part of the usb_driver structure, the fields to be provided are the driver’s name, ID table for auto-detecting the particular device and the 2 callback functions to be invoked by USB core during hot-plugging and hot-removal of the device, respectively. Putting it all together, pen_register.c would look like:

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/usb.h>

static int pen_probe(struct usb_interface *interface, const struct usb_device_id *id)
{
	printk(KERN_INFO "Pen drive (%04X:%04X) plugged\n", id->idVendor,
								id->idProduct);
	return 0;
}

static void pen_disconnect(struct usb_interface *interface)
{
	printk(KERN_INFO "Pen drive removed\n");
}

static struct usb_device_id pen_table[] =
{
	{ USB_DEVICE(0x058F, 0x6387) },
	{} /* Terminating entry */
};
MODULE_DEVICE_TABLE (usb, pen_table);

static struct usb_driver pen_driver =
{
	.name = "pen_driver",
	.id_table = pen_table,
	.probe = pen_probe,
	.disconnect = pen_disconnect,
};

static int __init pen_init(void)
{
	return usb_register(&pen_driver);
}

static void __exit pen_exit(void)
{
	usb_deregister(&pen_driver);
}

module_init(pen_init);
module_exit(pen_exit);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Anil Kumar Pugalia <email@sarika-pugs.com>");
MODULE_DESCRIPTION("USB Pen Registration Driver");

Then, the usual steps for any Linux device driver may be repeated:

  • Build the driver (.ko file) by running make
  • Load the driver using insmod
  • List the loaded modules using lsmod
  • Unload the driver using rmmod

But surprisingly the results wouldn’t be as expected. Check for dmesg and the proc window to see the various logs and details. Not because USB driver is different from a character driver. But there’s a catch. Figure 19 shows that the pen drive has one interface (numbered 0), which is already associated with the usual usb-storage driver. Now, in order to get our driver associated with that interface, we need to unload the usb-storage driver (i.e. rmmod usb-storage) after plugging in the pen drive, and then load our driver. Once this sequence is followed, the results would be as expected. Figure 21 shows a glimpse of the possible logs and proc window snippet. Repeat hot-plugging in and hot-plugging out the pen drive to observe the probe and disconnect calls in action – but don’t forget unloading the usb-storage driver, every time you plug in the pen driver.

Figure 21: Pen driver in action

Figure 21: Pen driver in action

Summing up

“Finally!!! Something into action.”, relieved Shweta. “But seems like there are so many things around (like the device ID table, probe, disconnect, …), yet to be assimilated and understood to get a complete USB device driver, in place”, she continued. “Yes, you are right. Let’s take them one by one, with breaks”, replied Pugs taking a stretching break.

Twelfth Article >>

Notes

  1. Make sure that you replace the vendor id & device id in the above code examples by the ones of your pen drive.
  2. One may wonder, as how does the usb-storage get autoloaded. The answer lies in the module autoload rules written down in the file /lib/modules/<kernel_version>/modules.usbmap. If you are an expert, you may comment out the corresponding line, for it to not get autoloaded. And uncomment it back, once you are done with your experiments.
  3. In latest distros, you may not find the detailed description of the USB devices using cat /proc/bus/usb/devices, as the /proc/bus/usb/ itself has been deprecated. You can find the same detailed info using cat /sys/kernel/debug/usb/devices – though you may need root permissions for the same. Also, if you do not see any file under /sys/kernel/debug (even as root), then you may have to first mount the debug filesystem, as follows: mount -t debugfs none /sys/kernel/debug
Anil Kumar Pugalia (123 Posts)

The author is a hobbyist in open source hardware and software, with a passion for mathematics, and philosopher in thoughts. A gold medallist from the Indian Institute of Science, Linux, mathematics and knowledge sharing are few of his passions. He experiments with Linux and embedded systems to share his learnings through his weekend workshops. Learn more about him and his experiments at https://sysplay.in.


   Send article as PDF   

6 thoughts on “USB Drivers in Linux

  1. Pingback: Kernel Space Debuggers in Linux | Playing with Systems

  2. Pingback: USB Drivers in Linux (Continued) | Playing with Systems

  3. Jaydeep

    Hi Sir,

    Thanks for nice article…!

    while inserting USB , my “Probe” method is not working..
    Particularly I am not able to see this line:

    printk(KERN_INFO “Pen drive (%04X:%04X) plugged\n”, id->idVendor,
    id->idProduct);

    showing message like:
    ————————————————————————————————————-
    3935.278043] usb 1-3: new high-speed USB device number 12 using ehci-pci
    [ 3935.433933] usb 1-3: New USB device found, idVendor=090c, idProduct=1000
    [ 3935.433937] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
    [ 3935.433939] usb 1-3: Product: USB
    [ 3935.433940] usb 1-3: Manufacturer: SRT
    [ 3935.433942] usb 1-3: SerialNumber: AAS9K08SE2ZL2T81
    [ 3935.437796] usb-storage 1-3:1.0: USB Mass Storage device detected
    [ 3935.437851] scsi host12: usb-storage 1-3:1.0
    [ 3936.711601] scsi 12:0:0:0: Direct-Access SRT USB 1100 PQ: 0 ANSI: 6
    [ 3936.711889] sd 12:0:0:0: Attached scsi generic sg3 type 0
    [ 3936.717804] sd 12:0:0:0: [sdc] 63356928 512-byte logical blocks: (32.4 GB/30.2 GiB)
    [ 3936.721568] sd 12:0:0:0: [sdc] Write Protect is off
    [ 3936.721573] sd 12:0:0:0: [sdc] Mode Sense: 43 00 00 00
    [ 3936.726246] sd 12:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn’t support DPO or FUA
    [ 3936.751637] sdc: sdc1
    [ 3936.771635] sd 12:0:0:0: [sdc] Attached SCSI removable disk
    [ 3937.608391] FAT-fs (sdc1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    root@ubuntu:/home/jaydeep/device_driver/usb/without_urb#

    ———————————————————————————————————————————————-

    Reply
  4. sameerh

    Hi Anil,

    your Artical is very helpful and interesting thanks for sharing your knowledge, i am facing the same problem mentioned by jaydeep above.

    i do not see the Messages from the Probe, would you please help me find what am i missing here?

    Logs /var/log/syslog:
    Feb 26 22:56:07 vadimt-vmxp kernel: [184877.375416] usbcore: registered new interface driver pen_driver

    Feb 26 22:58:09 vadimt-vmxp systemd-timesyncd[423]: Timed out waiting for reply from 91.189.89.198:123 (ntp.ubuntu.com).
    Feb 26 22:58:19 vadimt-vmxp systemd-timesyncd[423]: Timed out waiting for reply from 91.189.91.157:123 (ntp.ubuntu.com).
    Feb 26 22:58:29 vadimt-vmxp systemd-timesyncd[423]: Timed out waiting for reply from 91.189.89.199:123 (ntp.ubuntu.com).
    Feb 26 22:58:39 vadimt-vmxp systemd-timesyncd[423]: Timed out waiting for reply from 91.189.94.4:123 (ntp.ubuntu.com).

    Feb 26 22:59:38 vadimt-vmxp kernel: [185088.661933] usbcore: deregistering interface driver pen_driver

    Linux Version:
    root@vadimt-vmxp:~/usb_tutorial/src# uname -a
    Linux vadimt-vmxp 4.2.0-16-generic #19-Ubuntu SMP Thu Oct 8 15:35:06 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux

    root@vadimt-vmxp:~/usb_tutorial/src# lsmod | grep usb
    root@vadimt-vmxp:~/usb_tutorial/src# lsmod | grep pendrive
    pendrive 16384 0
    root@vadimt-vmxp:~/usb_tutorial/src# modinfo pendrive.ko
    filename: /home/sameer/usb_tutorial/src/pendrive.ko
    license: GPL
    description: USB Pen Registration Driver
    author: Anil Kumar
    srcversion: 8EE9CDC4BD904256A5FFAA6
    alias: usb:v08F7p0002d*dc*dsc*dp*ic*isc*ip*in*
    depends:
    vermagic: 4.2.0-16-generic SMP mod_unload modversions
    root@vadimt-vmxp:~/usb_tutorial/src#

    Reply
    1. Anil Kumar Pugalia Post author

      Would suggest you the same thing as to Jaydeep. Did you verify that your device is not taken up by any other driver? If it is taken up, you would have to remove that. Also, I hope you have appropriately changed the vendor id & product id in the driver, as per your device.

      Reply

Leave a Reply

Your email address will not be published. Required fields are marked *