| 1 | /*
|
|---|
| 2 | * Copyright (c) 2011 Jan Vesely
|
|---|
| 3 | * Copyright (c) 2011 Vojtech Horky
|
|---|
| 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 drvusbehci
|
|---|
| 31 | * @{
|
|---|
| 32 | */
|
|---|
| 33 | /** @file
|
|---|
| 34 | * Main routines of EHCI driver.
|
|---|
| 35 | */
|
|---|
| 36 |
|
|---|
| 37 | #include <ddf/driver.h>
|
|---|
| 38 | #include <ddf/interrupt.h>
|
|---|
| 39 | #include <device/hw_res.h>
|
|---|
| 40 | #include <errno.h>
|
|---|
| 41 | #include <str_error.h>
|
|---|
| 42 | #include <io/logctl.h>
|
|---|
| 43 |
|
|---|
| 44 | #include <usb_iface.h>
|
|---|
| 45 | #include <usb/debug.h>
|
|---|
| 46 | #include <usb/host/ddf_helpers.h>
|
|---|
| 47 |
|
|---|
| 48 | #include "res.h"
|
|---|
| 49 | #include "hc.h"
|
|---|
| 50 |
|
|---|
| 51 | #define NAME "ehci"
|
|---|
| 52 |
|
|---|
| 53 | static int ehci_driver_init(hcd_t *, const hw_res_list_parsed_t *, ddf_dev_t *);
|
|---|
| 54 | static int ehci_driver_claim(hcd_t *, ddf_dev_t *);
|
|---|
| 55 | static int ehci_driver_start(hcd_t *, bool);
|
|---|
| 56 | static void ehci_driver_fini(hcd_t *);
|
|---|
| 57 |
|
|---|
| 58 | static const ddf_hc_driver_t ehci_hc_driver = {
|
|---|
| 59 | .name = "EHCI-PCI",
|
|---|
| 60 | .init = ehci_driver_init,
|
|---|
| 61 | .irq_code_gen = ehci_hc_gen_irq_code,
|
|---|
| 62 | .claim = ehci_driver_claim,
|
|---|
| 63 | .start = ehci_driver_start,
|
|---|
| 64 | .setup_root_hub = hcd_setup_virtual_root_hub,
|
|---|
| 65 | .fini = ehci_driver_fini,
|
|---|
| 66 | .ops = {
|
|---|
| 67 | .schedule = ehci_hc_schedule,
|
|---|
| 68 | .irq_hook = ehci_hc_interrupt,
|
|---|
| 69 | .status_hook = ehci_hc_status,
|
|---|
| 70 | }
|
|---|
| 71 | };
|
|---|
| 72 |
|
|---|
| 73 |
|
|---|
| 74 | static int ehci_driver_init(hcd_t *hcd, const hw_res_list_parsed_t *res, ddf_dev_t *device)
|
|---|
| 75 | {
|
|---|
| 76 | assert(hcd);
|
|---|
| 77 | assert(hcd_get_driver_data(hcd) == NULL);
|
|---|
| 78 |
|
|---|
| 79 | hc_t *instance = malloc(sizeof(hc_t));
|
|---|
| 80 | if (!instance)
|
|---|
| 81 | return ENOMEM;
|
|---|
| 82 |
|
|---|
| 83 | const int ret = hc_init(instance, res);
|
|---|
| 84 | if (ret == EOK) {
|
|---|
| 85 | hcd_set_implementation(hcd, instance, &ehci_hc_driver.ops, &instance->bus.base.base);
|
|---|
| 86 | } else {
|
|---|
| 87 | free(instance);
|
|---|
| 88 | }
|
|---|
| 89 | return ret;
|
|---|
| 90 | }
|
|---|
| 91 |
|
|---|
| 92 | static int ehci_driver_claim(hcd_t *hcd, ddf_dev_t *dev)
|
|---|
| 93 | {
|
|---|
| 94 | hc_t *instance = hcd_get_driver_data(hcd);
|
|---|
| 95 | assert(instance);
|
|---|
| 96 |
|
|---|
| 97 | return disable_legacy(instance, dev);
|
|---|
| 98 | }
|
|---|
| 99 |
|
|---|
| 100 | static int ehci_driver_start(hcd_t *hcd, bool irq) {
|
|---|
| 101 | hc_t *instance = hcd_get_driver_data(hcd);
|
|---|
| 102 | assert(instance);
|
|---|
| 103 |
|
|---|
| 104 | return hc_start(instance, irq);
|
|---|
| 105 | }
|
|---|
| 106 |
|
|---|
| 107 | static void ehci_driver_fini(hcd_t *hcd)
|
|---|
| 108 | {
|
|---|
| 109 | assert(hcd);
|
|---|
| 110 | hc_t *hc = hcd_get_driver_data(hcd);
|
|---|
| 111 | if (hc)
|
|---|
| 112 | hc_fini(hc);
|
|---|
| 113 |
|
|---|
| 114 | free(hc);
|
|---|
| 115 | hcd_set_implementation(hcd, NULL, NULL, NULL);
|
|---|
| 116 | }
|
|---|
| 117 |
|
|---|
| 118 | /** Initializes a new ddf driver instance of EHCI hcd.
|
|---|
| 119 | *
|
|---|
| 120 | * @param[in] device DDF instance of the device to initialize.
|
|---|
| 121 | * @return Error code.
|
|---|
| 122 | */
|
|---|
| 123 | static int ehci_dev_add(ddf_dev_t *device)
|
|---|
| 124 | {
|
|---|
| 125 | usb_log_debug("ehci_dev_add() called\n");
|
|---|
| 126 | assert(device);
|
|---|
| 127 |
|
|---|
| 128 | return hcd_ddf_add_hc(device, &ehci_hc_driver);
|
|---|
| 129 |
|
|---|
| 130 | }
|
|---|
| 131 |
|
|---|
| 132 |
|
|---|
| 133 | static const driver_ops_t ehci_driver_ops = {
|
|---|
| 134 | .dev_add = ehci_dev_add,
|
|---|
| 135 | };
|
|---|
| 136 |
|
|---|
| 137 | static const driver_t ehci_driver = {
|
|---|
| 138 | .name = NAME,
|
|---|
| 139 | .driver_ops = &ehci_driver_ops
|
|---|
| 140 | };
|
|---|
| 141 |
|
|---|
| 142 |
|
|---|
| 143 | /** Initializes global driver structures (NONE).
|
|---|
| 144 | *
|
|---|
| 145 | * @param[in] argc Nmber of arguments in argv vector (ignored).
|
|---|
| 146 | * @param[in] argv Cmdline argument vector (ignored).
|
|---|
| 147 | * @return Error code.
|
|---|
| 148 | *
|
|---|
| 149 | * Driver debug level is set here.
|
|---|
| 150 | */
|
|---|
| 151 | int main(int argc, char *argv[])
|
|---|
| 152 | {
|
|---|
| 153 | log_init(NAME);
|
|---|
| 154 | logctl_set_log_level(NAME, LVL_NOTE);
|
|---|
| 155 | return ddf_driver_main(&ehci_driver);
|
|---|
| 156 | }
|
|---|
| 157 |
|
|---|
| 158 | /**
|
|---|
| 159 | * @}
|
|---|
| 160 | */
|
|---|