source: mainline/uspace/drv/bus/usb/ohci/ohci.c@ 378bf85

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 378bf85 was 7de1988c, checked in by Jakub Jermar <jakub@…>, 12 years ago

Adapt drivers using parsed HW resources to use the new interface.

  • Property mode set to 100644
File size: 6.7 KB
Line 
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 drvusbohci
30 * @{
31 */
32/** @file
33 * @brief OHCI driver
34 */
35
36/* XXX Fix this */
37#define _DDF_DATA_IMPLANT
38
39#include <errno.h>
40#include <str_error.h>
41#include <ddf/interrupt.h>
42#include <usb_iface.h>
43#include <usb/usb.h>
44#include <usb/ddfiface.h>
45#include <usb/debug.h>
46
47#include "ohci.h"
48#include "res.h"
49#include "hc.h"
50
51typedef struct ohci {
52 ddf_fun_t *hc_fun;
53 ddf_fun_t *rh_fun;
54
55 hc_t hc;
56} ohci_t;
57
58static inline ohci_t *dev_to_ohci(ddf_dev_t *dev)
59{
60 return ddf_dev_data_get(dev);
61}
62/** IRQ handling callback, identifies device
63 *
64 * @param[in] dev DDF instance of the device to use.
65 * @param[in] iid (Unused).
66 * @param[in] call Pointer to the call that represents interrupt.
67 */
68static void irq_handler(ddf_dev_t *dev, ipc_callid_t iid, ipc_call_t *call)
69{
70 assert(dev);
71
72 ohci_t *ohci = dev_to_ohci(dev);
73 if (!ohci) {
74 usb_log_warning("Interrupt on device that is not ready.\n");
75 return;
76 }
77 const uint16_t status = IPC_GET_ARG1(*call);
78 hc_interrupt(&ohci->hc, status);
79}
80
81/** Get USB address assigned to root hub.
82 *
83 * @param[in] fun Root hub function.
84 * @param[out] address Store the address here.
85 * @return Error code.
86 */
87static int rh_get_my_address(ddf_fun_t *fun, usb_address_t *address)
88{
89 assert(fun);
90
91 if (address != NULL) {
92 *address = dev_to_ohci(ddf_fun_get_dev(fun))->hc.rh.address;
93 }
94
95 return EOK;
96}
97
98/** Gets handle of the respective hc (this device, hc function).
99 *
100 * @param[in] root_hub_fun Root hub function seeking hc handle.
101 * @param[out] handle Place to write the handle.
102 * @return Error code.
103 */
104static int rh_get_hc_handle(
105 ddf_fun_t *fun, devman_handle_t *handle)
106{
107 assert(fun);
108 ddf_fun_t *hc_fun = dev_to_ohci(ddf_fun_get_dev(fun))->hc_fun;
109 assert(hc_fun);
110
111 if (handle != NULL)
112 *handle = ddf_fun_get_handle(hc_fun);
113 return EOK;
114}
115
116/** Root hub USB interface */
117static usb_iface_t usb_iface = {
118 .get_hc_handle = rh_get_hc_handle,
119 .get_my_address = rh_get_my_address,
120};
121
122/** Standard USB HC options (HC interface) */
123static ddf_dev_ops_t hc_ops = {
124 .interfaces[USBHC_DEV_IFACE] = &hcd_iface,
125};
126
127/** Standard USB RH options (RH interface) */
128static ddf_dev_ops_t rh_ops = {
129 .interfaces[USB_DEV_IFACE] = &usb_iface,
130};
131
132/** Initialize hc and rh ddf structures and their respective drivers.
133 *
134 * @param[in] device DDF instance of the device to use.
135 * @param[in] instance OHCI structure to use.
136 *
137 * This function does all the preparatory work for hc and rh drivers:
138 * - gets device hw resources
139 * - disables OHCI legacy support
140 * - asks for interrupt
141 * - registers interrupt handler
142 */
143int device_setup_ohci(ddf_dev_t *device)
144{
145 bool ih_registered = false;
146 bool hc_inited = false;
147 int rc;
148
149 if (device == NULL)
150 return EBADMEM;
151
152 ohci_t *instance = ddf_dev_data_alloc(device,sizeof(ohci_t));
153 if (instance == NULL) {
154 usb_log_error("Failed to allocate OHCI driver.\n");
155 return ENOMEM;
156 }
157
158 instance->hc_fun = ddf_fun_create(device, fun_exposed, "ohci_hc");
159 if (instance->hc_fun == NULL) {
160 usb_log_error("Failed to create OHCI HC function: %s.\n",
161 str_error(ENOMEM));
162 rc = ENOMEM;
163 goto error;
164 }
165
166 ddf_fun_set_ops(instance->hc_fun, &hc_ops);
167 ddf_fun_data_implant(instance->hc_fun, &instance->hc);
168
169 instance->rh_fun = ddf_fun_create(device, fun_inner, "ohci_rh");
170 if (instance->rh_fun == NULL) {
171 usb_log_error("Failed to create OHCI RH function: %s.\n",
172 str_error(ENOMEM));
173 rc = ENOMEM;
174 goto error;
175 }
176
177 ddf_fun_set_ops(instance->rh_fun, &rh_ops);
178
179 addr_range_t regs;
180 int irq = 0;
181
182 rc = get_my_registers(device, &regs, &irq);
183 if (rc != EOK) {
184 usb_log_error("Failed to get register memory addresses "
185 "for %" PRIun ": %s.\n", ddf_dev_get_handle(device),
186 str_error(rc));
187 goto error;
188 }
189
190 usb_log_debug("Memory mapped regs at %p (size %zu), IRQ %d.\n",
191 RNGABSPTR(regs), RNGSZ(regs), irq);
192
193 rc = hc_register_irq_handler(device, &regs, irq, irq_handler);
194 if (rc != EOK) {
195 usb_log_error("Failed to register interrupt handler: %s.\n",
196 str_error(rc));
197 goto error;
198 }
199
200 ih_registered = true;
201
202 /* Try to enable interrupts */
203 bool interrupts = false;
204 rc = enable_interrupts(device);
205 if (rc != EOK) {
206 usb_log_warning("Failed to enable interrupts: %s."
207 " Falling back to polling\n", str_error(rc));
208 /* We don't need that handler */
209 unregister_interrupt_handler(device, irq);
210 ih_registered = false;
211 } else {
212 usb_log_debug("Hw interrupts enabled.\n");
213 interrupts = true;
214 }
215
216 rc = hc_init(&instance->hc, &regs, interrupts);
217 if (rc != EOK) {
218 usb_log_error("Failed to init ohci_hcd: %s.\n", str_error(rc));
219 goto error;
220 }
221
222 hc_inited = true;
223
224 rc = ddf_fun_bind(instance->hc_fun);
225 if (rc != EOK) {
226 usb_log_error("Failed to bind OHCI device function: %s.\n",
227 str_error(rc));
228 goto error;
229 }
230
231 rc = ddf_fun_add_to_category(instance->hc_fun, USB_HC_CATEGORY);
232 if (rc != EOK) {
233 usb_log_error("Failed to add OHCI to HC category: %s.\n",
234 str_error(rc));
235 goto error;
236 }
237
238 rc = hc_register_hub(&instance->hc, instance->rh_fun);
239 if (rc != EOK) {
240 usb_log_error("Failed to register OHCI root hub: %s.\n",
241 str_error(rc));
242 goto error;
243 }
244
245 return EOK;
246
247error:
248 if (hc_inited)
249 hc_fini(&instance->hc);
250 if (ih_registered)
251 unregister_interrupt_handler(device, irq);
252 if (instance->hc_fun != NULL)
253 ddf_fun_destroy(instance->hc_fun);
254 if (instance->rh_fun != NULL)
255 ddf_fun_destroy(instance->rh_fun);
256 return rc;
257}
258/**
259 * @}
260 */
Note: See TracBrowser for help on using the repository browser.