[e40b9f00] | 1 | /*
|
---|
| 2 | * Copyright (c) 2011 Vojtech Horky
|
---|
| 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 |
|
---|
[160b75e] | 29 | /** @addtogroup libusbdev
|
---|
[e40b9f00] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | * Functions needed by hub drivers.
|
---|
| 34 | */
|
---|
[7d521e24] | 35 | #include <usb/dev/hub.h>
|
---|
| 36 | #include <usb/dev/pipes.h>
|
---|
| 37 | #include <usb/dev/request.h>
|
---|
| 38 | #include <usb/dev/recognise.h>
|
---|
[fb422312] | 39 | #include <usb/debug.h>
|
---|
[e40b9f00] | 40 | #include <usbhc_iface.h>
|
---|
| 41 | #include <errno.h>
|
---|
[eb1a2f4] | 42 | #include <assert.h>
|
---|
[b6c9e1e] | 43 | #include <usb/debug.h>
|
---|
[5f94a0c] | 44 | #include <time.h>
|
---|
[79ae36dd] | 45 | #include <async.h>
|
---|
[e40b9f00] | 46 |
|
---|
[1c258d1] | 47 | /** How much time to wait between attempts to register endpoint 0:0.
|
---|
| 48 | * The value is based on typical value for port reset + some overhead.
|
---|
| 49 | */
|
---|
| 50 | #define ENDPOINT_0_0_REGISTER_ATTEMPT_DELAY_USEC (1000 * (10 + 2))
|
---|
| 51 |
|
---|
[e40b9f00] | 52 | /** Check that HC connection is alright.
|
---|
| 53 | *
|
---|
| 54 | * @param conn Connection to be checked.
|
---|
| 55 | */
|
---|
| 56 | #define CHECK_CONNECTION(conn) \
|
---|
| 57 | do { \
|
---|
| 58 | assert((conn)); \
|
---|
| 59 | if (!usb_hc_connection_is_opened((conn))) { \
|
---|
[0d103aef] | 60 | usb_log_error("Connection not open.\n"); \
|
---|
| 61 | return ENOTCONN; \
|
---|
[e40b9f00] | 62 | } \
|
---|
| 63 | } while (false)
|
---|
| 64 |
|
---|
| 65 | /** Ask host controller for free address assignment.
|
---|
| 66 | *
|
---|
| 67 | * @param connection Opened connection to host controller.
|
---|
[67f55e7b] | 68 | * @param preferred Preferred SUB address.
|
---|
| 69 | * @param strict Fail if the preferred address is not avialable.
|
---|
[bc1c6fb] | 70 | * @param speed Speed of the new device (device that will be assigned
|
---|
| 71 | * the returned address).
|
---|
[e40b9f00] | 72 | * @return Assigned USB address or negative error code.
|
---|
| 73 | */
|
---|
[6427cf67] | 74 | usb_address_t usb_hc_request_address(usb_hc_connection_t *connection,
|
---|
[67f55e7b] | 75 | usb_address_t preferred, bool strict, usb_speed_t speed)
|
---|
[e40b9f00] | 76 | {
|
---|
| 77 | CHECK_CONNECTION(connection);
|
---|
[02fc5c4] | 78 |
|
---|
[79ae36dd] | 79 | async_exch_t *exch = async_exchange_begin(connection->hc_sess);
|
---|
[02fc5c4] | 80 | if (!exch)
|
---|
| 81 | return (usb_address_t)ENOMEM;
|
---|
| 82 |
|
---|
| 83 | usb_address_t address = preferred;
|
---|
| 84 | const int ret = usbhc_request_address(exch, &address, strict, speed);
|
---|
| 85 |
|
---|
[79ae36dd] | 86 | async_exchange_end(exch);
|
---|
[02fc5c4] | 87 | return ret == EOK ? address : ret;
|
---|
[e40b9f00] | 88 | }
|
---|
| 89 |
|
---|
| 90 | /** Inform host controller about new device.
|
---|
| 91 | *
|
---|
| 92 | * @param connection Opened connection to host controller.
|
---|
| 93 | * @param attached_device Information about the new device.
|
---|
| 94 | * @return Error code.
|
---|
| 95 | */
|
---|
[02fc5c4] | 96 | int usb_hc_register_device(usb_hc_connection_t *connection,
|
---|
[4501e207] | 97 | const usb_hub_attached_device_t *attached_device)
|
---|
[e40b9f00] | 98 | {
|
---|
| 99 | CHECK_CONNECTION(connection);
|
---|
[02fc5c4] | 100 | if (attached_device == NULL || attached_device->fun == NULL)
|
---|
| 101 | return EINVAL;
|
---|
| 102 |
|
---|
[79ae36dd] | 103 | async_exch_t *exch = async_exchange_begin(connection->hc_sess);
|
---|
[02fc5c4] | 104 | if (!exch)
|
---|
| 105 | return ENOMEM;
|
---|
| 106 | const int ret = usbhc_bind_address(exch,
|
---|
[90994fa] | 107 | attached_device->address, attached_device->fun->handle);
|
---|
[79ae36dd] | 108 | async_exchange_end(exch);
|
---|
[02fc5c4] | 109 |
|
---|
| 110 | return ret;
|
---|
[e40b9f00] | 111 | }
|
---|
| 112 |
|
---|
| 113 | /** Inform host controller about device removal.
|
---|
| 114 | *
|
---|
| 115 | * @param connection Opened connection to host controller.
|
---|
| 116 | * @param address Address of the device that is being removed.
|
---|
| 117 | * @return Error code.
|
---|
| 118 | */
|
---|
| 119 | int usb_hc_unregister_device(usb_hc_connection_t *connection,
|
---|
| 120 | usb_address_t address)
|
---|
| 121 | {
|
---|
| 122 | CHECK_CONNECTION(connection);
|
---|
[02fc5c4] | 123 |
|
---|
[79ae36dd] | 124 | async_exch_t *exch = async_exchange_begin(connection->hc_sess);
|
---|
[02fc5c4] | 125 | if (!exch)
|
---|
| 126 | return ENOMEM;
|
---|
| 127 | const int ret = usbhc_release_address(exch, address);
|
---|
[79ae36dd] | 128 | async_exchange_end(exch);
|
---|
[02fc5c4] | 129 |
|
---|
| 130 | return ret;
|
---|
[e40b9f00] | 131 | }
|
---|
| 132 |
|
---|
[3238506] | 133 | /** Change address of connected device.
|
---|
| 134 | * This function automatically updates the backing connection to point to
|
---|
| 135 | * the new address. It also unregisterrs the old endpoint and registers
|
---|
| 136 | * a new one.
|
---|
| 137 | * This creates whole bunch of problems:
|
---|
| 138 | * 1. All pipes using this wire are broken because they are not
|
---|
| 139 | * registered for new address
|
---|
| 140 | * 2. All other pipes for this device are using wrong address,
|
---|
| 141 | * possibly targeting completely different device
|
---|
| 142 | *
|
---|
| 143 | * @param pipe Control endpoint pipe (session must be already started).
|
---|
| 144 | * @param new_address New USB address to be set (in native endianness).
|
---|
| 145 | * @return Error code.
|
---|
| 146 | */
|
---|
| 147 | static int usb_request_set_address(usb_pipe_t *pipe, usb_address_t new_address,
|
---|
| 148 | usb_hc_connection_t *hc_conn)
|
---|
[9f9b31ad] | 149 | {
|
---|
[3238506] | 150 | if ((new_address < 0) || (new_address >= USB11_ADDRESS_MAX)) {
|
---|
| 151 | return EINVAL;
|
---|
[9f9b31ad] | 152 | }
|
---|
[3238506] | 153 | assert(pipe);
|
---|
| 154 | assert(hc_conn);
|
---|
| 155 | assert(pipe->wire != NULL);
|
---|
| 156 |
|
---|
| 157 | const uint16_t addr = uint16_host2usb((uint16_t)new_address);
|
---|
| 158 |
|
---|
| 159 | int rc = usb_control_request_set(pipe,
|
---|
| 160 | USB_REQUEST_TYPE_STANDARD, USB_REQUEST_RECIPIENT_DEVICE,
|
---|
| 161 | USB_DEVREQ_SET_ADDRESS, addr, 0, NULL, 0);
|
---|
[9f9b31ad] | 162 |
|
---|
| 163 | if (rc != EOK) {
|
---|
[3238506] | 164 | return rc;
|
---|
| 165 | }
|
---|
| 166 |
|
---|
| 167 | /* TODO: prevent others from accessing the wire now. */
|
---|
| 168 | if (usb_pipe_unregister(pipe, hc_conn) != EOK) {
|
---|
| 169 | usb_log_warning(
|
---|
| 170 | "Failed to unregister the old pipe on address change.\n");
|
---|
[9f9b31ad] | 171 | }
|
---|
[3238506] | 172 | /* The address is already changed so set it in the wire */
|
---|
| 173 | pipe->wire->address = new_address;
|
---|
| 174 | rc = usb_pipe_register(pipe, 0, hc_conn);
|
---|
| 175 | if (rc != EOK)
|
---|
| 176 | return EADDRNOTAVAIL;
|
---|
[9f9b31ad] | 177 |
|
---|
[3238506] | 178 | return EOK;
|
---|
[9f9b31ad] | 179 | }
|
---|
| 180 |
|
---|
[e40b9f00] | 181 |
|
---|
[6d8c5725] | 182 | /** Wrapper for registering attached device to the hub.
|
---|
| 183 | *
|
---|
[a6add7a] | 184 | * The @p enable_port function is expected to enable signaling on given
|
---|
[6d8c5725] | 185 | * port.
|
---|
[32ec5671] | 186 | * The argument can have arbitrary meaning and it is not touched at all
|
---|
| 187 | * by this function (it is passed as is to the @p enable_port function).
|
---|
[6d8c5725] | 188 | *
|
---|
| 189 | * If the @p enable_port fails (i.e. does not return EOK), the device
|
---|
[a6add7a] | 190 | * addition is canceled.
|
---|
[6d8c5725] | 191 | * The return value is then returned (it is good idea to use different
|
---|
| 192 | * error codes than those listed as return codes by this function itself).
|
---|
| 193 | *
|
---|
[61727bf] | 194 | * The @p connection representing connection with host controller does not
|
---|
| 195 | * need to be started.
|
---|
| 196 | * This function duplicates the connection to allow simultaneous calls of
|
---|
| 197 | * this function (i.e. from different fibrils).
|
---|
| 198 | *
|
---|
[bc1c6fb] | 199 | * @param[in] parent Parent device (i.e. the hub device).
|
---|
[90d7033] | 200 | * @param[in] connection Connection to host controller. Must be non-null.
|
---|
[bc1c6fb] | 201 | * @param[in] dev_speed New device speed.
|
---|
| 202 | * @param[in] enable_port Function for enabling signaling through the port the
|
---|
[6d8c5725] | 203 | * device is attached to.
|
---|
[bc1c6fb] | 204 | * @param[in] arg Any data argument to @p enable_port.
|
---|
[6d8c5725] | 205 | * @param[out] assigned_address USB address of the device.
|
---|
[10059a68] | 206 | * @param[in] dev_ops Child device ops. Will use default if not provided.
|
---|
[bc1c6fb] | 207 | * @param[in] new_dev_data Arbitrary pointer to be stored in the child
|
---|
[59c163c] | 208 | * as @c driver_data. Will allocate and assign usb_hub_attached_device_t
|
---|
| 209 | * structure if NULL.
|
---|
[bc1c6fb] | 210 | * @param[out] new_fun Storage where pointer to allocated child function
|
---|
[90d7033] | 211 | * will be written. Must be non-null.
|
---|
[6d8c5725] | 212 | * @return Error code.
|
---|
[90d7033] | 213 | * @retval EINVAL Either connection or new_fun is a NULL pointer.
|
---|
[6d8c5725] | 214 | * @retval ENOENT Connection to HC not opened.
|
---|
| 215 | * @retval EADDRNOTAVAIL Failed retrieving free address from host controller.
|
---|
| 216 | * @retval EBUSY Failed reserving default USB address.
|
---|
| 217 | * @retval ENOTCONN Problem connecting to the host controller via USB pipe.
|
---|
| 218 | * @retval ESTALL Problem communication with device (either SET_ADDRESS
|
---|
| 219 | * request or requests for descriptors when creating match ids).
|
---|
| 220 | */
|
---|
[9dbfd288] | 221 | int usb_hc_new_device_wrapper(ddf_dev_t *parent,
|
---|
| 222 | usb_hc_connection_t *connection, usb_speed_t dev_speed,
|
---|
[32ec5671] | 223 | int (*enable_port)(void *arg), void *arg, usb_address_t *assigned_address,
|
---|
[eb1a2f4] | 224 | ddf_dev_ops_t *dev_ops, void *new_dev_data, ddf_fun_t **new_fun)
|
---|
[6d8c5725] | 225 | {
|
---|
[90d7033] | 226 | if (new_fun == NULL || connection == NULL)
|
---|
| 227 | return EINVAL;
|
---|
| 228 |
|
---|
| 229 | // TODO: Why not use provided connection?
|
---|
[7711296] | 230 | usb_hc_connection_t hc_conn;
|
---|
| 231 | usb_hc_connection_initialize(&hc_conn, connection->hc_handle);
|
---|
[61727bf] | 232 |
|
---|
| 233 | int rc;
|
---|
[5f94a0c] | 234 | struct timeval start_time;
|
---|
| 235 |
|
---|
| 236 | rc = gettimeofday(&start_time, NULL);
|
---|
| 237 | if (rc != EOK) {
|
---|
| 238 | return rc;
|
---|
| 239 | }
|
---|
[61727bf] | 240 |
|
---|
| 241 | rc = usb_hc_connection_open(&hc_conn);
|
---|
| 242 | if (rc != EOK) {
|
---|
| 243 | return rc;
|
---|
| 244 | }
|
---|
| 245 |
|
---|
[6d8c5725] | 246 | /*
|
---|
| 247 | * Request new address.
|
---|
| 248 | */
|
---|
[67f55e7b] | 249 | usb_address_t dev_addr =
|
---|
[3238506] | 250 | usb_hc_request_address(&hc_conn, 0, false, dev_speed);
|
---|
[6d8c5725] | 251 | if (dev_addr < 0) {
|
---|
[fb422312] | 252 | rc = EADDRNOTAVAIL;
|
---|
| 253 | goto close_connection;
|
---|
[6d8c5725] | 254 | }
|
---|
| 255 |
|
---|
| 256 | /*
|
---|
[98064795] | 257 | * We will not register control pipe on default address.
|
---|
| 258 | * The registration might fail. That means that someone else already
|
---|
| 259 | * registered that endpoint. We will simply wait and try again.
|
---|
| 260 | * (Someone else already wants to add a new device.)
|
---|
[6d8c5725] | 261 | */
|
---|
| 262 | usb_device_connection_t dev_conn;
|
---|
| 263 | rc = usb_device_connection_initialize_on_default_address(&dev_conn,
|
---|
[61727bf] | 264 | &hc_conn);
|
---|
[6d8c5725] | 265 | if (rc != EOK) {
|
---|
| 266 | rc = ENOTCONN;
|
---|
[98064795] | 267 | goto leave_release_free_address;
|
---|
[6d8c5725] | 268 | }
|
---|
| 269 |
|
---|
[a372663] | 270 | usb_pipe_t ctrl_pipe;
|
---|
[3238506] | 271 | rc = usb_pipe_initialize_default_control(&ctrl_pipe, &dev_conn);
|
---|
[6d8c5725] | 272 | if (rc != EOK) {
|
---|
| 273 | rc = ENOTCONN;
|
---|
[98064795] | 274 | goto leave_release_free_address;
|
---|
[6d8c5725] | 275 | }
|
---|
[9f9b31ad] | 276 |
|
---|
[98064795] | 277 | do {
|
---|
[062165f] | 278 | rc = usb_hc_request_address(&hc_conn, USB_ADDRESS_DEFAULT,
|
---|
| 279 | true, dev_speed);
|
---|
[3238506] | 280 | if (rc == ENOENT) {
|
---|
[98064795] | 281 | /* Do not overheat the CPU ;-). */
|
---|
[1c258d1] | 282 | async_usleep(ENDPOINT_0_0_REGISTER_ATTEMPT_DELAY_USEC);
|
---|
[98064795] | 283 | }
|
---|
[062165f] | 284 | } while (rc == ENOENT);
|
---|
[3238506] | 285 | if (rc < 0) {
|
---|
[062165f] | 286 | goto leave_release_free_address;
|
---|
| 287 | }
|
---|
| 288 |
|
---|
[3238506] | 289 | /* Register control pipe on default address. */
|
---|
[f37eb84] | 290 | rc = usb_pipe_register(&ctrl_pipe, 0, &hc_conn);
|
---|
[062165f] | 291 | if (rc != EOK) {
|
---|
| 292 | rc = ENOTCONN;
|
---|
| 293 | goto leave_release_default_address;
|
---|
| 294 | }
|
---|
| 295 |
|
---|
[5f94a0c] | 296 | struct timeval end_time;
|
---|
| 297 |
|
---|
| 298 | rc = gettimeofday(&end_time, NULL);
|
---|
| 299 | if (rc != EOK) {
|
---|
| 300 | goto leave_release_default_address;
|
---|
| 301 | }
|
---|
| 302 |
|
---|
| 303 | /* According to the USB spec part 9.1.2 host allows 100ms time for
|
---|
| 304 | * the insertion process to complete. According to 7.1.7.1 this is the
|
---|
| 305 | * time between attach detected and port reset. However, the setup done
|
---|
| 306 | * above might use much of this time so we should only wait to fill
|
---|
| 307 | * up the 100ms quota*/
|
---|
[3238506] | 308 | const suseconds_t elapsed = tv_sub(&end_time, &start_time);
|
---|
[5f94a0c] | 309 | if (elapsed < 100000) {
|
---|
| 310 | async_usleep(100000 - elapsed);
|
---|
| 311 | }
|
---|
[98064795] | 312 |
|
---|
[3238506] | 313 | /* Endpoint is registered. We can enable the port and change address. */
|
---|
[32ec5671] | 314 | rc = enable_port(arg);
|
---|
[9f9b31ad] | 315 | if (rc != EOK) {
|
---|
| 316 | goto leave_release_default_address;
|
---|
| 317 | }
|
---|
[5f94a0c] | 318 | /* USB spec 7.1.7.1: The USB System Software guarantees a minimum of
|
---|
| 319 | * 10ms for reset recovery. Device response to any bus transactions
|
---|
| 320 | * addressed to the default device address during the reset recovery
|
---|
| 321 | * time is undefined.
|
---|
| 322 | */
|
---|
| 323 | async_usleep(10000);
|
---|
[98064795] | 324 |
|
---|
[3238506] | 325 | /* Get max_packet_size value. */
|
---|
[3954a63b] | 326 | rc = usb_pipe_probe_default_control(&ctrl_pipe);
|
---|
[206f71a] | 327 | if (rc != EOK) {
|
---|
[98064795] | 328 | rc = ESTALL;
|
---|
[206f71a] | 329 | goto leave_release_default_address;
|
---|
| 330 | }
|
---|
[6d8c5725] | 331 |
|
---|
[3238506] | 332 | rc = usb_request_set_address(&ctrl_pipe, dev_addr, &hc_conn);
|
---|
[6d8c5725] | 333 | if (rc != EOK) {
|
---|
| 334 | rc = ESTALL;
|
---|
[c6394aa] | 335 | goto leave_release_default_address;
|
---|
[6d8c5725] | 336 | }
|
---|
| 337 |
|
---|
[3238506] | 338 | /* Address changed. We can release the default, thus
|
---|
| 339 | * allowing other to access the default address. */
|
---|
[f37eb84] | 340 | usb_hc_unregister_device(&hc_conn, USB_ADDRESS_DEFAULT);
|
---|
[9f9b31ad] | 341 |
|
---|
[3238506] | 342 | /* Register the device with devman. */
|
---|
[6d8c5725] | 343 | /* FIXME: create device_register that will get opened ctrl pipe. */
|
---|
[90994fa] | 344 | ddf_fun_t *child_fun;
|
---|
[2179cf95] | 345 | rc = usb_device_register_child_in_devman(&ctrl_pipe,
|
---|
[162726b] | 346 | parent, dev_ops, new_dev_data, &child_fun);
|
---|
[6d8c5725] | 347 | if (rc != EOK) {
|
---|
| 348 | goto leave_release_free_address;
|
---|
| 349 | }
|
---|
| 350 |
|
---|
[90d7033] | 351 | const usb_hub_attached_device_t new_device = {
|
---|
[6d8c5725] | 352 | .address = dev_addr,
|
---|
[90994fa] | 353 | .fun = child_fun,
|
---|
[6d8c5725] | 354 | };
|
---|
[59c163c] | 355 |
|
---|
| 356 |
|
---|
[3238506] | 357 | /* Inform the host controller about the handle. */
|
---|
[61727bf] | 358 | rc = usb_hc_register_device(&hc_conn, &new_device);
|
---|
[6d8c5725] | 359 | if (rc != EOK) {
|
---|
[59c163c] | 360 | /* We know nothing about that data. */
|
---|
| 361 | if (new_dev_data)
|
---|
| 362 | child_fun->driver_data = NULL;
|
---|
[90d7033] | 363 | /* The child function is already created. */
|
---|
| 364 | ddf_fun_destroy(child_fun);
|
---|
[6d8c5725] | 365 | rc = EDESTADDRREQ;
|
---|
| 366 | goto leave_release_free_address;
|
---|
| 367 | }
|
---|
[fb422312] | 368 |
|
---|
[6d8c5725] | 369 | if (assigned_address != NULL) {
|
---|
| 370 | *assigned_address = dev_addr;
|
---|
| 371 | }
|
---|
[3238506] | 372 |
|
---|
| 373 | *new_fun = child_fun;
|
---|
[6d8c5725] | 374 |
|
---|
[fb422312] | 375 | rc = EOK;
|
---|
| 376 | goto close_connection;
|
---|
[6d8c5725] | 377 |
|
---|
| 378 | /*
|
---|
| 379 | * Error handling (like nested exceptions) starts here.
|
---|
| 380 | * Completely ignoring errors here.
|
---|
| 381 | */
|
---|
| 382 | leave_release_default_address:
|
---|
[f37eb84] | 383 | usb_hc_unregister_device(&hc_conn, USB_ADDRESS_DEFAULT);
|
---|
[6d8c5725] | 384 |
|
---|
| 385 | leave_release_free_address:
|
---|
[07a7a97d] | 386 | /* This might be either 0:0 or dev_addr:0 */
|
---|
| 387 | if (usb_pipe_unregister(&ctrl_pipe, &hc_conn) != EOK)
|
---|
| 388 | usb_log_warning("%s: Failed to unregister default pipe.\n",
|
---|
| 389 | __FUNCTION__);
|
---|
[61727bf] | 390 |
|
---|
[3238506] | 391 | if (usb_hc_unregister_device(&hc_conn, dev_addr) != EOK)
|
---|
| 392 | usb_log_warning("%s: Failed to unregister device.\n",
|
---|
| 393 | __FUNCTION__);
|
---|
| 394 |
|
---|
[fb422312] | 395 | close_connection:
|
---|
| 396 | if (usb_hc_connection_close(&hc_conn) != EOK)
|
---|
[3238506] | 397 | usb_log_warning("%s: Failed to close hc connection.\n",
|
---|
[10059a68] | 398 | __FUNCTION__);
|
---|
[6d8c5725] | 399 |
|
---|
| 400 | return rc;
|
---|
| 401 | }
|
---|
| 402 |
|
---|
[e40b9f00] | 403 | /**
|
---|
| 404 | * @}
|
---|
| 405 | */
|
---|