source: mainline/uspace/lib/usbhost/src/bandwidth.c@ 66c16b0

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 66c16b0 was 6832245, checked in by Ondřej Hlavatý <aearsis@…>, 8 years ago

usbhost bus: refactor the bus ops

This way, method names better represent the entity it is working with.
Their semantics was shifted a bit.

Regarding the tree of structures:

bus ← device ← endpoint ← batch

Previously, devices were kept in DDF function nodes, and endpoints had
pointer to the bus and device. Now, devices have pointer to bus,
endpoints don't.

Pointer to hcd_t in bus is WIP, and will be removed.

  • Property mode set to 100644
File size: 4.0 KB
Line 
1/*
2 * Copyright (c) 2011 Jan Vesely
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28/** @addtogroup libusbhost
29 * @{
30 */
31/** @file
32 *
33 * Bandwidth calculation functions. Shared among uhci, ohci and ehci drivers.
34 */
35
36#include <assert.h>
37#include <stdlib.h>
38
39#include "endpoint.h"
40#include "bus.h"
41
42#include "bandwidth.h"
43
44/** Calculate bandwidth that needs to be reserved for communication with EP.
45 * Calculation follows USB 1.1 specification.
46 * @param ep Registered endpoint
47 * @param size Number of bytes to transfer.
48 * @param max_packet_size Maximum bytes in one packet.
49 */
50ssize_t bandwidth_count_usb11(endpoint_t *ep, size_t size)
51{
52 assert(ep);
53 assert(ep->device);
54
55 const usb_transfer_type_t type = ep->transfer_type;
56
57 /* We care about bandwidth only for interrupt and isochronous. */
58 if ((type != USB_TRANSFER_INTERRUPT)
59 && (type != USB_TRANSFER_ISOCHRONOUS)) {
60 return 0;
61 }
62
63 const size_t max_packet_size = ep->max_packet_size;
64
65 const unsigned packet_count =
66 (size + max_packet_size - 1) / max_packet_size;
67 /* TODO: It may be that ISO and INT transfers use only one packet per
68 * transaction, but I did not find text in USB spec to confirm this */
69 /* NOTE: All data packets will be considered to be max_packet_size */
70 switch (ep->device->speed)
71 {
72 case USB_SPEED_LOW:
73 assert(type == USB_TRANSFER_INTERRUPT);
74 /* Protocol overhead 13B
75 * (3 SYNC bytes, 3 PID bytes, 2 Endpoint + CRC bytes, 2
76 * CRC bytes, and a 3-byte interpacket delay)
77 * see USB spec page 45-46. */
78 /* Speed penalty 8: low speed is 8-times slower*/
79 return packet_count * (13 + max_packet_size) * 8;
80 case USB_SPEED_FULL:
81 /* Interrupt transfer overhead see above
82 * or page 45 of USB spec */
83 if (type == USB_TRANSFER_INTERRUPT)
84 return packet_count * (13 + max_packet_size);
85
86 assert(type == USB_TRANSFER_ISOCHRONOUS);
87 /* Protocol overhead 9B
88 * (2 SYNC bytes, 2 PID bytes, 2 Endpoint + CRC bytes, 2 CRC
89 * bytes, and a 1-byte interpacket delay)
90 * see USB spec page 42 */
91 return packet_count * (9 + max_packet_size);
92 default:
93 return 0;
94 }
95}
96
97/** Calculate bandwidth that needs to be reserved for communication with EP.
98 * Calculation follows USB 2.0 specification.
99 * @param speed Device's speed.
100 * @param type Type of the transfer.
101 * @param size Number of byte to transfer.
102 * @param max_packet_size Maximum bytes in one packet.
103 */
104ssize_t bandwidth_count_usb20(endpoint_t *ep, size_t size)
105{
106 assert(ep);
107
108 const usb_transfer_type_t type = ep->transfer_type;
109
110 /* We care about bandwidth only for interrupt and isochronous. */
111 if ((type != USB_TRANSFER_INTERRUPT)
112 && (type != USB_TRANSFER_ISOCHRONOUS)) {
113 return 0;
114 }
115 //TODO Implement
116 return 0;
117}
Note: See TracBrowser for help on using the repository browser.