source: mainline/uspace/drv/ohci/main.c@ 7102aa5

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 7102aa5 was 68b5ed6e, checked in by Vojtech Horky <vojtechhorky@…>, 14 years ago

Rename device_keeper* ⇒ usb_device_keeper*

Also extended some device keeper functions names to be more descriptive.

No change in functionality.

  • Property mode set to 100644
File size: 6.1 KB
Line 
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 drvusbohci
30 * @{
31 */
32/** @file
33 * Main routines of OHCI 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
45#include "pci.h"
46#include "iface.h"
47#include "hc.h"
48
49static int ohci_add_device(ddf_dev_t *device);
50static int get_hc_handle(ddf_fun_t *fun, devman_handle_t *handle)
51{
52 assert(handle);
53 assert(fun != NULL);
54
55 *handle = fun->handle;
56 return EOK;
57}
58/*----------------------------------------------------------------------------*/
59static int get_address(
60 ddf_fun_t *fun, devman_handle_t handle, usb_address_t *address)
61{
62 assert(fun);
63 usb_device_keeper_t *manager = &fun_to_hc(fun)->manager;
64 usb_address_t addr = usb_device_keeper_find(manager, handle);
65 if (addr < 0) {
66 return addr;
67 }
68
69 if (address != NULL) {
70 *address = addr;
71 }
72
73 return EOK;
74}
75/*----------------------------------------------------------------------------*/
76/** IRQ handling callback, identifies device
77 *
78 * @param[in] dev DDF instance of the device to use.
79 * @param[in] iid (Unused).
80 * @param[in] call Pointer to the call that represents interrupt.
81 */
82static void irq_handler(ddf_dev_t *dev, ipc_callid_t iid, ipc_call_t *call)
83{
84 assert(dev);
85 hc_t *hc = (hc_t*)dev->driver_data;
86 assert(hc);
87 hc_interrupt(hc, 0);
88}
89/*----------------------------------------------------------------------------*/
90static driver_ops_t ohci_driver_ops = {
91 .add_device = ohci_add_device,
92};
93/*----------------------------------------------------------------------------*/
94static driver_t ohci_driver = {
95 .name = NAME,
96 .driver_ops = &ohci_driver_ops
97};
98/*----------------------------------------------------------------------------*/
99static usb_iface_t hc_usb_iface = {
100 .get_address = get_address,
101 .get_hc_handle = get_hc_handle,
102};
103/*----------------------------------------------------------------------------*/
104static ddf_dev_ops_t hc_ops = {
105 .interfaces[USB_DEV_IFACE] = &hc_usb_iface,
106 .interfaces[USBHC_DEV_IFACE] = &hc_iface,
107};
108/*----------------------------------------------------------------------------*/
109/** Initializes a new ddf driver instance of OHCI hcd.
110 *
111 * @param[in] device DDF instance of the device to initialize.
112 * @return Error code.
113 */
114static int ohci_add_device(ddf_dev_t *device)
115{
116 assert(device);
117#define CHECK_RET_RETURN(ret, message...) \
118if (ret != EOK) { \
119 usb_log_error(message); \
120 return ret; \
121}
122
123 uintptr_t mem_reg_base = 0;
124 size_t mem_reg_size = 0;
125 int irq = 0;
126
127 int ret =
128 pci_get_my_registers(device, &mem_reg_base, &mem_reg_size, &irq);
129 CHECK_RET_RETURN(ret,
130 "Failed(%d) to get memory addresses:.\n", ret, device->handle);
131 usb_log_info("Memory mapped regs at 0x%X (size %zu), IRQ %d.\n",
132 mem_reg_base, mem_reg_size, irq);
133
134 ret = pci_disable_legacy(device);
135 CHECK_RET_RETURN(ret,
136 "Failed(%d) disable legacy USB: %s.\n", ret, str_error(ret));
137
138 hc_t *hcd = malloc(sizeof(hc_t));
139 if (hcd == NULL) {
140 usb_log_error("Failed to allocate OHCI driver.\n");
141 return ENOMEM;
142 }
143
144 ddf_fun_t *hc_fun = ddf_fun_create(device, fun_exposed, "ohci-hc");
145 if (hc_fun == NULL) {
146 usb_log_error("Failed to create OHCI function.\n");
147 free(hcd);
148 return ENOMEM;
149 }
150
151 bool interrupts = false;
152 ret = pci_enable_interrupts(device);
153 if (ret != EOK) {
154 usb_log_warning(
155 "Failed(%d) to enable interrupts, fall back to polling.\n",
156 ret);
157 } else {
158 usb_log_debug("Hw interrupts enabled.\n");
159 interrupts = true;
160 }
161
162 ret = hc_init(hcd, hc_fun, device, mem_reg_base, mem_reg_size, interrupts);
163 if (ret != EOK) {
164 usb_log_error("Failed to initialize OHCI driver.\n");
165 free(hcd);
166 return ret;
167 }
168
169 ret = register_interrupt_handler(device, irq, irq_handler, NULL);
170
171 hc_fun->ops = &hc_ops;
172 ret = ddf_fun_bind(hc_fun);
173 if (ret != EOK) {
174 usb_log_error("Failed to bind OHCI function.\n");
175 ddf_fun_destroy(hc_fun);
176 free(hcd);
177 return ret;
178 }
179 hc_fun->driver_data = hcd;
180
181 fid_t later = fibril_create((int(*)(void*))hc_register_hub, hcd);
182 fibril_add_ready(later);
183
184 usb_log_info("Controlling new OHCI device `%s' (handle %llu).\n",
185 device->name, device->handle);
186
187 return EOK;
188#undef CHECK_RET_RETURN
189}
190/*----------------------------------------------------------------------------*/
191/** Initializes global driver structures (NONE).
192 *
193 * @param[in] argc Nmber of arguments in argv vector (ignored).
194 * @param[in] argv Cmdline argument vector (ignored).
195 * @return Error code.
196 *
197 * Driver debug level is set here.
198 */
199int main(int argc, char *argv[])
200{
201 usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME);
202 sleep(5);
203 return ddf_driver_main(&ohci_driver);
204}
205/**
206 * @}
207 */
Note: See TracBrowser for help on using the repository browser.