source: mainline/uspace/drv/uhci-rhd/main.c@ f123909

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

Doxygen fixes and refactoring.

UHCI root hub driver should be complete (except may be for the BUG)

  • Property mode set to 100644
File size: 5.7 KB
RevLine 
[816175a2]1/*
[c56dbe0]2 * Copyright (c) 2011 Vojtech Horky, Jan Vesely
[816175a2]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 */
[f123909]28/** @addtogroup drvusbuhcirh
[c56dbe0]29 * @{
30 */
31/** @file
[f123909]32 * @brief UHCI root hub initialization routines
[c56dbe0]33 */
[eb1a2f4]34#include <ddf/driver.h>
[6cbe7dad]35#include <devman.h>
36#include <device/hw_res.h>
[275bf456]37#include <errno.h>
[c56dbe0]38#include <usb_iface.h>
[357a302]39#include <usb/ddfiface.h>
[275bf456]40#include <usb/debug.h>
[c56dbe0]41
[1256a0a]42#include "root_hub.h"
43
[7ce0fe3]44#define NAME "uhci-rhd"
[6cbe7dad]45static int hc_get_my_registers(ddf_dev_t *dev,
46 uintptr_t *io_reg_address, size_t *io_reg_size);
[f123909]47#if 0
[275bf456]48/*----------------------------------------------------------------------------*/
[eb1a2f4]49static int usb_iface_get_hc_handle(ddf_fun_t *fun, devman_handle_t *handle)
[1256a0a]50{
[eb1a2f4]51 assert(fun);
52 assert(fun->driver_data);
[7ce0fe3]53 assert(handle);
54
[eb1a2f4]55 *handle = ((uhci_root_hub_t*)fun->driver_data)->hc_handle;
[816175a2]56
[1256a0a]57 return EOK;
58}
[275bf456]59/*----------------------------------------------------------------------------*/
[1256a0a]60static usb_iface_t uhci_rh_usb_iface = {
[357a302]61 .get_hc_handle = usb_iface_get_hc_handle,
62 .get_address = usb_iface_get_address_hub_impl
[1256a0a]63};
[275bf456]64/*----------------------------------------------------------------------------*/
[eb1a2f4]65static ddf_dev_ops_t uhci_rh_ops = {
[1256a0a]66 .interfaces[USB_DEV_IFACE] = &uhci_rh_usb_iface,
[816175a2]67};
[f123909]68#endif
[275bf456]69/*----------------------------------------------------------------------------*/
[f123909]70/** Initialize a new ddf driver instance of UHCI root hub.
[275bf456]71 *
72 * @param[in] device DDF instance of the device to initialize.
73 * @return Error code.
74 */
[eb1a2f4]75static int uhci_rh_add_device(ddf_dev_t *device)
[1256a0a]76{
77 if (!device)
78 return ENOTSUP;
[816175a2]79
[7ce0fe3]80 usb_log_debug2("%s called device %d\n", __FUNCTION__, device->handle);
[eb1a2f4]81
82 //device->ops = &uhci_rh_ops;
[f123909]83 uintptr_t io_regs = 0;
84 size_t io_size = 0;
85
86 int ret = hc_get_my_registers(device, &io_regs, &io_size);
87 if (ret != EOK) {
88 usb_log_error("Failed(%d) to get registers from parent hc.",
89 ret);
90 }
91 usb_log_info("I/O regs at %#X (size %zu).\n", io_regs, io_size);
[816175a2]92
[1256a0a]93 uhci_root_hub_t *rh = malloc(sizeof(uhci_root_hub_t));
94 if (!rh) {
[f123909]95 usb_log_error("Failed to allocate driver instance.\n");
[1256a0a]96 return ENOMEM;
97 }
[7ce0fe3]98
[6cbe7dad]99 ret = uhci_root_hub_init(rh, (void*)io_regs, io_size, device);
[1256a0a]100 if (ret != EOK) {
[7ce0fe3]101 usb_log_error("Failed(%d) to initialize driver instance.\n", ret);
[1256a0a]102 free(rh);
103 return ret;
104 }
[7ce0fe3]105
[1256a0a]106 device->driver_data = rh;
[5944244]107 usb_log_info("Sucessfully initialized driver instance for device:%d.\n",
[7ce0fe3]108 device->handle);
[1256a0a]109 return EOK;
110}
[275bf456]111/*----------------------------------------------------------------------------*/
[1256a0a]112static driver_ops_t uhci_rh_driver_ops = {
113 .add_device = uhci_rh_add_device,
114};
[275bf456]115/*----------------------------------------------------------------------------*/
[1256a0a]116static driver_t uhci_rh_driver = {
117 .name = NAME,
118 .driver_ops = &uhci_rh_driver_ops
119};
[6cbe7dad]120/*----------------------------------------------------------------------------*/
[f123909]121/** Initialize global driver structures (NONE).
[275bf456]122 *
123 * @param[in] argc Nmber of arguments in argv vector (ignored).
124 * @param[in] argv Cmdline argument vector (ignored).
125 * @return Error code.
126 *
127 * Driver debug level is set here.
128 */
[1256a0a]129int main(int argc, char *argv[])
130{
[dced52a]131 usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME);
[eb1a2f4]132 return ddf_driver_main(&uhci_rh_driver);
[1256a0a]133}
[6cbe7dad]134/*----------------------------------------------------------------------------*/
[275bf456]135/** Get address of I/O registers.
136 *
137 * @param[in] dev Device asking for the addresses.
138 * @param[out] io_reg_address Base address of the memory range.
139 * @param[out] io_reg_size Size of the memory range.
140 * @return Error code.
141 */
142int hc_get_my_registers(
143 ddf_dev_t *dev, uintptr_t *io_reg_address, size_t *io_reg_size)
[6cbe7dad]144{
145 assert(dev != NULL);
146
147 int parent_phone = devman_parent_device_connect(dev->handle,
148 IPC_FLAG_BLOCKING);
149 if (parent_phone < 0) {
150 return parent_phone;
151 }
152
153 int rc;
154
155 hw_resource_list_t hw_resources;
156 rc = hw_res_get_resource_list(parent_phone, &hw_resources);
157 if (rc != EOK) {
158 goto leave;
159 }
160
161 uintptr_t io_address = 0;
162 size_t io_size = 0;
163 bool io_found = false;
164
165 size_t i;
166 for (i = 0; i < hw_resources.count; i++) {
167 hw_resource_t *res = &hw_resources.resources[i];
[275bf456]168 switch (res->type)
169 {
170 case IO_RANGE:
171 io_address = (uintptr_t) res->res.io_range.address;
172 io_size = res->res.io_range.size;
173 io_found = true;
174
175 default:
176 break;
[6cbe7dad]177 }
178 }
179
180 if (!io_found) {
181 rc = ENOENT;
182 goto leave;
183 }
184
185 if (io_reg_address != NULL) {
186 *io_reg_address = io_address;
187 }
188 if (io_reg_size != NULL) {
189 *io_reg_size = io_size;
190 }
191 rc = EOK;
[275bf456]192
[6cbe7dad]193leave:
194 async_hangup(parent_phone);
195 return rc;
196}
[c56dbe0]197/**
198 * @}
199 */
Note: See TracBrowser for help on using the repository browser.