1 / 29

A Cyclic-Executive-Based QoS Guarantee over USB

A Cyclic-Executive-Based QoS Guarantee over USB. Presented by 939607 Yu-Chu Chang. Outlines. Introduction A Real-Time USB System Architecture A Real-Time USB Device Driver Cyclic-Executive-Based Method Period Modification Policy and Admission Control

Download Presentation

A Cyclic-Executive-Based QoS Guarantee over USB

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. A Cyclic-Executive-Based QoS Guarantee over USB Presented by 939607 Yu-Chu Chang

  2. Outlines • Introduction • A Real-Time USB System Architecture • A Real-Time USB Device Driver • Cyclic-Executive-Based Method • Period Modification Policy and Admission Control • Insertions of Endpoint and Transfer Descriptors • Performance Evaluation • Conclusion

  3. Introduction • With the advance of hardware and software technology,computer systems are now very modularized. • Various I/O devices are manufactured and connected to few common interfaces, such as SCSI, USB, and IEEE-1394.

  4. Introduction • USB supports many types of devices: • HID (keyboard, mouse) • Block devices (disks) • Stereo speakers, video cameras etc • Data transfer modes on the USB bus: • Periodic (Isochronous, Interrupt transfers) • Aperiodic (Control, Bulk transfers)

  5. Introduction • Different types of devices require different bandwidths and ways to interact with USB host controllers, where a host controller manages the bandwidth of a USB bus. For example, • a human interface device (HID) demands a periodic but light bus workload. • A storage device requires a best-effort service from the corresponding host controller. • The OS has to manage a number of USB devices simultaneously, devices compete for limited bus bandwidth • So management of USB bandwidth is important if QoS requirements are considered

  6. Introduction • Although the original design of USB does have an interface definition for QoS • According to the USB specifications, isochronous and interrupt transfers could be allocated up to 90% of the total bandwidth of a USB bus. Control transfers could have up to 10% of the total USB bandwidth. Bulk transfers are serviced in a best-effort fashion to utilize the remaining USB bandwidth. • There is little work being done for the QoSguarantee of each device

  7. USB 1.1 bandwidth reservation scheme in each 1ms time frame Start of Frame

  8. Introduction • Main idea of this paper • This paper propose a real-time USB driver architecture, in which a bus bandwidth reservation and scheduling mechanism is proposed to reserve and allocate USB bandwidth according to the QoS requirements of different devices. • A real-time scheduling layer is proposed and implemented in USB drivers to comply with the USB specifications.

  9. The USB communication channel

  10. A Real-Time USB System Architecture • USB subsystems on Linux is a layered architecture

  11. A Real-Time USB System Architecture • The host controller simply handles a memory-resident table called the USB schedule • The USB schedule consists of a number of queues of Transfer Descriptors(TD’s)

  12. A Real-Time USB System Architecture • Each of the transfer modes needs a queue list to link the data-transfer packets, i.e., Transfer Descriptors and Endpoint Descriptors (ED’s), to the corresponding devices • Transfer descriptors (TD): Data structures constructed by the OS to manage devices; USB host controller exercises TDs • where an Endpoint Descriptor is at the head of the Transfer-Descriptor list for each device to record the transfer information regarding the device

  13. The queue list structure of the OHCI USB schedule

  14. A Real-Time USB System Architecture • For bulk and control data-transfers, the host controller maintains a pointer to the head of the Transfer-Descriptor list for each type, as shown in Figure 2. • For interrupt data-transfers, a USB subsystem maintains 32 interrupt entries, which forms a tree structure. Each (internal or leaf) node could be hooked up with a list of Transfer-Descriptors for a device of the interrupt type.

  15. A Real-Time USB System Architecture • The list of Transfer-Descriptors for all isochronous devices is hooked up at the root of the tree structure, as shown in Figure 2. • Each interrupt entry will be visited in every 32ms. When an interrupt entry is visited, all devices with a Transfer-Descriptor list on the path between the interrupt entry and the root will be serviced within 1ms. • In other words, the isochronous queue will be serviced in every 1ms.

  16. A Real-Time USB Device Driver • Cyclic-Executive-Based Method • USB bandwidth reservation methods • The rationale behind this approach is to install a virtually fixed tree structure for Endpoint Descriptor queues to have low run-time overheads. • In order to guarantee the QoS requirements of different devices and to better manage the USB bandwidth, two essential issues must be addressed: • (1) admission control policy (Section 3.2) • (2) the scheduling of Endpoint and Transfer Descriptors (Section 3.3).

  17. A Real-Time USB Device Driver Comparison of two USB driver architecture. (a)the original USB driver architecture. (b)the real-time USB driver architecture.

  18. A Real-Time USB Device Driver

  19. A Real-Time USB Device Driver

  20. A Real-Time USB Device Driver • The tree structure of the TD lists determines the frequencies of the traversing of nodes on paths to the root; device is serviced in 1ms corresponding to the path. • 32 leaf nodes; 63 internal/leaf nodes; 63 different nodes to hookup EDs. • Nodes at ith level are serviced at every 2i ms. • When ED is moved from any node to root node extra protocol overheads will occur

  21. Admission control policy • Because the period modification policy moves all Endpoint Descriptors to the root node, and the root node is serviced for every 1ms, all requests are schedulable if the services of all Endpoint Descriptors could be done within 1ms. Because only 1500 bytes could be transferred within every 1ms under USB1.1, the total number of bytes for the services of all Endpoint Descriptors should be no more than 1500.

  22. A Real-Time USB Device Driver • Insertions of Endpoint and Transfer Descriptors • The objective is to move (and modify) Endpoint and Transfer Descriptors to nodes of larger heights to minimize the protocol overheads and the additional bandwidth requirements due to the period modification policy

  23. A Real-Time USB Device Driver • There are two basic guidelines for this ED/TD reinsertion policy • The first guideline is that the destination node of an original ED (and its TD’s) should not have a polling period longer than the period of the corresponding request. • The second guideline is that the ED/TD reinsertion policy should meet the 1ms time frame for each path of a tree structure

  24. A Real-Time USB Device Driver 60 1400 (+120)

  25. Performance Evaluation Acceptance ratios under different period ranges and different admission control policies.

  26. Performance Evaluation USB bandwidth utilizations v.s. requests periods distribution

  27. Performance Evaluation

  28. Performance Evaluation

  29. Conclusion • This paper proposed a cyclic-executive-based methodology to guarantee the QoS requirements of USB devices. • where a fixed polling binary tree is adopted for USB bandwidth scheduling. • A bandwidth reservation algorithm is proposed to partition available USB bandwidth among devices which need different attentions from the system. • For the future research, explore the USB bandwidth reservation for USB 2.0 which supports transfer rate up to 480 bits per second.

More Related