source: mainline/uspace/drv/bus/usb/vhc/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: 3.9 KB
Line 
1/*
2 * Copyright (c) 2011 Vojtech Horky
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 drvusbvhc
30 * @{
31 */
32/** @file
33 * Virtual host controller.
34 */
35
36#include <loc.h>
37#include <async.h>
38#include <unistd.h>
39#include <stdlib.h>
40#include <sysinfo.h>
41#include <stdio.h>
42#include <errno.h>
43#include <str_error.h>
44#include <ddf/driver.h>
45
46#include <usb/usb.h>
47#include <usb/ddfiface.h>
48#include <usb_iface.h>
49#include "vhcd.h"
50#include "hub.h"
51#include "conn.h"
52
53static ddf_dev_ops_t vhc_ops = {
54 .interfaces[USBHC_DEV_IFACE] = &vhc_iface,
55 .interfaces[USB_DEV_IFACE] = &vhc_usb_iface,
56 .close = on_client_close,
57 .default_handler = default_connection_handler
58};
59
60static int vhc_dev_add(ddf_dev_t *dev)
61{
62 static int vhc_count = 0;
63 int rc;
64
65 if (vhc_count > 0) {
66 return ELIMIT;
67 }
68
69 vhc_data_t *data = ddf_dev_data_alloc(dev, sizeof(vhc_data_t));
70 if (data == NULL) {
71 usb_log_fatal("Failed to allocate memory.\n");
72 return ENOMEM;
73 }
74 data->magic = 0xDEADBEEF;
75 rc = usb_endpoint_manager_init(&data->ep_manager, (size_t) -1,
76 bandwidth_count_usb11);
77 if (rc != EOK) {
78 usb_log_fatal("Failed to initialize endpoint manager.\n");
79 free(data);
80 return rc;
81 }
82 usb_device_manager_init(&data->dev_manager, USB_SPEED_MAX);
83
84 ddf_fun_t *hc = ddf_fun_create(dev, fun_exposed, "hc");
85 if (hc == NULL) {
86 usb_log_fatal("Failed to create device function.\n");
87 free(data);
88 return ENOMEM;
89 }
90
91 ddf_fun_set_ops(hc, &vhc_ops);
92 list_initialize(&data->devices);
93 fibril_mutex_initialize(&data->guard);
94 data->hub = &virtual_hub_device;
95 data->hc_fun = hc;
96
97 rc = ddf_fun_bind(hc);
98 if (rc != EOK) {
99 usb_log_fatal("Failed to bind HC function: %s.\n",
100 str_error(rc));
101 free(data);
102 return rc;
103 }
104
105 rc = ddf_fun_add_to_category(hc, USB_HC_CATEGORY);
106 if (rc != EOK) {
107 usb_log_fatal("Failed to add function to HC class: %s.\n",
108 str_error(rc));
109 free(data);
110 return rc;
111 }
112
113 virtual_hub_device_init(hc);
114
115 usb_log_info("Virtual USB host controller ready (dev %zu, hc %zu).\n",
116 (size_t) ddf_dev_get_handle(dev), (size_t) ddf_fun_get_handle(hc));
117
118 rc = vhc_virtdev_plug_hub(data, data->hub, NULL);
119 if (rc != EOK) {
120 usb_log_fatal("Failed to plug root hub: %s.\n", str_error(rc));
121 free(data);
122 return rc;
123 }
124
125 return EOK;
126}
127
128static driver_ops_t vhc_driver_ops = {
129 .dev_add = vhc_dev_add,
130};
131
132static driver_t vhc_driver = {
133 .name = NAME,
134 .driver_ops = &vhc_driver_ops
135};
136
137
138int main(int argc, char * argv[])
139{
140 usb_log_enable(USB_LOG_LEVEL_DEFAULT, NAME);
141
142 printf(NAME ": virtual USB host controller driver.\n");
143
144 return ddf_driver_main(&vhc_driver);
145}
146
147
148/**
149 * @}
150 */
Note: See TracBrowser for help on using the repository browser.