| 1 | /*
|
|---|
| 2 | * Copyright (c) 2010 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 usb
|
|---|
| 30 | * @{
|
|---|
| 31 | */
|
|---|
| 32 | /** @file
|
|---|
| 33 | * @brief USB driver - standard USB requests (implementation).
|
|---|
| 34 | */
|
|---|
| 35 | #include <usb/usbdrv.h>
|
|---|
| 36 | #include <errno.h>
|
|---|
| 37 |
|
|---|
| 38 | /** Change address of connected device.
|
|---|
| 39 | *
|
|---|
| 40 | * @see usb_drv_reserve_default_address
|
|---|
| 41 | * @see usb_drv_release_default_address
|
|---|
| 42 | * @see usb_drv_request_address
|
|---|
| 43 | * @see usb_drv_release_address
|
|---|
| 44 | * @see usb_drv_bind_address
|
|---|
| 45 | *
|
|---|
| 46 | * @param phone Open phone to HC driver.
|
|---|
| 47 | * @param old_address Current address.
|
|---|
| 48 | * @param address Address to be set.
|
|---|
| 49 | * @return Error code.
|
|---|
| 50 | */
|
|---|
| 51 | int usb_drv_req_set_address(int phone, usb_address_t old_address,
|
|---|
| 52 | usb_address_t new_address)
|
|---|
| 53 | {
|
|---|
| 54 | /* Prepare the target. */
|
|---|
| 55 | usb_target_t target = {
|
|---|
| 56 | .address = old_address,
|
|---|
| 57 | .endpoint = 0
|
|---|
| 58 | };
|
|---|
| 59 |
|
|---|
| 60 | /* Prepare the setup packet. */
|
|---|
| 61 | usb_device_request_setup_packet_t setup_packet = {
|
|---|
| 62 | .request_type = 0,
|
|---|
| 63 | .request = USB_DEVREQ_SET_ADDRESS,
|
|---|
| 64 | .index = 0,
|
|---|
| 65 | .length = 0,
|
|---|
| 66 | };
|
|---|
| 67 | setup_packet.value = new_address;
|
|---|
| 68 |
|
|---|
| 69 | int rc = usb_drv_psync_control_write(phone, target,
|
|---|
| 70 | &setup_packet, sizeof(setup_packet), NULL, 0);
|
|---|
| 71 |
|
|---|
| 72 | return rc;
|
|---|
| 73 | }
|
|---|
| 74 |
|
|---|
| 75 | /** Retrieve USB descriptor of connected USB device.
|
|---|
| 76 | *
|
|---|
| 77 | * @param[in] hc_phone Open phone to HC driver.
|
|---|
| 78 | * @param[in] address Device USB address.
|
|---|
| 79 | * @param[in] request_type Request type (standard/class/vendor).
|
|---|
| 80 | * @param[in] descriptor_type Descriptor type (device/configuration/HID/...).
|
|---|
| 81 | * @param[in] descriptor_index Descriptor index.
|
|---|
| 82 | * @param[in] langauge Language index.
|
|---|
| 83 | * @param[out] buffer Buffer where to store the retrieved descriptor.
|
|---|
| 84 | * @param[in] size Size of the @p buffer.
|
|---|
| 85 | * @param[out] actual_size Number of bytes actually transferred.
|
|---|
| 86 | * @return Error code.
|
|---|
| 87 | */
|
|---|
| 88 | int usb_drv_req_get_descriptor(int hc_phone, usb_address_t address,
|
|---|
| 89 | usb_request_type_t request_type,
|
|---|
| 90 | uint8_t descriptor_type, uint8_t descriptor_index,
|
|---|
| 91 | uint16_t language,
|
|---|
| 92 | void *buffer, size_t size, size_t *actual_size)
|
|---|
| 93 | {
|
|---|
| 94 | /* Prepare the target. */
|
|---|
| 95 | usb_target_t target = {
|
|---|
| 96 | .address = address,
|
|---|
| 97 | .endpoint = 0
|
|---|
| 98 | };
|
|---|
| 99 |
|
|---|
| 100 | /* Prepare the setup packet. */
|
|---|
| 101 | usb_device_request_setup_packet_t setup_packet = {
|
|---|
| 102 | .request_type = 128 | (request_type << 5),
|
|---|
| 103 | .request = USB_DEVREQ_GET_DESCRIPTOR,
|
|---|
| 104 | .index = language,
|
|---|
| 105 | .length = (uint16_t) size,
|
|---|
| 106 | };
|
|---|
| 107 | setup_packet.value_high = descriptor_type;
|
|---|
| 108 | setup_packet.value_low = descriptor_index;
|
|---|
| 109 |
|
|---|
| 110 | /* Perform CONTROL READ */
|
|---|
| 111 | int rc = usb_drv_psync_control_read(hc_phone, target,
|
|---|
| 112 | &setup_packet, sizeof(setup_packet),
|
|---|
| 113 | buffer, size, actual_size);
|
|---|
| 114 |
|
|---|
| 115 | return rc;
|
|---|
| 116 | }
|
|---|
| 117 |
|
|---|
| 118 | /** Retrieve device descriptor of connected USB device.
|
|---|
| 119 | *
|
|---|
| 120 | * @param[in] phone Open phone to HC driver.
|
|---|
| 121 | * @param[in] address Device USB address.
|
|---|
| 122 | * @param[out] descriptor Storage for the device descriptor.
|
|---|
| 123 | * @return Error code.
|
|---|
| 124 | * @retval EBADMEM @p descriptor is NULL.
|
|---|
| 125 | */
|
|---|
| 126 | int usb_drv_req_get_device_descriptor(int phone, usb_address_t address,
|
|---|
| 127 | usb_standard_device_descriptor_t *descriptor)
|
|---|
| 128 | {
|
|---|
| 129 | if (descriptor == NULL) {
|
|---|
| 130 | return EBADMEM;
|
|---|
| 131 | }
|
|---|
| 132 |
|
|---|
| 133 | size_t actually_transferred = 0;
|
|---|
| 134 | usb_standard_device_descriptor_t descriptor_tmp;
|
|---|
| 135 | int rc = usb_drv_req_get_descriptor(phone, address,
|
|---|
| 136 | USB_REQUEST_TYPE_STANDARD,
|
|---|
| 137 | USB_DESCTYPE_DEVICE, 0,
|
|---|
| 138 | 0,
|
|---|
| 139 | &descriptor_tmp, sizeof(descriptor_tmp),
|
|---|
| 140 | &actually_transferred);
|
|---|
| 141 |
|
|---|
| 142 | if (rc != EOK) {
|
|---|
| 143 | return rc;
|
|---|
| 144 | }
|
|---|
| 145 |
|
|---|
| 146 | /* Verify that all data has been transferred. */
|
|---|
| 147 | if (actually_transferred < sizeof(descriptor_tmp)) {
|
|---|
| 148 | return ELIMIT;
|
|---|
| 149 | }
|
|---|
| 150 |
|
|---|
| 151 | /* Everything is okay, copy the descriptor. */
|
|---|
| 152 | memcpy(descriptor, &descriptor_tmp,
|
|---|
| 153 | sizeof(descriptor_tmp));
|
|---|
| 154 |
|
|---|
| 155 | return EOK;
|
|---|
| 156 | }
|
|---|
| 157 |
|
|---|
| 158 |
|
|---|
| 159 | /** Retrieve configuration descriptor of connected USB device.
|
|---|
| 160 | *
|
|---|
| 161 | * The function does not retrieve additional data binded with configuration
|
|---|
| 162 | * descriptor (such as its interface and endpoint descriptors) - use
|
|---|
| 163 | * usb_drv_req_get_full_configuration_descriptor() instead.
|
|---|
| 164 | *
|
|---|
| 165 | * @param[in] phone Open phone to HC driver.
|
|---|
| 166 | * @param[in] address Device USB address.
|
|---|
| 167 | * @param[in] index Configuration descriptor index.
|
|---|
| 168 | * @param[out] descriptor Storage for the configuration descriptor.
|
|---|
| 169 | * @return Error code.
|
|---|
| 170 | * @retval EBADMEM @p descriptor is NULL.
|
|---|
| 171 | */
|
|---|
| 172 | int usb_drv_req_get_bare_configuration_descriptor(int phone,
|
|---|
| 173 | usb_address_t address, int index,
|
|---|
| 174 | usb_standard_configuration_descriptor_t *descriptor)
|
|---|
| 175 | {
|
|---|
| 176 | if (descriptor == NULL) {
|
|---|
| 177 | return EBADMEM;
|
|---|
| 178 | }
|
|---|
| 179 |
|
|---|
| 180 | size_t actually_transferred = 0;
|
|---|
| 181 | usb_standard_configuration_descriptor_t descriptor_tmp;
|
|---|
| 182 | int rc = usb_drv_req_get_descriptor(phone, address,
|
|---|
| 183 | USB_REQUEST_TYPE_STANDARD,
|
|---|
| 184 | USB_DESCTYPE_CONFIGURATION, 0,
|
|---|
| 185 | 0,
|
|---|
| 186 | &descriptor_tmp, sizeof(descriptor_tmp),
|
|---|
| 187 | &actually_transferred);
|
|---|
| 188 |
|
|---|
| 189 | if (rc != EOK) {
|
|---|
| 190 | return rc;
|
|---|
| 191 | }
|
|---|
| 192 |
|
|---|
| 193 | /* Verify that all data has been transferred. */
|
|---|
| 194 | if (actually_transferred < sizeof(descriptor_tmp)) {
|
|---|
| 195 | return ELIMIT;
|
|---|
| 196 | }
|
|---|
| 197 |
|
|---|
| 198 | /* Everything is okay, copy the descriptor. */
|
|---|
| 199 | memcpy(descriptor, &descriptor_tmp,
|
|---|
| 200 | sizeof(descriptor_tmp));
|
|---|
| 201 |
|
|---|
| 202 | return EOK;
|
|---|
| 203 | }
|
|---|
| 204 |
|
|---|
| 205 | /** Retrieve full configuration descriptor of connected USB device.
|
|---|
| 206 | *
|
|---|
| 207 | * @warning The @p buffer might be touched (i.e. its contents changed)
|
|---|
| 208 | * even when error occurres.
|
|---|
| 209 | *
|
|---|
| 210 | * @param[in] phone Open phone to HC driver.
|
|---|
| 211 | * @param[in] address Device USB address.
|
|---|
| 212 | * @param[in] index Configuration descriptor index.
|
|---|
| 213 | * @param[out] buffer Buffer for the whole configuration descriptor.
|
|---|
| 214 | * @param[in] buffer_size Size of the prepared @p buffer.
|
|---|
| 215 | * @param[out] actual_buffer_size Bytes actually transfered.
|
|---|
| 216 | * @return Error code.
|
|---|
| 217 | * @retval EBADMEM @p descriptor is NULL.
|
|---|
| 218 | */
|
|---|
| 219 | int usb_drv_req_get_full_configuration_descriptor(int phone,
|
|---|
| 220 | usb_address_t address, int index,
|
|---|
| 221 | void *buffer, size_t buffer_size, size_t *actual_buffer_size)
|
|---|
| 222 | {
|
|---|
| 223 | if (buffer == NULL) {
|
|---|
| 224 | return EBADMEM;
|
|---|
| 225 | }
|
|---|
| 226 |
|
|---|
| 227 | int rc = usb_drv_req_get_descriptor(phone, address,
|
|---|
| 228 | USB_REQUEST_TYPE_STANDARD,
|
|---|
| 229 | USB_DESCTYPE_CONFIGURATION, 0,
|
|---|
| 230 | 0,
|
|---|
| 231 | buffer, buffer_size,
|
|---|
| 232 | actual_buffer_size);
|
|---|
| 233 |
|
|---|
| 234 | return rc;
|
|---|
| 235 | }
|
|---|
| 236 |
|
|---|
| 237 |
|
|---|
| 238 | /**
|
|---|
| 239 | * @}
|
|---|
| 240 | */
|
|---|