[6865243c] | 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
|
---|
[dc04868] | 33 | * USB endpoint pipes miscellaneous functions.
|
---|
[6865243c] | 34 | */
|
---|
| 35 | #include <usb/usb.h>
|
---|
| 36 | #include <usb/pipes.h>
|
---|
[eb1a2f4] | 37 | #include <usb/debug.h>
|
---|
[563fb40] | 38 | #include <usbhc_iface.h>
|
---|
[357a302] | 39 | #include <usb_iface.h>
|
---|
[eb1a2f4] | 40 | #include <devman.h>
|
---|
[6865243c] | 41 | #include <errno.h>
|
---|
[43f698b] | 42 | #include <assert.h>
|
---|
[563fb40] | 43 |
|
---|
[f0fdc7d] | 44 | #define IPC_AGAIN_DELAY (1000 * 2) /* 2ms */
|
---|
| 45 |
|
---|
[563fb40] | 46 | /** Tell USB address assigned to given device.
|
---|
| 47 | *
|
---|
[357a302] | 48 | * @param phone Phone to parent device.
|
---|
[563fb40] | 49 | * @param dev Device in question.
|
---|
| 50 | * @return USB address or error code.
|
---|
| 51 | */
|
---|
[eb1a2f4] | 52 | static usb_address_t get_my_address(int phone, ddf_dev_t *dev)
|
---|
[563fb40] | 53 | {
|
---|
| 54 | sysarg_t address;
|
---|
[eb1a2f4] | 55 |
|
---|
| 56 | /*
|
---|
| 57 | * We are sending special value as a handle - zero - to get
|
---|
| 58 | * handle of the parent function (that handle was used
|
---|
| 59 | * when registering our device @p dev.
|
---|
| 60 | */
|
---|
[357a302] | 61 | int rc = async_req_2_1(phone, DEV_IFACE_ID(USB_DEV_IFACE),
|
---|
| 62 | IPC_M_USB_GET_ADDRESS,
|
---|
[eb1a2f4] | 63 | 0, &address);
|
---|
[563fb40] | 64 |
|
---|
| 65 | if (rc != EOK) {
|
---|
| 66 | return rc;
|
---|
| 67 | }
|
---|
| 68 |
|
---|
| 69 | return (usb_address_t) address;
|
---|
| 70 | }
|
---|
[43f698b] | 71 |
|
---|
[27a0012] | 72 | /** Tell USB interface assigned to given device.
|
---|
| 73 | *
|
---|
| 74 | * @param device Device in question.
|
---|
| 75 | * @return Interface number (negative code means any).
|
---|
| 76 | */
|
---|
[eb1a2f4] | 77 | int usb_device_get_assigned_interface(ddf_dev_t *device)
|
---|
[27a0012] | 78 | {
|
---|
| 79 | int parent_phone = devman_parent_device_connect(device->handle,
|
---|
| 80 | IPC_FLAG_BLOCKING);
|
---|
| 81 | if (parent_phone < 0) {
|
---|
| 82 | return -1;
|
---|
| 83 | }
|
---|
| 84 |
|
---|
| 85 | sysarg_t iface_no;
|
---|
| 86 | int rc = async_req_2_1(parent_phone, DEV_IFACE_ID(USB_DEV_IFACE),
|
---|
| 87 | IPC_M_USB_GET_INTERFACE,
|
---|
| 88 | device->handle, &iface_no);
|
---|
| 89 |
|
---|
| 90 | async_hangup(parent_phone);
|
---|
| 91 |
|
---|
| 92 | if (rc != EOK) {
|
---|
| 93 | return -1;
|
---|
| 94 | }
|
---|
| 95 |
|
---|
| 96 | return (int) iface_no;
|
---|
| 97 | }
|
---|
| 98 |
|
---|
[c2343cc] | 99 | /** Tell USB address assigned to given device.
|
---|
| 100 | *
|
---|
| 101 | * @param dev_handle Devman handle of the USB device in question.
|
---|
| 102 | * @return USB address or negative error code.
|
---|
| 103 | */
|
---|
| 104 | usb_address_t usb_device_get_assigned_address(devman_handle_t dev_handle)
|
---|
| 105 | {
|
---|
| 106 | int parent_phone = devman_parent_device_connect(dev_handle,
|
---|
| 107 | IPC_FLAG_BLOCKING);
|
---|
| 108 | if (parent_phone < 0) {
|
---|
| 109 | return parent_phone;
|
---|
| 110 | }
|
---|
| 111 |
|
---|
| 112 | sysarg_t address;
|
---|
| 113 |
|
---|
| 114 | int rc = async_req_2_1(parent_phone, DEV_IFACE_ID(USB_DEV_IFACE),
|
---|
| 115 | IPC_M_USB_GET_ADDRESS,
|
---|
| 116 | dev_handle, &address);
|
---|
| 117 |
|
---|
| 118 | if (rc != EOK) {
|
---|
| 119 | return rc;
|
---|
| 120 | }
|
---|
| 121 |
|
---|
| 122 | async_hangup(parent_phone);
|
---|
| 123 |
|
---|
| 124 | return (usb_address_t) address;
|
---|
| 125 | }
|
---|
| 126 |
|
---|
[6865243c] | 127 | /** Initialize connection to USB device.
|
---|
| 128 | *
|
---|
| 129 | * @param connection Connection structure to be initialized.
|
---|
[bc1c6fb] | 130 | * @param dev Generic device backing the USB device.
|
---|
[6865243c] | 131 | * @return Error code.
|
---|
| 132 | */
|
---|
[23c7f4d] | 133 | int usb_device_connection_initialize_from_device(
|
---|
[eb1a2f4] | 134 | usb_device_connection_t *connection, ddf_dev_t *dev)
|
---|
[6865243c] | 135 | {
|
---|
[43f698b] | 136 | assert(connection);
|
---|
[eb1a2f4] | 137 | assert(dev);
|
---|
[43f698b] | 138 |
|
---|
| 139 | int rc;
|
---|
| 140 | devman_handle_t hc_handle;
|
---|
| 141 | usb_address_t my_address;
|
---|
| 142 |
|
---|
[eb1a2f4] | 143 | rc = usb_hc_find(dev->handle, &hc_handle);
|
---|
[43f698b] | 144 | if (rc != EOK) {
|
---|
| 145 | return rc;
|
---|
| 146 | }
|
---|
| 147 |
|
---|
[eb1a2f4] | 148 | int parent_phone = devman_parent_device_connect(dev->handle,
|
---|
[357a302] | 149 | IPC_FLAG_BLOCKING);
|
---|
| 150 | if (parent_phone < 0) {
|
---|
| 151 | return parent_phone;
|
---|
[43f698b] | 152 | }
|
---|
| 153 |
|
---|
[f0fdc7d] | 154 | /*
|
---|
| 155 | * Asking for "my" address may require several attempts.
|
---|
| 156 | * That is because following scenario may happen:
|
---|
| 157 | * - parent driver (i.e. driver of parent device) announces new device
|
---|
| 158 | * and devman launches current driver
|
---|
| 159 | * - parent driver is preempted and thus does not send address-handle
|
---|
| 160 | * binding to HC driver
|
---|
| 161 | * - this driver gets here and wants the binding
|
---|
| 162 | * - the HC does not know the binding yet and thus it answers ENOENT
|
---|
| 163 | * So, we need to wait for the HC to learn the binding.
|
---|
| 164 | */
|
---|
| 165 | do {
|
---|
| 166 | my_address = get_my_address(parent_phone, dev);
|
---|
| 167 |
|
---|
| 168 | if (my_address == ENOENT) {
|
---|
| 169 | /* Be nice, let other fibrils run and try again. */
|
---|
| 170 | async_usleep(IPC_AGAIN_DELAY);
|
---|
| 171 | } else if (my_address < 0) {
|
---|
| 172 | /* Some other problem, no sense trying again. */
|
---|
| 173 | rc = my_address;
|
---|
| 174 | goto leave;
|
---|
| 175 | }
|
---|
| 176 |
|
---|
| 177 | } while (my_address < 0);
|
---|
[43f698b] | 178 |
|
---|
[52fb76e] | 179 | rc = usb_device_connection_initialize(connection,
|
---|
| 180 | hc_handle, my_address);
|
---|
| 181 |
|
---|
[2a11192] | 182 | leave:
|
---|
[357a302] | 183 | async_hangup(parent_phone);
|
---|
[52fb76e] | 184 | return rc;
|
---|
[6865243c] | 185 | }
|
---|
| 186 |
|
---|
[52fb76e] | 187 | /** Initialize connection to USB device.
|
---|
| 188 | *
|
---|
| 189 | * @param connection Connection structure to be initialized.
|
---|
| 190 | * @param host_controller_handle Devman handle of host controller device is
|
---|
| 191 | * connected to.
|
---|
| 192 | * @param device_address Device USB address.
|
---|
| 193 | * @return Error code.
|
---|
| 194 | */
|
---|
| 195 | int usb_device_connection_initialize(usb_device_connection_t *connection,
|
---|
| 196 | devman_handle_t host_controller_handle, usb_address_t device_address)
|
---|
| 197 | {
|
---|
| 198 | assert(connection);
|
---|
| 199 |
|
---|
| 200 | if ((device_address < 0) || (device_address >= USB11_ADDRESS_MAX)) {
|
---|
| 201 | return EINVAL;
|
---|
| 202 | }
|
---|
| 203 |
|
---|
| 204 | connection->hc_handle = host_controller_handle;
|
---|
| 205 | connection->address = device_address;
|
---|
| 206 |
|
---|
| 207 | return EOK;
|
---|
| 208 | }
|
---|
[6865243c] | 209 |
|
---|
[d714945] | 210 | /** Initialize connection to USB device on default address.
|
---|
| 211 | *
|
---|
| 212 | * @param dev_connection Device connection structure to be initialized.
|
---|
| 213 | * @param hc_connection Initialized connection to host controller.
|
---|
| 214 | * @return Error code.
|
---|
| 215 | */
|
---|
| 216 | int usb_device_connection_initialize_on_default_address(
|
---|
| 217 | usb_device_connection_t *dev_connection,
|
---|
| 218 | usb_hc_connection_t *hc_connection)
|
---|
| 219 | {
|
---|
| 220 | assert(dev_connection);
|
---|
| 221 |
|
---|
| 222 | if (hc_connection == NULL) {
|
---|
| 223 | return EBADMEM;
|
---|
| 224 | }
|
---|
| 225 |
|
---|
| 226 | return usb_device_connection_initialize(dev_connection,
|
---|
| 227 | hc_connection->hc_handle, (usb_address_t) 0);
|
---|
| 228 | }
|
---|
| 229 |
|
---|
[6865243c] | 230 |
|
---|
| 231 | /** Start a session on the endpoint pipe.
|
---|
| 232 | *
|
---|
| 233 | * A session is something inside what any communication occurs.
|
---|
| 234 | * It is expected that sessions would be started right before the transfer
|
---|
[3954a63b] | 235 | * and ended - see usb_pipe_end_session() - after the last
|
---|
[6865243c] | 236 | * transfer.
|
---|
| 237 | * The reason for this is that session actually opens some communication
|
---|
| 238 | * channel to the host controller (or to the physical hardware if you
|
---|
| 239 | * wish) and thus it involves acquiring kernel resources.
|
---|
| 240 | * Since they are limited, sessions shall not be longer than strictly
|
---|
| 241 | * necessary.
|
---|
| 242 | *
|
---|
| 243 | * @param pipe Endpoint pipe to start the session on.
|
---|
| 244 | * @return Error code.
|
---|
| 245 | */
|
---|
[3954a63b] | 246 | int usb_pipe_start_session(usb_pipe_t *pipe)
|
---|
[6865243c] | 247 | {
|
---|
[43f698b] | 248 | assert(pipe);
|
---|
| 249 |
|
---|
[3954a63b] | 250 | if (usb_pipe_is_session_started(pipe)) {
|
---|
[43f698b] | 251 | return EBUSY;
|
---|
| 252 | }
|
---|
| 253 |
|
---|
| 254 | int phone = devman_device_connect(pipe->wire->hc_handle, 0);
|
---|
| 255 | if (phone < 0) {
|
---|
| 256 | return phone;
|
---|
| 257 | }
|
---|
| 258 |
|
---|
| 259 | pipe->hc_phone = phone;
|
---|
| 260 |
|
---|
| 261 | return EOK;
|
---|
[6865243c] | 262 | }
|
---|
| 263 |
|
---|
| 264 |
|
---|
| 265 | /** Ends a session on the endpoint pipe.
|
---|
| 266 | *
|
---|
[3954a63b] | 267 | * @see usb_pipe_start_session
|
---|
[6865243c] | 268 | *
|
---|
| 269 | * @param pipe Endpoint pipe to end the session on.
|
---|
| 270 | * @return Error code.
|
---|
| 271 | */
|
---|
[3954a63b] | 272 | int usb_pipe_end_session(usb_pipe_t *pipe)
|
---|
[6865243c] | 273 | {
|
---|
[43f698b] | 274 | assert(pipe);
|
---|
| 275 |
|
---|
[3954a63b] | 276 | if (!usb_pipe_is_session_started(pipe)) {
|
---|
[43f698b] | 277 | return ENOENT;
|
---|
| 278 | }
|
---|
| 279 |
|
---|
[17aca1c] | 280 | int rc = async_hangup(pipe->hc_phone);
|
---|
[43f698b] | 281 | if (rc != EOK) {
|
---|
| 282 | return rc;
|
---|
| 283 | }
|
---|
| 284 |
|
---|
| 285 | pipe->hc_phone = -1;
|
---|
| 286 |
|
---|
| 287 | return EOK;
|
---|
[6865243c] | 288 | }
|
---|
| 289 |
|
---|
[e936e8e] | 290 | /** Tell whether a session is started (open) on the endpoint pipe.
|
---|
| 291 | *
|
---|
| 292 | * The expected usage of this function is in assertions for some
|
---|
| 293 | * nested functions.
|
---|
| 294 | *
|
---|
| 295 | * @param pipe Endpoint pipe in question.
|
---|
| 296 | * @return Whether @p pipe has opened a session.
|
---|
| 297 | */
|
---|
[3954a63b] | 298 | bool usb_pipe_is_session_started(usb_pipe_t *pipe)
|
---|
[e936e8e] | 299 | {
|
---|
| 300 | return (pipe->hc_phone >= 0);
|
---|
| 301 | }
|
---|
| 302 |
|
---|
[6865243c] | 303 | /**
|
---|
| 304 | * @}
|
---|
| 305 | */
|
---|