source: mainline/uspace/drv/bus/usb/uhcirh/main.c@ 96e01fbc

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 96e01fbc was 56fd7cf, checked in by Jiri Svoboda <jiri@…>, 13 years ago

Make ddf_dev_t and ddf_fun_t opaque. This further tighthens the DDF interface.

  • Property mode set to 100644
File size: 4.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 drvusbuhcirh
30 * @{
31 */
32/** @file
33 * @brief UHCI root hub initialization routines
34 */
35
36#include <ddf/driver.h>
37#include <devman.h>
38#include <device/hw_res_parsed.h>
39#include <errno.h>
40#include <str_error.h>
41
42#include <usb_iface.h>
43#include <usb/ddfiface.h>
44#include <usb/debug.h>
45
46#include "root_hub.h"
47
48#define NAME "uhcirh"
49
50static int hc_get_my_registers(ddf_dev_t *dev,
51 uintptr_t *io_reg_address, size_t *io_reg_size);
52
53static int uhci_rh_dev_add(ddf_dev_t *device);
54
55static driver_ops_t uhci_rh_driver_ops = {
56 .dev_add = uhci_rh_dev_add,
57};
58
59static driver_t uhci_rh_driver = {
60 .name = NAME,
61 .driver_ops = &uhci_rh_driver_ops
62};
63
64/** Initialize global driver structures (NONE).
65 *
66 * @param[in] argc Nmber of arguments in argv vector (ignored).
67 * @param[in] argv Cmdline argument vector (ignored).
68 * @return Error code.
69 *
70 * Driver debug level is set here.
71 */
72int main(int argc, char *argv[])
73{
74 printf(NAME ": HelenOS UHCI root hub driver.\n");
75 usb_log_enable(USB_LOG_LEVEL_DEFAULT, NAME);
76 return ddf_driver_main(&uhci_rh_driver);
77}
78
79/** Initialize a new ddf driver instance of UHCI root hub.
80 *
81 * @param[in] device DDF instance of the device to initialize.
82 * @return Error code.
83 */
84static int uhci_rh_dev_add(ddf_dev_t *device)
85{
86 if (!device)
87 return EINVAL;
88
89 usb_log_debug2("uhci_rh_dev_add(handle=%" PRIun ")\n",
90 ddf_dev_get_handle(device));
91
92 uintptr_t io_regs = 0;
93 size_t io_size = 0;
94 uhci_root_hub_t *rh = NULL;
95 int ret = EOK;
96
97#define CHECK_RET_FREE_RH_RETURN(ret, message...) \
98if (ret != EOK) { \
99 usb_log_error(message); \
100 return ret; \
101} else (void)0
102
103 ret = hc_get_my_registers(device, &io_regs, &io_size);
104 CHECK_RET_FREE_RH_RETURN(ret,
105 "Failed to get registers from HC: %s.\n", str_error(ret));
106 usb_log_debug("I/O regs at %p (size %zuB).\n",
107 (void *) io_regs, io_size);
108
109 rh = ddf_dev_data_alloc(device, sizeof(uhci_root_hub_t));
110 ret = (rh == NULL) ? ENOMEM : EOK;
111 CHECK_RET_FREE_RH_RETURN(ret,
112 "Failed to allocate rh driver instance.\n");
113
114 ret = uhci_root_hub_init(rh, (void*)io_regs, io_size, device);
115 CHECK_RET_FREE_RH_RETURN(ret,
116 "Failed(%d) to initialize rh driver instance: %s.\n",
117 ret, str_error(ret));
118
119 usb_log_info("Controlling root hub '%s' (%" PRIun ").\n",
120 ddf_dev_get_name(device), ddf_dev_get_handle(device));
121 return EOK;
122}
123
124/** Get address of I/O registers.
125 *
126 * @param[in] dev Device asking for the addresses.
127 * @param[out] io_reg_address Base address of the memory range.
128 * @param[out] io_reg_size Size of the memory range.
129 * @return Error code.
130 */
131int hc_get_my_registers(
132 ddf_dev_t *dev, uintptr_t *io_reg_address, size_t *io_reg_size)
133{
134 async_sess_t *parent_sess =
135 devman_parent_device_connect(EXCHANGE_SERIALIZE,
136 ddf_dev_get_handle(dev), IPC_FLAG_BLOCKING);
137 if (!parent_sess)
138 return ENOMEM;
139
140 hw_res_list_parsed_t hw_res;
141 hw_res_list_parsed_init(&hw_res);
142 const int ret = hw_res_get_list_parsed(parent_sess, &hw_res, 0);
143 async_hangup(parent_sess);
144 if (ret != EOK) {
145 return ret;
146 }
147
148 if (hw_res.io_ranges.count != 1) {
149 hw_res_list_parsed_clean(&hw_res);
150 return EINVAL;
151 }
152
153 if (io_reg_address != NULL)
154 *io_reg_address = hw_res.io_ranges.ranges[0].address;
155
156 if (io_reg_size != NULL)
157 *io_reg_size = hw_res.io_ranges.ranges[0].size;
158
159 hw_res_list_parsed_clean(&hw_res);
160 return EOK;
161}
162
163/**
164 * @}
165 */
Note: See TracBrowser for help on using the repository browser.