| 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/utility.h>
|
|---|
| 36 | #include <usb/host/ddf_helpers.h>
|
|---|
| 37 | #include <usb/host/endpoint.h>
|
|---|
| 38 | #include <usb/host/hcd.h>
|
|---|
| 39 | #include <usb/host/utility.h>
|
|---|
| 40 | #include <usb/classes/classes.h>
|
|---|
| 41 | #include <usb/classes/hub.h>
|
|---|
| 42 | #include <usb/descriptor.h>
|
|---|
| 43 | #include <usb/debug.h>
|
|---|
| 44 |
|
|---|
| 45 | #include <assert.h>
|
|---|
| 46 | #include <errno.h>
|
|---|
| 47 | #include <str_error.h>
|
|---|
| 48 | #include <macros.h>
|
|---|
| 49 | #include <stdbool.h>
|
|---|
| 50 |
|
|---|
| 51 | #include "hc.h"
|
|---|
| 52 | #include "bus.h"
|
|---|
| 53 | #include "endpoint.h"
|
|---|
| 54 | #include "hw_struct/context.h"
|
|---|
| 55 |
|
|---|
| 56 | #include "device.h"
|
|---|
| 57 |
|
|---|
| 58 | /** Initial descriptor used for control endpoint 0 before more configuration is retrieved. */
|
|---|
| 59 | static const usb_endpoint_descriptors_t ep0_initial_desc = {
|
|---|
| 60 | .endpoint.max_packet_size = CTRL_PIPE_MIN_PACKET_SIZE,
|
|---|
| 61 | };
|
|---|
| 62 |
|
|---|
| 63 | /**
|
|---|
| 64 | * Assign address and control endpoint to a new XHCI device. Once this function
|
|---|
| 65 | * successfully returns, the device is online.
|
|---|
| 66 | *
|
|---|
| 67 | * @param[in] bus XHCI bus, in which the address is assigned.
|
|---|
| 68 | * @param[in] dev New device to address and configure./e
|
|---|
| 69 | * @return Error code.
|
|---|
| 70 | */
|
|---|
| 71 | static int address_device(xhci_device_t *dev)
|
|---|
| 72 | {
|
|---|
| 73 | int err;
|
|---|
| 74 |
|
|---|
| 75 | /* Enable new slot. */
|
|---|
| 76 | if ((err = hc_enable_slot(dev)) != EOK)
|
|---|
| 77 | return err;
|
|---|
| 78 | usb_log_debug2("Obtained slot ID: %u.", dev->slot_id);
|
|---|
| 79 |
|
|---|
| 80 | /* Create and configure control endpoint. */
|
|---|
| 81 | endpoint_t *ep0_base = xhci_endpoint_create(&dev->base, &ep0_initial_desc);
|
|---|
| 82 | if (!ep0_base)
|
|---|
| 83 | goto err_slot;
|
|---|
| 84 |
|
|---|
| 85 | /* Bus reference */
|
|---|
| 86 | endpoint_add_ref(ep0_base);
|
|---|
| 87 | dev->base.endpoints[0] = ep0_base;
|
|---|
| 88 |
|
|---|
| 89 | usb_log_debug2("Looking up new device initial speed: %i", dev->base.speed);
|
|---|
| 90 | ep0_base->max_packet_size = hc_get_ep0_initial_mps(dev->base.speed);
|
|---|
| 91 |
|
|---|
| 92 | /* Address device */
|
|---|
| 93 | if ((err = hc_address_device(dev)))
|
|---|
| 94 | goto err_added;
|
|---|
| 95 |
|
|---|
| 96 | return EOK;
|
|---|
| 97 |
|
|---|
| 98 | err_added:
|
|---|
| 99 | /* Bus reference */
|
|---|
| 100 | endpoint_del_ref(ep0_base);
|
|---|
| 101 | dev->base.endpoints[0] = NULL;
|
|---|
| 102 | err_slot:
|
|---|
| 103 | hc_disable_slot(dev);
|
|---|
| 104 | return err;
|
|---|
| 105 | }
|
|---|
| 106 |
|
|---|
| 107 | /**
|
|---|
| 108 | * Retrieve and set maximum packet size for endpoint zero of a XHCI device.
|
|---|
| 109 | *
|
|---|
| 110 | * @param[in] hc Host controller, which manages the device.
|
|---|
| 111 | * @param[in] dev Device with operational endpoint zero.
|
|---|
| 112 | * @return Error code.
|
|---|
| 113 | */
|
|---|
| 114 | static int setup_ep0_packet_size(xhci_hc_t *hc, xhci_device_t *dev)
|
|---|
| 115 | {
|
|---|
| 116 | int err;
|
|---|
| 117 |
|
|---|
| 118 | uint16_t max_packet_size;
|
|---|
| 119 | if ((err = hc_get_ep0_max_packet_size(&max_packet_size, (bus_t *) &hc->bus, &dev->base)))
|
|---|
| 120 | return err;
|
|---|
| 121 |
|
|---|
| 122 | xhci_endpoint_t *ep0 = xhci_endpoint_get(dev->base.endpoints[0]);
|
|---|
| 123 | assert(ep0);
|
|---|
| 124 |
|
|---|
| 125 | if (ep0->base.max_packet_size == max_packet_size)
|
|---|
| 126 | return EOK;
|
|---|
| 127 |
|
|---|
| 128 | ep0->base.max_packet_size = max_packet_size;
|
|---|
| 129 | ep0->base.max_transfer_size = max_packet_size * ep0->base.packets_per_uframe;
|
|---|
| 130 |
|
|---|
| 131 | if ((err = hc_update_endpoint(ep0)))
|
|---|
| 132 | return err;
|
|---|
| 133 |
|
|---|
| 134 | return EOK;
|
|---|
| 135 | }
|
|---|
| 136 |
|
|---|
| 137 | /**
|
|---|
| 138 | * Check whether the device is a hub and if so, fill its characterstics.
|
|---|
| 139 | *
|
|---|
| 140 | * If this fails, it does not necessarily mean the device is unusable.
|
|---|
| 141 | * Just the TT will not work correctly.
|
|---|
| 142 | */
|
|---|
| 143 | static int setup_hub(xhci_device_t *dev, usb_standard_device_descriptor_t *desc)
|
|---|
| 144 | {
|
|---|
| 145 | if (desc->device_class != USB_CLASS_HUB)
|
|---|
| 146 | return EOK;
|
|---|
| 147 |
|
|---|
| 148 | usb_hub_descriptor_header_t hub_desc = { 0 };
|
|---|
| 149 | const int err = hc_get_hub_desc(&dev->base, &hub_desc);
|
|---|
| 150 | if (err)
|
|---|
| 151 | return err;
|
|---|
| 152 |
|
|---|
| 153 | dev->is_hub = 1;
|
|---|
| 154 | dev->num_ports = hub_desc.port_count;
|
|---|
| 155 | dev->tt_think_time = 8 +
|
|---|
| 156 | 8 * !!(hub_desc.characteristics & HUB_CHAR_TT_THINK_8) +
|
|---|
| 157 | 16 * !!(hub_desc.characteristics & HUB_CHAR_TT_THINK_16);
|
|---|
| 158 |
|
|---|
| 159 | usb_log_debug2("Device(%u): recognised USB hub with %u ports", dev->base.address, dev->num_ports);
|
|---|
| 160 | return EOK;
|
|---|
| 161 | }
|
|---|
| 162 |
|
|---|
| 163 | /**
|
|---|
| 164 | * Respond to a new device on the XHCI bus. Address it, negotiate packet size
|
|---|
| 165 | * and retrieve USB descriptors.
|
|---|
| 166 | *
|
|---|
| 167 | * @param[in] bus XHCI bus, where the new device emerged.
|
|---|
| 168 | * @param[in] dev XHCI device, which has appeared on the bus.
|
|---|
| 169 | *
|
|---|
| 170 | * @return Error code.
|
|---|
| 171 | */
|
|---|
| 172 | int xhci_device_enumerate(device_t *dev)
|
|---|
| 173 | {
|
|---|
| 174 | int err;
|
|---|
| 175 | xhci_bus_t *bus = bus_to_xhci_bus(dev->bus);
|
|---|
| 176 | xhci_device_t *xhci_dev = xhci_device_get(dev);
|
|---|
| 177 |
|
|---|
| 178 | /* Calculate route string */
|
|---|
| 179 | xhci_device_t *xhci_hub = xhci_device_get(dev->hub);
|
|---|
| 180 | xhci_dev->route_str = xhci_hub->route_str;
|
|---|
| 181 |
|
|---|
| 182 | /* Roothub port is not part of the route string */
|
|---|
| 183 | if (dev->tier >= 2) {
|
|---|
| 184 | const unsigned offset = 4 * (dev->tier - 2);
|
|---|
| 185 | xhci_dev->route_str |= (dev->port & 0xf) << offset;
|
|---|
| 186 | xhci_dev->rh_port = xhci_hub->rh_port;
|
|---|
| 187 | }
|
|---|
| 188 |
|
|---|
| 189 | int retries = 3;
|
|---|
| 190 | do {
|
|---|
| 191 | /* Assign an address to the device */
|
|---|
| 192 | err = address_device(xhci_dev);
|
|---|
| 193 | } while (err == ESTALL && --retries > 0);
|
|---|
| 194 |
|
|---|
| 195 | if (err) {
|
|---|
| 196 | usb_log_error("Failed to setup address of the new device: %s", str_error(err));
|
|---|
| 197 | return err;
|
|---|
| 198 | }
|
|---|
| 199 |
|
|---|
| 200 | /* Setup EP0 might already need to issue a transfer. */
|
|---|
| 201 | fibril_mutex_lock(&bus->base.guard);
|
|---|
| 202 | assert(bus->devices_by_slot[xhci_dev->slot_id] == NULL);
|
|---|
| 203 | bus->devices_by_slot[xhci_dev->slot_id] = xhci_dev;
|
|---|
| 204 | fibril_mutex_unlock(&bus->base.guard);
|
|---|
| 205 |
|
|---|
| 206 | if ((err = setup_ep0_packet_size(bus->hc, xhci_dev))) {
|
|---|
| 207 | usb_log_error("Failed to setup control endpoint of the new device: %s", str_error(err));
|
|---|
| 208 | goto err_address;
|
|---|
| 209 | }
|
|---|
| 210 |
|
|---|
| 211 | usb_standard_device_descriptor_t desc = { 0 };
|
|---|
| 212 |
|
|---|
| 213 | if ((err = hc_get_device_desc(dev, &desc))) {
|
|---|
| 214 | usb_log_error("Device(%d): failed to get devices descriptor: %s", dev->address, str_error(err));
|
|---|
| 215 | goto err_address;
|
|---|
| 216 | }
|
|---|
| 217 |
|
|---|
| 218 | if ((err = setup_hub(xhci_dev, &desc)))
|
|---|
| 219 | usb_log_warning("Device(%d): failed to setup hub characteristics: %s. "
|
|---|
| 220 | " Continuing anyway.", dev->address, str_error(err));
|
|---|
| 221 |
|
|---|
| 222 | if ((err = hcd_ddf_setup_match_ids(dev, &desc))) {
|
|---|
| 223 | usb_log_error("Device(%d): failed to setup match IDs: %s", dev->address, str_error(err));
|
|---|
| 224 | goto err_address;
|
|---|
| 225 | }
|
|---|
| 226 |
|
|---|
| 227 | return EOK;
|
|---|
| 228 |
|
|---|
| 229 | err_address:
|
|---|
| 230 | return err;
|
|---|
| 231 | }
|
|---|
| 232 |
|
|---|
| 233 | /**
|
|---|
| 234 | * Remove device from XHCI bus. Transition it to the offline state, abort all
|
|---|
| 235 | * ongoing transfers and unregister all of its endpoints.
|
|---|
| 236 | *
|
|---|
| 237 | * Bus callback.
|
|---|
| 238 | *
|
|---|
| 239 | * @param[in] bus XHCI bus, from which the device is removed.
|
|---|
| 240 | * @param[in] dev XHCI device, which is removed from the bus.
|
|---|
| 241 | * @return Error code.
|
|---|
| 242 | */
|
|---|
| 243 | void xhci_device_gone(device_t *dev)
|
|---|
| 244 | {
|
|---|
| 245 | int err;
|
|---|
| 246 | xhci_bus_t *bus = bus_to_xhci_bus(dev->bus);
|
|---|
| 247 | xhci_device_t *xhci_dev = xhci_device_get(dev);
|
|---|
| 248 |
|
|---|
| 249 | /* Disable the slot, dropping all endpoints. */
|
|---|
| 250 | const uint32_t slot_id = xhci_dev->slot_id;
|
|---|
| 251 | if ((err = hc_disable_slot(xhci_dev))) {
|
|---|
| 252 | usb_log_warning("Failed to disable slot of device " XHCI_DEV_FMT ": %s",
|
|---|
| 253 | XHCI_DEV_ARGS(*xhci_dev), str_error(err));
|
|---|
| 254 | }
|
|---|
| 255 |
|
|---|
| 256 | bus->devices_by_slot[slot_id] = NULL;
|
|---|
| 257 | }
|
|---|
| 258 |
|
|---|
| 259 | /**
|
|---|
| 260 | * Reverts things device_offline did, getting the device back up.
|
|---|
| 261 | *
|
|---|
| 262 | * Bus callback.
|
|---|
| 263 | */
|
|---|
| 264 | int xhci_device_online(device_t *dev_base)
|
|---|
| 265 | {
|
|---|
| 266 | int err;
|
|---|
| 267 |
|
|---|
| 268 | xhci_bus_t *bus = bus_to_xhci_bus(dev_base->bus);
|
|---|
| 269 | assert(bus);
|
|---|
| 270 |
|
|---|
| 271 | xhci_device_t *dev = xhci_device_get(dev_base);
|
|---|
| 272 | assert(dev);
|
|---|
| 273 |
|
|---|
| 274 | /* Transition the device from the Addressed to the Configured state. */
|
|---|
| 275 | if ((err = hc_configure_device(dev))) {
|
|---|
| 276 | usb_log_warning("Failed to configure device " XHCI_DEV_FMT ".", XHCI_DEV_ARGS(*dev));
|
|---|
| 277 | return err;
|
|---|
| 278 | }
|
|---|
| 279 |
|
|---|
| 280 | return EOK;
|
|---|
| 281 | }
|
|---|
| 282 |
|
|---|
| 283 | /**
|
|---|
| 284 | * Make given device offline. Offline the DDF function, tear down all
|
|---|
| 285 | * endpoints, issue Deconfigure Device command to xHC.
|
|---|
| 286 | *
|
|---|
| 287 | * Bus callback.
|
|---|
| 288 | */
|
|---|
| 289 | void xhci_device_offline(device_t *dev_base)
|
|---|
| 290 | {
|
|---|
| 291 | int err;
|
|---|
| 292 |
|
|---|
| 293 | xhci_bus_t *bus = bus_to_xhci_bus(dev_base->bus);
|
|---|
| 294 | assert(bus);
|
|---|
| 295 |
|
|---|
| 296 | xhci_device_t *dev = xhci_device_get(dev_base);
|
|---|
| 297 | assert(dev);
|
|---|
| 298 |
|
|---|
| 299 | /* Issue one HC command to simultaneously drop all endpoints except zero. */
|
|---|
| 300 | if ((err = hc_deconfigure_device(dev))) {
|
|---|
| 301 | usb_log_warning("Failed to deconfigure device " XHCI_DEV_FMT ".",
|
|---|
| 302 | XHCI_DEV_ARGS(*dev));
|
|---|
| 303 | }
|
|---|
| 304 | }
|
|---|
| 305 |
|
|---|
| 306 | /**
|
|---|
| 307 | * Fill a slot context that is part of an Input Context with appropriate
|
|---|
| 308 | * values.
|
|---|
| 309 | *
|
|---|
| 310 | * @param ctx Slot context, zeroed out.
|
|---|
| 311 | */
|
|---|
| 312 | void xhci_setup_slot_context(xhci_device_t *dev, xhci_slot_ctx_t *ctx)
|
|---|
| 313 | {
|
|---|
| 314 | /* Initialize slot_ctx according to section 4.3.3 point 3. */
|
|---|
| 315 | XHCI_SLOT_ROOT_HUB_PORT_SET(*ctx, dev->rh_port);
|
|---|
| 316 | XHCI_SLOT_ROUTE_STRING_SET(*ctx, dev->route_str);
|
|---|
| 317 | XHCI_SLOT_SPEED_SET(*ctx, hc_speed_to_psiv(dev->base.speed));
|
|---|
| 318 |
|
|---|
| 319 | /*
|
|---|
| 320 | * Note: This function is used even before this flag can be set, to
|
|---|
| 321 | * issue the address device command. It is OK, because these
|
|---|
| 322 | * flags are not required to be valid for that command.
|
|---|
| 323 | */
|
|---|
| 324 | if (dev->is_hub) {
|
|---|
| 325 | XHCI_SLOT_HUB_SET(*ctx, 1);
|
|---|
| 326 | XHCI_SLOT_NUM_PORTS_SET(*ctx, dev->num_ports);
|
|---|
| 327 | XHCI_SLOT_TT_THINK_TIME_SET(*ctx, dev->tt_think_time);
|
|---|
| 328 | XHCI_SLOT_MTT_SET(*ctx, 0); // MTT not supported yet
|
|---|
| 329 | }
|
|---|
| 330 |
|
|---|
| 331 | /* Setup Transaction Translation. TODO: Test this with HS hub. */
|
|---|
| 332 | if (dev->base.tt.dev != NULL) {
|
|---|
| 333 | xhci_device_t *hub = xhci_device_get(dev->base.tt.dev);
|
|---|
| 334 | XHCI_SLOT_TT_HUB_SLOT_ID_SET(*ctx, hub->slot_id);
|
|---|
| 335 | XHCI_SLOT_TT_HUB_PORT_SET(*ctx, dev->base.tt.port);
|
|---|
| 336 | }
|
|---|
| 337 |
|
|---|
| 338 | // As we always allocate space for whole input context, we can set this to maximum
|
|---|
| 339 | XHCI_SLOT_CTX_ENTRIES_SET(*ctx, 31);
|
|---|
| 340 | }
|
|---|
| 341 |
|
|---|
| 342 |
|
|---|
| 343 | /**
|
|---|
| 344 | * @}
|
|---|
| 345 | */
|
|---|