| 1 | /*
|
|---|
| 2 | * Copyright (c) 2017 Ondrej Hlavaty <aearsis@eideo.cz>
|
|---|
| 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 | * HC Endpoint management.
|
|---|
| 33 | */
|
|---|
| 34 |
|
|---|
| 35 | #include <usb/host/ddf_helpers.h>
|
|---|
| 36 | #include <usb/host/endpoint.h>
|
|---|
| 37 | #include <usb/host/hcd.h>
|
|---|
| 38 | #include <usb/descriptor.h>
|
|---|
| 39 | #include <usb/debug.h>
|
|---|
| 40 |
|
|---|
| 41 | #include <assert.h>
|
|---|
| 42 | #include <errno.h>
|
|---|
| 43 | #include <str_error.h>
|
|---|
| 44 | #include <macros.h>
|
|---|
| 45 | #include <stdbool.h>
|
|---|
| 46 |
|
|---|
| 47 | #include "hc.h"
|
|---|
| 48 | #include "bus.h"
|
|---|
| 49 | #include "endpoint.h"
|
|---|
| 50 | #include "transfers.h"
|
|---|
| 51 |
|
|---|
| 52 |
|
|---|
| 53 | /** Initial descriptor used for control endpoint 0 before more configuration is retrieved. */
|
|---|
| 54 | static const usb_endpoint_descriptors_t ep0_initial_desc = {
|
|---|
| 55 | .endpoint.max_packet_size = CTRL_PIPE_MIN_PACKET_SIZE,
|
|---|
| 56 | };
|
|---|
| 57 |
|
|---|
| 58 | static endpoint_t *endpoint_create(device_t *, const usb_endpoint_descriptors_t *);
|
|---|
| 59 |
|
|---|
| 60 | /**
|
|---|
| 61 | * Assign address and control endpoint to a new XHCI device. Once this function
|
|---|
| 62 | * successfully returns, the device is online.
|
|---|
| 63 | *
|
|---|
| 64 | * @param[in] bus XHCI bus, in which the address is assigned.
|
|---|
| 65 | * @param[in] dev New device to address and configure./e
|
|---|
| 66 | * @return Error code.
|
|---|
| 67 | */
|
|---|
| 68 | static int address_device(xhci_bus_t *bus, xhci_device_t *dev)
|
|---|
| 69 | {
|
|---|
| 70 | int err;
|
|---|
| 71 |
|
|---|
| 72 | /* Enable new slot. */
|
|---|
| 73 | if ((err = hc_enable_slot(bus->hc, &dev->slot_id)) != EOK)
|
|---|
| 74 | return err;
|
|---|
| 75 | usb_log_debug2("Obtained slot ID: %u.\n", dev->slot_id);
|
|---|
| 76 |
|
|---|
| 77 | /* Create and configure control endpoint. */
|
|---|
| 78 | endpoint_t *ep0_base = endpoint_create(&dev->base, &ep0_initial_desc);
|
|---|
| 79 | if (!ep0_base)
|
|---|
| 80 | goto err_slot;
|
|---|
| 81 |
|
|---|
| 82 | /* Bus reference */
|
|---|
| 83 | endpoint_add_ref(ep0_base);
|
|---|
| 84 | dev->base.endpoints[0] = ep0_base;
|
|---|
| 85 |
|
|---|
| 86 | xhci_endpoint_t *ep0 = xhci_endpoint_get(ep0_base);
|
|---|
| 87 |
|
|---|
| 88 | /* Address device */
|
|---|
| 89 | if ((err = hc_address_device(bus->hc, dev, ep0)))
|
|---|
| 90 | goto err_added;
|
|---|
| 91 |
|
|---|
| 92 | return EOK;
|
|---|
| 93 |
|
|---|
| 94 | err_added:
|
|---|
| 95 | /* Bus reference */
|
|---|
| 96 | endpoint_del_ref(ep0_base);
|
|---|
| 97 | dev->base.endpoints[0] = NULL;
|
|---|
| 98 | err_slot:
|
|---|
| 99 | hc_disable_slot(bus->hc, dev);
|
|---|
| 100 | return err;
|
|---|
| 101 | }
|
|---|
| 102 |
|
|---|
| 103 | /**
|
|---|
| 104 | * Retrieve and set maximum packet size for endpoint zero of a XHCI device.
|
|---|
| 105 | *
|
|---|
| 106 | * @param[in] hc Host controller, which manages the device.
|
|---|
| 107 | * @param[in] dev Device with operational endpoint zero.
|
|---|
| 108 | * @return Error code.
|
|---|
| 109 | */
|
|---|
| 110 | static int setup_ep0_packet_size(xhci_hc_t *hc, xhci_device_t *dev)
|
|---|
| 111 | {
|
|---|
| 112 | int err;
|
|---|
| 113 |
|
|---|
| 114 | uint16_t max_packet_size;
|
|---|
| 115 | if ((err = hcd_get_ep0_max_packet_size(&max_packet_size, (bus_t *) &hc->bus, &dev->base)))
|
|---|
| 116 | return err;
|
|---|
| 117 |
|
|---|
| 118 | xhci_endpoint_t *ep0 = xhci_device_get_endpoint(dev, 0);
|
|---|
| 119 | assert(ep0);
|
|---|
| 120 |
|
|---|
| 121 | if (ep0->base.max_packet_size == max_packet_size)
|
|---|
| 122 | return EOK;
|
|---|
| 123 |
|
|---|
| 124 | ep0->base.max_packet_size = max_packet_size;
|
|---|
| 125 | ep0->base.max_transfer_size = max_packet_size * ep0->base.packets_per_uframe;
|
|---|
| 126 |
|
|---|
| 127 | xhci_ep_ctx_t ep_ctx;
|
|---|
| 128 | xhci_setup_endpoint_context(ep0, &ep_ctx);
|
|---|
| 129 |
|
|---|
| 130 | if ((err = hc_update_endpoint(hc, dev->slot_id, 0, &ep_ctx)))
|
|---|
| 131 | return err;
|
|---|
| 132 |
|
|---|
| 133 | return EOK;
|
|---|
| 134 | }
|
|---|
| 135 |
|
|---|
| 136 | /**
|
|---|
| 137 | * Respond to a new device on the XHCI bus. Address it, negotiate packet size
|
|---|
| 138 | * and retrieve USB descriptors.
|
|---|
| 139 | *
|
|---|
| 140 | * @param[in] bus XHCI bus, where the new device emerged.
|
|---|
| 141 | * @param[in] dev XHCI device, which has appeared on the bus.
|
|---|
| 142 | *
|
|---|
| 143 | * @return Error code.
|
|---|
| 144 | */
|
|---|
| 145 | static int device_enumerate(device_t *dev)
|
|---|
| 146 | {
|
|---|
| 147 | int err;
|
|---|
| 148 | xhci_bus_t *bus = bus_to_xhci_bus(dev->bus);
|
|---|
| 149 | xhci_device_t *xhci_dev = xhci_device_get(dev);
|
|---|
| 150 |
|
|---|
| 151 | hcd_setup_device_tt(dev);
|
|---|
| 152 |
|
|---|
| 153 | /* Calculate route string */
|
|---|
| 154 | xhci_device_t *xhci_hub = xhci_device_get(dev->hub);
|
|---|
| 155 | xhci_dev->tier = xhci_hub->tier + 1;
|
|---|
| 156 | xhci_dev->route_str = xhci_hub->route_str;
|
|---|
| 157 |
|
|---|
| 158 | /* Roothub port is not part of the route string */
|
|---|
| 159 | if (xhci_dev->tier >= 2) {
|
|---|
| 160 | const unsigned offset = 4 * (xhci_dev->tier - 2);
|
|---|
| 161 | xhci_dev->route_str |= (dev->port & 0xf) << offset;
|
|---|
| 162 | xhci_dev->rh_port = xhci_hub->rh_port;
|
|---|
| 163 | }
|
|---|
| 164 |
|
|---|
| 165 | /* Assign an address to the device */
|
|---|
| 166 | if ((err = address_device(bus, xhci_dev))) {
|
|---|
| 167 | usb_log_error("Failed to setup address of the new device: %s", str_error(err));
|
|---|
| 168 | return err;
|
|---|
| 169 | }
|
|---|
| 170 |
|
|---|
| 171 | /* Setup EP0 might already need to issue a transfer. */
|
|---|
| 172 | fibril_mutex_lock(&bus->base.guard);
|
|---|
| 173 | assert(bus->devices_by_slot[xhci_dev->slot_id] == NULL);
|
|---|
| 174 | bus->devices_by_slot[xhci_dev->slot_id] = xhci_dev;
|
|---|
| 175 | fibril_mutex_unlock(&bus->base.guard);
|
|---|
| 176 |
|
|---|
| 177 | if ((err = setup_ep0_packet_size(bus->hc, xhci_dev))) {
|
|---|
| 178 | usb_log_error("Failed to setup control endpoint of the new device: %s", str_error(err));
|
|---|
| 179 | goto err_address;
|
|---|
| 180 | }
|
|---|
| 181 |
|
|---|
| 182 | /* Read the device descriptor, derive the match ids */
|
|---|
| 183 | if ((err = hcd_device_explore(dev))) {
|
|---|
| 184 | usb_log_error("Device(%d): Failed to explore device: %s", dev->address, str_error(err));
|
|---|
| 185 | goto err_address;
|
|---|
| 186 | }
|
|---|
| 187 |
|
|---|
| 188 | return EOK;
|
|---|
| 189 |
|
|---|
| 190 | err_address:
|
|---|
| 191 | // TODO: deaddress device
|
|---|
| 192 | return err;
|
|---|
| 193 | }
|
|---|
| 194 |
|
|---|
| 195 | /**
|
|---|
| 196 | * Remove device from XHCI bus. Transition it to the offline state, abort all
|
|---|
| 197 | * ongoing transfers and unregister all of its endpoints.
|
|---|
| 198 | *
|
|---|
| 199 | * Bus callback.
|
|---|
| 200 | *
|
|---|
| 201 | * @param[in] bus XHCI bus, from which the device is removed.
|
|---|
| 202 | * @param[in] dev XHCI device, which is removed from the bus.
|
|---|
| 203 | * @return Error code.
|
|---|
| 204 | */
|
|---|
| 205 | static void device_remove(device_t *dev)
|
|---|
| 206 | {
|
|---|
| 207 | int err;
|
|---|
| 208 | xhci_bus_t *bus = bus_to_xhci_bus(dev->bus);
|
|---|
| 209 | xhci_device_t *xhci_dev = xhci_device_get(dev);
|
|---|
| 210 |
|
|---|
| 211 | /* Block creation of new endpoints and transfers. */
|
|---|
| 212 | usb_log_debug2("Device " XHCI_DEV_FMT " going offline.", XHCI_DEV_ARGS(*xhci_dev));
|
|---|
| 213 | fibril_mutex_lock(&dev->guard);
|
|---|
| 214 | dev->online = false;
|
|---|
| 215 | fibril_mutex_unlock(&dev->guard);
|
|---|
| 216 |
|
|---|
| 217 | /* Abort running transfers. */
|
|---|
| 218 | usb_log_debug2("Aborting all active transfers to device " XHCI_DEV_FMT ".", XHCI_DEV_ARGS(*xhci_dev));
|
|---|
| 219 | for (usb_endpoint_t i = 0; i < USB_ENDPOINT_MAX; ++i) {
|
|---|
| 220 | xhci_endpoint_t *ep = xhci_device_get_endpoint(xhci_dev, i);
|
|---|
| 221 | if (!ep)
|
|---|
| 222 | continue;
|
|---|
| 223 |
|
|---|
| 224 | endpoint_abort(&ep->base);
|
|---|
| 225 | }
|
|---|
| 226 |
|
|---|
| 227 | /* TODO: Figure out how to handle errors here. So far, they are reported and skipped. */
|
|---|
| 228 |
|
|---|
| 229 | /* Make DDF (and all drivers) forget about the device. */
|
|---|
| 230 | if ((err = ddf_fun_unbind(dev->fun))) {
|
|---|
| 231 | usb_log_warning("Failed to unbind DDF function of device " XHCI_DEV_FMT ": %s",
|
|---|
| 232 | XHCI_DEV_ARGS(*xhci_dev), str_error(err));
|
|---|
| 233 | }
|
|---|
| 234 |
|
|---|
| 235 | /* Disable the slot, dropping all endpoints. */
|
|---|
| 236 | const uint32_t slot_id = xhci_dev->slot_id;
|
|---|
| 237 | if ((err = hc_disable_slot(bus->hc, xhci_dev))) {
|
|---|
| 238 | usb_log_warning("Failed to disable slot of device " XHCI_DEV_FMT ": %s",
|
|---|
| 239 | XHCI_DEV_ARGS(*xhci_dev), str_error(err));
|
|---|
| 240 | }
|
|---|
| 241 |
|
|---|
| 242 | bus->devices_by_slot[slot_id] = NULL;
|
|---|
| 243 |
|
|---|
| 244 | /* Unregister remaining endpoints, freeing memory. */
|
|---|
| 245 | for (usb_endpoint_t i = 0; i < USB_ENDPOINT_MAX; ++i) {
|
|---|
| 246 | if (!dev->endpoints[i])
|
|---|
| 247 | continue;
|
|---|
| 248 |
|
|---|
| 249 | bus_endpoint_remove(dev->endpoints[i]);
|
|---|
| 250 | }
|
|---|
| 251 |
|
|---|
| 252 | /* Destroy DDF device. */
|
|---|
| 253 | /* XXX: Not a good idea, this method should not destroy devices. */
|
|---|
| 254 | hcd_ddf_fun_destroy(dev);
|
|---|
| 255 | }
|
|---|
| 256 |
|
|---|
| 257 | /**
|
|---|
| 258 | * Reverts things device_offline did, getting the device back up.
|
|---|
| 259 | *
|
|---|
| 260 | * Bus callback.
|
|---|
| 261 | */
|
|---|
| 262 | static int device_online(device_t *dev_base)
|
|---|
| 263 | {
|
|---|
| 264 | int err;
|
|---|
| 265 |
|
|---|
| 266 | xhci_bus_t *bus = bus_to_xhci_bus(dev_base->bus);
|
|---|
| 267 | assert(bus);
|
|---|
| 268 |
|
|---|
| 269 | xhci_device_t *dev = xhci_device_get(dev_base);
|
|---|
| 270 | assert(dev);
|
|---|
| 271 |
|
|---|
| 272 | /* Transition the device from the Addressed to the Configured state. */
|
|---|
| 273 | if ((err = hc_configure_device(bus->hc, dev->slot_id))) {
|
|---|
| 274 | usb_log_warning("Failed to configure device " XHCI_DEV_FMT ".", XHCI_DEV_ARGS(*dev));
|
|---|
| 275 | }
|
|---|
| 276 |
|
|---|
| 277 | /* Allow creation of new endpoints and transfers. */
|
|---|
| 278 | usb_log_debug2("Device " XHCI_DEV_FMT " going online.", XHCI_DEV_ARGS(*dev));
|
|---|
| 279 | fibril_mutex_lock(&dev_base->guard);
|
|---|
| 280 | dev_base->online = true;
|
|---|
| 281 | fibril_mutex_unlock(&dev_base->guard);
|
|---|
| 282 |
|
|---|
| 283 | if ((err = ddf_fun_online(dev_base->fun))) {
|
|---|
| 284 | return err;
|
|---|
| 285 | }
|
|---|
| 286 |
|
|---|
| 287 | return EOK;
|
|---|
| 288 | }
|
|---|
| 289 |
|
|---|
| 290 | /**
|
|---|
| 291 | * Make given device offline. Offline the DDF function, tear down all
|
|---|
| 292 | * endpoints, issue Deconfigure Device command to xHC.
|
|---|
| 293 | *
|
|---|
| 294 | * Bus callback.
|
|---|
| 295 | */
|
|---|
| 296 | static int device_offline(device_t *dev_base)
|
|---|
| 297 | {
|
|---|
| 298 | int err;
|
|---|
| 299 |
|
|---|
| 300 | xhci_bus_t *bus = bus_to_xhci_bus(dev_base->bus);
|
|---|
| 301 | assert(bus);
|
|---|
| 302 |
|
|---|
| 303 | xhci_device_t *dev = xhci_device_get(dev_base);
|
|---|
| 304 | assert(dev);
|
|---|
| 305 |
|
|---|
| 306 | /* Tear down all drivers working with the device. */
|
|---|
| 307 | if ((err = ddf_fun_offline(dev_base->fun))) {
|
|---|
| 308 | return err;
|
|---|
| 309 | }
|
|---|
| 310 |
|
|---|
| 311 | /* Block creation of new endpoints and transfers. */
|
|---|
| 312 | usb_log_debug2("Device " XHCI_DEV_FMT " going offline.", XHCI_DEV_ARGS(*dev));
|
|---|
| 313 | fibril_mutex_lock(&dev_base->guard);
|
|---|
| 314 | dev_base->online = false;
|
|---|
| 315 | fibril_mutex_unlock(&dev_base->guard);
|
|---|
| 316 |
|
|---|
| 317 | /* We will need the endpoint array later for DS deallocation. */
|
|---|
| 318 | endpoint_t *endpoints[USB_ENDPOINT_MAX];
|
|---|
| 319 | memcpy(endpoints, dev->base.endpoints, sizeof(endpoints));
|
|---|
| 320 |
|
|---|
| 321 | for (usb_endpoint_t i = 1; i < USB_ENDPOINT_MAX; ++i) {
|
|---|
| 322 | /* FIXME: Asserting here that the endpoint is not active. If not, EBUSY? */
|
|---|
| 323 | dev->base.endpoints[i] = NULL;
|
|---|
| 324 | }
|
|---|
| 325 |
|
|---|
| 326 | /* Issue one HC command to simultaneously drop all endpoints except zero. */
|
|---|
| 327 | if ((err = hc_deconfigure_device(bus->hc, dev->slot_id))) {
|
|---|
| 328 | usb_log_warning("Failed to deconfigure device " XHCI_DEV_FMT ".",
|
|---|
| 329 | XHCI_DEV_ARGS(*dev));
|
|---|
| 330 | }
|
|---|
| 331 |
|
|---|
| 332 | /* Tear down TRB ring / PSA. */
|
|---|
| 333 | for (unsigned i = 1; i < ARRAY_SIZE(endpoints); ++i) {
|
|---|
| 334 | if (!endpoints[i])
|
|---|
| 335 | continue;
|
|---|
| 336 |
|
|---|
| 337 | /* Bus reference */
|
|---|
| 338 | endpoint_del_ref(endpoints[i]);
|
|---|
| 339 | }
|
|---|
| 340 |
|
|---|
| 341 | return EOK;
|
|---|
| 342 | }
|
|---|
| 343 |
|
|---|
| 344 | /**
|
|---|
| 345 | * Create a new xHCI endpoint structure.
|
|---|
| 346 | *
|
|---|
| 347 | * Bus callback.
|
|---|
| 348 | */
|
|---|
| 349 | static endpoint_t *endpoint_create(device_t *dev, const usb_endpoint_descriptors_t *desc)
|
|---|
| 350 | {
|
|---|
| 351 | const usb_transfer_type_t type = USB_ED_GET_TRANSFER_TYPE(desc->endpoint);
|
|---|
| 352 |
|
|---|
| 353 | xhci_endpoint_t *ep = calloc(1, sizeof(xhci_endpoint_t)
|
|---|
| 354 | + (type == USB_TRANSFER_ISOCHRONOUS) * sizeof(*ep->isoch));
|
|---|
| 355 | if (!ep)
|
|---|
| 356 | return NULL;
|
|---|
| 357 |
|
|---|
| 358 | if (xhci_endpoint_init(ep, dev, desc)) {
|
|---|
| 359 | free(ep);
|
|---|
| 360 | return NULL;
|
|---|
| 361 | }
|
|---|
| 362 |
|
|---|
| 363 | return &ep->base;
|
|---|
| 364 | }
|
|---|
| 365 |
|
|---|
| 366 | /**
|
|---|
| 367 | * Destroy given xHCI endpoint structure.
|
|---|
| 368 | *
|
|---|
| 369 | * Bus callback.
|
|---|
| 370 | */
|
|---|
| 371 | static void endpoint_destroy(endpoint_t *ep)
|
|---|
| 372 | {
|
|---|
| 373 | xhci_endpoint_t *xhci_ep = xhci_endpoint_get(ep);
|
|---|
| 374 |
|
|---|
| 375 | xhci_endpoint_fini(xhci_ep);
|
|---|
| 376 | free(xhci_ep);
|
|---|
| 377 | }
|
|---|
| 378 |
|
|---|
| 379 | /**
|
|---|
| 380 | * Register an andpoint to the bus. Allocate its transfer ring(s) and inform
|
|---|
| 381 | * xHC about it.
|
|---|
| 382 | *
|
|---|
| 383 | * Bus callback.
|
|---|
| 384 | */
|
|---|
| 385 | static int endpoint_register(endpoint_t *ep_base)
|
|---|
| 386 | {
|
|---|
| 387 | int err;
|
|---|
| 388 | xhci_bus_t *bus = bus_to_xhci_bus(endpoint_get_bus(ep_base));
|
|---|
| 389 | xhci_endpoint_t *ep = xhci_endpoint_get(ep_base);
|
|---|
| 390 |
|
|---|
| 391 | xhci_device_t *dev = xhci_device_get(ep_base->device);
|
|---|
| 392 |
|
|---|
| 393 | usb_log_info("Endpoint " XHCI_EP_FMT " registered to XHCI bus.", XHCI_EP_ARGS(*ep));
|
|---|
| 394 |
|
|---|
| 395 | xhci_ep_ctx_t ep_ctx;
|
|---|
| 396 | xhci_setup_endpoint_context(ep, &ep_ctx);
|
|---|
| 397 |
|
|---|
| 398 | if ((err = hc_add_endpoint(bus->hc, dev->slot_id, xhci_endpoint_index(ep), &ep_ctx)))
|
|---|
| 399 | return err;
|
|---|
| 400 |
|
|---|
| 401 | return EOK;
|
|---|
| 402 | }
|
|---|
| 403 |
|
|---|
| 404 | /**
|
|---|
| 405 | * Unregister an endpoint. If the device is still available, inform the xHC
|
|---|
| 406 | * about it. Destroy resources allocated when registering.
|
|---|
| 407 | *
|
|---|
| 408 | * Bus callback.
|
|---|
| 409 | */
|
|---|
| 410 | static void endpoint_unregister(endpoint_t *ep_base)
|
|---|
| 411 | {
|
|---|
| 412 | int err;
|
|---|
| 413 | xhci_bus_t *bus = bus_to_xhci_bus(endpoint_get_bus(ep_base));
|
|---|
| 414 | xhci_endpoint_t *ep = xhci_endpoint_get(ep_base);
|
|---|
| 415 | xhci_device_t *dev = xhci_device_get(ep_base->device);
|
|---|
| 416 |
|
|---|
| 417 | usb_log_info("Endpoint " XHCI_EP_FMT " unregistered from XHCI bus.", XHCI_EP_ARGS(*ep));
|
|---|
| 418 |
|
|---|
| 419 | /* If device slot is still available, drop the endpoint. */
|
|---|
| 420 | if (dev->slot_id) {
|
|---|
| 421 | if ((err = hc_drop_endpoint(bus->hc, dev->slot_id, xhci_endpoint_index(ep)))) {
|
|---|
| 422 | usb_log_error("Failed to drop endpoint " XHCI_EP_FMT ": %s", XHCI_EP_ARGS(*ep), str_error(err));
|
|---|
| 423 | }
|
|---|
| 424 | } else {
|
|---|
| 425 | usb_log_debug("Not going to drop endpoint " XHCI_EP_FMT " because"
|
|---|
| 426 | " the slot has already been disabled.", XHCI_EP_ARGS(*ep));
|
|---|
| 427 | }
|
|---|
| 428 | }
|
|---|
| 429 |
|
|---|
| 430 | /**
|
|---|
| 431 | * Schedule a batch for xHC.
|
|---|
| 432 | *
|
|---|
| 433 | * Bus callback.
|
|---|
| 434 | */
|
|---|
| 435 | static int batch_schedule(usb_transfer_batch_t *batch)
|
|---|
| 436 | {
|
|---|
| 437 | assert(batch);
|
|---|
| 438 | xhci_hc_t *hc = bus_to_hc(endpoint_get_bus(batch->ep));
|
|---|
| 439 |
|
|---|
| 440 | if (!batch->target.address) {
|
|---|
| 441 | usb_log_error("Attempted to schedule transfer to address 0.");
|
|---|
| 442 | return EINVAL;
|
|---|
| 443 | }
|
|---|
| 444 |
|
|---|
| 445 | return xhci_transfer_schedule(hc, batch);
|
|---|
| 446 | }
|
|---|
| 447 |
|
|---|
| 448 | static const bus_ops_t xhci_bus_ops = {
|
|---|
| 449 | .interrupt = hc_interrupt,
|
|---|
| 450 | .status = hc_status,
|
|---|
| 451 |
|
|---|
| 452 | .device_enumerate = device_enumerate,
|
|---|
| 453 | .device_remove = device_remove,
|
|---|
| 454 | .device_online = device_online,
|
|---|
| 455 | .device_offline = device_offline,
|
|---|
| 456 |
|
|---|
| 457 | .endpoint_create = endpoint_create,
|
|---|
| 458 | .endpoint_destroy = endpoint_destroy,
|
|---|
| 459 | .endpoint_register = endpoint_register,
|
|---|
| 460 | .endpoint_unregister = endpoint_unregister,
|
|---|
| 461 |
|
|---|
| 462 | .batch_schedule = batch_schedule,
|
|---|
| 463 | .batch_create = xhci_transfer_create,
|
|---|
| 464 | .batch_destroy = xhci_transfer_destroy,
|
|---|
| 465 | };
|
|---|
| 466 |
|
|---|
| 467 | /** Initialize XHCI bus.
|
|---|
| 468 | * @param[in] bus Allocated XHCI bus to initialize.
|
|---|
| 469 | * @param[in] hc Associated host controller, which manages the bus.
|
|---|
| 470 | *
|
|---|
| 471 | * @return Error code.
|
|---|
| 472 | */
|
|---|
| 473 | int xhci_bus_init(xhci_bus_t *bus, xhci_hc_t *hc)
|
|---|
| 474 | {
|
|---|
| 475 | assert(bus);
|
|---|
| 476 |
|
|---|
| 477 | bus_init(&bus->base, sizeof(xhci_device_t));
|
|---|
| 478 |
|
|---|
| 479 | bus->devices_by_slot = calloc(hc->max_slots, sizeof(xhci_device_t *));
|
|---|
| 480 | if (!bus->devices_by_slot)
|
|---|
| 481 | return ENOMEM;
|
|---|
| 482 |
|
|---|
| 483 | bus->hc = hc;
|
|---|
| 484 | bus->base.ops = &xhci_bus_ops;
|
|---|
| 485 | return EOK;
|
|---|
| 486 | }
|
|---|
| 487 |
|
|---|
| 488 | /** Finalize XHCI bus.
|
|---|
| 489 | * @param[in] bus XHCI bus to finalize.
|
|---|
| 490 | */
|
|---|
| 491 | void xhci_bus_fini(xhci_bus_t *bus)
|
|---|
| 492 | {
|
|---|
| 493 | // FIXME: Ensure there are no more devices?
|
|---|
| 494 | free(bus->devices_by_slot);
|
|---|
| 495 | // FIXME: Something else we forgot?
|
|---|
| 496 | }
|
|---|
| 497 |
|
|---|
| 498 | /**
|
|---|
| 499 | * @}
|
|---|
| 500 | */
|
|---|