1 | /*
|
---|
2 | * Copyright (c) 2011 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 |
|
---|
29 | /** @addtogroup drvusbuhcirh
|
---|
30 | * @{
|
---|
31 | */
|
---|
32 | /** @file
|
---|
33 | * @brief UHCI root hub initialization routines
|
---|
34 | */
|
---|
35 |
|
---|
36 | #include <ddf/driver.h>
|
---|
37 | #include <devman.h>
|
---|
38 | #include <device/hw_res_parsed.h>
|
---|
39 | #include <errno.h>
|
---|
40 | #include <str_error.h>
|
---|
41 |
|
---|
42 | #include <usb_iface.h>
|
---|
43 | #include <usb/ddfiface.h>
|
---|
44 | #include <usb/debug.h>
|
---|
45 |
|
---|
46 | #include "root_hub.h"
|
---|
47 |
|
---|
48 | #define NAME "uhcirh"
|
---|
49 |
|
---|
50 | static int hc_get_my_registers(ddf_dev_t *dev,
|
---|
51 | uintptr_t *io_reg_address, size_t *io_reg_size);
|
---|
52 |
|
---|
53 | static int uhci_rh_dev_add(ddf_dev_t *device);
|
---|
54 |
|
---|
55 | static driver_ops_t uhci_rh_driver_ops = {
|
---|
56 | .dev_add = uhci_rh_dev_add,
|
---|
57 | };
|
---|
58 |
|
---|
59 | static driver_t uhci_rh_driver = {
|
---|
60 | .name = NAME,
|
---|
61 | .driver_ops = &uhci_rh_driver_ops
|
---|
62 | };
|
---|
63 |
|
---|
64 | /** Initialize global driver structures (NONE).
|
---|
65 | *
|
---|
66 | * @param[in] argc Nmber of arguments in argv vector (ignored).
|
---|
67 | * @param[in] argv Cmdline argument vector (ignored).
|
---|
68 | * @return Error code.
|
---|
69 | *
|
---|
70 | * Driver debug level is set here.
|
---|
71 | */
|
---|
72 | int main(int argc, char *argv[])
|
---|
73 | {
|
---|
74 | printf(NAME ": HelenOS UHCI root hub driver.\n");
|
---|
75 | log_init(NAME);
|
---|
76 | return ddf_driver_main(&uhci_rh_driver);
|
---|
77 | }
|
---|
78 |
|
---|
79 | /** Initialize a new ddf driver instance of UHCI root hub.
|
---|
80 | *
|
---|
81 | * @param[in] device DDF instance of the device to initialize.
|
---|
82 | * @return Error code.
|
---|
83 | */
|
---|
84 | static int uhci_rh_dev_add(ddf_dev_t *device)
|
---|
85 | {
|
---|
86 | if (!device)
|
---|
87 | return EINVAL;
|
---|
88 |
|
---|
89 | usb_log_debug2("uhci_rh_dev_add(handle=%" PRIun ")\n",
|
---|
90 | ddf_dev_get_handle(device));
|
---|
91 |
|
---|
92 | uintptr_t io_regs = 0;
|
---|
93 | size_t io_size = 0;
|
---|
94 | uhci_root_hub_t *rh = NULL;
|
---|
95 | int rc;
|
---|
96 |
|
---|
97 | rc = hc_get_my_registers(device, &io_regs, &io_size);
|
---|
98 | if (rc != EOK) {
|
---|
99 | usb_log_error( "Failed to get registers from HC: %s.\n",
|
---|
100 | str_error(rc));
|
---|
101 | return rc;
|
---|
102 | }
|
---|
103 |
|
---|
104 | usb_log_debug("I/O regs at %p (size %zuB).\n",
|
---|
105 | (void *) io_regs, io_size);
|
---|
106 |
|
---|
107 | rh = ddf_dev_data_alloc(device, sizeof(uhci_root_hub_t));
|
---|
108 | if (rh == NULL) {
|
---|
109 | usb_log_error("Failed to allocate rh driver instance.\n");
|
---|
110 | return ENOMEM;
|
---|
111 | }
|
---|
112 |
|
---|
113 | rc = uhci_root_hub_init(rh, (void*)io_regs, io_size, device);
|
---|
114 | if (rc != EOK) {
|
---|
115 | usb_log_error("Failed(%d) to initialize rh driver instance: "
|
---|
116 | "%s.\n", rc, str_error(rc));
|
---|
117 | return rc;
|
---|
118 | }
|
---|
119 |
|
---|
120 | usb_log_info("Controlling root hub '%s' (%" PRIun ").\n",
|
---|
121 | ddf_dev_get_name(device), ddf_dev_get_handle(device));
|
---|
122 |
|
---|
123 | return EOK;
|
---|
124 | }
|
---|
125 |
|
---|
126 | /** Get address of I/O registers.
|
---|
127 | *
|
---|
128 | * @param[in] dev Device asking for the addresses.
|
---|
129 | * @param[out] io_reg_address Base address of the memory range.
|
---|
130 | * @param[out] io_reg_size Size of the memory range.
|
---|
131 | * @return Error code.
|
---|
132 | */
|
---|
133 | int hc_get_my_registers(
|
---|
134 | ddf_dev_t *dev, uintptr_t *io_reg_address, size_t *io_reg_size)
|
---|
135 | {
|
---|
136 | async_sess_t *parent_sess =
|
---|
137 | devman_parent_device_connect(EXCHANGE_SERIALIZE,
|
---|
138 | ddf_dev_get_handle(dev), IPC_FLAG_BLOCKING);
|
---|
139 | if (!parent_sess)
|
---|
140 | return ENOMEM;
|
---|
141 |
|
---|
142 | hw_res_list_parsed_t hw_res;
|
---|
143 | hw_res_list_parsed_init(&hw_res);
|
---|
144 | const int ret = hw_res_get_list_parsed(parent_sess, &hw_res, 0);
|
---|
145 | async_hangup(parent_sess);
|
---|
146 | if (ret != EOK) {
|
---|
147 | return ret;
|
---|
148 | }
|
---|
149 |
|
---|
150 | if (hw_res.io_ranges.count != 1) {
|
---|
151 | hw_res_list_parsed_clean(&hw_res);
|
---|
152 | return EINVAL;
|
---|
153 | }
|
---|
154 |
|
---|
155 | if (io_reg_address != NULL)
|
---|
156 | *io_reg_address = hw_res.io_ranges.ranges[0].address;
|
---|
157 |
|
---|
158 | if (io_reg_size != NULL)
|
---|
159 | *io_reg_size = hw_res.io_ranges.ranges[0].size;
|
---|
160 |
|
---|
161 | hw_res_list_parsed_clean(&hw_res);
|
---|
162 | return EOK;
|
---|
163 | }
|
---|
164 |
|
---|
165 | /**
|
---|
166 | * @}
|
---|
167 | */
|
---|