| 1 | /*
|
|---|
| 2 | * Copyright (c) 2011 Jan Vesely
|
|---|
| 3 | * Copyright (c) 2018 Ondrej Hlavaty
|
|---|
| 4 | * All rights reserved.
|
|---|
| 5 | *
|
|---|
| 6 | * Redistribution and use in source and binary forms, with or without
|
|---|
| 7 | * modification, are permitted provided that the following conditions
|
|---|
| 8 | * are met:
|
|---|
| 9 | *
|
|---|
| 10 | * - Redistributions of source code must retain the above copyright
|
|---|
| 11 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 12 | * - Redistributions in binary form must reproduce the above copyright
|
|---|
| 13 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 14 | * documentation and/or other materials provided with the distribution.
|
|---|
| 15 | * - The name of the author may not be used to endorse or promote products
|
|---|
| 16 | * derived from this software without specific prior written permission.
|
|---|
| 17 | *
|
|---|
| 18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|---|
| 19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|---|
| 20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|---|
| 22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|---|
| 23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|---|
| 24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|---|
| 25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|---|
| 26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|---|
| 27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 28 | */
|
|---|
| 29 |
|
|---|
| 30 | /** @addtogroup libusbhost
|
|---|
| 31 | * @{
|
|---|
| 32 | */
|
|---|
| 33 | /** @file
|
|---|
| 34 | *
|
|---|
| 35 | * Host controller driver framework. Encapsulates DDF device of HC to an
|
|---|
| 36 | * hc_device_t, which is passed to driver implementing hc_driver_t.
|
|---|
| 37 | */
|
|---|
| 38 |
|
|---|
| 39 | #include <assert.h>
|
|---|
| 40 | #include <async.h>
|
|---|
| 41 | #include <ddf/interrupt.h>
|
|---|
| 42 | #include <errno.h>
|
|---|
| 43 | #include <macros.h>
|
|---|
| 44 | #include <str_error.h>
|
|---|
| 45 | #include <usb/debug.h>
|
|---|
| 46 | #include <usb/descriptor.h>
|
|---|
| 47 | #include <usb/request.h>
|
|---|
| 48 | #include <usb_iface.h>
|
|---|
| 49 |
|
|---|
| 50 | #include "bus.h"
|
|---|
| 51 | #include "ddf_helpers.h"
|
|---|
| 52 | #include "endpoint.h"
|
|---|
| 53 | #include "usb_transfer_batch.h"
|
|---|
| 54 |
|
|---|
| 55 | #include "hcd.h"
|
|---|
| 56 |
|
|---|
| 57 | int hc_dev_add(ddf_dev_t *);
|
|---|
| 58 | int hc_dev_remove(ddf_dev_t *);
|
|---|
| 59 | int hc_dev_gone(ddf_dev_t *);
|
|---|
| 60 | int hc_fun_online(ddf_fun_t *);
|
|---|
| 61 | int hc_fun_offline(ddf_fun_t *);
|
|---|
| 62 |
|
|---|
| 63 | static driver_ops_t hc_driver_ops = {
|
|---|
| 64 | .dev_add = hc_dev_add,
|
|---|
| 65 | .dev_remove = hc_dev_remove,
|
|---|
| 66 | .dev_gone = hc_dev_gone,
|
|---|
| 67 | .fun_online = hc_fun_online,
|
|---|
| 68 | .fun_offline = hc_fun_offline,
|
|---|
| 69 | };
|
|---|
| 70 |
|
|---|
| 71 | static const hc_driver_t *hc_driver;
|
|---|
| 72 |
|
|---|
| 73 | /**
|
|---|
| 74 | * The main HC driver routine.
|
|---|
| 75 | */
|
|---|
| 76 | int hc_driver_main(const hc_driver_t *driver)
|
|---|
| 77 | {
|
|---|
| 78 | driver_t ddf_driver = {
|
|---|
| 79 | .name = driver->name,
|
|---|
| 80 | .driver_ops = &hc_driver_ops,
|
|---|
| 81 | };
|
|---|
| 82 |
|
|---|
| 83 | /* Remember ops to call. */
|
|---|
| 84 | hc_driver = driver;
|
|---|
| 85 |
|
|---|
| 86 | return ddf_driver_main(&ddf_driver);
|
|---|
| 87 | }
|
|---|
| 88 |
|
|---|
| 89 | /**
|
|---|
| 90 | * IRQ handling callback. Call the bus operation.
|
|---|
| 91 | *
|
|---|
| 92 | * Currently, there is a bus ops lookup to find the interrupt handler. So far,
|
|---|
| 93 | * the mechanism is too flexible, as it allows different instances of HC to
|
|---|
| 94 | * have different IRQ handlers, disallowing us to optimize the lookup here.
|
|---|
| 95 | * TODO: Make the bus mechanism less flexible in irq handling and remove the
|
|---|
| 96 | * lookup.
|
|---|
| 97 | */
|
|---|
| 98 | static void irq_handler(ipc_call_t *call, ddf_dev_t *dev)
|
|---|
| 99 | {
|
|---|
| 100 | assert(dev);
|
|---|
| 101 | hc_device_t *hcd = dev_to_hcd(dev);
|
|---|
| 102 |
|
|---|
| 103 | const uint32_t status = IPC_GET_ARG1(*call);
|
|---|
| 104 | hcd->bus->ops->interrupt(hcd->bus, status);
|
|---|
| 105 | }
|
|---|
| 106 |
|
|---|
| 107 | /**
|
|---|
| 108 | * Worker for the HW interrupt replacement fibril.
|
|---|
| 109 | */
|
|---|
| 110 | static errno_t interrupt_polling(void *arg)
|
|---|
| 111 | {
|
|---|
| 112 | bus_t *bus = arg;
|
|---|
| 113 | assert(bus);
|
|---|
| 114 |
|
|---|
| 115 | if (!bus->ops->interrupt || !bus->ops->status)
|
|---|
| 116 | return ENOTSUP;
|
|---|
| 117 |
|
|---|
| 118 | uint32_t status = 0;
|
|---|
| 119 | while (bus->ops->status(bus, &status) == EOK) {
|
|---|
| 120 | bus->ops->interrupt(bus, status);
|
|---|
| 121 | status = 0;
|
|---|
| 122 | /* We should wait 1 frame - 1ms here, but this polling is a
|
|---|
| 123 | * lame crutch anyway so don't hog the system. 10ms is still
|
|---|
| 124 | * good enough for emergency mode */
|
|---|
| 125 | async_usleep(10000);
|
|---|
| 126 | }
|
|---|
| 127 | return EOK;
|
|---|
| 128 | }
|
|---|
| 129 |
|
|---|
| 130 | /**
|
|---|
| 131 | * Clean the IRQ code bottom-half.
|
|---|
| 132 | */
|
|---|
| 133 | static inline void irq_code_clean(irq_code_t *code)
|
|---|
| 134 | {
|
|---|
| 135 | if (code) {
|
|---|
| 136 | free(code->ranges);
|
|---|
| 137 | free(code->cmds);
|
|---|
| 138 | code->ranges = NULL;
|
|---|
| 139 | code->cmds = NULL;
|
|---|
| 140 | code->rangecount = 0;
|
|---|
| 141 | code->cmdcount = 0;
|
|---|
| 142 | }
|
|---|
| 143 | }
|
|---|
| 144 |
|
|---|
| 145 | /**
|
|---|
| 146 | * Register an interrupt handler. If there is a callback to setup the bottom half,
|
|---|
| 147 | * invoke it and register it. Register for notifications.
|
|---|
| 148 | *
|
|---|
| 149 | * If this method fails, a polling fibril is started instead.
|
|---|
| 150 | *
|
|---|
| 151 | * @param[in] hcd Host controller device.
|
|---|
| 152 | * @param[in] hw_res Resources to be used.
|
|---|
| 153 | *
|
|---|
| 154 | * @return IRQ capability handle on success.
|
|---|
| 155 | * @return Negative error code.
|
|---|
| 156 | */
|
|---|
| 157 | static errno_t hcd_ddf_setup_interrupts(hc_device_t *hcd,
|
|---|
| 158 | const hw_res_list_parsed_t *hw_res)
|
|---|
| 159 | {
|
|---|
| 160 | assert(hcd);
|
|---|
| 161 | irq_code_t irq_code = { 0 };
|
|---|
| 162 |
|
|---|
| 163 | if (!hc_driver->irq_code_gen)
|
|---|
| 164 | return ENOTSUP;
|
|---|
| 165 |
|
|---|
| 166 | int irq;
|
|---|
| 167 | errno_t ret;
|
|---|
| 168 | ret = hc_driver->irq_code_gen(&irq_code, hcd, hw_res, &irq);
|
|---|
| 169 | if (ret != EOK) {
|
|---|
| 170 | usb_log_error("Failed to generate IRQ code: %s.",
|
|---|
| 171 | str_error(irq));
|
|---|
| 172 | return irq;
|
|---|
| 173 | }
|
|---|
| 174 |
|
|---|
| 175 | /* Register handler to avoid interrupt lockup */
|
|---|
| 176 | int irq_cap;
|
|---|
| 177 | ret = register_interrupt_handler(hcd->ddf_dev, irq, irq_handler,
|
|---|
| 178 | &irq_code, &irq_cap);
|
|---|
| 179 | irq_code_clean(&irq_code);
|
|---|
| 180 | if (ret != EOK) {
|
|---|
| 181 | usb_log_error("Failed to register interrupt handler: %s.",
|
|---|
| 182 | str_error(irq_cap));
|
|---|
| 183 | return irq_cap;
|
|---|
| 184 | }
|
|---|
| 185 |
|
|---|
| 186 | /* Enable interrupts */
|
|---|
| 187 | ret = hcd_ddf_enable_interrupt(hcd, irq);
|
|---|
| 188 | if (ret != EOK) {
|
|---|
| 189 | usb_log_error("Failed to enable interrupts: %s.",
|
|---|
| 190 | str_error(ret));
|
|---|
| 191 | unregister_interrupt_handler(hcd->ddf_dev, irq_cap);
|
|---|
| 192 | return ret;
|
|---|
| 193 | }
|
|---|
| 194 | return irq_cap;
|
|---|
| 195 | }
|
|---|
| 196 |
|
|---|
| 197 | /**
|
|---|
| 198 | * Initialize HC in memory of the driver.
|
|---|
| 199 | *
|
|---|
| 200 | * This function does all the preparatory work for hc and rh drivers:
|
|---|
| 201 | * - gets device's hw resources
|
|---|
| 202 | * - attempts to enable interrupts
|
|---|
| 203 | * - registers interrupt handler
|
|---|
| 204 | * - calls driver specific initialization
|
|---|
| 205 | * - registers root hub
|
|---|
| 206 | *
|
|---|
| 207 | * @param device DDF instance of the device to use
|
|---|
| 208 | * @return Error code
|
|---|
| 209 | */
|
|---|
| 210 | errno_t hc_dev_add(ddf_dev_t *device)
|
|---|
| 211 | {
|
|---|
| 212 | errno_t ret = EOK;
|
|---|
| 213 | assert(device);
|
|---|
| 214 |
|
|---|
| 215 | if (!hc_driver->hc_add) {
|
|---|
| 216 | usb_log_error("Driver '%s' does not support adding devices.",
|
|---|
| 217 | hc_driver->name);
|
|---|
| 218 | return ENOTSUP;
|
|---|
| 219 | }
|
|---|
| 220 |
|
|---|
| 221 | ret = hcd_ddf_setup_hc(device, hc_driver->hc_device_size);
|
|---|
| 222 | if (ret != EOK) {
|
|---|
| 223 | usb_log_error("Failed to setup HC device.");
|
|---|
| 224 | return ret;
|
|---|
| 225 | }
|
|---|
| 226 |
|
|---|
| 227 | hc_device_t *hcd = dev_to_hcd(device);
|
|---|
| 228 |
|
|---|
| 229 | hw_res_list_parsed_t hw_res;
|
|---|
| 230 | ret = hcd_ddf_get_registers(hcd, &hw_res);
|
|---|
| 231 | if (ret != EOK) {
|
|---|
| 232 | usb_log_error("Failed to get register memory addresses "
|
|---|
| 233 | "for `%s': %s.", ddf_dev_get_name(device),
|
|---|
| 234 | str_error(ret));
|
|---|
| 235 | goto err_hcd;
|
|---|
| 236 | }
|
|---|
| 237 |
|
|---|
| 238 | ret = hc_driver->hc_add(hcd, &hw_res);
|
|---|
| 239 | if (ret != EOK) {
|
|---|
| 240 | usb_log_error("Failed to init HCD.");
|
|---|
| 241 | goto err_hw_res;
|
|---|
| 242 | }
|
|---|
| 243 |
|
|---|
| 244 | assert(hcd->bus);
|
|---|
| 245 |
|
|---|
| 246 | /* Setup interrupts */
|
|---|
| 247 | hcd->irq_cap = hcd_ddf_setup_interrupts(hcd, &hw_res);
|
|---|
| 248 | if (hcd->irq_cap >= 0) {
|
|---|
| 249 | usb_log_debug("Hw interrupts enabled.");
|
|---|
| 250 | }
|
|---|
| 251 |
|
|---|
| 252 | /* Claim the device from BIOS */
|
|---|
| 253 | if (hc_driver->claim)
|
|---|
| 254 | ret = hc_driver->claim(hcd);
|
|---|
| 255 | if (ret != EOK) {
|
|---|
| 256 | usb_log_error("Failed to claim `%s' for `%s': %s",
|
|---|
| 257 | ddf_dev_get_name(device), hc_driver->name, str_error(ret));
|
|---|
| 258 | goto err_irq;
|
|---|
| 259 | }
|
|---|
| 260 |
|
|---|
| 261 | /* Start hw */
|
|---|
| 262 | if (hc_driver->start)
|
|---|
| 263 | ret = hc_driver->start(hcd);
|
|---|
| 264 | if (ret != EOK) {
|
|---|
| 265 | usb_log_error("Failed to start HCD: %s.", str_error(ret));
|
|---|
| 266 | goto err_irq;
|
|---|
| 267 | }
|
|---|
| 268 |
|
|---|
| 269 | const bus_ops_t *ops = hcd->bus->ops;
|
|---|
| 270 |
|
|---|
| 271 | /* Need working irq replacement to setup root hub */
|
|---|
| 272 | if (hcd->irq_cap < 0 && ops->status) {
|
|---|
| 273 | hcd->polling_fibril = fibril_create(interrupt_polling, hcd->bus);
|
|---|
| 274 | if (!hcd->polling_fibril) {
|
|---|
| 275 | usb_log_error("Failed to create polling fibril");
|
|---|
| 276 | ret = ENOMEM;
|
|---|
| 277 | goto err_started;
|
|---|
| 278 | }
|
|---|
| 279 | fibril_add_ready(hcd->polling_fibril);
|
|---|
| 280 | usb_log_warning("Failed to enable interrupts: %s."
|
|---|
| 281 | " Falling back to polling.", str_error(hcd->irq_cap));
|
|---|
| 282 | }
|
|---|
| 283 |
|
|---|
| 284 | /*
|
|---|
| 285 | * Creating root hub registers a new USB device so HC
|
|---|
| 286 | * needs to be ready at this time.
|
|---|
| 287 | */
|
|---|
| 288 | if (hc_driver->setup_root_hub)
|
|---|
| 289 | ret = hc_driver->setup_root_hub(hcd);
|
|---|
| 290 | if (ret != EOK) {
|
|---|
| 291 | usb_log_error("Failed to setup HC root hub: %s.",
|
|---|
| 292 | str_error(ret));
|
|---|
| 293 | goto err_polling;
|
|---|
| 294 | }
|
|---|
| 295 |
|
|---|
| 296 | usb_log_info("Controlling new `%s' device `%s'.",
|
|---|
| 297 | hc_driver->name, ddf_dev_get_name(device));
|
|---|
| 298 | return EOK;
|
|---|
| 299 |
|
|---|
| 300 | err_polling:
|
|---|
| 301 | // TODO: Stop the polling fibril (refactor the interrupt_polling func)
|
|---|
| 302 | //
|
|---|
| 303 | err_started:
|
|---|
| 304 | if (hc_driver->stop)
|
|---|
| 305 | hc_driver->stop(hcd);
|
|---|
| 306 | err_irq:
|
|---|
| 307 | unregister_interrupt_handler(device, hcd->irq_cap);
|
|---|
| 308 | if (hc_driver->hc_remove)
|
|---|
| 309 | hc_driver->hc_remove(hcd);
|
|---|
| 310 | err_hw_res:
|
|---|
| 311 | hw_res_list_parsed_clean(&hw_res);
|
|---|
| 312 | err_hcd:
|
|---|
| 313 | hcd_ddf_clean_hc(hcd);
|
|---|
| 314 | return ret;
|
|---|
| 315 | }
|
|---|
| 316 |
|
|---|
| 317 | errno_t hc_dev_remove(ddf_dev_t *dev)
|
|---|
| 318 | {
|
|---|
| 319 | errno_t err;
|
|---|
| 320 | hc_device_t *hcd = dev_to_hcd(dev);
|
|---|
| 321 |
|
|---|
| 322 | if (hc_driver->stop)
|
|---|
| 323 | if ((err = hc_driver->stop(hcd)))
|
|---|
| 324 | return err;
|
|---|
| 325 |
|
|---|
| 326 | unregister_interrupt_handler(dev, hcd->irq_cap);
|
|---|
| 327 |
|
|---|
| 328 | if (hc_driver->hc_remove)
|
|---|
| 329 | if ((err = hc_driver->hc_remove(hcd)))
|
|---|
| 330 | return err;
|
|---|
| 331 |
|
|---|
| 332 | hcd_ddf_clean_hc(hcd);
|
|---|
| 333 |
|
|---|
| 334 | // TODO probably not complete
|
|---|
| 335 |
|
|---|
| 336 | return EOK;
|
|---|
| 337 | }
|
|---|
| 338 |
|
|---|
| 339 | errno_t hc_dev_gone(ddf_dev_t *dev)
|
|---|
| 340 | {
|
|---|
| 341 | errno_t err = ENOTSUP;
|
|---|
| 342 | hc_device_t *hcd = dev_to_hcd(dev);
|
|---|
| 343 |
|
|---|
| 344 | if (hc_driver->hc_gone)
|
|---|
| 345 | err = hc_driver->hc_gone(hcd);
|
|---|
| 346 |
|
|---|
| 347 | hcd_ddf_clean_hc(hcd);
|
|---|
| 348 |
|
|---|
| 349 | return err;
|
|---|
| 350 | }
|
|---|
| 351 |
|
|---|
| 352 | errno_t hc_fun_online(ddf_fun_t *fun)
|
|---|
| 353 | {
|
|---|
| 354 | assert(fun);
|
|---|
| 355 |
|
|---|
| 356 | device_t *dev = ddf_fun_data_get(fun);
|
|---|
| 357 | assert(dev);
|
|---|
| 358 |
|
|---|
| 359 | usb_log_info("Device(%d): Requested to be brought online.", dev->address);
|
|---|
| 360 | return bus_device_online(dev);
|
|---|
| 361 | }
|
|---|
| 362 |
|
|---|
| 363 | int hc_fun_offline(ddf_fun_t *fun)
|
|---|
| 364 | {
|
|---|
| 365 | assert(fun);
|
|---|
| 366 |
|
|---|
| 367 | device_t *dev = ddf_fun_data_get(fun);
|
|---|
| 368 | assert(dev);
|
|---|
| 369 |
|
|---|
| 370 | usb_log_info("Device(%d): Requested to be taken offline.", dev->address);
|
|---|
| 371 | return bus_device_offline(dev);
|
|---|
| 372 | }
|
|---|
| 373 |
|
|---|
| 374 |
|
|---|
| 375 | /**
|
|---|
| 376 | * @}
|
|---|
| 377 | */
|
|---|