[4317827] | 1 | /*
|
---|
[c56dbe0] | 2 | * Copyright (c) 2011 Vojtech Horky, Jan Vesely
|
---|
[4317827] | 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 | */
|
---|
[17ceb72] | 28 | /** @addtogroup drvusbuhcihc
|
---|
[c56dbe0] | 29 | * @{
|
---|
| 30 | */
|
---|
| 31 | /** @file
|
---|
[17ceb72] | 32 | * @brief UHCI driver hc interface implementation
|
---|
[c56dbe0] | 33 | */
|
---|
[eb1a2f4] | 34 | #include <ddf/driver.h>
|
---|
[1c6a45f] | 35 | #include <errno.h>
|
---|
[c56dbe0] | 36 |
|
---|
[1669a73] | 37 | #include <usb/debug.h>
|
---|
[8dc762e0] | 38 | #include <usb/host/endpoint.h>
|
---|
[1669a73] | 39 |
|
---|
[3515533] | 40 | #include "iface.h"
|
---|
[c01cd32] | 41 | #include "hc.h"
|
---|
[b4875e67] | 42 |
|
---|
[a7e2f0d] | 43 | /** Reserve default address interface function
|
---|
| 44 | *
|
---|
| 45 | * @param[in] fun DDF function that was called.
|
---|
| 46 | * @param[in] speed Speed to associate with the new default address.
|
---|
| 47 | * @return Error code.
|
---|
| 48 | */
|
---|
[eb1a2f4] | 49 | static int reserve_default_address(ddf_fun_t *fun, usb_speed_t speed)
|
---|
[86b39f7e] | 50 | {
|
---|
[eb1a2f4] | 51 | assert(fun);
|
---|
[c01cd32] | 52 | hc_t *hc = fun_to_hc(fun);
|
---|
[86b39f7e] | 53 | assert(hc);
|
---|
[1a93bb0] | 54 | usb_log_debug("Default address request with speed %d.\n", speed);
|
---|
[62ed5bc] | 55 | usb_device_keeper_reserve_default_address(&hc->manager, speed);
|
---|
[86b39f7e] | 56 | return EOK;
|
---|
[fb8927d] | 57 | #if 0
|
---|
| 58 | endpoint_t *ep = malloc(sizeof(endpoint_t));
|
---|
| 59 | if (ep == NULL)
|
---|
| 60 | return ENOMEM;
|
---|
| 61 | const size_t max_packet_size = speed == USB_SPEED_LOW ? 8 : 64;
|
---|
| 62 | endpoint_init(ep, USB_TRANSFER_CONTROL, speed, max_packet_size);
|
---|
| 63 | int ret;
|
---|
| 64 | try_retgister:
|
---|
| 65 | ret = usb_endpoint_manager_register_ep(&hc->ep_manager,
|
---|
| 66 | USB_ADDRESS_DEFAULT, 0, USB_DIRECTION_BOTH, ep, endpoint_destroy, 0);
|
---|
| 67 | if (ret == EEXISTS) {
|
---|
| 68 | async_usleep(1000);
|
---|
| 69 | goto try_retgister;
|
---|
| 70 | }
|
---|
| 71 | if (ret != EOK) {
|
---|
| 72 | endpoint_destroy(ep);
|
---|
| 73 | }
|
---|
| 74 | return ret;
|
---|
| 75 | #endif
|
---|
[86b39f7e] | 76 | }
|
---|
| 77 | /*----------------------------------------------------------------------------*/
|
---|
[a7e2f0d] | 78 | /** Release default address interface function
|
---|
| 79 | *
|
---|
| 80 | * @param[in] fun DDF function that was called.
|
---|
| 81 | * @return Error code.
|
---|
| 82 | */
|
---|
[eb1a2f4] | 83 | static int release_default_address(ddf_fun_t *fun)
|
---|
[86b39f7e] | 84 | {
|
---|
[eb1a2f4] | 85 | assert(fun);
|
---|
[c01cd32] | 86 | hc_t *hc = fun_to_hc(fun);
|
---|
[86b39f7e] | 87 | assert(hc);
|
---|
[1a93bb0] | 88 | usb_log_debug("Default address release.\n");
|
---|
[fb8927d] | 89 | // return usb_endpoint_manager_unregister_ep(&hc->ep_manager,
|
---|
| 90 | // USB_ADDRESS_DEFAULT, 0, USB_DIRECTION_BOTH);
|
---|
[62ed5bc] | 91 | usb_device_keeper_release_default_address(&hc->manager);
|
---|
[86b39f7e] | 92 | return EOK;
|
---|
| 93 | }
|
---|
| 94 | /*----------------------------------------------------------------------------*/
|
---|
[a7e2f0d] | 95 | /** Request address interface function
|
---|
| 96 | *
|
---|
| 97 | * @param[in] fun DDF function that was called.
|
---|
| 98 | * @param[in] speed Speed to associate with the new default address.
|
---|
| 99 | * @param[out] address Place to write a new address.
|
---|
| 100 | * @return Error code.
|
---|
| 101 | */
|
---|
[b9fa0a9] | 102 | static int request_address(
|
---|
| 103 | ddf_fun_t *fun, usb_speed_t speed, usb_address_t *address)
|
---|
[86b39f7e] | 104 | {
|
---|
[eb1a2f4] | 105 | assert(fun);
|
---|
[c01cd32] | 106 | hc_t *hc = fun_to_hc(fun);
|
---|
[86b39f7e] | 107 | assert(hc);
|
---|
[1a93bb0] | 108 | assert(address);
|
---|
| 109 |
|
---|
| 110 | usb_log_debug("Address request with speed %d.\n", speed);
|
---|
[62ed5bc] | 111 | *address = device_keeper_get_free_address(&hc->manager, speed);
|
---|
[1a93bb0] | 112 | usb_log_debug("Address request with result: %d.\n", *address);
|
---|
[86b39f7e] | 113 | if (*address <= 0)
|
---|
[1c6a45f] | 114 | return *address;
|
---|
[86b39f7e] | 115 | return EOK;
|
---|
| 116 | }
|
---|
| 117 | /*----------------------------------------------------------------------------*/
|
---|
[a7e2f0d] | 118 | /** Bind address interface function
|
---|
| 119 | *
|
---|
| 120 | * @param[in] fun DDF function that was called.
|
---|
| 121 | * @param[in] address Address of the device
|
---|
| 122 | * @param[in] handle Devman handle of the device driver.
|
---|
| 123 | * @return Error code.
|
---|
| 124 | */
|
---|
[86b39f7e] | 125 | static int bind_address(
|
---|
[eb1a2f4] | 126 | ddf_fun_t *fun, usb_address_t address, devman_handle_t handle)
|
---|
[86b39f7e] | 127 | {
|
---|
[eb1a2f4] | 128 | assert(fun);
|
---|
[c01cd32] | 129 | hc_t *hc = fun_to_hc(fun);
|
---|
[86b39f7e] | 130 | assert(hc);
|
---|
[1a93bb0] | 131 | usb_log_debug("Address bind %d-%d.\n", address, handle);
|
---|
[62ed5bc] | 132 | usb_device_keeper_bind(&hc->manager, address, handle);
|
---|
[86b39f7e] | 133 | return EOK;
|
---|
| 134 | }
|
---|
| 135 | /*----------------------------------------------------------------------------*/
|
---|
[a7e2f0d] | 136 | /** Release address interface function
|
---|
| 137 | *
|
---|
| 138 | * @param[in] fun DDF function that was called.
|
---|
| 139 | * @param[in] address USB address to be released.
|
---|
| 140 | * @return Error code.
|
---|
| 141 | */
|
---|
[eb1a2f4] | 142 | static int release_address(ddf_fun_t *fun, usb_address_t address)
|
---|
[86b39f7e] | 143 | {
|
---|
[eb1a2f4] | 144 | assert(fun);
|
---|
[c01cd32] | 145 | hc_t *hc = fun_to_hc(fun);
|
---|
[86b39f7e] | 146 | assert(hc);
|
---|
[1a93bb0] | 147 | usb_log_debug("Address release %d.\n", address);
|
---|
[62ed5bc] | 148 | usb_device_keeper_release(&hc->manager, address);
|
---|
[86b39f7e] | 149 | return EOK;
|
---|
[4317827] | 150 | }
|
---|
[3515533] | 151 | /*----------------------------------------------------------------------------*/
|
---|
[8870230] | 152 | static int register_endpoint(
|
---|
| 153 | ddf_fun_t *fun, usb_address_t address, usb_endpoint_t endpoint,
|
---|
| 154 | usb_transfer_type_t transfer_type, usb_direction_t direction,
|
---|
| 155 | size_t max_packet_size, unsigned int interval)
|
---|
| 156 | {
|
---|
[a1313b8c] | 157 | hc_t *hc = fun_to_hc(fun);
|
---|
| 158 | assert(hc);
|
---|
| 159 | const usb_speed_t speed =
|
---|
| 160 | usb_device_keeper_get_speed(&hc->manager, address);
|
---|
[8dc762e0] | 161 | const size_t size =
|
---|
| 162 | (transfer_type == USB_TRANSFER_INTERRUPT
|
---|
| 163 | || transfer_type == USB_TRANSFER_ISOCHRONOUS) ?
|
---|
| 164 | max_packet_size : 0;
|
---|
[1e70157] | 165 | int ret;
|
---|
[6ce42e85] | 166 |
|
---|
| 167 | endpoint_t *ep = malloc(sizeof(endpoint_t));
|
---|
| 168 | if (ep == NULL)
|
---|
| 169 | return ENOMEM;
|
---|
[0aae4a6a] | 170 | ret = endpoint_init(ep, address, endpoint, direction,
|
---|
| 171 | transfer_type, speed, max_packet_size);
|
---|
[1e70157] | 172 | if (ret != EOK) {
|
---|
| 173 | free(ep);
|
---|
| 174 | return ret;
|
---|
| 175 | }
|
---|
[a1313b8c] | 176 |
|
---|
| 177 | usb_log_debug("Register endpoint %d:%d %s %s(%d) %zu(%zu) %u.\n",
|
---|
| 178 | address, endpoint, usb_str_transfer_type(transfer_type),
|
---|
| 179 | usb_str_speed(speed), direction, size, max_packet_size, interval);
|
---|
[6ce42e85] | 180 |
|
---|
[92d6868] | 181 | ret = usb_endpoint_manager_register_ep(&hc->ep_manager, ep, size);
|
---|
[6ce42e85] | 182 | if (ret != EOK) {
|
---|
| 183 | endpoint_destroy(ep);
|
---|
[1e70157] | 184 | } else {
|
---|
[f567bcf] | 185 | usb_device_keeper_add_ep(&hc->manager, address, ep);
|
---|
[6ce42e85] | 186 | }
|
---|
| 187 | return ret;
|
---|
[8870230] | 188 | }
|
---|
| 189 | /*----------------------------------------------------------------------------*/
|
---|
| 190 | static int unregister_endpoint(
|
---|
| 191 | ddf_fun_t *fun, usb_address_t address,
|
---|
| 192 | usb_endpoint_t endpoint, usb_direction_t direction)
|
---|
| 193 | {
|
---|
[a1313b8c] | 194 | hc_t *hc = fun_to_hc(fun);
|
---|
| 195 | assert(hc);
|
---|
| 196 | usb_log_debug("Unregister endpoint %d:%d %d.\n",
|
---|
| 197 | address, endpoint, direction);
|
---|
[6ce42e85] | 198 | return usb_endpoint_manager_unregister_ep(&hc->ep_manager, address,
|
---|
| 199 | endpoint, direction);
|
---|
[8870230] | 200 | }
|
---|
| 201 | /*----------------------------------------------------------------------------*/
|
---|
[a7e2f0d] | 202 | /** Interrupt out transaction interface function
|
---|
| 203 | *
|
---|
| 204 | * @param[in] fun DDF function that was called.
|
---|
| 205 | * @param[in] target USB device to write to.
|
---|
| 206 | * @param[in] data Source of data.
|
---|
| 207 | * @param[in] size Size of data source.
|
---|
| 208 | * @param[in] callback Function to call on transaction completion
|
---|
| 209 | * @param[in] arg Additional for callback function.
|
---|
| 210 | * @return Error code.
|
---|
| 211 | */
|
---|
[b9fa0a9] | 212 | static int interrupt_out(
|
---|
[7dfc06fa] | 213 | ddf_fun_t *fun, usb_target_t target, void *data,
|
---|
[b9fa0a9] | 214 | size_t size, usbhc_iface_transfer_out_callback_t callback, void *arg)
|
---|
[4317827] | 215 | {
|
---|
[1a93bb0] | 216 | assert(fun);
|
---|
[c01cd32] | 217 | hc_t *hc = fun_to_hc(fun);
|
---|
[1a93bb0] | 218 | assert(hc);
|
---|
[fe10e72] | 219 |
|
---|
[7dfc06fa] | 220 | usb_log_debug("Interrupt OUT %d:%d %zu.\n",
|
---|
| 221 | target.address, target.endpoint, size);
|
---|
[48563a3] | 222 |
|
---|
[391d55b] | 223 | size_t res_bw;
|
---|
[8dc762e0] | 224 | endpoint_t *ep = usb_endpoint_manager_get_ep(&hc->ep_manager,
|
---|
[391d55b] | 225 | target.address, target.endpoint, USB_DIRECTION_OUT, &res_bw);
|
---|
[6ce42e85] | 226 | if (ep == NULL) {
|
---|
| 227 | usb_log_error("Endpoint(%d:%d) not registered for INT OUT.\n",
|
---|
| 228 | target.address, target.endpoint);
|
---|
| 229 | return ENOENT;
|
---|
| 230 | }
|
---|
[391d55b] | 231 | const size_t bw = bandwidth_count_usb11(ep->speed, ep->transfer_type,
|
---|
| 232 | size, ep->max_packet_size);
|
---|
| 233 | if (res_bw < bw)
|
---|
| 234 | {
|
---|
| 235 | usb_log_error("Endpoint(%d:%d) INT IN needs %zu bw "
|
---|
| 236 | "but only %zu is reserved.\n",
|
---|
| 237 | target.address, target.endpoint, bw, res_bw);
|
---|
| 238 | return ENOENT;
|
---|
| 239 | }
|
---|
[6ce42e85] | 240 | assert(ep->speed ==
|
---|
| 241 | usb_device_keeper_get_speed(&hc->manager, target.address));
|
---|
| 242 | assert(ep->transfer_type == USB_TRANSFER_INTERRUPT);
|
---|
| 243 |
|
---|
[b9fa0a9] | 244 | usb_transfer_batch_t *batch =
|
---|
[6ce42e85] | 245 | batch_get(fun, target, ep->transfer_type, ep->max_packet_size,
|
---|
[4ca18ae] | 246 | ep->speed, data, size, NULL, 0, NULL, callback, arg, ep);
|
---|
[83c439c] | 247 | if (!batch)
|
---|
[7e62b62] | 248 | return ENOMEM;
|
---|
[5620bd4] | 249 | batch_interrupt_out(batch);
|
---|
[c01cd32] | 250 | const int ret = hc_schedule(hc, batch);
|
---|
[3bd96bb] | 251 | if (ret != EOK) {
|
---|
| 252 | batch_dispose(batch);
|
---|
| 253 | }
|
---|
[b9fa0a9] | 254 | return ret;
|
---|
[4317827] | 255 | }
|
---|
[3515533] | 256 | /*----------------------------------------------------------------------------*/
|
---|
[a7e2f0d] | 257 | /** Interrupt in transaction interface function
|
---|
| 258 | *
|
---|
| 259 | * @param[in] fun DDF function that was called.
|
---|
| 260 | * @param[in] target USB device to write to.
|
---|
| 261 | * @param[out] data Data destination.
|
---|
| 262 | * @param[in] size Size of data source.
|
---|
| 263 | * @param[in] callback Function to call on transaction completion
|
---|
| 264 | * @param[in] arg Additional for callback function.
|
---|
| 265 | * @return Error code.
|
---|
| 266 | */
|
---|
[b9fa0a9] | 267 | static int interrupt_in(
|
---|
[7dfc06fa] | 268 | ddf_fun_t *fun, usb_target_t target, void *data,
|
---|
[b9fa0a9] | 269 | size_t size, usbhc_iface_transfer_in_callback_t callback, void *arg)
|
---|
[4317827] | 270 | {
|
---|
[1a93bb0] | 271 | assert(fun);
|
---|
[c01cd32] | 272 | hc_t *hc = fun_to_hc(fun);
|
---|
[1a93bb0] | 273 | assert(hc);
|
---|
[6ce42e85] | 274 |
|
---|
[7dfc06fa] | 275 | usb_log_debug("Interrupt IN %d:%d %zu.\n",
|
---|
| 276 | target.address, target.endpoint, size);
|
---|
[fe10e72] | 277 |
|
---|
[391d55b] | 278 | size_t res_bw;
|
---|
[8dc762e0] | 279 | endpoint_t *ep = usb_endpoint_manager_get_ep(&hc->ep_manager,
|
---|
[391d55b] | 280 | target.address, target.endpoint, USB_DIRECTION_IN, &res_bw);
|
---|
[6ce42e85] | 281 | if (ep == NULL) {
|
---|
| 282 | usb_log_error("Endpoint(%d:%d) not registered for INT IN.\n",
|
---|
[391d55b] | 283 | target.address, target.endpoint);
|
---|
[6ce42e85] | 284 | return ENOENT;
|
---|
| 285 | }
|
---|
[391d55b] | 286 | const size_t bw = bandwidth_count_usb11(ep->speed, ep->transfer_type,
|
---|
| 287 | size, ep->max_packet_size);
|
---|
| 288 | if (res_bw < bw)
|
---|
| 289 | {
|
---|
| 290 | usb_log_error("Endpoint(%d:%d) INT IN needs %zu bw "
|
---|
| 291 | "but only %zu bw is reserved.\n",
|
---|
| 292 | target.address, target.endpoint, bw, res_bw);
|
---|
| 293 | return ENOENT;
|
---|
| 294 | }
|
---|
| 295 |
|
---|
[6ce42e85] | 296 | assert(ep->speed ==
|
---|
| 297 | usb_device_keeper_get_speed(&hc->manager, target.address));
|
---|
| 298 | assert(ep->transfer_type == USB_TRANSFER_INTERRUPT);
|
---|
| 299 |
|
---|
[b9fa0a9] | 300 | usb_transfer_batch_t *batch =
|
---|
[6ce42e85] | 301 | batch_get(fun, target, ep->transfer_type, ep->max_packet_size,
|
---|
[4ca18ae] | 302 | ep->speed, data, size, NULL, 0, callback, NULL, arg, ep);
|
---|
[83c439c] | 303 | if (!batch)
|
---|
[7e62b62] | 304 | return ENOMEM;
|
---|
[5620bd4] | 305 | batch_interrupt_in(batch);
|
---|
[c01cd32] | 306 | const int ret = hc_schedule(hc, batch);
|
---|
[3bd96bb] | 307 | if (ret != EOK) {
|
---|
| 308 | batch_dispose(batch);
|
---|
| 309 | }
|
---|
[b9fa0a9] | 310 | return ret;
|
---|
[4317827] | 311 | }
|
---|
[3515533] | 312 | /*----------------------------------------------------------------------------*/
|
---|
[a7e2f0d] | 313 | /** Bulk out transaction interface function
|
---|
| 314 | *
|
---|
| 315 | * @param[in] fun DDF function that was called.
|
---|
| 316 | * @param[in] target USB device to write to.
|
---|
| 317 | * @param[in] data Source of data.
|
---|
| 318 | * @param[in] size Size of data source.
|
---|
| 319 | * @param[in] callback Function to call on transaction completion
|
---|
| 320 | * @param[in] arg Additional for callback function.
|
---|
| 321 | * @return Error code.
|
---|
| 322 | */
|
---|
[b9fa0a9] | 323 | static int bulk_out(
|
---|
[7dfc06fa] | 324 | ddf_fun_t *fun, usb_target_t target, void *data,
|
---|
[b9fa0a9] | 325 | size_t size, usbhc_iface_transfer_out_callback_t callback, void *arg)
|
---|
[0e06a14] | 326 | {
|
---|
| 327 | assert(fun);
|
---|
[c01cd32] | 328 | hc_t *hc = fun_to_hc(fun);
|
---|
[0e06a14] | 329 | assert(hc);
|
---|
| 330 |
|
---|
[7dfc06fa] | 331 | usb_log_debug("Bulk OUT %d:%d %zu.\n",
|
---|
| 332 | target.address, target.endpoint, size);
|
---|
[0e06a14] | 333 |
|
---|
[8dc762e0] | 334 | endpoint_t *ep = usb_endpoint_manager_get_ep(&hc->ep_manager,
|
---|
[6ce42e85] | 335 | target.address, target.endpoint, USB_DIRECTION_OUT, NULL);
|
---|
| 336 | if (ep == NULL) {
|
---|
| 337 | usb_log_error("Endpoint(%d:%d) not registered for BULK OUT.\n",
|
---|
| 338 | target.address, target.endpoint);
|
---|
| 339 | return ENOENT;
|
---|
| 340 | }
|
---|
| 341 | assert(ep->speed ==
|
---|
| 342 | usb_device_keeper_get_speed(&hc->manager, target.address));
|
---|
| 343 | assert(ep->transfer_type == USB_TRANSFER_BULK);
|
---|
| 344 |
|
---|
[b9fa0a9] | 345 | usb_transfer_batch_t *batch =
|
---|
[6ce42e85] | 346 | batch_get(fun, target, ep->transfer_type, ep->max_packet_size,
|
---|
[4ca18ae] | 347 | ep->speed, data, size, NULL, 0, NULL, callback, arg, ep);
|
---|
[0e06a14] | 348 | if (!batch)
|
---|
| 349 | return ENOMEM;
|
---|
[5620bd4] | 350 | batch_bulk_out(batch);
|
---|
[c01cd32] | 351 | const int ret = hc_schedule(hc, batch);
|
---|
[3bd96bb] | 352 | if (ret != EOK) {
|
---|
| 353 | batch_dispose(batch);
|
---|
| 354 | }
|
---|
[b9fa0a9] | 355 | return ret;
|
---|
[0e06a14] | 356 | }
|
---|
| 357 | /*----------------------------------------------------------------------------*/
|
---|
[a7e2f0d] | 358 | /** Bulk in transaction interface function
|
---|
| 359 | *
|
---|
| 360 | * @param[in] fun DDF function that was called.
|
---|
| 361 | * @param[in] target USB device to write to.
|
---|
| 362 | * @param[out] data Data destination.
|
---|
| 363 | * @param[in] size Size of data source.
|
---|
| 364 | * @param[in] callback Function to call on transaction completion
|
---|
| 365 | * @param[in] arg Additional for callback function.
|
---|
| 366 | * @return Error code.
|
---|
| 367 | */
|
---|
[b9fa0a9] | 368 | static int bulk_in(
|
---|
[7dfc06fa] | 369 | ddf_fun_t *fun, usb_target_t target, void *data,
|
---|
[b9fa0a9] | 370 | size_t size, usbhc_iface_transfer_in_callback_t callback, void *arg)
|
---|
[0e06a14] | 371 | {
|
---|
| 372 | assert(fun);
|
---|
[c01cd32] | 373 | hc_t *hc = fun_to_hc(fun);
|
---|
[0e06a14] | 374 | assert(hc);
|
---|
[7dfc06fa] | 375 | usb_log_debug("Bulk IN %d:%d %zu.\n",
|
---|
| 376 | target.address, target.endpoint, size);
|
---|
[0e06a14] | 377 |
|
---|
[8dc762e0] | 378 | endpoint_t *ep = usb_endpoint_manager_get_ep(&hc->ep_manager,
|
---|
[6ce42e85] | 379 | target.address, target.endpoint, USB_DIRECTION_IN, NULL);
|
---|
| 380 | if (ep == NULL) {
|
---|
| 381 | usb_log_error("Endpoint(%d:%d) not registered for BULK IN.\n",
|
---|
| 382 | target.address, target.endpoint);
|
---|
| 383 | return ENOENT;
|
---|
| 384 | }
|
---|
| 385 | assert(ep->speed ==
|
---|
| 386 | usb_device_keeper_get_speed(&hc->manager, target.address));
|
---|
| 387 | assert(ep->transfer_type == USB_TRANSFER_BULK);
|
---|
| 388 |
|
---|
[b9fa0a9] | 389 | usb_transfer_batch_t *batch =
|
---|
[1e70157] | 390 | batch_get(fun, target, ep->transfer_type, ep->max_packet_size,
|
---|
[4ca18ae] | 391 | ep->speed, data, size, NULL, 0, callback, NULL, arg, ep);
|
---|
[0e06a14] | 392 | if (!batch)
|
---|
| 393 | return ENOMEM;
|
---|
[5620bd4] | 394 | batch_bulk_in(batch);
|
---|
[c01cd32] | 395 | const int ret = hc_schedule(hc, batch);
|
---|
[3bd96bb] | 396 | if (ret != EOK) {
|
---|
| 397 | batch_dispose(batch);
|
---|
| 398 | }
|
---|
[b9fa0a9] | 399 | return ret;
|
---|
[0e06a14] | 400 | }
|
---|
| 401 | /*----------------------------------------------------------------------------*/
|
---|
[a7e2f0d] | 402 | /** Control write transaction interface function
|
---|
| 403 | *
|
---|
| 404 | * @param[in] fun DDF function that was called.
|
---|
| 405 | * @param[in] target USB device to write to.
|
---|
[c61338a] | 406 | * @param[in] setup_data Data to send with SETUP transfer.
|
---|
| 407 | * @param[in] setup_size Size of data to send with SETUP transfer (always 8B).
|
---|
[a7e2f0d] | 408 | * @param[in] data Source of data.
|
---|
| 409 | * @param[in] size Size of data source.
|
---|
| 410 | * @param[in] callback Function to call on transaction completion.
|
---|
| 411 | * @param[in] arg Additional for callback function.
|
---|
| 412 | * @return Error code.
|
---|
| 413 | */
|
---|
[b9fa0a9] | 414 | static int control_write(
|
---|
[7dfc06fa] | 415 | ddf_fun_t *fun, usb_target_t target,
|
---|
[a72620d] | 416 | void *setup_data, size_t setup_size, void *data, size_t size,
|
---|
| 417 | usbhc_iface_transfer_out_callback_t callback, void *arg)
|
---|
| 418 | {
|
---|
[1a93bb0] | 419 | assert(fun);
|
---|
[c01cd32] | 420 | hc_t *hc = fun_to_hc(fun);
|
---|
[1a93bb0] | 421 | assert(hc);
|
---|
[b9fa0a9] | 422 | usb_speed_t speed =
|
---|
| 423 | usb_device_keeper_get_speed(&hc->manager, target.address);
|
---|
[7dfc06fa] | 424 | usb_log_debug("Control WRITE (%d) %d:%d %zu.\n",
|
---|
| 425 | speed, target.address, target.endpoint, size);
|
---|
[8dc762e0] | 426 | endpoint_t *ep = usb_endpoint_manager_get_ep(&hc->ep_manager,
|
---|
[6ce42e85] | 427 | target.address, target.endpoint, USB_DIRECTION_BOTH, NULL);
|
---|
| 428 | if (ep == NULL) {
|
---|
| 429 | usb_log_warning("Endpoint(%d:%d) not registered for CONTROL.\n",
|
---|
| 430 | target.address, target.endpoint);
|
---|
| 431 | }
|
---|
[f241b05b] | 432 |
|
---|
[5620bd4] | 433 | if (setup_size != 8)
|
---|
| 434 | return EINVAL;
|
---|
| 435 |
|
---|
[b9fa0a9] | 436 | usb_transfer_batch_t *batch =
|
---|
[7dfc06fa] | 437 | batch_get(fun, target, USB_TRANSFER_CONTROL, ep->max_packet_size, speed,
|
---|
[4ca18ae] | 438 | data, size, setup_data, setup_size, NULL, callback, arg, ep);
|
---|
[83c439c] | 439 | if (!batch)
|
---|
[f241b05b] | 440 | return ENOMEM;
|
---|
[62ed5bc] | 441 | usb_device_keeper_reset_if_need(&hc->manager, target, setup_data);
|
---|
[83c439c] | 442 | batch_control_write(batch);
|
---|
[c01cd32] | 443 | const int ret = hc_schedule(hc, batch);
|
---|
[3bd96bb] | 444 | if (ret != EOK) {
|
---|
| 445 | batch_dispose(batch);
|
---|
| 446 | }
|
---|
[b9fa0a9] | 447 | return ret;
|
---|
[a72620d] | 448 | }
|
---|
| 449 | /*----------------------------------------------------------------------------*/
|
---|
[a7e2f0d] | 450 | /** Control read transaction interface function
|
---|
| 451 | *
|
---|
| 452 | * @param[in] fun DDF function that was called.
|
---|
| 453 | * @param[in] target USB device to write to.
|
---|
| 454 | * @param[in] setup_data Data to send with SETUP packet.
|
---|
| 455 | * @param[in] setup_size Size of data to send with SETUP packet (should be 8B).
|
---|
| 456 | * @param[out] data Source of data.
|
---|
| 457 | * @param[in] size Size of data source.
|
---|
| 458 | * @param[in] callback Function to call on transaction completion.
|
---|
| 459 | * @param[in] arg Additional for callback function.
|
---|
| 460 | * @return Error code.
|
---|
| 461 | */
|
---|
[b9fa0a9] | 462 | static int control_read(
|
---|
[7dfc06fa] | 463 | ddf_fun_t *fun, usb_target_t target,
|
---|
[a72620d] | 464 | void *setup_data, size_t setup_size, void *data, size_t size,
|
---|
| 465 | usbhc_iface_transfer_in_callback_t callback, void *arg)
|
---|
| 466 | {
|
---|
[1a93bb0] | 467 | assert(fun);
|
---|
[c01cd32] | 468 | hc_t *hc = fun_to_hc(fun);
|
---|
[1a93bb0] | 469 | assert(hc);
|
---|
[b9fa0a9] | 470 | usb_speed_t speed =
|
---|
| 471 | usb_device_keeper_get_speed(&hc->manager, target.address);
|
---|
[f241b05b] | 472 |
|
---|
[7dfc06fa] | 473 | usb_log_debug("Control READ(%d) %d:%d %zu.\n",
|
---|
| 474 | speed, target.address, target.endpoint, size);
|
---|
[8dc762e0] | 475 | endpoint_t *ep = usb_endpoint_manager_get_ep(&hc->ep_manager,
|
---|
[6ce42e85] | 476 | target.address, target.endpoint, USB_DIRECTION_BOTH, NULL);
|
---|
| 477 | if (ep == NULL) {
|
---|
| 478 | usb_log_warning("Endpoint(%d:%d) not registered for CONTROL.\n",
|
---|
| 479 | target.address, target.endpoint);
|
---|
| 480 | }
|
---|
[b9fa0a9] | 481 | usb_transfer_batch_t *batch =
|
---|
[7dfc06fa] | 482 | batch_get(fun, target, USB_TRANSFER_CONTROL, ep->max_packet_size, speed,
|
---|
[4ca18ae] | 483 | data, size, setup_data, setup_size, callback, NULL, arg, ep);
|
---|
[83c439c] | 484 | if (!batch)
|
---|
[f241b05b] | 485 | return ENOMEM;
|
---|
[83c439c] | 486 | batch_control_read(batch);
|
---|
[c01cd32] | 487 | const int ret = hc_schedule(hc, batch);
|
---|
[3bd96bb] | 488 | if (ret != EOK) {
|
---|
| 489 | batch_dispose(batch);
|
---|
| 490 | }
|
---|
[b9fa0a9] | 491 | return ret;
|
---|
[a72620d] | 492 | }
|
---|
[9e80904] | 493 | /*----------------------------------------------------------------------------*/
|
---|
[c01cd32] | 494 | usbhc_iface_t hc_iface = {
|
---|
[86b39f7e] | 495 | .reserve_default_address = reserve_default_address,
|
---|
| 496 | .release_default_address = release_default_address,
|
---|
| 497 | .request_address = request_address,
|
---|
| 498 | .bind_address = bind_address,
|
---|
| 499 | .release_address = release_address,
|
---|
[3515533] | 500 |
|
---|
[8870230] | 501 | .register_endpoint = register_endpoint,
|
---|
| 502 | .unregister_endpoint = unregister_endpoint,
|
---|
| 503 |
|
---|
[4317827] | 504 | .interrupt_out = interrupt_out,
|
---|
| 505 | .interrupt_in = interrupt_in,
|
---|
[3515533] | 506 |
|
---|
[0e06a14] | 507 | .bulk_out = bulk_out,
|
---|
[1c6a45f] | 508 | .bulk_in = bulk_in,
|
---|
[0e06a14] | 509 |
|
---|
[a72620d] | 510 | .control_write = control_write,
|
---|
[1c6a45f] | 511 | .control_read = control_read,
|
---|
[4317827] | 512 | };
|
---|
[c56dbe0] | 513 | /**
|
---|
| 514 | * @}
|
---|
| 515 | */
|
---|