source: mainline/uspace/drv/bus/usb/ohci/ohci.c@ 5837c7a

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 5837c7a was 5837c7a, checked in by Jan Vesely <jano.vesely@…>, 13 years ago

ohci: Disable irq handler unregister to workaround kernel panic.

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