[5cbccd4] | 1 | /*
|
---|
| 2 | * Copyright (c) 2017 Ondrej Hlavaty
|
---|
| 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 |
|
---|
| 29 | /** @addtogroup drvusbxhci
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | * @brief The host controller data bookkeeping.
|
---|
| 34 | */
|
---|
| 35 |
|
---|
| 36 | #include <errno.h>
|
---|
[cb89430] | 37 | #include <str_error.h>
|
---|
[5cbccd4] | 38 | #include <usb/debug.h>
|
---|
[5fd9c30] | 39 | #include <usb/host/endpoint.h>
|
---|
[5cbccd4] | 40 | #include "debug.h"
|
---|
| 41 | #include "hc.h"
|
---|
[7bd99bf] | 42 | #include "rh.h"
|
---|
[cb89430] | 43 | #include "hw_struct/trb.h"
|
---|
[0206d35] | 44 | #include "hw_struct/context.h"
|
---|
| 45 | #include "endpoint.h"
|
---|
[e9e24f2] | 46 | #include "transfers.h"
|
---|
| 47 | #include "trb_ring.h"
|
---|
[5cbccd4] | 48 |
|
---|
[91ca111] | 49 | /**
|
---|
| 50 | * Default USB Speed ID mapping: Table 157
|
---|
| 51 | */
|
---|
| 52 | #define PSI_TO_BPS(psie, psim) (((uint64_t) psim) << (10 * psie))
|
---|
[f668d60] | 53 | #define PORT_SPEED(usb, mjr, psie, psim) { \
|
---|
[816335c] | 54 | .name = "USB ", \
|
---|
| 55 | .major = mjr, \
|
---|
| 56 | .minor = 0, \
|
---|
[f668d60] | 57 | .usb_speed = USB_SPEED_##usb, \
|
---|
[91ca111] | 58 | .rx_bps = PSI_TO_BPS(psie, psim), \
|
---|
| 59 | .tx_bps = PSI_TO_BPS(psie, psim) \
|
---|
| 60 | }
|
---|
[f668d60] | 61 | static const xhci_port_speed_t ps_default_full = PORT_SPEED(FULL, 2, 2, 12);
|
---|
| 62 | static const xhci_port_speed_t ps_default_low = PORT_SPEED(LOW, 2, 1, 1500);
|
---|
| 63 | static const xhci_port_speed_t ps_default_high = PORT_SPEED(HIGH, 2, 2, 480);
|
---|
| 64 | static const xhci_port_speed_t ps_default_super = PORT_SPEED(SUPER, 3, 3, 5);
|
---|
[91ca111] | 65 |
|
---|
| 66 | /**
|
---|
| 67 | * Walk the list of extended capabilities.
|
---|
| 68 | */
|
---|
| 69 | static int hc_parse_ec(xhci_hc_t *hc)
|
---|
| 70 | {
|
---|
[816335c] | 71 | unsigned psic, major, minor;
|
---|
| 72 | xhci_sp_name_t name;
|
---|
| 73 |
|
---|
[f668d60] | 74 | xhci_port_speed_t *speeds = hc->speeds;
|
---|
[91ca111] | 75 |
|
---|
| 76 | for (xhci_extcap_t *ec = hc->xecp; ec; ec = xhci_extcap_next(ec)) {
|
---|
| 77 | xhci_dump_extcap(ec);
|
---|
| 78 | switch (XHCI_REG_RD(ec, XHCI_EC_CAP_ID)) {
|
---|
| 79 | case XHCI_EC_USB_LEGACY:
|
---|
| 80 | assert(hc->legsup == NULL);
|
---|
| 81 | hc->legsup = (xhci_legsup_t *) ec;
|
---|
| 82 | break;
|
---|
| 83 | case XHCI_EC_SUPPORTED_PROTOCOL:
|
---|
| 84 | psic = XHCI_REG_RD(ec, XHCI_EC_SP_PSIC);
|
---|
| 85 | major = XHCI_REG_RD(ec, XHCI_EC_SP_MAJOR);
|
---|
[816335c] | 86 | minor = XHCI_REG_RD(ec, XHCI_EC_SP_MINOR);
|
---|
| 87 | name.packed = host2uint32_t_le(XHCI_REG_RD(ec, XHCI_EC_SP_NAME));
|
---|
| 88 |
|
---|
| 89 | if (name.packed != xhci_name_usb.packed) {
|
---|
| 90 | /**
|
---|
| 91 | * The detection of such protocol would work,
|
---|
| 92 | * but the rest of the implementation is made
|
---|
| 93 | * for the USB protocol only.
|
---|
| 94 | */
|
---|
| 95 | usb_log_error("Unknown protocol %.4s.", name.str);
|
---|
| 96 | return ENOTSUP;
|
---|
| 97 | }
|
---|
[91ca111] | 98 |
|
---|
| 99 | // "Implied" speed
|
---|
| 100 | if (psic == 0) {
|
---|
[816335c] | 101 | assert(minor == 0);
|
---|
[370a1c8] | 102 |
|
---|
[91ca111] | 103 | if (major == 2) {
|
---|
[816335c] | 104 | speeds[1] = ps_default_full;
|
---|
| 105 | speeds[2] = ps_default_low;
|
---|
| 106 | speeds[3] = ps_default_high;
|
---|
[f668d60] | 107 |
|
---|
| 108 | hc->speed_to_psiv[USB_SPEED_FULL] = 1;
|
---|
| 109 | hc->speed_to_psiv[USB_SPEED_LOW] = 2;
|
---|
| 110 | hc->speed_to_psiv[USB_SPEED_HIGH] = 3;
|
---|
[91ca111] | 111 | } else if (major == 3) {
|
---|
[816335c] | 112 | speeds[4] = ps_default_super;
|
---|
[f668d60] | 113 | hc->speed_to_psiv[USB_SPEED_SUPER] = 4;
|
---|
[91ca111] | 114 | } else {
|
---|
| 115 | return EINVAL;
|
---|
| 116 | }
|
---|
| 117 |
|
---|
[816335c] | 118 | usb_log_debug2("Implied speed of USB %u.0 set up.", major);
|
---|
[91ca111] | 119 | } else {
|
---|
| 120 | for (unsigned i = 0; i < psic; i++) {
|
---|
| 121 | xhci_psi_t *psi = xhci_extcap_psi(ec, i);
|
---|
| 122 | unsigned sim = XHCI_REG_RD(psi, XHCI_PSI_PSIM);
|
---|
| 123 | unsigned psiv = XHCI_REG_RD(psi, XHCI_PSI_PSIV);
|
---|
| 124 | unsigned psie = XHCI_REG_RD(psi, XHCI_PSI_PSIE);
|
---|
| 125 | unsigned psim = XHCI_REG_RD(psi, XHCI_PSI_PSIM);
|
---|
| 126 |
|
---|
[816335c] | 127 | speeds[psiv].major = major;
|
---|
| 128 | speeds[psiv].minor = minor;
|
---|
| 129 | str_ncpy(speeds[psiv].name, 4, name.str, 4);
|
---|
[f668d60] | 130 | speeds[psiv].usb_speed = USB_SPEED_MAX;
|
---|
[816335c] | 131 |
|
---|
[91ca111] | 132 | uint64_t bps = PSI_TO_BPS(psie, psim);
|
---|
| 133 |
|
---|
| 134 | if (sim == XHCI_PSI_PLT_SYMM || sim == XHCI_PSI_PLT_RX)
|
---|
[816335c] | 135 | speeds[psiv].rx_bps = bps;
|
---|
[91ca111] | 136 | if (sim == XHCI_PSI_PLT_SYMM || sim == XHCI_PSI_PLT_TX) {
|
---|
[816335c] | 137 | speeds[psiv].tx_bps = bps;
|
---|
| 138 | usb_log_debug2("Speed %u set up for bps %" PRIu64 " / %" PRIu64 ".", psiv, speeds[psiv].rx_bps, speeds[psiv].tx_bps);
|
---|
[91ca111] | 139 | }
|
---|
| 140 | }
|
---|
| 141 | }
|
---|
| 142 | }
|
---|
| 143 | }
|
---|
| 144 | return EOK;
|
---|
| 145 | }
|
---|
| 146 |
|
---|
[e4d7363] | 147 | int hc_init_mmio(xhci_hc_t *hc, const hw_res_list_parsed_t *hw_res)
|
---|
| 148 | {
|
---|
| 149 | int err;
|
---|
| 150 |
|
---|
| 151 | if (hw_res->mem_ranges.count != 1) {
|
---|
| 152 | usb_log_error("Unexpected MMIO area, bailing out.");
|
---|
| 153 | return EINVAL;
|
---|
| 154 | }
|
---|
| 155 |
|
---|
| 156 | hc->mmio_range = hw_res->mem_ranges.ranges[0];
|
---|
| 157 |
|
---|
| 158 | usb_log_debug("MMIO area at %p (size %zu), IRQ %d.\n",
|
---|
| 159 | RNGABSPTR(hc->mmio_range), RNGSZ(hc->mmio_range), hw_res->irqs.irqs[0]);
|
---|
| 160 |
|
---|
| 161 | if (RNGSZ(hc->mmio_range) < sizeof(xhci_cap_regs_t))
|
---|
| 162 | return EOVERFLOW;
|
---|
| 163 |
|
---|
| 164 | void *base;
|
---|
| 165 | if ((err = pio_enable_range(&hc->mmio_range, &base)))
|
---|
| 166 | return err;
|
---|
| 167 |
|
---|
[20eaa82] | 168 | hc->reg_base = base;
|
---|
[e4d7363] | 169 | hc->cap_regs = (xhci_cap_regs_t *) base;
|
---|
| 170 | hc->op_regs = (xhci_op_regs_t *) (base + XHCI_REG_RD(hc->cap_regs, XHCI_CAP_LENGTH));
|
---|
| 171 | hc->rt_regs = (xhci_rt_regs_t *) (base + XHCI_REG_RD(hc->cap_regs, XHCI_CAP_RTSOFF));
|
---|
| 172 | hc->db_arry = (xhci_doorbell_t *) (base + XHCI_REG_RD(hc->cap_regs, XHCI_CAP_DBOFF));
|
---|
| 173 |
|
---|
[91ca111] | 174 | uintptr_t xec_offset = XHCI_REG_RD(hc->cap_regs, XHCI_CAP_XECP) * sizeof(xhci_dword_t);
|
---|
| 175 | if (xec_offset > 0)
|
---|
| 176 | hc->xecp = (xhci_extcap_t *) (base + xec_offset);
|
---|
| 177 |
|
---|
[e4d7363] | 178 | usb_log_debug2("Initialized MMIO reg areas:");
|
---|
| 179 | usb_log_debug2("\tCapability regs: %p", hc->cap_regs);
|
---|
| 180 | usb_log_debug2("\tOperational regs: %p", hc->op_regs);
|
---|
| 181 | usb_log_debug2("\tRuntime regs: %p", hc->rt_regs);
|
---|
| 182 | usb_log_debug2("\tDoorbell array base: %p", hc->db_arry);
|
---|
| 183 |
|
---|
| 184 | xhci_dump_cap_regs(hc->cap_regs);
|
---|
| 185 |
|
---|
| 186 | hc->ac64 = XHCI_REG_RD(hc->cap_regs, XHCI_CAP_AC64);
|
---|
| 187 | hc->max_slots = XHCI_REG_RD(hc->cap_regs, XHCI_CAP_MAX_SLOTS);
|
---|
| 188 |
|
---|
[91ca111] | 189 | if ((err = hc_parse_ec(hc))) {
|
---|
[20eaa82] | 190 | pio_disable(hc->reg_base, RNGSZ(hc->mmio_range));
|
---|
[91ca111] | 191 | return err;
|
---|
| 192 | }
|
---|
| 193 |
|
---|
[e4d7363] | 194 | return EOK;
|
---|
| 195 | }
|
---|
| 196 |
|
---|
[0f6b50f] | 197 | int hc_init_memory(xhci_hc_t *hc, ddf_dev_t *device)
|
---|
[e4d7363] | 198 | {
|
---|
| 199 | int err;
|
---|
| 200 |
|
---|
[b80c1ab] | 201 | if (dma_buffer_alloc(&hc->dcbaa_dma, (1 + hc->max_slots) * sizeof(uint64_t)))
|
---|
[e4d7363] | 202 | return ENOMEM;
|
---|
[b80c1ab] | 203 | hc->dcbaa = hc->dcbaa_dma.virt;
|
---|
[e4d7363] | 204 |
|
---|
[9b2f69e] | 205 | if ((err = xhci_event_ring_init(&hc->event_ring)))
|
---|
[889146e] | 206 | goto err_dcbaa;
|
---|
[e4d7363] | 207 |
|
---|
[b19131c5] | 208 | if ((err = xhci_scratchpad_alloc(hc)))
|
---|
[5a9ae994] | 209 | goto err_event_ring;
|
---|
[e4d7363] | 210 |
|
---|
[aee352c] | 211 | if ((err = xhci_init_commands(hc)))
|
---|
[ee28ae66] | 212 | goto err_scratch;
|
---|
[aee352c] | 213 |
|
---|
[2b61945] | 214 | if ((err = xhci_bus_init(&hc->bus, hc)))
|
---|
[6832245] | 215 | goto err_cmd;
|
---|
[e6b9182] | 216 |
|
---|
[6832245] | 217 | if ((err = xhci_rh_init(&hc->rh, hc, device)))
|
---|
| 218 | goto err_bus;
|
---|
[e6b9182] | 219 |
|
---|
[e4d7363] | 220 | return EOK;
|
---|
| 221 |
|
---|
[6832245] | 222 | err_bus:
|
---|
| 223 | xhci_bus_fini(&hc->bus);
|
---|
[ee28ae66] | 224 | err_cmd:
|
---|
[d271f78] | 225 | xhci_fini_commands(hc);
|
---|
[ee28ae66] | 226 | err_scratch:
|
---|
| 227 | xhci_scratchpad_free(hc);
|
---|
[5a9ae994] | 228 | err_event_ring:
|
---|
[e4d7363] | 229 | xhci_event_ring_fini(&hc->event_ring);
|
---|
| 230 | err_dcbaa:
|
---|
[b80c1ab] | 231 | hc->dcbaa = NULL;
|
---|
| 232 | dma_buffer_free(&hc->dcbaa_dma);
|
---|
[e4d7363] | 233 | return err;
|
---|
| 234 | }
|
---|
| 235 |
|
---|
[ab5a0830] | 236 | /*
|
---|
| 237 | * Pseudocode:
|
---|
| 238 | * ip = read(intr[0].iman)
|
---|
| 239 | * if (ip) {
|
---|
| 240 | * status = read(usbsts)
|
---|
| 241 | * assert status
|
---|
| 242 | * assert ip
|
---|
| 243 | * accept (passing status)
|
---|
| 244 | * }
|
---|
| 245 | * decline
|
---|
| 246 | */
|
---|
| 247 | static const irq_cmd_t irq_commands[] = {
|
---|
| 248 | {
|
---|
| 249 | .cmd = CMD_PIO_READ_32,
|
---|
| 250 | .dstarg = 3,
|
---|
| 251 | .addr = NULL /* intr[0].iman */
|
---|
| 252 | },
|
---|
| 253 | {
|
---|
| 254 | .cmd = CMD_AND,
|
---|
| 255 | .srcarg = 3,
|
---|
| 256 | .dstarg = 4,
|
---|
| 257 | .value = 0 /* host2xhci(32, 1) */
|
---|
| 258 | },
|
---|
| 259 | {
|
---|
| 260 | .cmd = CMD_PREDICATE,
|
---|
| 261 | .srcarg = 4,
|
---|
| 262 | .value = 5
|
---|
| 263 | },
|
---|
| 264 | {
|
---|
| 265 | .cmd = CMD_PIO_READ_32,
|
---|
| 266 | .dstarg = 1,
|
---|
| 267 | .addr = NULL /* usbsts */
|
---|
| 268 | },
|
---|
| 269 | {
|
---|
| 270 | .cmd = CMD_AND,
|
---|
| 271 | .srcarg = 1,
|
---|
| 272 | .dstarg = 2,
|
---|
| 273 | .value = 0 /* host2xhci(32, XHCI_STATUS_ACK_MASK) */
|
---|
| 274 | },
|
---|
| 275 | {
|
---|
| 276 | .cmd = CMD_PIO_WRITE_A_32,
|
---|
| 277 | .srcarg = 2,
|
---|
| 278 | .addr = NULL /* usbsts */
|
---|
| 279 | },
|
---|
| 280 | {
|
---|
| 281 | .cmd = CMD_PIO_WRITE_A_32,
|
---|
[efe9463] | 282 | .srcarg = 3,
|
---|
[ab5a0830] | 283 | .addr = NULL /* intr[0].iman */
|
---|
| 284 | },
|
---|
| 285 | {
|
---|
| 286 | .cmd = CMD_ACCEPT
|
---|
| 287 | },
|
---|
| 288 | {
|
---|
| 289 | .cmd = CMD_DECLINE
|
---|
| 290 | }
|
---|
| 291 | };
|
---|
| 292 |
|
---|
[e4d7363] | 293 |
|
---|
[cb89430] | 294 | /**
|
---|
| 295 | * Generates code to accept interrupts. The xHCI is designed primarily for
|
---|
| 296 | * MSI/MSI-X, but we use PCI Interrupt Pin. In this mode, all the Interrupters
|
---|
| 297 | * (except 0) are disabled.
|
---|
| 298 | */
|
---|
[e4d7363] | 299 | int hc_irq_code_gen(irq_code_t *code, xhci_hc_t *hc, const hw_res_list_parsed_t *hw_res)
|
---|
[cb89430] | 300 | {
|
---|
| 301 | assert(code);
|
---|
| 302 | assert(hw_res);
|
---|
| 303 |
|
---|
[e4d7363] | 304 | if (hw_res->irqs.count != 1) {
|
---|
[cb89430] | 305 | usb_log_info("Unexpected HW resources to enable interrupts.");
|
---|
| 306 | return EINVAL;
|
---|
| 307 | }
|
---|
| 308 |
|
---|
| 309 | code->ranges = malloc(sizeof(irq_pio_range_t));
|
---|
| 310 | if (code->ranges == NULL)
|
---|
| 311 | return ENOMEM;
|
---|
| 312 |
|
---|
| 313 | code->cmds = malloc(sizeof(irq_commands));
|
---|
| 314 | if (code->cmds == NULL) {
|
---|
| 315 | free(code->ranges);
|
---|
| 316 | return ENOMEM;
|
---|
| 317 | }
|
---|
| 318 |
|
---|
| 319 | code->rangecount = 1;
|
---|
| 320 | code->ranges[0] = (irq_pio_range_t) {
|
---|
[91ca111] | 321 | .base = RNGABS(hc->mmio_range),
|
---|
| 322 | .size = RNGSZ(hc->mmio_range),
|
---|
[cb89430] | 323 | };
|
---|
| 324 |
|
---|
| 325 | code->cmdcount = ARRAY_SIZE(irq_commands);
|
---|
| 326 | memcpy(code->cmds, irq_commands, sizeof(irq_commands));
|
---|
| 327 |
|
---|
[91ca111] | 328 | void *intr0_iman = RNGABSPTR(hc->mmio_range) + XHCI_REG_RD(hc->cap_regs, XHCI_CAP_RTSOFF) + offsetof(xhci_rt_regs_t, ir[0]);
|
---|
[ab5a0830] | 329 | void *usbsts = RNGABSPTR(hc->mmio_range) + XHCI_REG_RD(hc->cap_regs, XHCI_CAP_LENGTH) + offsetof(xhci_op_regs_t, usbsts);
|
---|
[cb89430] | 330 | code->cmds[0].addr = intr0_iman;
|
---|
| 331 | code->cmds[1].value = host2xhci(32, 1);
|
---|
[ab5a0830] | 332 | code->cmds[3].addr = usbsts;
|
---|
| 333 | code->cmds[4].value = host2xhci(32, XHCI_STATUS_ACK_MASK);
|
---|
| 334 | code->cmds[5].addr = usbsts;
|
---|
| 335 | code->cmds[6].addr = intr0_iman;
|
---|
[cb89430] | 336 |
|
---|
| 337 | return hw_res->irqs.irqs[0];
|
---|
| 338 | }
|
---|
| 339 |
|
---|
[e4d7363] | 340 | int hc_claim(xhci_hc_t *hc, ddf_dev_t *dev)
|
---|
[cb89430] | 341 | {
|
---|
[91ca111] | 342 | /* No legacy support capability, the controller is solely for us */
|
---|
| 343 | if (!hc->legsup)
|
---|
| 344 | return EOK;
|
---|
| 345 |
|
---|
[e6b0dba] | 346 | /* Section 4.22.1 */
|
---|
| 347 | /* TODO: Test this with USB3-aware BIOS */
|
---|
| 348 | usb_log_debug2("LEGSUP: bios: %x, os: %x", hc->legsup->sem_bios, hc->legsup->sem_os);
|
---|
| 349 | XHCI_REG_WR(hc->legsup, XHCI_LEGSUP_SEM_OS, 1);
|
---|
[4d28d86] | 350 | for (int i = 0; i <= (XHCI_LEGSUP_BIOS_TIMEOUT_US / XHCI_LEGSUP_POLLING_DELAY_1MS); i++) {
|
---|
[e6b0dba] | 351 | usb_log_debug2("LEGSUP: elapsed: %i ms, bios: %x, os: %x", i,
|
---|
| 352 | XHCI_REG_RD(hc->legsup, XHCI_LEGSUP_SEM_BIOS),
|
---|
| 353 | XHCI_REG_RD(hc->legsup, XHCI_LEGSUP_SEM_OS));
|
---|
| 354 | if (XHCI_REG_RD(hc->legsup, XHCI_LEGSUP_SEM_BIOS) == 0) {
|
---|
| 355 | assert(XHCI_REG_RD(hc->legsup, XHCI_LEGSUP_SEM_OS) == 1);
|
---|
| 356 | return EOK;
|
---|
| 357 | }
|
---|
[c9d905f] | 358 | async_usleep(XHCI_LEGSUP_POLLING_DELAY_1MS);
|
---|
[e6b0dba] | 359 | }
|
---|
| 360 | usb_log_error("BIOS did not release XHCI legacy hold!\n");
|
---|
| 361 |
|
---|
[91ca111] | 362 | return ENOTSUP;
|
---|
[cb89430] | 363 | }
|
---|
| 364 |
|
---|
| 365 | static int hc_reset(xhci_hc_t *hc)
|
---|
| 366 | {
|
---|
| 367 | /* Stop the HC: set R/S to 0 */
|
---|
| 368 | XHCI_REG_CLR(hc->op_regs, XHCI_OP_RS, 1);
|
---|
| 369 |
|
---|
| 370 | /* Wait 16 ms until the HC is halted */
|
---|
| 371 | async_usleep(16000);
|
---|
| 372 | assert(XHCI_REG_RD(hc->op_regs, XHCI_OP_HCH));
|
---|
| 373 |
|
---|
| 374 | /* Reset */
|
---|
| 375 | XHCI_REG_SET(hc->op_regs, XHCI_OP_HCRST, 1);
|
---|
| 376 |
|
---|
| 377 | /* Wait until the reset is complete */
|
---|
| 378 | while (XHCI_REG_RD(hc->op_regs, XHCI_OP_HCRST))
|
---|
| 379 | async_usleep(1000);
|
---|
| 380 |
|
---|
| 381 | return EOK;
|
---|
| 382 | }
|
---|
| 383 |
|
---|
| 384 | /**
|
---|
| 385 | * Initialize the HC: section 4.2
|
---|
| 386 | */
|
---|
[e4d7363] | 387 | int hc_start(xhci_hc_t *hc, bool irq)
|
---|
[cb89430] | 388 | {
|
---|
| 389 | int err;
|
---|
| 390 |
|
---|
| 391 | if ((err = hc_reset(hc)))
|
---|
| 392 | return err;
|
---|
| 393 |
|
---|
[889146e] | 394 | // FIXME: Waiting forever.
|
---|
[cb89430] | 395 | while (XHCI_REG_RD(hc->op_regs, XHCI_OP_CNR))
|
---|
| 396 | async_usleep(1000);
|
---|
| 397 |
|
---|
[b80c1ab] | 398 | uint64_t dcbaaptr = hc->dcbaa_dma.phys;
|
---|
[cb89430] | 399 | XHCI_REG_WR(hc->op_regs, XHCI_OP_DCBAAP_LO, LOWER32(dcbaaptr));
|
---|
| 400 | XHCI_REG_WR(hc->op_regs, XHCI_OP_DCBAAP_HI, UPPER32(dcbaaptr));
|
---|
| 401 | XHCI_REG_WR(hc->op_regs, XHCI_OP_MAX_SLOTS_EN, 0);
|
---|
| 402 |
|
---|
[889146e] | 403 | uint64_t crptr = xhci_trb_ring_get_dequeue_ptr(&hc->cr.trb_ring);
|
---|
[cb89430] | 404 | XHCI_REG_WR(hc->op_regs, XHCI_OP_CRCR_LO, LOWER32(crptr) >> 6);
|
---|
| 405 | XHCI_REG_WR(hc->op_regs, XHCI_OP_CRCR_HI, UPPER32(crptr));
|
---|
| 406 |
|
---|
| 407 | xhci_interrupter_regs_t *intr0 = &hc->rt_regs->ir[0];
|
---|
| 408 | XHCI_REG_WR(intr0, XHCI_INTR_ERSTSZ, hc->event_ring.segment_count);
|
---|
[b80c1ab] | 409 | uint64_t erdp = hc->event_ring.dequeue_ptr;
|
---|
[12fba858] | 410 | XHCI_REG_WR(intr0, XHCI_INTR_ERDP_LO, LOWER32(erdp));
|
---|
| 411 | XHCI_REG_WR(intr0, XHCI_INTR_ERDP_HI, UPPER32(erdp));
|
---|
[b80c1ab] | 412 | uint64_t erstptr = hc->event_ring.erst.phys;
|
---|
[cb89430] | 413 | XHCI_REG_WR(intr0, XHCI_INTR_ERSTBA_LO, LOWER32(erstptr));
|
---|
| 414 | XHCI_REG_WR(intr0, XHCI_INTR_ERSTBA_HI, UPPER32(erstptr));
|
---|
| 415 |
|
---|
| 416 | if (irq) {
|
---|
| 417 | XHCI_REG_SET(intr0, XHCI_INTR_IE, 1);
|
---|
| 418 | XHCI_REG_SET(hc->op_regs, XHCI_OP_INTE, 1);
|
---|
| 419 | }
|
---|
| 420 |
|
---|
| 421 | XHCI_REG_SET(hc->op_regs, XHCI_OP_RS, 1);
|
---|
| 422 |
|
---|
[dcf0597] | 423 | /* The reset changed status of all ports, and SW originated reason does
|
---|
| 424 | * not cause an interrupt.
|
---|
| 425 | */
|
---|
| 426 | xhci_rh_handle_port_change(&hc->rh);
|
---|
| 427 |
|
---|
[cb89430] | 428 | return EOK;
|
---|
| 429 | }
|
---|
| 430 |
|
---|
[ab5a0830] | 431 | /**
|
---|
| 432 | * Used only when polling. Shall supplement the irq_commands.
|
---|
| 433 | */
|
---|
[32fb6bce] | 434 | int hc_status(bus_t *bus, uint32_t *status)
|
---|
[5cbccd4] | 435 | {
|
---|
[32fb6bce] | 436 | xhci_hc_t *hc = bus_to_hc(bus);
|
---|
[ab5a0830] | 437 | int ip = XHCI_REG_RD(hc->rt_regs->ir, XHCI_INTR_IP);
|
---|
| 438 | if (ip) {
|
---|
| 439 | *status = XHCI_REG_RD(hc->op_regs, XHCI_OP_STATUS);
|
---|
| 440 | XHCI_REG_WR(hc->op_regs, XHCI_OP_STATUS, *status & XHCI_STATUS_ACK_MASK);
|
---|
| 441 | XHCI_REG_WR(hc->rt_regs->ir, XHCI_INTR_IP, 1);
|
---|
| 442 |
|
---|
| 443 | /* interrupt handler expects status from irq_commands, which is
|
---|
| 444 | * in xhci order. */
|
---|
| 445 | *status = host2xhci(32, *status);
|
---|
| 446 | }
|
---|
[62ba2cbe] | 447 |
|
---|
[ab5a0830] | 448 | usb_log_debug2("HC(%p): Polled status: %x", hc, *status);
|
---|
[cb89430] | 449 | return EOK;
|
---|
| 450 | }
|
---|
| 451 |
|
---|
[32fb6bce] | 452 | int hc_schedule(usb_transfer_batch_t *batch)
|
---|
[5cbccd4] | 453 | {
|
---|
[275f529] | 454 | assert(batch);
|
---|
[32fb6bce] | 455 | xhci_hc_t *hc = bus_to_hc(endpoint_get_bus(batch->ep));
|
---|
[275f529] | 456 |
|
---|
[a5b3de6] | 457 | if (!batch->target.address) {
|
---|
[a0be5d0] | 458 | usb_log_error("Attempted to schedule transfer to address 0.");
|
---|
| 459 | return EINVAL;
|
---|
| 460 | }
|
---|
| 461 |
|
---|
[5fd9c30] | 462 | return xhci_transfer_schedule(hc, batch);
|
---|
[5cbccd4] | 463 | }
|
---|
| 464 |
|
---|
[472235a] | 465 | typedef int (*event_handler) (xhci_hc_t *, xhci_trb_t *trb);
|
---|
| 466 |
|
---|
| 467 | static event_handler event_handlers [] = {
|
---|
| 468 | [XHCI_TRB_TYPE_COMMAND_COMPLETION_EVENT] = &xhci_handle_command_completion,
|
---|
[dcf0597] | 469 | [XHCI_TRB_TYPE_PORT_STATUS_CHANGE_EVENT] = &xhci_rh_handle_port_status_change_event,
|
---|
[e9e24f2] | 470 | [XHCI_TRB_TYPE_TRANSFER_EVENT] = &xhci_handle_transfer_event,
|
---|
[472235a] | 471 | };
|
---|
| 472 |
|
---|
| 473 | static int hc_handle_event(xhci_hc_t *hc, xhci_trb_t *trb, xhci_interrupter_regs_t *intr)
|
---|
[7ee5408] | 474 | {
|
---|
[472235a] | 475 | unsigned type = TRB_TYPE(*trb);
|
---|
| 476 | if (type >= ARRAY_SIZE(event_handlers) || !event_handlers[type])
|
---|
| 477 | return ENOTSUP;
|
---|
| 478 |
|
---|
| 479 | return event_handlers[type](hc, trb);
|
---|
[7ee5408] | 480 | }
|
---|
| 481 |
|
---|
[cb89430] | 482 | static void hc_run_event_ring(xhci_hc_t *hc, xhci_event_ring_t *event_ring, xhci_interrupter_regs_t *intr)
|
---|
[62ba2cbe] | 483 | {
|
---|
[cb89430] | 484 | int err;
|
---|
[472235a] | 485 | ssize_t size = 16;
|
---|
| 486 | xhci_trb_t *queue = malloc(sizeof(xhci_trb_t) * size);
|
---|
| 487 | if (!queue) {
|
---|
| 488 | usb_log_error("Not enough memory to run the event ring.");
|
---|
| 489 | return;
|
---|
| 490 | }
|
---|
| 491 |
|
---|
| 492 | xhci_trb_t *head = queue;
|
---|
| 493 |
|
---|
| 494 | while ((err = xhci_event_ring_dequeue(event_ring, head)) != ENOENT) {
|
---|
| 495 | if (err != EOK) {
|
---|
[e50bdd92] | 496 | usb_log_warning("Error while accessing event ring: %s", str_error(err));
|
---|
| 497 | break;
|
---|
| 498 | }
|
---|
| 499 |
|
---|
[472235a] | 500 | usb_log_debug2("Dequeued trb from event ring: %s", xhci_trb_str_type(TRB_TYPE(*head)));
|
---|
| 501 | head++;
|
---|
[adb4e683] | 502 |
|
---|
| 503 | /* Expand the array if needed. */
|
---|
[472235a] | 504 | if (head - queue >= size) {
|
---|
[adb4e683] | 505 | size *= 2;
|
---|
[472235a] | 506 | xhci_trb_t *new_queue = realloc(queue, size);
|
---|
| 507 | if (new_queue == NULL)
|
---|
| 508 | break; /* Will process only those TRBs we have memory for. */
|
---|
[adb4e683] | 509 |
|
---|
[472235a] | 510 | head = new_queue + (head - queue);
|
---|
[adb4e683] | 511 | }
|
---|
[cb89430] | 512 | }
|
---|
| 513 |
|
---|
[adb4e683] | 514 | /* Update the ERDP to make room in the ring. */
|
---|
[472235a] | 515 | usb_log_debug2("Copying from ring finished, updating ERDP.");
|
---|
[12fba858] | 516 | uint64_t erdp = hc->event_ring.dequeue_ptr;
|
---|
| 517 | XHCI_REG_WR(intr, XHCI_INTR_ERDP_LO, LOWER32(erdp));
|
---|
| 518 | XHCI_REG_WR(intr, XHCI_INTR_ERDP_HI, UPPER32(erdp));
|
---|
[a06fd64] | 519 | XHCI_REG_SET(intr, XHCI_INTR_ERDP_EHB, 1);
|
---|
[adb4e683] | 520 |
|
---|
| 521 | /* Handle all of the collected events if possible. */
|
---|
[472235a] | 522 | if (head == queue)
|
---|
[adb4e683] | 523 | usb_log_warning("No events to be handled!");
|
---|
[472235a] | 524 |
|
---|
| 525 | for (xhci_trb_t *tail = queue; tail != head; tail++) {
|
---|
| 526 | if ((err = hc_handle_event(hc, tail, intr)) != EOK) {
|
---|
| 527 | usb_log_error("Failed to handle event: %s", str_error(err));
|
---|
| 528 | }
|
---|
[adb4e683] | 529 | }
|
---|
| 530 |
|
---|
[472235a] | 531 | free(queue);
|
---|
| 532 | usb_log_debug2("Event ring run finished.");
|
---|
[cb89430] | 533 | }
|
---|
| 534 |
|
---|
[32fb6bce] | 535 | void hc_interrupt(bus_t *bus, uint32_t status)
|
---|
[cb89430] | 536 | {
|
---|
[32fb6bce] | 537 | xhci_hc_t *hc = bus_to_hc(bus);
|
---|
[ab5a0830] | 538 | status = xhci2host(32, status);
|
---|
[aee352c] | 539 |
|
---|
[8b415cc] | 540 | if (status & XHCI_REG_MASK(XHCI_OP_PCD)) {
|
---|
[07c08ea] | 541 | usb_log_debug2("Root hub interrupt.");
|
---|
[dcf0597] | 542 | xhci_rh_handle_port_change(&hc->rh);
|
---|
[ab5a0830] | 543 | status &= ~XHCI_REG_MASK(XHCI_OP_PCD);
|
---|
[07c08ea] | 544 | }
|
---|
| 545 |
|
---|
[cb89430] | 546 | if (status & XHCI_REG_MASK(XHCI_OP_HSE)) {
|
---|
| 547 | usb_log_error("Host controller error occured. Bad things gonna happen...");
|
---|
[ab5a0830] | 548 | status &= ~XHCI_REG_MASK(XHCI_OP_HSE);
|
---|
[cb89430] | 549 | }
|
---|
| 550 |
|
---|
| 551 | if (status & XHCI_REG_MASK(XHCI_OP_EINT)) {
|
---|
[472235a] | 552 | usb_log_debug2("Event interrupt, running the event ring.");
|
---|
[ab5a0830] | 553 | hc_run_event_ring(hc, &hc->event_ring, &hc->rt_regs->ir[0]);
|
---|
| 554 | status &= ~XHCI_REG_MASK(XHCI_OP_EINT);
|
---|
[cb89430] | 555 | }
|
---|
[275f529] | 556 |
|
---|
[cb89430] | 557 | if (status & XHCI_REG_MASK(XHCI_OP_SRE)) {
|
---|
| 558 | usb_log_error("Save/Restore error occured. WTF, S/R mechanism not implemented!");
|
---|
[ab5a0830] | 559 | status &= ~XHCI_REG_MASK(XHCI_OP_SRE);
|
---|
| 560 | }
|
---|
| 561 |
|
---|
| 562 | if (status) {
|
---|
| 563 | usb_log_error("Non-zero status after interrupt handling (%08x) - missing something?", status);
|
---|
[cb89430] | 564 | }
|
---|
| 565 | }
|
---|
| 566 |
|
---|
[3256a6c] | 567 | static void hc_dcbaa_fini(xhci_hc_t *hc)
|
---|
| 568 | {
|
---|
| 569 | xhci_scratchpad_free(hc);
|
---|
[b80c1ab] | 570 | dma_buffer_free(&hc->dcbaa_dma);
|
---|
[3256a6c] | 571 | }
|
---|
| 572 |
|
---|
[e4d7363] | 573 | void hc_fini(xhci_hc_t *hc)
|
---|
[cb89430] | 574 | {
|
---|
[e6b9182] | 575 | xhci_bus_fini(&hc->bus);
|
---|
[cb89430] | 576 | xhci_event_ring_fini(&hc->event_ring);
|
---|
[3256a6c] | 577 | hc_dcbaa_fini(hc);
|
---|
[c46c356] | 578 | xhci_fini_commands(hc);
|
---|
[d32d51d] | 579 | xhci_rh_fini(&hc->rh);
|
---|
[20eaa82] | 580 | pio_disable(hc->reg_base, RNGSZ(hc->mmio_range));
|
---|
[e4d7363] | 581 | usb_log_info("HC(%p): Finalized.", hc);
|
---|
[62ba2cbe] | 582 | }
|
---|
| 583 |
|
---|
[a0be5d0] | 584 | int hc_ring_doorbell(xhci_hc_t *hc, unsigned doorbell, unsigned target)
|
---|
| 585 | {
|
---|
| 586 | assert(hc);
|
---|
| 587 | uint32_t v = host2xhci(32, target & BIT_RRANGE(uint32_t, 7));
|
---|
| 588 | pio_write_32(&hc->db_arry[doorbell], v);
|
---|
[2896ff6] | 589 | usb_log_debug2("Ringing doorbell %d (target: %d)", doorbell, target);
|
---|
[a0be5d0] | 590 | return EOK;
|
---|
| 591 | }
|
---|
[5cbccd4] | 592 |
|
---|
[8ea7459] | 593 | int hc_enable_slot(xhci_hc_t *hc, uint32_t *slot_id)
|
---|
| 594 | {
|
---|
| 595 | assert(hc);
|
---|
| 596 |
|
---|
| 597 | int err;
|
---|
| 598 | xhci_cmd_t cmd;
|
---|
[c3d926f3] | 599 | xhci_cmd_init(&cmd, XHCI_CMD_ENABLE_SLOT);
|
---|
[8ea7459] | 600 |
|
---|
[c3d926f3] | 601 | if ((err = xhci_cmd_sync(hc, &cmd))) {
|
---|
| 602 | goto end;
|
---|
| 603 | }
|
---|
[8ea7459] | 604 |
|
---|
[c3d926f3] | 605 | if (slot_id) {
|
---|
[8ea7459] | 606 | *slot_id = cmd.slot_id;
|
---|
[c3d926f3] | 607 | }
|
---|
[8ea7459] | 608 |
|
---|
[c3d926f3] | 609 | end:
|
---|
[8ea7459] | 610 | xhci_cmd_fini(&cmd);
|
---|
[c3d926f3] | 611 | return err;
|
---|
[8ea7459] | 612 | }
|
---|
| 613 |
|
---|
[9620a54] | 614 | int hc_disable_slot(xhci_hc_t *hc, xhci_device_t *dev)
|
---|
[f270ecb] | 615 | {
|
---|
[9620a54] | 616 | int err;
|
---|
[f270ecb] | 617 | assert(hc);
|
---|
[9620a54] | 618 |
|
---|
| 619 | if ((err = xhci_cmd_sync_inline(hc, DISABLE_SLOT, .slot_id = dev->slot_id))) {
|
---|
| 620 | return err;
|
---|
| 621 | }
|
---|
| 622 |
|
---|
| 623 | /* Free the device context. */
|
---|
| 624 | hc->dcbaa[dev->slot_id] = 0;
|
---|
[b80c1ab] | 625 | dma_buffer_free(&dev->dev_ctx);
|
---|
[9620a54] | 626 |
|
---|
| 627 | /* Mark the slot as invalid. */
|
---|
| 628 | dev->slot_id = 0;
|
---|
| 629 |
|
---|
| 630 | return EOK;
|
---|
[f270ecb] | 631 | }
|
---|
| 632 |
|
---|
[e76c0ea] | 633 | static int create_configure_ep_input_ctx(dma_buffer_t *dma_buf)
|
---|
[b724494] | 634 | {
|
---|
[b80c1ab] | 635 | const int err = dma_buffer_alloc(dma_buf, sizeof(xhci_input_ctx_t));
|
---|
| 636 | if (err)
|
---|
| 637 | return err;
|
---|
[b724494] | 638 |
|
---|
[b80c1ab] | 639 | xhci_input_ctx_t *ictx = dma_buf->virt;
|
---|
[b724494] | 640 | memset(ictx, 0, sizeof(xhci_input_ctx_t));
|
---|
| 641 |
|
---|
[e76c0ea] | 642 | // Quoting sec. 4.6.5 and 4.6.6: A1, D0, D1 are down (already zeroed), A0 is up.
|
---|
[b724494] | 643 | XHCI_INPUT_CTRL_CTX_ADD_SET(ictx->ctrl_ctx, 0);
|
---|
| 644 |
|
---|
| 645 | return EOK;
|
---|
| 646 | }
|
---|
| 647 |
|
---|
[0206d35] | 648 | int hc_address_device(xhci_hc_t *hc, xhci_device_t *dev, xhci_endpoint_t *ep0)
|
---|
[b724494] | 649 | {
|
---|
[0206d35] | 650 | int err = ENOMEM;
|
---|
| 651 |
|
---|
[2cf28b9] | 652 | /* Although we have the precise PSIV value on devices of tier 1,
|
---|
| 653 | * we have to rely on reverse mapping on others. */
|
---|
| 654 | if (!hc->speed_to_psiv[dev->base.speed]) {
|
---|
[9620a54] | 655 | usb_log_error("Device reported an USB speed that cannot be mapped to HC port speed.");
|
---|
[2cf28b9] | 656 | return EINVAL;
|
---|
| 657 | }
|
---|
| 658 |
|
---|
[0206d35] | 659 | /* Setup and register device context */
|
---|
[b80c1ab] | 660 | if (dma_buffer_alloc(&dev->dev_ctx, sizeof(xhci_device_ctx_t)))
|
---|
[0206d35] | 661 | goto err;
|
---|
[b80c1ab] | 662 | memset(dev->dev_ctx.virt, 0, sizeof(xhci_device_ctx_t));
|
---|
[0206d35] | 663 |
|
---|
[b80c1ab] | 664 | hc->dcbaa[dev->slot_id] = host2xhci(64, dev->dev_ctx.phys);
|
---|
[b724494] | 665 |
|
---|
| 666 | /* Issue configure endpoint command (sec 4.3.5). */
|
---|
[b80c1ab] | 667 | dma_buffer_t ictx_dma_buf;
|
---|
[e76c0ea] | 668 | if ((err = create_configure_ep_input_ctx(&ictx_dma_buf))) {
|
---|
[0206d35] | 669 | goto err_dev_ctx;
|
---|
[b724494] | 670 | }
|
---|
[b80c1ab] | 671 | xhci_input_ctx_t *ictx = ictx_dma_buf.virt;
|
---|
[b724494] | 672 |
|
---|
| 673 | /* Initialize slot_ctx according to section 4.3.3 point 3. */
|
---|
[2cf28b9] | 674 | XHCI_SLOT_ROOT_HUB_PORT_SET(ictx->slot_ctx, dev->rh_port);
|
---|
[b724494] | 675 | XHCI_SLOT_CTX_ENTRIES_SET(ictx->slot_ctx, 1);
|
---|
[2cf28b9] | 676 | XHCI_SLOT_ROUTE_STRING_SET(ictx->slot_ctx, dev->route_str);
|
---|
| 677 | XHCI_SLOT_SPEED_SET(ictx->slot_ctx, hc->speed_to_psiv[dev->base.speed]);
|
---|
| 678 |
|
---|
| 679 | /* In a very specific case, we have to set also these. But before that,
|
---|
| 680 | * we need to refactor how TT is handled in libusbhost. */
|
---|
| 681 | XHCI_SLOT_TT_HUB_SLOT_ID_SET(ictx->slot_ctx, 0);
|
---|
| 682 | XHCI_SLOT_TT_HUB_PORT_SET(ictx->slot_ctx, 0);
|
---|
| 683 | XHCI_SLOT_MTT_SET(ictx->slot_ctx, 0);
|
---|
[b724494] | 684 |
|
---|
| 685 | /* Copy endpoint 0 context and set A1 flag. */
|
---|
| 686 | XHCI_INPUT_CTRL_CTX_ADD_SET(ictx->ctrl_ctx, 1);
|
---|
[0206d35] | 687 | xhci_setup_endpoint_context(ep0, &ictx->endpoint_ctx[0]);
|
---|
| 688 |
|
---|
[c3d926f3] | 689 | /* Issue Address Device command. */
|
---|
[b80c1ab] | 690 | if ((err = xhci_cmd_sync_inline(hc, ADDRESS_DEVICE, .slot_id = dev->slot_id, .input_ctx = ictx_dma_buf))) {
|
---|
[c3d926f3] | 691 | goto err_dev_ctx;
|
---|
| 692 | }
|
---|
[b724494] | 693 |
|
---|
[b80c1ab] | 694 | xhci_device_ctx_t *dev_ctx = dev->dev_ctx.virt;
|
---|
| 695 | dev->base.address = XHCI_SLOT_DEVICE_ADDRESS(dev_ctx->slot_ctx);
|
---|
[0206d35] | 696 | usb_log_debug2("Obtained USB address: %d.\n", dev->base.address);
|
---|
| 697 |
|
---|
| 698 | /* From now on, the device is officially online, yay! */
|
---|
| 699 | fibril_mutex_lock(&dev->base.guard);
|
---|
| 700 | dev->online = true;
|
---|
| 701 | fibril_mutex_unlock(&dev->base.guard);
|
---|
| 702 |
|
---|
[b724494] | 703 | return EOK;
|
---|
| 704 |
|
---|
[0206d35] | 705 | err_dev_ctx:
|
---|
| 706 | hc->dcbaa[dev->slot_id] = 0;
|
---|
[b80c1ab] | 707 | dma_buffer_free(&dev->dev_ctx);
|
---|
[b724494] | 708 | err:
|
---|
| 709 | return err;
|
---|
| 710 | }
|
---|
| 711 |
|
---|
| 712 | int hc_configure_device(xhci_hc_t *hc, uint32_t slot_id)
|
---|
| 713 | {
|
---|
| 714 | /* Issue configure endpoint command (sec 4.3.5). */
|
---|
[b80c1ab] | 715 | dma_buffer_t ictx_dma_buf;
|
---|
[e76c0ea] | 716 | const int err = create_configure_ep_input_ctx(&ictx_dma_buf);
|
---|
[928afc8d] | 717 | if (err)
|
---|
[c3d926f3] | 718 | return err;
|
---|
[b724494] | 719 |
|
---|
[928afc8d] | 720 | // TODO: Set slot context and other flags. (probably forgot a lot of 'em)
|
---|
[b724494] | 721 |
|
---|
[b80c1ab] | 722 | return xhci_cmd_sync_inline(hc, CONFIGURE_ENDPOINT, .slot_id = slot_id, .input_ctx = ictx_dma_buf);
|
---|
[b724494] | 723 | }
|
---|
| 724 |
|
---|
| 725 | int hc_deconfigure_device(xhci_hc_t *hc, uint32_t slot_id)
|
---|
| 726 | {
|
---|
| 727 | /* Issue configure endpoint command (sec 4.3.5) with the DC flag. */
|
---|
[928afc8d] | 728 | return xhci_cmd_sync_inline(hc, CONFIGURE_ENDPOINT, .slot_id = slot_id, .deconfigure = true);
|
---|
[b724494] | 729 | }
|
---|
| 730 |
|
---|
| 731 | int hc_add_endpoint(xhci_hc_t *hc, uint32_t slot_id, uint8_t ep_idx, xhci_ep_ctx_t *ep_ctx)
|
---|
| 732 | {
|
---|
| 733 | /* Issue configure endpoint command (sec 4.3.5). */
|
---|
[b80c1ab] | 734 | dma_buffer_t ictx_dma_buf;
|
---|
[e76c0ea] | 735 | const int err = create_configure_ep_input_ctx(&ictx_dma_buf);
|
---|
[928afc8d] | 736 | if (err)
|
---|
[c3d926f3] | 737 | return err;
|
---|
[b724494] | 738 |
|
---|
[b80c1ab] | 739 | xhci_input_ctx_t *ictx = ictx_dma_buf.virt;
|
---|
[b724494] | 740 | XHCI_INPUT_CTRL_CTX_ADD_SET(ictx->ctrl_ctx, ep_idx + 1); /* Preceded by slot ctx */
|
---|
| 741 | memcpy(&ictx->endpoint_ctx[ep_idx], ep_ctx, sizeof(xhci_ep_ctx_t));
|
---|
| 742 | // TODO: Set slot context and other flags. (probably forgot a lot of 'em)
|
---|
| 743 |
|
---|
[b80c1ab] | 744 | return xhci_cmd_sync_inline(hc, CONFIGURE_ENDPOINT, .slot_id = slot_id, .input_ctx = ictx_dma_buf);
|
---|
[b724494] | 745 | }
|
---|
| 746 |
|
---|
| 747 | int hc_drop_endpoint(xhci_hc_t *hc, uint32_t slot_id, uint8_t ep_idx)
|
---|
| 748 | {
|
---|
| 749 | /* Issue configure endpoint command (sec 4.3.5). */
|
---|
[b80c1ab] | 750 | dma_buffer_t ictx_dma_buf;
|
---|
[e76c0ea] | 751 | const int err = create_configure_ep_input_ctx(&ictx_dma_buf);
|
---|
[928afc8d] | 752 | if (err)
|
---|
[c3d926f3] | 753 | return err;
|
---|
[b724494] | 754 |
|
---|
[b80c1ab] | 755 | xhci_input_ctx_t *ictx = ictx_dma_buf.virt;
|
---|
[b724494] | 756 | XHCI_INPUT_CTRL_CTX_DROP_SET(ictx->ctrl_ctx, ep_idx + 1); /* Preceded by slot ctx */
|
---|
| 757 | // TODO: Set slot context and other flags. (probably forgot a lot of 'em)
|
---|
| 758 |
|
---|
[b80c1ab] | 759 | return xhci_cmd_sync_inline(hc, CONFIGURE_ENDPOINT, .slot_id = slot_id, .input_ctx = ictx_dma_buf);
|
---|
[b724494] | 760 | }
|
---|
| 761 |
|
---|
[306a36d] | 762 | int hc_update_endpoint(xhci_hc_t *hc, uint32_t slot_id, uint8_t ep_idx, xhci_ep_ctx_t *ep_ctx)
|
---|
| 763 | {
|
---|
| 764 | dma_buffer_t ictx_dma_buf;
|
---|
| 765 | const int err = dma_buffer_alloc(&ictx_dma_buf, sizeof(xhci_input_ctx_t));
|
---|
| 766 | if (err)
|
---|
| 767 | return err;
|
---|
| 768 |
|
---|
| 769 | xhci_input_ctx_t *ictx = ictx_dma_buf.virt;
|
---|
| 770 | memset(ictx, 0, sizeof(xhci_input_ctx_t));
|
---|
| 771 |
|
---|
| 772 | XHCI_INPUT_CTRL_CTX_ADD_SET(ictx->ctrl_ctx, ep_idx + 1);
|
---|
| 773 | memcpy(&ictx->endpoint_ctx[ep_idx], ep_ctx, sizeof(xhci_ep_ctx_t));
|
---|
| 774 |
|
---|
| 775 | return xhci_cmd_sync_inline(hc, EVALUATE_CONTEXT, .slot_id = slot_id, .input_ctx = ictx_dma_buf);
|
---|
| 776 | }
|
---|
| 777 |
|
---|
[5cbccd4] | 778 | /**
|
---|
| 779 | * @}
|
---|
| 780 | */
|
---|