1 | /*
|
---|
2 | * Copyright (c) 2011 Vojtech Horky, Jan Vesely
|
---|
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 usb
|
---|
29 | * @{
|
---|
30 | */
|
---|
31 | /** @file
|
---|
32 | * @brief UHCI driver
|
---|
33 | */
|
---|
34 | #include <ddf/driver.h>
|
---|
35 | #include <devman.h>
|
---|
36 | #include <device/hw_res.h>
|
---|
37 | #include <usb_iface.h>
|
---|
38 | #include <usb/ddfiface.h>
|
---|
39 |
|
---|
40 | #include <errno.h>
|
---|
41 |
|
---|
42 | #include <usb/debug.h>
|
---|
43 |
|
---|
44 | #include "root_hub.h"
|
---|
45 |
|
---|
46 | #define NAME "uhci-rhd"
|
---|
47 | static int hc_get_my_registers(ddf_dev_t *dev,
|
---|
48 | uintptr_t *io_reg_address, size_t *io_reg_size);
|
---|
49 |
|
---|
50 | static int usb_iface_get_hc_handle(ddf_fun_t *fun, devman_handle_t *handle)
|
---|
51 | {
|
---|
52 | assert(fun);
|
---|
53 | assert(fun->driver_data);
|
---|
54 | assert(handle);
|
---|
55 |
|
---|
56 | *handle = ((uhci_root_hub_t*)fun->driver_data)->hc_handle;
|
---|
57 |
|
---|
58 | return EOK;
|
---|
59 | }
|
---|
60 |
|
---|
61 | static usb_iface_t uhci_rh_usb_iface = {
|
---|
62 | .get_hc_handle = usb_iface_get_hc_handle,
|
---|
63 | .get_address = usb_iface_get_address_hub_impl
|
---|
64 | };
|
---|
65 |
|
---|
66 | static ddf_dev_ops_t uhci_rh_ops = {
|
---|
67 | .interfaces[USB_DEV_IFACE] = &uhci_rh_usb_iface,
|
---|
68 | };
|
---|
69 |
|
---|
70 | static int uhci_rh_add_device(ddf_dev_t *device)
|
---|
71 | {
|
---|
72 | if (!device)
|
---|
73 | return ENOTSUP;
|
---|
74 |
|
---|
75 | usb_log_debug2("%s called device %d\n", __FUNCTION__, device->handle);
|
---|
76 |
|
---|
77 | //device->ops = &uhci_rh_ops;
|
---|
78 | (void) uhci_rh_ops;
|
---|
79 |
|
---|
80 | uhci_root_hub_t *rh = malloc(sizeof(uhci_root_hub_t));
|
---|
81 | if (!rh) {
|
---|
82 | usb_log_error("Failed to allocate memory for driver instance.\n");
|
---|
83 | return ENOMEM;
|
---|
84 | }
|
---|
85 |
|
---|
86 | uintptr_t io_regs = 0;
|
---|
87 | size_t io_size = 0;
|
---|
88 |
|
---|
89 | int ret = hc_get_my_registers(device, &io_regs, &io_size);
|
---|
90 | assert(ret == EOK);
|
---|
91 |
|
---|
92 | /* TODO: verify values from hc */
|
---|
93 | usb_log_info("I/O regs at 0x%X (size %zu).\n", io_regs, io_size);
|
---|
94 | ret = uhci_root_hub_init(rh, (void*)io_regs, io_size, device);
|
---|
95 | if (ret != EOK) {
|
---|
96 | usb_log_error("Failed(%d) to initialize driver instance.\n", ret);
|
---|
97 | free(rh);
|
---|
98 | return ret;
|
---|
99 | }
|
---|
100 |
|
---|
101 | device->driver_data = rh;
|
---|
102 | usb_log_info("Sucessfully initialized driver instance for device:%d.\n",
|
---|
103 | device->handle);
|
---|
104 | return EOK;
|
---|
105 | }
|
---|
106 |
|
---|
107 | static driver_ops_t uhci_rh_driver_ops = {
|
---|
108 | .add_device = uhci_rh_add_device,
|
---|
109 | };
|
---|
110 |
|
---|
111 | static driver_t uhci_rh_driver = {
|
---|
112 | .name = NAME,
|
---|
113 | .driver_ops = &uhci_rh_driver_ops
|
---|
114 | };
|
---|
115 | /*----------------------------------------------------------------------------*/
|
---|
116 | int main(int argc, char *argv[])
|
---|
117 | {
|
---|
118 | usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME);
|
---|
119 | return ddf_driver_main(&uhci_rh_driver);
|
---|
120 | }
|
---|
121 | /*----------------------------------------------------------------------------*/
|
---|
122 | int hc_get_my_registers(ddf_dev_t *dev,
|
---|
123 | uintptr_t *io_reg_address, size_t *io_reg_size)
|
---|
124 | {
|
---|
125 | assert(dev != NULL);
|
---|
126 |
|
---|
127 | int parent_phone = devman_parent_device_connect(dev->handle,
|
---|
128 | IPC_FLAG_BLOCKING);
|
---|
129 | if (parent_phone < 0) {
|
---|
130 | return parent_phone;
|
---|
131 | }
|
---|
132 |
|
---|
133 | int rc;
|
---|
134 |
|
---|
135 | hw_resource_list_t hw_resources;
|
---|
136 | rc = hw_res_get_resource_list(parent_phone, &hw_resources);
|
---|
137 | if (rc != EOK) {
|
---|
138 | goto leave;
|
---|
139 | }
|
---|
140 |
|
---|
141 | uintptr_t io_address = 0;
|
---|
142 | size_t io_size = 0;
|
---|
143 | bool io_found = false;
|
---|
144 |
|
---|
145 | size_t i;
|
---|
146 | for (i = 0; i < hw_resources.count; i++) {
|
---|
147 | hw_resource_t *res = &hw_resources.resources[i];
|
---|
148 | switch (res->type) {
|
---|
149 | case IO_RANGE:
|
---|
150 | io_address = (uintptr_t)
|
---|
151 | res->res.io_range.address;
|
---|
152 | io_size = res->res.io_range.size;
|
---|
153 | io_found = true;
|
---|
154 | break;
|
---|
155 | default:
|
---|
156 | break;
|
---|
157 | }
|
---|
158 | }
|
---|
159 |
|
---|
160 | if (!io_found) {
|
---|
161 | rc = ENOENT;
|
---|
162 | goto leave;
|
---|
163 | }
|
---|
164 |
|
---|
165 | if (io_reg_address != NULL) {
|
---|
166 | *io_reg_address = io_address;
|
---|
167 | }
|
---|
168 | if (io_reg_size != NULL) {
|
---|
169 | *io_reg_size = io_size;
|
---|
170 | }
|
---|
171 | rc = EOK;
|
---|
172 | leave:
|
---|
173 | async_hangup(parent_phone);
|
---|
174 |
|
---|
175 | return rc;
|
---|
176 | }
|
---|
177 | /**
|
---|
178 | * @}
|
---|
179 | */
|
---|