[6865243c] | 1 | /*
|
---|
| 2 | * Copyright (c) 2011 Vojtech Horky
|
---|
[bd575647] | 3 | * Copyright (c) 2011 Jan Vesely
|
---|
[6865243c] | 4 | * All rights reserved.
|
---|
| 5 | *
|
---|
| 6 | * Redistribution and use in source and binary forms, with or without
|
---|
| 7 | * modification, are permitted provided that the following conditions
|
---|
| 8 | * are met:
|
---|
| 9 | *
|
---|
| 10 | * - Redistributions of source code must retain the above copyright
|
---|
| 11 | * notice, this list of conditions and the following disclaimer.
|
---|
| 12 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 13 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 14 | * documentation and/or other materials provided with the distribution.
|
---|
| 15 | * - The name of the author may not be used to endorse or promote products
|
---|
| 16 | * derived from this software without specific prior written permission.
|
---|
| 17 | *
|
---|
| 18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 28 | */
|
---|
[160b75e] | 29 | /** @addtogroup libusbdev
|
---|
[6865243c] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
[3538b0e] | 33 | * USB endpoint pipes functions.
|
---|
[6865243c] | 34 | */
|
---|
[bd575647] | 35 | #include <usb/dev/pipes.h>
|
---|
[023a902] | 36 | #include <usb/dev/request.h>
|
---|
[c01987c] | 37 | #include <usb/usb.h>
|
---|
[41df71f9] | 38 | #include <usbhc_iface.h>
|
---|
[c01987c] | 39 |
|
---|
[43f698b] | 40 | #include <assert.h>
|
---|
[c01987c] | 41 | #include <async.h>
|
---|
| 42 | #include <errno.h>
|
---|
| 43 | #include <mem.h>
|
---|
[563fb40] | 44 |
|
---|
[023a902] | 45 | /** Try to clear endpoint halt of default control pipe.
|
---|
| 46 | *
|
---|
| 47 | * @param pipe Pipe for control endpoint zero.
|
---|
| 48 | */
|
---|
| 49 | static void clear_self_endpoint_halt(usb_pipe_t *pipe)
|
---|
| 50 | {
|
---|
| 51 | assert(pipe != NULL);
|
---|
| 52 |
|
---|
[816f5f4] | 53 | if (!pipe->auto_reset_halt || (pipe->desc.endpoint_no != 0)) {
|
---|
[023a902] | 54 | return;
|
---|
| 55 | }
|
---|
| 56 |
|
---|
| 57 | /* Prevent infinite recursion. */
|
---|
| 58 | pipe->auto_reset_halt = false;
|
---|
| 59 | usb_request_clear_endpoint_halt(pipe, 0);
|
---|
| 60 | pipe->auto_reset_halt = true;
|
---|
| 61 | }
|
---|
[a76b01b4] | 62 |
|
---|
[023a902] | 63 | /** Request a control read transfer on an endpoint pipe.
|
---|
| 64 | *
|
---|
| 65 | * This function encapsulates all three stages of a control transfer.
|
---|
| 66 | *
|
---|
| 67 | * @param[in] pipe Pipe used for the transfer.
|
---|
| 68 | * @param[in] setup_buffer Buffer with the setup packet.
|
---|
| 69 | * @param[in] setup_buffer_size Size of the setup packet (in bytes).
|
---|
| 70 | * @param[out] data_buffer Buffer for incoming data.
|
---|
| 71 | * @param[in] data_buffer_size Size of the buffer for incoming data (in bytes).
|
---|
| 72 | * @param[out] data_transfered_size Number of bytes that were actually
|
---|
| 73 | * transfered during the DATA stage.
|
---|
| 74 | * @return Error code.
|
---|
| 75 | */
|
---|
| 76 | int usb_pipe_control_read(usb_pipe_t *pipe,
|
---|
| 77 | const void *setup_buffer, size_t setup_buffer_size,
|
---|
[22ecbde] | 78 | void *buffer, size_t buffer_size, size_t *transfered_size)
|
---|
[023a902] | 79 | {
|
---|
| 80 | assert(pipe);
|
---|
| 81 |
|
---|
| 82 | if ((setup_buffer == NULL) || (setup_buffer_size != 8)) {
|
---|
| 83 | return EINVAL;
|
---|
| 84 | }
|
---|
| 85 |
|
---|
[22ecbde] | 86 | if ((buffer == NULL) || (buffer_size == 0)) {
|
---|
[023a902] | 87 | return EINVAL;
|
---|
| 88 | }
|
---|
| 89 |
|
---|
[816f5f4] | 90 | if ((pipe->desc.direction != USB_DIRECTION_BOTH)
|
---|
| 91 | || (pipe->desc.transfer_type != USB_TRANSFER_CONTROL)) {
|
---|
[023a902] | 92 | return EBADF;
|
---|
| 93 | }
|
---|
| 94 |
|
---|
| 95 | uint64_t setup_packet;
|
---|
| 96 | memcpy(&setup_packet, setup_buffer, 8);
|
---|
| 97 |
|
---|
[3969a42] | 98 | async_exch_t *exch = async_exchange_begin(pipe->bus_session);
|
---|
[023a902] | 99 | size_t act_size = 0;
|
---|
[41df71f9] | 100 | const int rc = usbhc_read(exch, pipe->desc.endpoint_no, setup_packet, buffer,
|
---|
[58563585] | 101 | buffer_size, &act_size);
|
---|
[3969a42] | 102 | async_exchange_end(exch);
|
---|
[023a902] | 103 |
|
---|
| 104 | if (rc == ESTALL) {
|
---|
| 105 | clear_self_endpoint_halt(pipe);
|
---|
| 106 | }
|
---|
| 107 |
|
---|
[22ecbde] | 108 | if (rc == EOK && transfered_size != NULL) {
|
---|
| 109 | *transfered_size = act_size;
|
---|
[023a902] | 110 | }
|
---|
| 111 |
|
---|
| 112 | return rc;
|
---|
| 113 | }
|
---|
[a76b01b4] | 114 |
|
---|
[023a902] | 115 | /** Request a control write transfer on an endpoint pipe.
|
---|
| 116 | *
|
---|
| 117 | * This function encapsulates all three stages of a control transfer.
|
---|
| 118 | *
|
---|
| 119 | * @param[in] pipe Pipe used for the transfer.
|
---|
| 120 | * @param[in] setup_buffer Buffer with the setup packet.
|
---|
| 121 | * @param[in] setup_buffer_size Size of the setup packet (in bytes).
|
---|
| 122 | * @param[in] data_buffer Buffer with data to be sent.
|
---|
| 123 | * @param[in] data_buffer_size Size of the buffer with outgoing data (in bytes).
|
---|
| 124 | * @return Error code.
|
---|
| 125 | */
|
---|
| 126 | int usb_pipe_control_write(usb_pipe_t *pipe,
|
---|
| 127 | const void *setup_buffer, size_t setup_buffer_size,
|
---|
[22ecbde] | 128 | const void *buffer, size_t buffer_size)
|
---|
[023a902] | 129 | {
|
---|
| 130 | assert(pipe);
|
---|
| 131 |
|
---|
| 132 | if ((setup_buffer == NULL) || (setup_buffer_size != 8)) {
|
---|
| 133 | return EINVAL;
|
---|
| 134 | }
|
---|
| 135 |
|
---|
[22ecbde] | 136 | if ((buffer == NULL) && (buffer_size > 0)) {
|
---|
[023a902] | 137 | return EINVAL;
|
---|
| 138 | }
|
---|
| 139 |
|
---|
[22ecbde] | 140 | if ((buffer != NULL) && (buffer_size == 0)) {
|
---|
[023a902] | 141 | return EINVAL;
|
---|
| 142 | }
|
---|
| 143 |
|
---|
[816f5f4] | 144 | if ((pipe->desc.direction != USB_DIRECTION_BOTH)
|
---|
| 145 | || (pipe->desc.transfer_type != USB_TRANSFER_CONTROL)) {
|
---|
[023a902] | 146 | return EBADF;
|
---|
| 147 | }
|
---|
| 148 |
|
---|
| 149 | uint64_t setup_packet;
|
---|
| 150 | memcpy(&setup_packet, setup_buffer, 8);
|
---|
| 151 |
|
---|
[3969a42] | 152 | async_exch_t *exch = async_exchange_begin(pipe->bus_session);
|
---|
[41df71f9] | 153 | const int rc = usbhc_write(exch,
|
---|
[816f5f4] | 154 | pipe->desc.endpoint_no, setup_packet, buffer, buffer_size);
|
---|
[3969a42] | 155 | async_exchange_end(exch);
|
---|
[023a902] | 156 |
|
---|
| 157 | if (rc == ESTALL) {
|
---|
| 158 | clear_self_endpoint_halt(pipe);
|
---|
| 159 | }
|
---|
| 160 |
|
---|
| 161 | return rc;
|
---|
| 162 | }
|
---|
[a76b01b4] | 163 |
|
---|
[023a902] | 164 | /** Request a read (in) transfer on an endpoint pipe.
|
---|
| 165 | *
|
---|
| 166 | * @param[in] pipe Pipe used for the transfer.
|
---|
| 167 | * @param[out] buffer Buffer where to store the data.
|
---|
| 168 | * @param[in] size Size of the buffer (in bytes).
|
---|
| 169 | * @param[out] size_transfered Number of bytes that were actually transfered.
|
---|
| 170 | * @return Error code.
|
---|
| 171 | */
|
---|
| 172 | int usb_pipe_read(usb_pipe_t *pipe,
|
---|
| 173 | void *buffer, size_t size, size_t *size_transfered)
|
---|
| 174 | {
|
---|
| 175 | assert(pipe);
|
---|
| 176 |
|
---|
| 177 | if (buffer == NULL) {
|
---|
| 178 | return EINVAL;
|
---|
| 179 | }
|
---|
| 180 |
|
---|
| 181 | if (size == 0) {
|
---|
| 182 | return EINVAL;
|
---|
| 183 | }
|
---|
| 184 |
|
---|
[816f5f4] | 185 | if (pipe->desc.direction != USB_DIRECTION_IN) {
|
---|
[023a902] | 186 | return EBADF;
|
---|
| 187 | }
|
---|
| 188 |
|
---|
[816f5f4] | 189 | if (pipe->desc.transfer_type == USB_TRANSFER_CONTROL) {
|
---|
[023a902] | 190 | return EBADF;
|
---|
| 191 | }
|
---|
| 192 |
|
---|
[22ecbde] | 193 | /* Isochronous transfer are not supported (yet) */
|
---|
[816f5f4] | 194 | if (pipe->desc.transfer_type != USB_TRANSFER_INTERRUPT &&
|
---|
| 195 | pipe->desc.transfer_type != USB_TRANSFER_BULK)
|
---|
[22ecbde] | 196 | return ENOTSUP;
|
---|
[023a902] | 197 |
|
---|
[3969a42] | 198 | async_exch_t *exch = async_exchange_begin(pipe->bus_session);
|
---|
[22ecbde] | 199 | size_t act_size = 0;
|
---|
[3969a42] | 200 | const int rc =
|
---|
[41df71f9] | 201 | usbhc_read(exch, pipe->desc.endpoint_no, 0, buffer, size, &act_size);
|
---|
[3969a42] | 202 | async_exchange_end(exch);
|
---|
[023a902] | 203 |
|
---|
| 204 | if (rc == EOK && size_transfered != NULL) {
|
---|
| 205 | *size_transfered = act_size;
|
---|
| 206 | }
|
---|
| 207 |
|
---|
| 208 | return rc;
|
---|
| 209 | }
|
---|
[a76b01b4] | 210 |
|
---|
[023a902] | 211 | /** Request a write (out) transfer on an endpoint pipe.
|
---|
| 212 | *
|
---|
| 213 | * @param[in] pipe Pipe used for the transfer.
|
---|
| 214 | * @param[in] buffer Buffer with data to transfer.
|
---|
| 215 | * @param[in] size Size of the buffer (in bytes).
|
---|
| 216 | * @return Error code.
|
---|
| 217 | */
|
---|
| 218 | int usb_pipe_write(usb_pipe_t *pipe, const void *buffer, size_t size)
|
---|
| 219 | {
|
---|
| 220 | assert(pipe);
|
---|
| 221 |
|
---|
| 222 | if (buffer == NULL || size == 0) {
|
---|
| 223 | return EINVAL;
|
---|
| 224 | }
|
---|
| 225 |
|
---|
[816f5f4] | 226 | if (pipe->desc.direction != USB_DIRECTION_OUT) {
|
---|
[023a902] | 227 | return EBADF;
|
---|
| 228 | }
|
---|
| 229 |
|
---|
[816f5f4] | 230 | if (pipe->desc.transfer_type == USB_TRANSFER_CONTROL) {
|
---|
[023a902] | 231 | return EBADF;
|
---|
| 232 | }
|
---|
| 233 |
|
---|
[22ecbde] | 234 | /* Isochronous transfer are not supported (yet) */
|
---|
[816f5f4] | 235 | if (pipe->desc.transfer_type != USB_TRANSFER_INTERRUPT &&
|
---|
| 236 | pipe->desc.transfer_type != USB_TRANSFER_BULK)
|
---|
[22ecbde] | 237 | return ENOTSUP;
|
---|
| 238 |
|
---|
[3969a42] | 239 | async_exch_t *exch = async_exchange_begin(pipe->bus_session);
|
---|
[41df71f9] | 240 | const int rc = usbhc_write(exch, pipe->desc.endpoint_no, 0, buffer, size);
|
---|
[3969a42] | 241 | async_exchange_end(exch);
|
---|
| 242 | return rc;
|
---|
[023a902] | 243 | }
|
---|
[a76b01b4] | 244 |
|
---|
[c804484] | 245 | /** Initialize USB endpoint pipe.
|
---|
| 246 | *
|
---|
| 247 | * @param pipe Endpoint pipe to be initialized.
|
---|
| 248 | * @param endpoint_no Endpoint number (in USB 1.1 in range 0 to 15).
|
---|
| 249 | * @param transfer_type Transfer type (e.g. interrupt or bulk).
|
---|
| 250 | * @param max_packet_size Maximum packet size in bytes.
|
---|
| 251 | * @param direction Endpoint direction (in/out).
|
---|
| 252 | * @return Error code.
|
---|
| 253 | */
|
---|
[d93f5afb] | 254 | int usb_pipe_initialize(usb_pipe_t *pipe, usb_endpoint_t endpoint_no,
|
---|
[c804484] | 255 | usb_transfer_type_t transfer_type, size_t max_packet_size,
|
---|
[ec700c7] | 256 | usb_direction_t direction, unsigned packets,
|
---|
[6b433a8] | 257 | unsigned max_burst, unsigned max_streams, unsigned bytes_per_interval,
|
---|
| 258 | unsigned mult, usb_dev_session_t *bus_session)
|
---|
[c804484] | 259 | {
|
---|
[6b433a8] | 260 | // FIXME: refactor this function PLEASE
|
---|
[c804484] | 261 | assert(pipe);
|
---|
| 262 |
|
---|
[816f5f4] | 263 | pipe->desc.endpoint_no = endpoint_no;
|
---|
| 264 | pipe->desc.transfer_type = transfer_type;
|
---|
| 265 | pipe->desc.packets = packets;
|
---|
| 266 | pipe->desc.max_packet_size = max_packet_size;
|
---|
| 267 | pipe->desc.direction = direction;
|
---|
[ec700c7] | 268 | pipe->desc.usb3.max_burst = max_burst;
|
---|
| 269 | pipe->desc.usb3.max_streams = max_streams;
|
---|
[6b433a8] | 270 | pipe->desc.usb3.mult = mult;
|
---|
| 271 | pipe->desc.usb3.bytes_per_interval = bytes_per_interval;
|
---|
[c804484] | 272 | pipe->auto_reset_halt = false;
|
---|
[8582076] | 273 | pipe->bus_session = bus_session;
|
---|
[c804484] | 274 |
|
---|
| 275 | return EOK;
|
---|
| 276 | }
|
---|
[a76b01b4] | 277 |
|
---|
[c804484] | 278 | /** Initialize USB endpoint pipe as the default zero control pipe.
|
---|
| 279 | *
|
---|
| 280 | * @param pipe Endpoint pipe to be initialized.
|
---|
| 281 | * @return Error code.
|
---|
| 282 | */
|
---|
| 283 | int usb_pipe_initialize_default_control(usb_pipe_t *pipe,
|
---|
[d93f5afb] | 284 | usb_dev_session_t *bus_session)
|
---|
[c804484] | 285 | {
|
---|
| 286 | assert(pipe);
|
---|
| 287 |
|
---|
[d93f5afb] | 288 | const int rc = usb_pipe_initialize(pipe, 0, USB_TRANSFER_CONTROL,
|
---|
[6b433a8] | 289 | CTRL_PIPE_MIN_PACKET_SIZE, USB_DIRECTION_BOTH, 1, 0, 0, 0, 0, bus_session);
|
---|
[c804484] | 290 |
|
---|
| 291 | pipe->auto_reset_halt = true;
|
---|
| 292 |
|
---|
| 293 | return rc;
|
---|
| 294 | }
|
---|
[a76b01b4] | 295 |
|
---|
[c804484] | 296 | /** Register endpoint with the host controller.
|
---|
| 297 | *
|
---|
| 298 | * @param pipe Pipe to be registered.
|
---|
| 299 | * @param interval Polling interval.
|
---|
| 300 | * @return Error code.
|
---|
| 301 | */
|
---|
| 302 | int usb_pipe_register(usb_pipe_t *pipe, unsigned interval)
|
---|
| 303 | {
|
---|
| 304 | assert(pipe);
|
---|
[11e9e613] | 305 | assert(pipe->bus_session);
|
---|
[816f5f4] | 306 |
|
---|
| 307 | pipe->desc.usb2.polling_interval = interval;
|
---|
[11e9e613] | 308 | async_exch_t *exch = async_exchange_begin(pipe->bus_session);
|
---|
| 309 | if (!exch)
|
---|
| 310 | return ENOMEM;
|
---|
[816f5f4] | 311 |
|
---|
[41df71f9] | 312 | const int ret = usbhc_register_endpoint(exch, &pipe->desc);
|
---|
[816f5f4] | 313 |
|
---|
[11e9e613] | 314 | async_exchange_end(exch);
|
---|
| 315 | return ret;
|
---|
[c804484] | 316 | }
|
---|
[a76b01b4] | 317 |
|
---|
[c804484] | 318 | /** Revert endpoint registration with the host controller.
|
---|
| 319 | *
|
---|
| 320 | * @param pipe Pipe to be unregistered.
|
---|
| 321 | * @return Error code.
|
---|
| 322 | */
|
---|
| 323 | int usb_pipe_unregister(usb_pipe_t *pipe)
|
---|
| 324 | {
|
---|
| 325 | assert(pipe);
|
---|
[11e9e613] | 326 | assert(pipe->bus_session);
|
---|
| 327 | async_exch_t *exch = async_exchange_begin(pipe->bus_session);
|
---|
| 328 | if (!exch)
|
---|
| 329 | return ENOMEM;
|
---|
[816f5f4] | 330 |
|
---|
[41df71f9] | 331 | const int ret = usbhc_unregister_endpoint(exch, &pipe->desc);
|
---|
[816f5f4] | 332 |
|
---|
[11e9e613] | 333 | async_exchange_end(exch);
|
---|
| 334 | return ret;
|
---|
[c804484] | 335 | }
|
---|
| 336 |
|
---|
[6865243c] | 337 | /**
|
---|
| 338 | * @}
|
---|
| 339 | */
|
---|