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 | * Device manager structure and functions (implementation).
|
---|
33 | */
|
---|
34 | #include <assert.h>
|
---|
35 | #include <errno.h>
|
---|
36 | #include <usb/debug.h>
|
---|
37 | #include <usb/host/usb_device_manager.h>
|
---|
38 |
|
---|
39 | /** Get a free USB address
|
---|
40 | *
|
---|
41 | * @param[in] instance Device manager structure to use.
|
---|
42 | * @return Free address, or error code.
|
---|
43 | */
|
---|
44 | static usb_address_t usb_device_manager_get_free_address(
|
---|
45 | usb_device_manager_t *instance)
|
---|
46 | {
|
---|
47 |
|
---|
48 | usb_address_t new_address = instance->last_address;
|
---|
49 | do {
|
---|
50 | new_address = (new_address + 1) % USB_ADDRESS_COUNT;
|
---|
51 | if (new_address == USB_ADDRESS_DEFAULT)
|
---|
52 | new_address = 1;
|
---|
53 | if (new_address == instance->last_address) {
|
---|
54 | return ENOSPC;
|
---|
55 | }
|
---|
56 | } while (instance->devices[new_address].occupied);
|
---|
57 |
|
---|
58 | assert(new_address != USB_ADDRESS_DEFAULT);
|
---|
59 | instance->last_address = new_address;
|
---|
60 |
|
---|
61 | return new_address;
|
---|
62 | }
|
---|
63 | /*----------------------------------------------------------------------------*/
|
---|
64 | /** Initialize device manager structure.
|
---|
65 | *
|
---|
66 | * @param[in] instance Memory place to initialize.
|
---|
67 | * @param[in] max_speed Maximum allowed USB speed of devices (inclusive).
|
---|
68 | *
|
---|
69 | * Set all values to false/0.
|
---|
70 | */
|
---|
71 | void usb_device_manager_init(
|
---|
72 | usb_device_manager_t *instance, usb_speed_t max_speed)
|
---|
73 | {
|
---|
74 | assert(instance);
|
---|
75 | for (unsigned i = 0; i < USB_ADDRESS_COUNT; ++i) {
|
---|
76 | instance->devices[i].occupied = false;
|
---|
77 | instance->devices[i].handle = 0;
|
---|
78 | instance->devices[i].speed = USB_SPEED_MAX;
|
---|
79 | }
|
---|
80 | instance->last_address = 1;
|
---|
81 | instance->max_speed = max_speed;
|
---|
82 | fibril_mutex_initialize(&instance->guard);
|
---|
83 | }
|
---|
84 | /*----------------------------------------------------------------------------*/
|
---|
85 | /** Request USB address.
|
---|
86 | * @param instance usb_device_manager
|
---|
87 | * @param address Pointer to requested address value, place to store new address
|
---|
88 | * @parma strict Fail if the requested address is not available.
|
---|
89 | * @return Error code.
|
---|
90 | * @note Default address is only available in strict mode.
|
---|
91 | */
|
---|
92 | int usb_device_manager_request_address(usb_device_manager_t *instance,
|
---|
93 | usb_address_t *address, bool strict, usb_speed_t speed)
|
---|
94 | {
|
---|
95 | assert(instance);
|
---|
96 | assert(address);
|
---|
97 | if (speed > instance->max_speed)
|
---|
98 | return ENOTSUP;
|
---|
99 |
|
---|
100 | if ((*address) < 0 || (*address) >= USB_ADDRESS_COUNT)
|
---|
101 | return EINVAL;
|
---|
102 |
|
---|
103 | fibril_mutex_lock(&instance->guard);
|
---|
104 | /* Only grant default address to strict requests */
|
---|
105 | if (( (*address) == USB_ADDRESS_DEFAULT) && !strict) {
|
---|
106 | *address = instance->last_address;
|
---|
107 | }
|
---|
108 |
|
---|
109 | if (instance->devices[*address].occupied) {
|
---|
110 | if (strict) {
|
---|
111 | fibril_mutex_unlock(&instance->guard);
|
---|
112 | return ENOENT;
|
---|
113 | }
|
---|
114 | *address = usb_device_manager_get_free_address(instance);
|
---|
115 | }
|
---|
116 | assert(instance->devices[*address].occupied == false);
|
---|
117 | assert(instance->devices[*address].handle == 0);
|
---|
118 | assert(*address != USB_ADDRESS_DEFAULT || strict);
|
---|
119 |
|
---|
120 | instance->devices[*address].occupied = true;
|
---|
121 | instance->devices[*address].speed = speed;
|
---|
122 |
|
---|
123 | fibril_mutex_unlock(&instance->guard);
|
---|
124 | return EOK;
|
---|
125 | }
|
---|
126 | /*----------------------------------------------------------------------------*/
|
---|
127 | /** Bind USB address to devman handle.
|
---|
128 | *
|
---|
129 | * @param[in] instance Device manager structure to use.
|
---|
130 | * @param[in] address Device address
|
---|
131 | * @param[in] handle Devman handle of the device.
|
---|
132 | * @return Error code.
|
---|
133 | * @note Won't accept binding for default address.
|
---|
134 | */
|
---|
135 | int usb_device_manager_bind_address(usb_device_manager_t *instance,
|
---|
136 | usb_address_t address, devman_handle_t handle)
|
---|
137 | {
|
---|
138 | if ((address <= 0) || (address >= USB_ADDRESS_COUNT)) {
|
---|
139 | return EINVAL;
|
---|
140 | }
|
---|
141 | assert(instance);
|
---|
142 |
|
---|
143 | fibril_mutex_lock(&instance->guard);
|
---|
144 | /* Not reserved */
|
---|
145 | if (!instance->devices[address].occupied) {
|
---|
146 | fibril_mutex_unlock(&instance->guard);
|
---|
147 | return ENOENT;
|
---|
148 | }
|
---|
149 | /* Already bound */
|
---|
150 | if (instance->devices[address].handle != 0) {
|
---|
151 | fibril_mutex_unlock(&instance->guard);
|
---|
152 | return EEXISTS;
|
---|
153 | }
|
---|
154 | instance->devices[address].handle = handle;
|
---|
155 | fibril_mutex_unlock(&instance->guard);
|
---|
156 | return EOK;
|
---|
157 | }
|
---|
158 | /*----------------------------------------------------------------------------*/
|
---|
159 | /** Release used USB address.
|
---|
160 | *
|
---|
161 | * @param[in] instance Device manager structure to use.
|
---|
162 | * @param[in] address Device address
|
---|
163 | * @return Error code.
|
---|
164 | */
|
---|
165 | int usb_device_manager_release_address(
|
---|
166 | usb_device_manager_t *instance, usb_address_t address)
|
---|
167 | {
|
---|
168 | if ((address < 0) || (address >= USB_ADDRESS_COUNT)) {
|
---|
169 | return EINVAL;
|
---|
170 | }
|
---|
171 | assert(instance);
|
---|
172 |
|
---|
173 | fibril_mutex_lock(&instance->guard);
|
---|
174 | if (!instance->devices[address].occupied) {
|
---|
175 | fibril_mutex_unlock(&instance->guard);
|
---|
176 | return ENOENT;
|
---|
177 | }
|
---|
178 |
|
---|
179 | instance->devices[address].occupied = false;
|
---|
180 | instance->devices[address].handle = 0;
|
---|
181 | fibril_mutex_unlock(&instance->guard);
|
---|
182 | return EOK;
|
---|
183 | }
|
---|
184 | /*----------------------------------------------------------------------------*/
|
---|
185 | /** Find USB address associated with the device.
|
---|
186 | *
|
---|
187 | * @param[in] instance Device manager structure to use.
|
---|
188 | * @param[in] handle Devman handle of the device seeking its address.
|
---|
189 | * @return USB Address, or error code.
|
---|
190 | */
|
---|
191 | usb_address_t usb_device_manager_find_address(
|
---|
192 | usb_device_manager_t *instance, devman_handle_t handle)
|
---|
193 | {
|
---|
194 | assert(instance);
|
---|
195 | fibril_mutex_lock(&instance->guard);
|
---|
196 | for (usb_address_t address = 1; address <= USB11_ADDRESS_MAX; ++address)
|
---|
197 | {
|
---|
198 | if (instance->devices[address].handle == handle) {
|
---|
199 | assert(instance->devices[address].occupied);
|
---|
200 | fibril_mutex_unlock(&instance->guard);
|
---|
201 | return address;
|
---|
202 | }
|
---|
203 | }
|
---|
204 | fibril_mutex_unlock(&instance->guard);
|
---|
205 | return ENOENT;
|
---|
206 | }
|
---|
207 | /*----------------------------------------------------------------------------*/
|
---|
208 | /** Find devman handle and speed assigned to USB address.
|
---|
209 | *
|
---|
210 | * @param[in] instance Device manager structure to use.
|
---|
211 | * @param[in] address Address the caller wants to find.
|
---|
212 | * @param[out] handle Where to store found handle.
|
---|
213 | * @param[out] speed Assigned speed.
|
---|
214 | * @return Error code.
|
---|
215 | */
|
---|
216 | int usb_device_manager_get_info_by_address(usb_device_manager_t *instance,
|
---|
217 | usb_address_t address, devman_handle_t *handle, usb_speed_t *speed)
|
---|
218 | {
|
---|
219 | assert(instance);
|
---|
220 | if ((address < 0) || (address >= USB_ADDRESS_COUNT)) {
|
---|
221 | return EINVAL;
|
---|
222 | }
|
---|
223 |
|
---|
224 | fibril_mutex_lock(&instance->guard);
|
---|
225 | if (!instance->devices[address].occupied) {
|
---|
226 | fibril_mutex_unlock(&instance->guard);
|
---|
227 | return ENOENT;
|
---|
228 | }
|
---|
229 |
|
---|
230 | if (handle != NULL) {
|
---|
231 | *handle = instance->devices[address].handle;
|
---|
232 | }
|
---|
233 | if (speed != NULL) {
|
---|
234 | *speed = instance->devices[address].speed;
|
---|
235 | }
|
---|
236 |
|
---|
237 | fibril_mutex_unlock(&instance->guard);
|
---|
238 | return EOK;
|
---|
239 | }
|
---|
240 | /**
|
---|
241 | * @}
|
---|
242 | */
|
---|