source: mainline/uspace/drv/ohci/hc.c@ 4b39af4

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

Fix device_keeper compile error, disable legacy for OHCI

  • Property mode set to 100644
File size: 6.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/** @addtogroup drvusbohcihc
29 * @{
30 */
31/** @file
32 * @brief OHCI Host controller driver routines
33 */
34#include <errno.h>
35#include <str_error.h>
36#include <adt/list.h>
37#include <libarch/ddi.h>
38
39#include <usb/debug.h>
40#include <usb/usb.h>
41#include <usb/ddfiface.h>
42#include <usb/usbdevice.h>
43
44#include "hc.h"
45
46static int interrupt_emulator(hc_t *instance);
47static void hc_gain_control(hc_t *instance);
48static void hc_init_hw(hc_t *instance);
49/*----------------------------------------------------------------------------*/
50int hc_register_hub(hc_t *instance, ddf_fun_t *hub_fun)
51{
52 assert(instance);
53 assert(hub_fun);
54
55 usb_address_t hub_address =
56 device_keeper_get_free_address(&instance->manager, USB_SPEED_FULL);
57 instance->rh.address = hub_address;
58 usb_device_keeper_bind(
59 &instance->manager, hub_address, hub_fun->handle);
60
61 char *match_str = NULL;
62 int ret = asprintf(&match_str, "usb&class=hub");
63 ret = (match_str == NULL) ? ret : EOK;
64 if (ret < 0) {
65 usb_log_error("Failed to create root hub match-id string.\n");
66 return ret;
67 }
68
69 ret = ddf_fun_add_match_id(hub_fun, match_str, 100);
70 if (ret != EOK) {
71 usb_log_error("Failed add create root hub match-id.\n");
72 }
73 return ret;
74}
75/*----------------------------------------------------------------------------*/
76int hc_init(hc_t *instance, ddf_fun_t *fun, ddf_dev_t *dev,
77 uintptr_t regs, size_t reg_size, bool interrupts)
78{
79 assert(instance);
80 int ret = EOK;
81#define CHECK_RET_RETURN(ret, message...) \
82if (ret != EOK) { \
83 usb_log_error(message); \
84 return ret; \
85} else (void)0
86
87 ret = pio_enable((void*)regs, reg_size, (void**)&instance->registers);
88 CHECK_RET_RETURN(ret,
89 "Failed(%d) to gain access to device registers: %s.\n",
90 ret, str_error(ret));
91
92 instance->ddf_instance = fun;
93 usb_device_keeper_init(&instance->manager);
94 ret = usb_endpoint_manager_init(&instance->ep_manager,
95 BANDWIDTH_AVAILABLE_USB11);
96 CHECK_RET_RETURN(ret, "Failed to initialize endpoint manager: %s.\n",
97 ret, str_error(ret));
98
99 if (!interrupts) {
100 instance->interrupt_emulator =
101 fibril_create((int(*)(void*))interrupt_emulator, instance);
102 fibril_add_ready(instance->interrupt_emulator);
103 }
104
105 hc_gain_control(instance);
106
107 rh_init(&instance->rh, dev, instance->registers);
108
109 hc_init_hw(instance);
110
111 /* TODO: implement */
112 return EOK;
113}
114/*----------------------------------------------------------------------------*/
115int hc_schedule(hc_t *instance, usb_transfer_batch_t *batch)
116{
117 assert(instance);
118 assert(batch);
119 if (batch->target.address == instance->rh.address) {
120 return rh_request(&instance->rh, batch);
121 }
122 /* TODO: implement */
123 return ENOTSUP;
124}
125/*----------------------------------------------------------------------------*/
126void hc_interrupt(hc_t *instance, uint32_t status)
127{
128 assert(instance);
129 if (status == 0)
130 return;
131 if (status & IS_RHSC)
132 rh_interrupt(&instance->rh);
133
134 usb_log_info("OHCI interrupt: %x.\n", status);
135
136 /* TODO: Check for further interrupt causes */
137 /* TODO: implement */
138}
139/*----------------------------------------------------------------------------*/
140int interrupt_emulator(hc_t *instance)
141{
142 assert(instance);
143 usb_log_info("Started interrupt emulator.\n");
144 while (1) {
145 const uint32_t status = instance->registers->interrupt_status;
146 instance->registers->interrupt_status = status;
147 hc_interrupt(instance, status);
148 async_usleep(1000);
149 }
150 return EOK;
151}
152/*----------------------------------------------------------------------------*/
153void hc_gain_control(hc_t *instance)
154{
155 assert(instance);
156 /* Interrupt routing enabled => smm driver is active */
157 if (instance->registers->control & C_IR) {
158 usb_log_info("Found SMM driver requesting ownership change.\n");
159 instance->registers->command_status |= CS_OCR;
160 while (instance->registers->control & C_IR) {
161 async_usleep(1000);
162 }
163 usb_log_info("Ownership taken from SMM driver.\n");
164 return;
165 }
166
167 const unsigned hc_status =
168 (instance->registers->control >> C_HCFS_SHIFT) & C_HCFS_MASK;
169 /* Interrupt routing disabled && status != USB_RESET => BIOS active */
170 if (hc_status != C_HCFS_RESET) {
171 usb_log_info("Found BIOS driver.\n");
172 if (hc_status == C_HCFS_OPERATIONAL) {
173 usb_log_info("HC operational(BIOS).\n");
174 return;
175 }
176 /* HC is suspended assert resume for 20ms */
177 instance->registers->control &= (C_HCFS_RESUME << C_HCFS_SHIFT);
178 async_usleep(20000);
179 return;
180 }
181
182 /* HC is in reset (hw startup) => no other driver
183 * maintain reset for at least the time specified in USB spec (50 ms)*/
184 async_usleep(50000);
185
186 /* turn off legacy emulation */
187 volatile uint32_t *ohci_emulation_reg =
188 (uint32_t*)((char*)instance->registers + 0x100);
189 usb_log_info("OHCI legacy register status %p: %x.\n",
190 ohci_emulation_reg, *ohci_emulation_reg);
191 *ohci_emulation_reg = 0;
192
193}
194/*----------------------------------------------------------------------------*/
195void hc_init_hw(hc_t *instance)
196{
197 assert(instance);
198 const uint32_t fm_interval = instance->registers->fm_interval;
199 instance->registers->command_status = CS_HCR;
200 async_usleep(10);
201 instance->registers->fm_interval = fm_interval;
202 assert((instance->registers->command_status & CS_HCR) == 0);
203 /* hc is now in suspend state */
204 /* TODO: init HCCA block */
205 /* TODO: init queues */
206 /* TODO: enable queues */
207 /* TODO: enable interrupts */
208 /* TODO: set periodic start to 90% */
209
210 instance->registers->control &= (C_HCFS_OPERATIONAL << C_HCFS_SHIFT);
211 usb_log_info("OHCI HC up and running.\n");
212}
213/**
214 * @}
215 */
Note: See TracBrowser for help on using the repository browser.