Changes in uspace/drv/usbhid/hiddev.c [1c6c4092:77ab674] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhid/hiddev.c
r1c6c4092 r77ab674 53 53 /* Non-API functions */ 54 54 /*----------------------------------------------------------------------------*/ 55 55 /** 56 * Retreives HID Report descriptor from the device. 57 * 58 * This function first parses the HID descriptor from the Interface descriptor 59 * to get the size of the Report descriptor and then requests the Report 60 * descriptor from the device. 61 * 62 * @param hid_dev HID device structure. 63 * @param config_desc Full configuration descriptor (including all nested 64 * descriptors). 65 * @param config_desc_size Size of the full configuration descriptor (in bytes). 66 * @param iface_desc Pointer to the interface descriptor inside the full 67 * configuration descriptor (@a config_desc) for the interface 68 * assigned with this device (@a hid_dev). 69 * 70 * @retval EOK if successful. 71 * @retval ENOENT if no HID descriptor could be found. 72 * @retval EINVAL if the HID descriptor or HID report descriptor have different 73 * size than expected. 74 * @retval ENOMEM if some allocation failed. 75 * @return Other value inherited from function usb_request_get_descriptor(). 76 * 77 * @sa usb_request_get_descriptor() 78 */ 56 79 static int usbhid_dev_get_report_descriptor(usbhid_dev_t *hid_dev, 57 80 uint8_t *config_desc, size_t config_desc_size, uint8_t *iface_desc) … … 141 164 142 165 /*----------------------------------------------------------------------------*/ 143 166 /** 167 * Retreives descriptors from the device, initializes pipes and stores 168 * important information from descriptors. 169 * 170 * Initializes the polling pipe described by the given endpoint description 171 * (@a poll_ep_desc). 172 * 173 * Information retreived from descriptors and stored in the HID device structure: 174 * - Assigned interface number (the interface controlled by this instance of 175 * the driver) 176 * - Polling interval (from the interface descriptor) 177 * - Report descriptor 178 * 179 * @param hid_dev HID device structure to be initialized. 180 * @param poll_ep_desc Description of the polling (Interrupt In) endpoint 181 * that has to be present in the device in order to 182 * successfuly initialize the structure. 183 * 184 * @sa usb_endpoint_pipe_initialize_from_configuration(), 185 * usbhid_dev_get_report_descriptor() 186 */ 144 187 static int usbhid_dev_process_descriptors(usbhid_dev_t *hid_dev, 145 188 usb_endpoint_description_t *poll_ep_desc) … … 149 192 usb_log_info("Processing descriptors...\n"); 150 193 151 // get the first configuration descriptor152 usb_standard_configuration_descriptor_t config_desc;153 154 194 int rc; 155 rc = usb_request_get_bare_configuration_descriptor(&hid_dev->ctrl_pipe, 156 0, &config_desc); 157 158 if (rc != EOK) { 159 usb_log_error("Failed to get bare config descriptor: %s.\n", 195 196 uint8_t *descriptors = NULL; 197 size_t descriptors_size; 198 rc = usb_request_get_full_configuration_descriptor_alloc( 199 &hid_dev->ctrl_pipe, 0, (void **) &descriptors, &descriptors_size); 200 if (rc != EOK) { 201 usb_log_error("Failed to retrieve config descriptor: %s.\n", 160 202 str_error(rc)); 161 203 return rc; 162 }163 164 // prepare space for all underlying descriptors165 uint8_t *descriptors = (uint8_t *)malloc(config_desc.total_length);166 if (descriptors == NULL) {167 usb_log_error("No memory!.\n");168 return ENOMEM;169 }170 171 size_t transferred = 0;172 // get full configuration descriptor173 rc = usb_request_get_full_configuration_descriptor(&hid_dev->ctrl_pipe,174 0, descriptors, config_desc.total_length, &transferred);175 176 if (rc != EOK) {177 usb_log_error("Failed to get full config descriptor: %s.\n",178 str_error(rc));179 free(descriptors);180 return rc;181 }182 183 if (transferred != config_desc.total_length) {184 usb_log_error("Configuration descriptor has wrong size (%u, "185 "expected %u).\n", transferred, config_desc.total_length);186 free(descriptors);187 return ELIMIT;188 204 } 189 205 … … 201 217 202 218 rc = usb_endpoint_pipe_initialize_from_configuration( 203 endpoint_mapping, 1, descriptors, config_desc.total_length,219 endpoint_mapping, 1, descriptors, descriptors_size, 204 220 &hid_dev->wire); 205 221 … … 233 249 assert(endpoint_mapping[0].interface != NULL); 234 250 235 rc = usbhid_dev_get_report_descriptor(hid_dev, descriptors, transferred, 251 /* 252 * Save polling interval 253 */ 254 hid_dev->poll_interval = endpoint_mapping[0].descriptor->poll_interval; 255 assert(hid_dev->poll_interval > 0); 256 257 rc = usbhid_dev_get_report_descriptor(hid_dev, 258 descriptors, descriptors_size, 236 259 (uint8_t *)endpoint_mapping[0].interface); 237 260 … … 250 273 /* API functions */ 251 274 /*----------------------------------------------------------------------------*/ 252 275 /** 276 * Creates new uninitialized HID device structure. 277 * 278 * @return Pointer to the new HID device structure, or NULL if an error occured. 279 */ 253 280 usbhid_dev_t *usbhid_dev_new(void) 254 281 { … … 269 296 270 297 /*----------------------------------------------------------------------------*/ 271 298 /** 299 * Properly destroys the HID device structure. 300 * 301 * @note Currently does not clean-up the used pipes, as there are no functions 302 * offering such functionality. 303 * 304 * @param hid_dev Pointer to the structure to be destroyed. 305 */ 272 306 void usbhid_dev_free(usbhid_dev_t **hid_dev) 273 307 { … … 292 326 293 327 /*----------------------------------------------------------------------------*/ 294 328 /** 329 * Initializes HID device structure. 330 * 331 * @param hid_dev HID device structure to be initialized. 332 * @param dev DDF device representing the HID device. 333 * @param poll_ep_desc Description of the polling (Interrupt In) endpoint 334 * that has to be present in the device in order to 335 * successfuly initialize the structure. 336 * 337 * @retval EOK if successful. 338 * @retval EINVAL if some argument is missing. 339 * @return Other value inherited from one of functions 340 * usb_device_connection_initialize_from_device(), 341 * usb_endpoint_pipe_initialize_default_control(), 342 * usb_endpoint_pipe_start_session(), usb_endpoint_pipe_end_session(), 343 * usbhid_dev_process_descriptors(). 344 * 345 * @sa usbhid_dev_process_descriptors() 346 */ 295 347 int usbhid_dev_init(usbhid_dev_t *hid_dev, ddf_dev_t *dev, 296 348 usb_endpoint_description_t *poll_ep_desc) … … 343 395 * Get descriptors, parse descriptors and save endpoints. 344 396 */ 345 usb_endpoint_pipe_start_session(&hid_dev->ctrl_pipe); 397 rc = usb_endpoint_pipe_start_session(&hid_dev->ctrl_pipe); 398 if (rc != EOK) { 399 usb_log_error("Failed to start session on the control pipe: %s" 400 ".\n", str_error(rc)); 401 return rc; 402 } 346 403 347 404 rc = usbhid_dev_process_descriptors(hid_dev, poll_ep_desc); 348 349 usb_endpoint_pipe_end_session(&hid_dev->ctrl_pipe); 350 if (rc != EOK) { 405 if (rc != EOK) { 406 /* TODO: end session?? */ 351 407 usb_log_error("Failed to process descriptors: %s.\n", 352 408 str_error(rc)); … … 354 410 } 355 411 412 rc = usb_endpoint_pipe_end_session(&hid_dev->ctrl_pipe); 413 if (rc != EOK) { 414 usb_log_warning("Failed to start session on the control pipe: " 415 "%s.\n", str_error(rc)); 416 return rc; 417 } 418 356 419 hid_dev->initialized = 1; 357 420 usb_log_info("HID device structure initialized.\n");
Note:
See TracChangeset
for help on using the changeset viewer.