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 | /** @addtogroup drvusbehci
|
---|
30 | * @{
|
---|
31 | */
|
---|
32 | /** @file
|
---|
33 | * Main routines of EHCI driver.
|
---|
34 | */
|
---|
35 | #include <ddf/driver.h>
|
---|
36 | #include <ddf/interrupt.h>
|
---|
37 | #include <device/hw_res.h>
|
---|
38 | #include <errno.h>
|
---|
39 | #include <str_error.h>
|
---|
40 |
|
---|
41 | #include <usb_iface.h>
|
---|
42 | #include <usb/ddfiface.h>
|
---|
43 | #include <usb/debug.h>
|
---|
44 | #include <usb/host/hcd.h>
|
---|
45 |
|
---|
46 | #include "res.h"
|
---|
47 |
|
---|
48 | #define NAME "ehci"
|
---|
49 |
|
---|
50 | static int ehci_dev_add(ddf_dev_t *device);
|
---|
51 |
|
---|
52 | static driver_ops_t ehci_driver_ops = {
|
---|
53 | .dev_add = ehci_dev_add,
|
---|
54 | };
|
---|
55 |
|
---|
56 | static driver_t ehci_driver = {
|
---|
57 | .name = NAME,
|
---|
58 | .driver_ops = &ehci_driver_ops
|
---|
59 | };
|
---|
60 | static ddf_dev_ops_t hc_ops = {
|
---|
61 | .interfaces[USBHC_DEV_IFACE] = &hcd_iface,
|
---|
62 | };
|
---|
63 |
|
---|
64 |
|
---|
65 | /** Initializes a new ddf driver instance of EHCI hcd.
|
---|
66 | *
|
---|
67 | * @param[in] device DDF instance of the device to initialize.
|
---|
68 | * @return Error code.
|
---|
69 | */
|
---|
70 | static int ehci_dev_add(ddf_dev_t *device)
|
---|
71 | {
|
---|
72 | assert(device);
|
---|
73 | #define CHECK_RET_RETURN(ret, message...) \
|
---|
74 | if (ret != EOK) { \
|
---|
75 | usb_log_error(message); \
|
---|
76 | return ret; \
|
---|
77 | }
|
---|
78 |
|
---|
79 | uintptr_t reg_base = 0;
|
---|
80 | size_t reg_size = 0;
|
---|
81 | int irq = 0;
|
---|
82 |
|
---|
83 | int ret = get_my_registers(device, ®_base, ®_size, &irq);
|
---|
84 | CHECK_RET_RETURN(ret,
|
---|
85 | "Failed to get memory addresses for %" PRIun ": %s.\n",
|
---|
86 | ddf_dev_get_handle(device), str_error(ret));
|
---|
87 | usb_log_info("Memory mapped regs at 0x%" PRIxn " (size %zu), IRQ %d.\n",
|
---|
88 | reg_base, reg_size, irq);
|
---|
89 |
|
---|
90 | ret = disable_legacy(device, reg_base, reg_size);
|
---|
91 | CHECK_RET_RETURN(ret,
|
---|
92 | "Failed to disable legacy USB: %s.\n", str_error(ret));
|
---|
93 |
|
---|
94 | ddf_fun_t *hc_fun = ddf_fun_create(device, fun_exposed, "ehci_hc");
|
---|
95 | if (hc_fun == NULL) {
|
---|
96 | usb_log_error("Failed to create EHCI function.\n");
|
---|
97 | return ENOMEM;
|
---|
98 | }
|
---|
99 | hcd_t *ehci_hc = ddf_fun_data_alloc(hc_fun, sizeof(hcd_t));
|
---|
100 | if (ehci_hc == NULL) {
|
---|
101 | usb_log_error("Failed to alloc generic HC driver.\n");
|
---|
102 | return ENOMEM;
|
---|
103 | }
|
---|
104 | /* High Speed, no bandwidth */
|
---|
105 | hcd_init(ehci_hc, USB_SPEED_HIGH, 0, NULL);
|
---|
106 | ddf_fun_set_ops(hc_fun, &hc_ops);
|
---|
107 |
|
---|
108 | ret = ddf_fun_bind(hc_fun);
|
---|
109 | CHECK_RET_RETURN(ret,
|
---|
110 | "Failed to bind EHCI function: %s.\n",
|
---|
111 | str_error(ret));
|
---|
112 | ret = ddf_fun_add_to_category(hc_fun, USB_HC_CATEGORY);
|
---|
113 | CHECK_RET_RETURN(ret,
|
---|
114 | "Failed to add EHCI to HC class: %s.\n",
|
---|
115 | str_error(ret));
|
---|
116 |
|
---|
117 | usb_log_info("Controlling new EHCI device `%s' (handle %" PRIun ").\n",
|
---|
118 | ddf_dev_get_name(device), ddf_dev_get_handle(device));
|
---|
119 |
|
---|
120 | return EOK;
|
---|
121 | #undef CHECK_RET_RETURN
|
---|
122 | }
|
---|
123 |
|
---|
124 | /** Initializes global driver structures (NONE).
|
---|
125 | *
|
---|
126 | * @param[in] argc Nmber of arguments in argv vector (ignored).
|
---|
127 | * @param[in] argv Cmdline argument vector (ignored).
|
---|
128 | * @return Error code.
|
---|
129 | *
|
---|
130 | * Driver debug level is set here.
|
---|
131 | */
|
---|
132 | int main(int argc, char *argv[])
|
---|
133 | {
|
---|
134 | usb_log_enable(USB_LOG_LEVEL_DEFAULT, NAME);
|
---|
135 | return ddf_driver_main(&ehci_driver);
|
---|
136 | }
|
---|
137 | /**
|
---|
138 | * @}
|
---|
139 | */
|
---|