mirror of
https://github.com/torvalds/linux.git
synced 2024-11-16 17:12:06 +00:00
writing_usb_driver.rst: Enrich its ReST representation
The pandoc conversion is not perfect. Do handwork in order to: - add a title to this chapter; - adjust function and struct references; - use monospaced fonts for C code names; - some other minor adjustments to make it better to read in text mode and in html. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
This commit is contained in:
parent
e1cfb8cabe
commit
0e8c46d032
@ -1,3 +1,5 @@
|
|||||||
|
.. _writing-usb-driver:
|
||||||
|
|
||||||
==========================
|
==========================
|
||||||
Writing USB Device Drivers
|
Writing USB Device Drivers
|
||||||
==========================
|
==========================
|
||||||
@ -48,25 +50,23 @@ The first thing a Linux USB driver needs to do is register itself with
|
|||||||
the Linux USB subsystem, giving it some information about which devices
|
the Linux USB subsystem, giving it some information about which devices
|
||||||
the driver supports and which functions to call when a device supported
|
the driver supports and which functions to call when a device supported
|
||||||
by the driver is inserted or removed from the system. All of this
|
by the driver is inserted or removed from the system. All of this
|
||||||
information is passed to the USB subsystem in the usb_driver structure.
|
information is passed to the USB subsystem in the :c:type:`usb_driver`
|
||||||
The skeleton driver declares a usb_driver as:
|
structure. The skeleton driver declares a :c:type:`usb_driver` as::
|
||||||
|
|
||||||
::
|
|
||||||
|
|
||||||
static struct usb_driver skel_driver = {
|
static struct usb_driver skel_driver = {
|
||||||
.name = "skeleton",
|
.name = "skeleton",
|
||||||
.probe = skel_probe,
|
.probe = skel_probe,
|
||||||
.disconnect = skel_disconnect,
|
.disconnect = skel_disconnect,
|
||||||
.fops = &skel_fops,
|
.fops = &skel_fops,
|
||||||
.minor = USB_SKEL_MINOR_BASE,
|
.minor = USB_SKEL_MINOR_BASE,
|
||||||
.id_table = skel_table,
|
.id_table = skel_table,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
The variable name is a string that describes the driver. It is used in
|
The variable name is a string that describes the driver. It is used in
|
||||||
informational messages printed to the system log. The probe and
|
informational messages printed to the system log. The probe and
|
||||||
disconnect function pointers are called when a device that matches the
|
disconnect function pointers are called when a device that matches the
|
||||||
information provided in the id_table variable is either seen or
|
information provided in the ``id_table`` variable is either seen or
|
||||||
removed.
|
removed.
|
||||||
|
|
||||||
The fops and minor variables are optional. Most USB drivers hook into
|
The fops and minor variables are optional. Most USB drivers hook into
|
||||||
@ -76,78 +76,70 @@ subsystem, and any user-space interactions are provided through that
|
|||||||
interface. But for drivers that do not have a matching kernel subsystem,
|
interface. But for drivers that do not have a matching kernel subsystem,
|
||||||
such as MP3 players or scanners, a method of interacting with user space
|
such as MP3 players or scanners, a method of interacting with user space
|
||||||
is needed. The USB subsystem provides a way to register a minor device
|
is needed. The USB subsystem provides a way to register a minor device
|
||||||
number and a set of file_operations function pointers that enable this
|
number and a set of :c:type:`file_operations` function pointers that enable
|
||||||
user-space interaction. The skeleton driver needs this kind of
|
this user-space interaction. The skeleton driver needs this kind of
|
||||||
interface, so it provides a minor starting number and a pointer to its
|
interface, so it provides a minor starting number and a pointer to its
|
||||||
file_operations functions.
|
:c:type:`file_operations` functions.
|
||||||
|
|
||||||
The USB driver is then registered with a call to usb_register, usually
|
The USB driver is then registered with a call to :c:func:`usb_register`,
|
||||||
in the driver's init function, as shown here:
|
usually in the driver's init function, as shown here::
|
||||||
|
|
||||||
::
|
|
||||||
|
|
||||||
static int __init usb_skel_init(void)
|
static int __init usb_skel_init(void)
|
||||||
{
|
{
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
/* register this driver with the USB subsystem */
|
/* register this driver with the USB subsystem */
|
||||||
result = usb_register(&skel_driver);
|
result = usb_register(&skel_driver);
|
||||||
if (result < 0) {
|
if (result < 0) {
|
||||||
err("usb_register failed for the "__FILE__ "driver."
|
err("usb_register failed for the "__FILE__ "driver."
|
||||||
"Error number %d", result);
|
"Error number %d", result);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
module_init(usb_skel_init);
|
module_init(usb_skel_init);
|
||||||
|
|
||||||
|
|
||||||
When the driver is unloaded from the system, it needs to deregister
|
When the driver is unloaded from the system, it needs to deregister
|
||||||
itself with the USB subsystem. This is done with the usb_deregister
|
itself with the USB subsystem. This is done with the :c:func:`usb_deregister`
|
||||||
function:
|
function::
|
||||||
|
|
||||||
::
|
|
||||||
|
|
||||||
static void __exit usb_skel_exit(void)
|
static void __exit usb_skel_exit(void)
|
||||||
{
|
{
|
||||||
/* deregister this driver with the USB subsystem */
|
/* deregister this driver with the USB subsystem */
|
||||||
usb_deregister(&skel_driver);
|
usb_deregister(&skel_driver);
|
||||||
}
|
}
|
||||||
module_exit(usb_skel_exit);
|
module_exit(usb_skel_exit);
|
||||||
|
|
||||||
|
|
||||||
To enable the linux-hotplug system to load the driver automatically when
|
To enable the linux-hotplug system to load the driver automatically when
|
||||||
the device is plugged in, you need to create a MODULE_DEVICE_TABLE.
|
the device is plugged in, you need to create a ``MODULE_DEVICE_TABLE``.
|
||||||
The following code tells the hotplug scripts that this module supports a
|
The following code tells the hotplug scripts that this module supports a
|
||||||
single device with a specific vendor and product ID:
|
single device with a specific vendor and product ID::
|
||||||
|
|
||||||
::
|
|
||||||
|
|
||||||
/* table of devices that work with this driver */
|
/* table of devices that work with this driver */
|
||||||
static struct usb_device_id skel_table [] = {
|
static struct usb_device_id skel_table [] = {
|
||||||
{ USB_DEVICE(USB_SKEL_VENDOR_ID, USB_SKEL_PRODUCT_ID) },
|
{ USB_DEVICE(USB_SKEL_VENDOR_ID, USB_SKEL_PRODUCT_ID) },
|
||||||
{ } /* Terminating entry */
|
{ } /* Terminating entry */
|
||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE (usb, skel_table);
|
MODULE_DEVICE_TABLE (usb, skel_table);
|
||||||
|
|
||||||
|
|
||||||
There are other macros that can be used in describing a usb_device_id
|
There are other macros that can be used in describing a struct
|
||||||
for drivers that support a whole class of USB drivers. See usb.h for
|
:c:type:`usb_device_id` for drivers that support a whole class of USB
|
||||||
more information on this.
|
drivers. See :ref:`usb.h <usb_header>` for more information on this.
|
||||||
|
|
||||||
Device operation
|
Device operation
|
||||||
================
|
================
|
||||||
|
|
||||||
When a device is plugged into the USB bus that matches the device ID
|
When a device is plugged into the USB bus that matches the device ID
|
||||||
pattern that your driver registered with the USB core, the probe
|
pattern that your driver registered with the USB core, the probe
|
||||||
function is called. The usb_device structure, interface number and the
|
function is called. The :c:type:`usb_device` structure, interface number and
|
||||||
interface ID are passed to the function:
|
the interface ID are passed to the function::
|
||||||
|
|
||||||
::
|
|
||||||
|
|
||||||
static int skel_probe(struct usb_interface *interface,
|
static int skel_probe(struct usb_interface *interface,
|
||||||
const struct usb_device_id *id)
|
const struct usb_device_id *id)
|
||||||
|
|
||||||
|
|
||||||
The driver now needs to verify that this device is actually one that it
|
The driver now needs to verify that this device is actually one that it
|
||||||
@ -166,16 +158,14 @@ any private data that has been allocated at this time and to shut down
|
|||||||
any pending urbs that are in the USB system.
|
any pending urbs that are in the USB system.
|
||||||
|
|
||||||
Now that the device is plugged into the system and the driver is bound
|
Now that the device is plugged into the system and the driver is bound
|
||||||
to the device, any of the functions in the file_operations structure
|
to the device, any of the functions in the :c:type:`file_operations` structure
|
||||||
that were passed to the USB subsystem will be called from a user program
|
that were passed to the USB subsystem will be called from a user program
|
||||||
trying to talk to the device. The first function called will be open, as
|
trying to talk to the device. The first function called will be open, as
|
||||||
the program tries to open the device for I/O. We increment our private
|
the program tries to open the device for I/O. We increment our private
|
||||||
usage count and save a pointer to our internal structure in the file
|
usage count and save a pointer to our internal structure in the file
|
||||||
structure. This is done so that future calls to file operations will
|
structure. This is done so that future calls to file operations will
|
||||||
enable the driver to determine which device the user is addressing. All
|
enable the driver to determine which device the user is addressing. All
|
||||||
of this is done with the following code:
|
of this is done with the following code::
|
||||||
|
|
||||||
::
|
|
||||||
|
|
||||||
/* increment our usage count for the module */
|
/* increment our usage count for the module */
|
||||||
++skel->open_count;
|
++skel->open_count;
|
||||||
@ -185,16 +175,14 @@ of this is done with the following code:
|
|||||||
|
|
||||||
|
|
||||||
After the open function is called, the read and write functions are
|
After the open function is called, the read and write functions are
|
||||||
called to receive and send data to the device. In the skel_write
|
called to receive and send data to the device. In the ``skel_write``
|
||||||
function, we receive a pointer to some data that the user wants to send
|
function, we receive a pointer to some data that the user wants to send
|
||||||
to the device and the size of the data. The function determines how much
|
to the device and the size of the data. The function determines how much
|
||||||
data it can send to the device based on the size of the write urb it has
|
data it can send to the device based on the size of the write urb it has
|
||||||
created (this size depends on the size of the bulk out end point that
|
created (this size depends on the size of the bulk out end point that
|
||||||
the device has). Then it copies the data from user space to kernel
|
the device has). Then it copies the data from user space to kernel
|
||||||
space, points the urb to the data and submits the urb to the USB
|
space, points the urb to the data and submits the urb to the USB
|
||||||
subsystem. This can be seen in the following code:
|
subsystem. This can be seen in the following code::
|
||||||
|
|
||||||
::
|
|
||||||
|
|
||||||
/* we can only write as much as 1 urb will hold */
|
/* we can only write as much as 1 urb will hold */
|
||||||
bytes_written = (count > skel->bulk_out_size) ? skel->bulk_out_size : count;
|
bytes_written = (count > skel->bulk_out_size) ? skel->bulk_out_size : count;
|
||||||
@ -204,68 +192,64 @@ subsystem. This can be seen in the following code:
|
|||||||
|
|
||||||
/* set up our urb */
|
/* set up our urb */
|
||||||
usb_fill_bulk_urb(skel->write_urb,
|
usb_fill_bulk_urb(skel->write_urb,
|
||||||
skel->dev,
|
skel->dev,
|
||||||
usb_sndbulkpipe(skel->dev, skel->bulk_out_endpointAddr),
|
usb_sndbulkpipe(skel->dev, skel->bulk_out_endpointAddr),
|
||||||
skel->write_urb->transfer_buffer,
|
skel->write_urb->transfer_buffer,
|
||||||
bytes_written,
|
bytes_written,
|
||||||
skel_write_bulk_callback,
|
skel_write_bulk_callback,
|
||||||
skel);
|
skel);
|
||||||
|
|
||||||
/* send the data out the bulk port */
|
/* send the data out the bulk port */
|
||||||
result = usb_submit_urb(skel->write_urb);
|
result = usb_submit_urb(skel->write_urb);
|
||||||
if (result) {
|
if (result) {
|
||||||
err("Failed submitting write urb, error %d", result);
|
err("Failed submitting write urb, error %d", result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
When the write urb is filled up with the proper information using the
|
When the write urb is filled up with the proper information using the
|
||||||
usb_fill_bulk_urb function, we point the urb's completion callback to
|
:c:func:`usb_fill_bulk_urb` function, we point the urb's completion callback
|
||||||
call our own skel_write_bulk_callback function. This function is
|
to call our own ``skel_write_bulk_callback`` function. This function is
|
||||||
called when the urb is finished by the USB subsystem. The callback
|
called when the urb is finished by the USB subsystem. The callback
|
||||||
function is called in interrupt context, so caution must be taken not to
|
function is called in interrupt context, so caution must be taken not to
|
||||||
do very much processing at that time. Our implementation of
|
do very much processing at that time. Our implementation of
|
||||||
skel_write_bulk_callback merely reports if the urb was completed
|
``skel_write_bulk_callback`` merely reports if the urb was completed
|
||||||
successfully or not and then returns.
|
successfully or not and then returns.
|
||||||
|
|
||||||
The read function works a bit differently from the write function in
|
The read function works a bit differently from the write function in
|
||||||
that we do not use an urb to transfer data from the device to the
|
that we do not use an urb to transfer data from the device to the
|
||||||
driver. Instead we call the usb_bulk_msg function, which can be used
|
driver. Instead we call the :c:func:`usb_bulk_msg` function, which can be used
|
||||||
to send or receive data from a device without having to create urbs and
|
to send or receive data from a device without having to create urbs and
|
||||||
handle urb completion callback functions. We call the usb_bulk_msg
|
handle urb completion callback functions. We call the :c:func:`usb_bulk_msg`
|
||||||
function, giving it a buffer into which to place any data received from
|
function, giving it a buffer into which to place any data received from
|
||||||
the device and a timeout value. If the timeout period expires without
|
the device and a timeout value. If the timeout period expires without
|
||||||
receiving any data from the device, the function will fail and return an
|
receiving any data from the device, the function will fail and return an
|
||||||
error message. This can be shown with the following code:
|
error message. This can be shown with the following code::
|
||||||
|
|
||||||
::
|
|
||||||
|
|
||||||
/* do an immediate bulk read to get data from the device */
|
/* do an immediate bulk read to get data from the device */
|
||||||
retval = usb_bulk_msg (skel->dev,
|
retval = usb_bulk_msg (skel->dev,
|
||||||
usb_rcvbulkpipe (skel->dev,
|
usb_rcvbulkpipe (skel->dev,
|
||||||
skel->bulk_in_endpointAddr),
|
skel->bulk_in_endpointAddr),
|
||||||
skel->bulk_in_buffer,
|
skel->bulk_in_buffer,
|
||||||
skel->bulk_in_size,
|
skel->bulk_in_size,
|
||||||
&count, HZ*10);
|
&count, HZ*10);
|
||||||
/* if the read was successful, copy the data to user space */
|
/* if the read was successful, copy the data to user space */
|
||||||
if (!retval) {
|
if (!retval) {
|
||||||
if (copy_to_user (buffer, skel->bulk_in_buffer, count))
|
if (copy_to_user (buffer, skel->bulk_in_buffer, count))
|
||||||
retval = -EFAULT;
|
retval = -EFAULT;
|
||||||
else
|
else
|
||||||
retval = count;
|
retval = count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
The usb_bulk_msg function can be very useful for doing single reads or
|
The :c:func:`usb_bulk_msg` function can be very useful for doing single reads
|
||||||
writes to a device; however, if you need to read or write constantly to
|
or writes to a device; however, if you need to read or write constantly to
|
||||||
a device, it is recommended to set up your own urbs and submit them to
|
a device, it is recommended to set up your own urbs and submit them to
|
||||||
the USB subsystem.
|
the USB subsystem.
|
||||||
|
|
||||||
When the user program releases the file handle that it has been using to
|
When the user program releases the file handle that it has been using to
|
||||||
talk to the device, the release function in the driver is called. In
|
talk to the device, the release function in the driver is called. In
|
||||||
this function we decrement our private usage count and wait for possible
|
this function we decrement our private usage count and wait for possible
|
||||||
pending writes:
|
pending writes::
|
||||||
|
|
||||||
::
|
|
||||||
|
|
||||||
/* decrement our usage count for the device */
|
/* decrement our usage count for the device */
|
||||||
--skel->open_count;
|
--skel->open_count;
|
||||||
@ -276,20 +260,18 @@ handle smoothly is the fact that the USB device may be removed from the
|
|||||||
system at any point in time, even if a program is currently talking to
|
system at any point in time, even if a program is currently talking to
|
||||||
it. It needs to be able to shut down any current reads and writes and
|
it. It needs to be able to shut down any current reads and writes and
|
||||||
notify the user-space programs that the device is no longer there. The
|
notify the user-space programs that the device is no longer there. The
|
||||||
following code (function :c:func:`skel_delete()`) is an example of
|
following code (function ``skel_delete``) is an example of how to do
|
||||||
how to do this:
|
this::
|
||||||
|
|
||||||
::
|
|
||||||
|
|
||||||
static inline void skel_delete (struct usb_skel *dev)
|
static inline void skel_delete (struct usb_skel *dev)
|
||||||
{
|
{
|
||||||
kfree (dev->bulk_in_buffer);
|
kfree (dev->bulk_in_buffer);
|
||||||
if (dev->bulk_out_buffer != NULL)
|
if (dev->bulk_out_buffer != NULL)
|
||||||
usb_free_coherent (dev->udev, dev->bulk_out_size,
|
usb_free_coherent (dev->udev, dev->bulk_out_size,
|
||||||
dev->bulk_out_buffer,
|
dev->bulk_out_buffer,
|
||||||
dev->write_urb->transfer_dma);
|
dev->write_urb->transfer_dma);
|
||||||
usb_free_urb (dev->write_urb);
|
usb_free_urb (dev->write_urb);
|
||||||
kfree (dev);
|
kfree (dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -297,10 +279,10 @@ If a program currently has an open handle to the device, we reset the
|
|||||||
flag ``device_present``. For every read, write, release and other
|
flag ``device_present``. For every read, write, release and other
|
||||||
functions that expect a device to be present, the driver first checks
|
functions that expect a device to be present, the driver first checks
|
||||||
this flag to see if the device is still present. If not, it releases
|
this flag to see if the device is still present. If not, it releases
|
||||||
that the device has disappeared, and a -ENODEV error is returned to the
|
that the device has disappeared, and a ``-ENODEV`` error is returned to the
|
||||||
user-space program. When the release function is eventually called, it
|
user-space program. When the release function is eventually called, it
|
||||||
determines if there is no device and if not, it does the cleanup that
|
determines if there is no device and if not, it does the cleanup that
|
||||||
the skel_disconnect function normally does if there are no open files
|
the ``skel_disconnect`` function normally does if there are no open files
|
||||||
on the device (see Listing 5).
|
on the device (see Listing 5).
|
||||||
|
|
||||||
Isochronous Data
|
Isochronous Data
|
||||||
@ -327,13 +309,13 @@ Resources
|
|||||||
=========
|
=========
|
||||||
|
|
||||||
The Linux USB Project:
|
The Linux USB Project:
|
||||||
`http://www.linux-usb.org/ <http://www.linux-usb.org>`__
|
http://www.linux-usb.org/
|
||||||
|
|
||||||
Linux Hotplug Project:
|
Linux Hotplug Project:
|
||||||
`http://linux-hotplug.sourceforge.net/ <http://linux-hotplug.sourceforge.net>`__
|
http://linux-hotplug.sourceforge.net/
|
||||||
|
|
||||||
Linux USB Working Devices List:
|
Linux USB Working Devices List:
|
||||||
`http://www.qbik.ch/usb/devices/ <http://www.qbik.ch/usb/devices>`__
|
http://www.qbik.ch/usb/devices/
|
||||||
|
|
||||||
linux-usb-devel Mailing List Archives:
|
linux-usb-devel Mailing List Archives:
|
||||||
http://marc.theaimsgroup.com/?l=linux-usb-devel
|
http://marc.theaimsgroup.com/?l=linux-usb-devel
|
||||||
|
Loading…
Reference in New Issue
Block a user