source: mainline/uspace/lib/usb/src/pipes.c@ c7fbb90

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

Remove usb_pipe_start_session & co (#196)

  • Property mode set to 100644
File size: 6.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 libusb
30 * @{
31 */
32/** @file
33 * USB endpoint pipes miscellaneous functions.
34 */
35#include <usb/usb.h>
36#include <usb/pipes.h>
37#include <usb/debug.h>
38#include <usbhc_iface.h>
39#include <usb_iface.h>
40#include <devman.h>
41#include <errno.h>
42#include <assert.h>
43#include "pipepriv.h"
44
45#define IPC_AGAIN_DELAY (1000 * 2) /* 2ms */
46
47/** Tell USB address assigned to given device.
48 *
49 * @param phone Phone to parent device.
50 * @param dev Device in question.
51 * @return USB address or error code.
52 */
53static usb_address_t get_my_address(int phone, ddf_dev_t *dev)
54{
55 sysarg_t address;
56
57 /*
58 * We are sending special value as a handle - zero - to get
59 * handle of the parent function (that handle was used
60 * when registering our device @p dev.
61 */
62 int rc = async_req_2_1(phone, DEV_IFACE_ID(USB_DEV_IFACE),
63 IPC_M_USB_GET_ADDRESS,
64 0, &address);
65
66 if (rc != EOK) {
67 return rc;
68 }
69
70 return (usb_address_t) address;
71}
72
73/** Tell USB interface assigned to given device.
74 *
75 * @param device Device in question.
76 * @return Interface number (negative code means any).
77 */
78int usb_device_get_assigned_interface(ddf_dev_t *device)
79{
80 int parent_phone = devman_parent_device_connect(device->handle,
81 IPC_FLAG_BLOCKING);
82 if (parent_phone < 0) {
83 return -1;
84 }
85
86 sysarg_t iface_no;
87 int rc = async_req_2_1(parent_phone, DEV_IFACE_ID(USB_DEV_IFACE),
88 IPC_M_USB_GET_INTERFACE,
89 device->handle, &iface_no);
90
91 async_hangup(parent_phone);
92
93 if (rc != EOK) {
94 return -1;
95 }
96
97 return (int) iface_no;
98}
99
100/** Tell USB address assigned to given device.
101 *
102 * @param dev_handle Devman handle of the USB device in question.
103 * @return USB address or negative error code.
104 */
105usb_address_t usb_device_get_assigned_address(devman_handle_t dev_handle)
106{
107 int parent_phone = devman_parent_device_connect(dev_handle,
108 IPC_FLAG_BLOCKING);
109 if (parent_phone < 0) {
110 return parent_phone;
111 }
112
113 sysarg_t address;
114
115 int rc = async_req_2_1(parent_phone, DEV_IFACE_ID(USB_DEV_IFACE),
116 IPC_M_USB_GET_ADDRESS,
117 dev_handle, &address);
118
119 if (rc != EOK) {
120 return rc;
121 }
122
123 async_hangup(parent_phone);
124
125 return (usb_address_t) address;
126}
127
128/** Initialize connection to USB device.
129 *
130 * @param connection Connection structure to be initialized.
131 * @param dev Generic device backing the USB device.
132 * @return Error code.
133 */
134int usb_device_connection_initialize_from_device(
135 usb_device_connection_t *connection, ddf_dev_t *dev)
136{
137 assert(connection);
138 assert(dev);
139
140 int rc;
141 devman_handle_t hc_handle;
142 usb_address_t my_address;
143
144 rc = usb_hc_find(dev->handle, &hc_handle);
145 if (rc != EOK) {
146 return rc;
147 }
148
149 int parent_phone = devman_parent_device_connect(dev->handle,
150 IPC_FLAG_BLOCKING);
151 if (parent_phone < 0) {
152 return parent_phone;
153 }
154
155 /*
156 * Asking for "my" address may require several attempts.
157 * That is because following scenario may happen:
158 * - parent driver (i.e. driver of parent device) announces new device
159 * and devman launches current driver
160 * - parent driver is preempted and thus does not send address-handle
161 * binding to HC driver
162 * - this driver gets here and wants the binding
163 * - the HC does not know the binding yet and thus it answers ENOENT
164 * So, we need to wait for the HC to learn the binding.
165 */
166 do {
167 my_address = get_my_address(parent_phone, dev);
168
169 if (my_address == ENOENT) {
170 /* Be nice, let other fibrils run and try again. */
171 async_usleep(IPC_AGAIN_DELAY);
172 } else if (my_address < 0) {
173 /* Some other problem, no sense trying again. */
174 rc = my_address;
175 goto leave;
176 }
177
178 } while (my_address < 0);
179
180 rc = usb_device_connection_initialize(connection,
181 hc_handle, my_address);
182
183leave:
184 async_hangup(parent_phone);
185 return rc;
186}
187
188/** Initialize connection to USB device.
189 *
190 * @param connection Connection structure to be initialized.
191 * @param host_controller_handle Devman handle of host controller device is
192 * connected to.
193 * @param device_address Device USB address.
194 * @return Error code.
195 */
196int usb_device_connection_initialize(usb_device_connection_t *connection,
197 devman_handle_t host_controller_handle, usb_address_t device_address)
198{
199 assert(connection);
200
201 if ((device_address < 0) || (device_address >= USB11_ADDRESS_MAX)) {
202 return EINVAL;
203 }
204
205 connection->hc_handle = host_controller_handle;
206 connection->address = device_address;
207
208 return EOK;
209}
210
211/** Initialize connection to USB device on default address.
212 *
213 * @param dev_connection Device connection structure to be initialized.
214 * @param hc_connection Initialized connection to host controller.
215 * @return Error code.
216 */
217int usb_device_connection_initialize_on_default_address(
218 usb_device_connection_t *dev_connection,
219 usb_hc_connection_t *hc_connection)
220{
221 assert(dev_connection);
222
223 if (hc_connection == NULL) {
224 return EBADMEM;
225 }
226
227 return usb_device_connection_initialize(dev_connection,
228 hc_connection->hc_handle, (usb_address_t) 0);
229}
230
231/** Prepare pipe for a long transfer.
232 *
233 * By a long transfer is mean transfer consisting of several
234 * requests to the HC.
235 * Calling such function is optional and it has positive effect of
236 * improved performance because IPC session is initiated only once.
237 *
238 * @param pipe Pipe over which the transfer will happen.
239 * @return Error code.
240 */
241void usb_pipe_start_long_transfer(usb_pipe_t *pipe)
242{
243 (void) pipe_add_ref(pipe, true);
244}
245
246/** Terminate a long transfer on a pipe.
247 *
248 * @see usb_pipe_start_long_transfer
249 *
250 * @param pipe Pipe where to end the long transfer.
251 */
252void usb_pipe_end_long_transfer(usb_pipe_t *pipe)
253{
254 pipe_drop_ref(pipe);
255}
256
257/**
258 * @}
259 */
Note: See TracBrowser for help on using the repository browser.