A The present invention relates to a host and a device connected for serial data communication. In particular it relates to the extension of the Universal Serial Bus (USB) Standard “Universal Serial Bus Specification Revision 2.2”.
The inventors have identified an area in which the current USB Specification could be improved. Currently, when a USB host sends data to a destination in an attached USB device, the device's processor must be interrupted to transfer the data from the buffer in which it is temporarily stored when received to its destination. The USB host can therefore add to the processing load of the attached device. Thus a data transfer may result in the hanging of an application running on the processor or other undesirable affects.
It would be desirable to improve the mechanism by which data is transferred between host and device.
It would be desirable to provide a mechanism by which the host can reduce undesirable consequences in the device resulting from a data transfer.
According to a first aspect of the invention there is provided a device for attachment to a host for serial data communication comprising: means for transferring to the host a predetermined data structure indicating whether or not the device supports direct memory access.
The means for transferring may be responsive to a request from the host, for example, in USB, the device is polled by the host. The predetermined data structure may be one of a plurality of data structures transferred at one time to the host. These data structures preferably provide the capabilities of the device to the host. The device may be a USB device, the host a USB host and the data structures may be a series of USB descriptors, provided at enumeration of the device. The predetermined data structure may be a non-standard descriptor that extends another, preferably preceding, descriptor.
According to a second aspect of the present invention there is provided a host for attachment to a device for serial data communication comprising:
transfer means for transferring a predetermined data structure identifying whether or not the device supports direct memory access, from the device to the host.
The transfer means may be arranged to request the device to send at least the predetermined data structure, for example, in USB the device is polled by the host. The predetermined data structure may be one of a plurality of data structures transferred at one time to the host These data structures preferably provide the capabilities of the device to the host. The device may be a USB device, the host a USB host and the data structures may be a series of USB descriptors, provided at enumeration of the device. The predetermined data structure may be a non-standard descriptor that extends another, preferably preceding, descriptor. The host may further comprise allocation means for allocating tasks relating to data transfer from/to the device in dependence upon the content of the predetermined data structure.
According to a third aspect of the present invention there is provided a system comprising a host, a device and a serial data interconnect between the host and device, comprising: means for transferring, from the device to the host via the serial data interconnect, a predetermined data structure indicating whether or not the device supports direct memory access.
Embodiments of the invention provide a mechanism by which a host determines whether an attached device supports direct memory access (DMA) for certain functions. With this information, the host can choose whether or not to communicate with an interface/endpoint of the device which supports DMA or with an interface/endpoint of the device which does not support DMA This allows the host flexibility in scheduling the transfer of data across the bus connecting the host and device and allows the host to optimise use of the device. The use by the host of an interface/endpoint which supports DMA, reduces the loading on the device's processor, as processor interrupts are no longer required to transfer the data to its destination. This is particularly advantageous for mobile devices, such as mobile cellular telephones, which may have low power processors that are used to simultaneously run user applications.
In most USB devices, if DMA is supported, it would be supported by both the inbound and the outbound endpoints. In a preferred embodiment, the host determines if an interface supports DMA, it being assumed that if the interface supports DMA then both the inbound and outbound endpoints support DMA. This provides for a simplified implementation of the invention.
For a better understanding of the present invention and to understand how the same may be brought into effect, reference will now be made by way of example only to the accompanying drawings in which:
The Universal serial bus (USB) is a cable bus that supports data exchange between a host computer 20 and a wide range of simultaneously accessible peripherals 14. The attached peripherals 14 share USB bandwidth through a host-scheduled, token-base protocol. The bus 12 allows peripherals to be attached, configured, used and detached while the host and other peripherals are in operation.
In this example, the device 14 comprises an interface 27 which connects to the interconnect 12 a bus 23 that connects the interface 27 to a processor 25 and a memory 29. The interface may be able to access the memory 29 for reading or writing directly using direct memory access (DMA) or, alternatively, using the bus 23 which is under the control of the processor 25.
The USB system 10 transfers data in bit serial format between the USB host 16 and the USB device 14. There is only one host in a USB system and it is master of the bus. The USB is a polled bus and the Host initiates all data transfers which are either a read from or a write to an endpoint.
An endpoint is a source or sink of data. Each endpoint has a memory buffer which buffers the data before it proceeds to its ultimate destination. The host can sent data to the memory buffer or request data from the memory buffer.
Data transfer between a host 16 and a device 14, occurs between the host 16 and a data endpoint and is referred to as a pipe. The pipe determines the direction of data flow, the type of data flow e.g. bulk, isochronous or control, and how much bandwidth is allocated to the data transfer.
When the USB device 14 is initially connected to the system 10, bus enumeration occurs. This is the process by which the device is allocated an address and data is sent from the device to the host that identifies the capabilities of the device and enables communications between the host and device.
The USB host 16 communicates with a USB device 14 by sending packets to the USB device 14 addressed using the assigned address.
All USB devices must support a specially designated pipe at endpoint zero. Associated with endpoint zero is the information required to completely describe the device to the host on enumeration. This information includes device, configuration, interface and endpoint descriptors. The descriptors report the attributes of the USB device to the host.
A descriptor is a data structure with a defined format. Each descriptor begins with a byte-wide field that contains the total number of bytes in the descriptor followed by a byte-wide field that identifies the descriptor type.
A device descriptor uniquely identifies the device and informs the host of the number of configurations the device has.
A configuration descriptor informs the host of the devices different possible configurations e.g. self-powered and/or bus powered. It also informs the host of the number of interfaces it has.
Each interface is a grouping of endpoints into a functional group that performs a single feature of the device. For example, in a combined fax/scanner/printer device there would be one interface and one interface descriptor for each of the fax, scanner and printer functions. The fax interface descriptor specifies the inbound endpoint and outbound endpoint used for faxing. The scanner interface descriptor specifies the different endpoints used for scanning. The printer interface descriptor specifies the additional endpoints used for printing.
According to a first embodiment of the invention, a new non-standard DMA descriptor is defined. This descriptor is used to extend the interface descriptor and tells the host whether or not DMA is available on that interface. The DMA descriptor immediately follows the interface descriptor it extends, during the enumeration process.
A DMA descriptor is a data structure with a defined format. It begins with a byte-wide field that contains the total number of bytes in the descriptor followed by a byte-wide field that identifies the descriptor type.
The format of the descriptor is as follows:
The value for bFunctionLength is determined by the Universal Serial Bus Specification. The value for the bDescriptorType is also defined by the Universal Serial Bus Specification and it identifies the Communication Device Class. The bDescriptorSubtype value is one of many defined values in the Communication Device Class which are free to use. It is used to identify the DMA descriptor. The value of bDMAavailable indicates whether or not DMA is supported by the interface (0x00 indicates no DMA, 0x01 indicates DMA is available).
The host uniquely identifies the received descriptor as a DMA descriptor from the bDescriptorType and bDescriptorSubtype fields.
In this embodiment, it is assumed that if an interface supports DMA then each of the endpoints associated with that endpoint also support DMA. The host determines which interfaces are capable of supporting DMA. The host has intelligence capable of assigning different data transfer tasks to different interfaces so that the transfer of data is optimised without overburdening the processor of the device.
According to an alternative embodiment, the DMA descriptor is used to extend an endpoint descriptor instead of an interface descriptor. In this embodiment an endpoint descriptor immediately follows the interface descriptor and the DMA descriptor associated with an endpoint immediately follows and extends its endpoint descriptor. Each endpoint descriptor preferably has an associated DMA descriptor. In this alternative embodiment, it is assumed that whether or not an endpoint of an interface supports DMA is independent of whether or not the other endpoints of the interface support DMA.
Whilst endeavouring in the foregoing specification to draw attention to those features of the invention believed to be of particular importance it should be understood that the Applicant claims protection in respect of any patentable feature or combination of features hereinbefore referred to and/or shown in the drawings whether or not particular emphasis has been placed thereon.
Number | Date | Country | Kind |
---|---|---|---|
0223371.6 | Oct 2002 | GB | national |
Filing Document | Filing Date | Country | Kind | 371c Date |
---|---|---|---|---|
PCT/IB03/04365 | 10/1/2003 | WO | 00 | 10/11/2005 |
Publishing Document | Publishing Date | Country | Kind |
---|---|---|---|
WO2004/034268 | 4/22/2004 | WO | A |
Number | Name | Date | Kind |
---|---|---|---|
5655145 | Chejlava, Jr. et al. | Aug 1997 | A |
5845151 | Story et al. | Dec 1998 | A |
6216183 | Rawlins | Apr 2001 | B1 |
6298396 | Loyer et al. | Oct 2001 | B1 |
6598097 | Daniels et al. | Jul 2003 | B1 |
6898678 | Six et al. | May 2005 | B1 |
7000035 | Uchizono et al. | Feb 2006 | B1 |
20010049755 | Kagan et al. | Dec 2001 | A1 |
20020052987 | Collier | May 2002 | A1 |
20040036911 | Saida | Feb 2004 | A1 |
20040103234 | Zer et al. | May 2004 | A1 |
Number | Date | Country |
---|---|---|
11-88381 | Mar 1999 | JP |
2001-0075581 | Aug 2001 | KR |
WO 0196979 | Dec 2001 | WO |
Number | Date | Country | |
---|---|---|---|
20060101165 A1 | May 2006 | US |