Changes in / [22ded10:310c4df] in mainline
- Location:
- uspace/lib/usb
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/include/usb/classes/hiddescriptor.h
r22ded10 r310c4df 78 78 uint32_t usb_hid_report_tag_data_uint32(const uint8_t *data, size_t size); 79 79 80 usb_hid_report_path_t *usb_hid_report_path_try_insert(usb_hid_report_t *report, usb_hid_report_path_t *cmp_path);81 80 #endif 82 81 /** -
uspace/lib/usb/include/usb/classes/hidpath.h
r22ded10 r310c4df 43 43 * Description of path of usage pages and usages in report descriptor 44 44 */ 45 /** Wanted usage path must be exactly the same as the searched one */46 45 #define USB_HID_PATH_COMPARE_STRICT 0 47 /** Wanted usage path must be the suffix in the searched one */ 48 #define USB_HID_PATH_COMPARE_END 1 49 /** */ 46 #define USB_HID_PATH_COMPARE_END 1 50 47 #define USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY 4 51 48 #define USB_HID_PATH_COMPARE_COLLECTION_ONLY 2 /* porovnava jenom cestu z Kolekci */ 52 /** Searched usage page must be prefix of the other one */53 #define USB_HID_PATH_COMPARE_BEGIN 854 /** Searched couple of usage page and usage can be anywhere in usage path */55 #define USB_HID_PATH_COMPARE_WHERE 1656 /**57 * TODO58 * * porovnani zacatek - neni to to samy jako COLLECTION ONLY?? -- TEST59 * * porovnani kdekoliv (jenom s delkou 1 at si to moc nekomplikujem)60 */61 49 62 50 -
uspace/lib/usb/include/usb/classes/hidtypes.h
r22ded10 r310c4df 165 165 /** */ 166 166 link_t link; 167 168 int in_delimiter;169 167 } usb_hid_report_item_t; 170 168 -
uspace/lib/usb/src/hiddescriptor.c
r22ded10 r310c4df 41 41 #include <assert.h> 42 42 43 44 #define OUTSIDE_DELIMITER_SET 045 #define START_DELIMITER_SET 146 #define INSIDE_DELIMITER_SET 247 48 43 /** The new report item flag. Used to determine when the item is completly 49 44 * configured and should be added to the report structure … … 61 56 #define USB_HID_UNKNOWN_TAG -99 62 57 63 usb_hid_report_path_t *usb_hid_report_path_try_insert(usb_hid_report_t *report, usb_hid_report_path_t *cmp_path) 64 { 58 59 /** 60 * Initialize the report descriptor parser structure 61 * 62 * @param parser Report descriptor parser structure 63 * @return Error code 64 */ 65 int usb_hid_report_init(usb_hid_report_t *report) 66 { 67 if(report == NULL) { 68 return EINVAL; 69 } 70 71 memset(report, 0, sizeof(usb_hid_report_t)); 72 list_initialize(&report->reports); 73 list_initialize(&report->collection_paths); 74 75 report->use_report_ids = 0; 76 return EOK; 77 } 78 79 int usb_hid_report_append_fields(usb_hid_report_t *report, usb_hid_report_item_t *report_item) 80 { 81 usb_hid_report_field_t *field; 82 int i; 83 84 65 85 /* find or append current collection path to the list */ 66 86 link_t *path_it = report->collection_paths.next; … … 69 89 path = list_get_instance(path_it, usb_hid_report_path_t, link); 70 90 71 if(usb_hid_report_compare_usage_path(path, cmp_path, USB_HID_PATH_COMPARE_STRICT) == EOK){91 if(usb_hid_report_compare_usage_path(path, report_item->usage_path, USB_HID_PATH_COMPARE_STRICT) == EOK){ 72 92 break; 73 93 } … … 75 95 } 76 96 if(path_it == &report->collection_paths) { 77 path = usb_hid_report_path_clone( cmp_path);97 path = usb_hid_report_path_clone(report_item->usage_path); 78 98 list_append(&path->link, &report->collection_paths); 79 99 report->collection_paths_count++; 80 81 return path; 82 } 83 else { 84 return list_get_instance(path_it, usb_hid_report_path_t, link); 85 } 86 } 87 88 /** 89 * Initialize the report descriptor parser structure 90 * 91 * @param parser Report descriptor parser structure 92 * @return Error code 93 */ 94 int usb_hid_report_init(usb_hid_report_t *report) 95 { 96 if(report == NULL) { 97 return EINVAL; 98 } 99 100 memset(report, 0, sizeof(usb_hid_report_t)); 101 list_initialize(&report->reports); 102 list_initialize(&report->collection_paths); 103 104 report->use_report_ids = 0; 105 return EOK; 106 } 107 108 109 /* 110 * 111 * 112 */ 113 int usb_hid_report_append_fields(usb_hid_report_t *report, usb_hid_report_item_t *report_item) 114 { 115 usb_hid_report_field_t *field; 116 int i; 100 } 117 101 118 102 for(i=0; i<report_item->usages_count; i++){ … … 120 104 } 121 105 122 usb_hid_report_path_t *path = report_item->usage_path;106 123 107 for(i=0; i<report_item->count; i++){ 124 108 … … 128 112 129 113 /* fill the attributes */ 114 field->collection_path = path; 130 115 field->logical_minimum = report_item->logical_minimum; 131 116 field->logical_maximum = report_item->logical_maximum; … … 144 129 if(report_item->usages_count > 0 && ((report_item->usage_minimum == 0) && (report_item->usage_maximum == 0))) { 145 130 uint32_t usage; 146 if(i < report_item->usages_count){ 147 usage = report_item->usages[i]; 131 if(report_item->type != USB_HID_REPORT_TYPE_OUTPUT) { 132 if(i < report_item->usages_count){ 133 usage = report_item->usages[i]; 134 } 135 else { 136 usage = report_item->usages[report_item->usages_count - 1]; 137 } 148 138 } 149 139 else { 150 usage = report_item->usages[report_item->usages_count - 1]; 140 if((report_item->count - i - 1) < report_item->usages_count){ 141 usage = report_item->usages[(report_item->count - i - 1)]; 142 } 143 else { 144 usage = report_item->usages[report_item->usages_count - 1]; 145 } 151 146 } 152 147 … … 164 159 165 160 if((USB_HID_ITEM_FLAG_VARIABLE(report_item->item_flags) != 0) && (!((report_item->usage_minimum == 0) && (report_item->usage_maximum == 0)))) { 166 field->usage = report_item->usage_minimum + i; 167 } 168 169 usb_hid_report_set_last_item(path, USB_HID_TAG_CLASS_GLOBAL, field->usage_page); 170 usb_hid_report_set_last_item(path, USB_HID_TAG_CLASS_LOCAL, field->usage); 171 172 field->collection_path = usb_hid_report_path_try_insert(report, path); 173 161 if(report_item->type == USB_HID_REPORT_TYPE_INPUT) { 162 field->usage = report_item->usage_maximum - i; 163 } 164 else { 165 field->usage = report_item->usage_minimum + i; 166 } 167 168 } 169 174 170 field->size = report_item->size; 175 176 size_t offset_byte = (report_item->offset + (i * report_item->size)) / 8; 177 size_t offset_bit = 8 - ((report_item->offset + (i * report_item->size)) % 8) - report_item->size; 178 179 field->offset = 8 * offset_byte + offset_bit; 171 field->offset = report_item->offset + (i * report_item->size); 180 172 if(report_item->id != 0) { 181 173 field->offset += 8; … … 272 264 return ENOMEM; 273 265 } 274 usb_hid_report_path_append_item(usage_path, 0, 0);275 266 276 267 while(i<size){ … … 358 349 tmp_usage_path = list_get_instance(report_item->usage_path->link.prev, usb_hid_report_usage_path_t, link); 359 350 360 usb_hid_report_set_last_item(usage_path, USB_HID_TAG_CLASS_GLOBAL, tmp_usage_path->usage_page); 361 usb_hid_report_set_last_item(usage_path, USB_HID_TAG_CLASS_LOCAL, tmp_usage_path->usage); 351 usb_hid_report_set_last_item(usage_path, tmp_usage_path->usage_page, tmp_usage_path->usage); 362 352 363 353 usb_hid_report_path_free(report_item->usage_path); … … 448 438 449 439 case USB_HID_REPORT_TAG_COLLECTION: 450 //TODO: usage_path->flags = *data; 451 452 usb_log_debug("APPENDED ITEM TO USAGE PATH (PAGE %d, USAGE %d\n", report_item->usage_page, report_item->usages[report_item->usages_count-1]); 453 usb_hid_print_usage_path(usage_path); 454 455 // set last item 456 usb_hid_report_set_last_item(usage_path, USB_HID_TAG_CLASS_GLOBAL, report_item->usage_page); 457 usb_hid_report_set_last_item(usage_path, USB_HID_TAG_CLASS_LOCAL, report_item->usages[report_item->usages_count-1]); 458 // append the new one which will be set by common 459 // usage/usage page 460 usb_hid_report_path_append_item(usage_path, report_item->usage_page, report_item->usages[report_item->usages_count-1]); 461 usb_hid_print_usage_path(usage_path); 462 440 // TODO usage_path->flags = *data; 441 usb_hid_report_path_append_item(usage_path, report_item->usage_page, report_item->usages[report_item->usages_count-1]); 463 442 usb_hid_report_reset_local_items (report_item); 464 443 return USB_HID_NO_ACTION; … … 596 575 break; 597 576 case USB_HID_REPORT_TAG_DELIMITER: 598 if (report_item->in_delimiter == OUTSIDE_DELIMITER_SET) { 599 report_item->in_delimiter = START_DELIMITER_SET; 600 } 601 else { 602 report_item->in_delimiter = OUTSIDE_DELIMITER_SET; 603 } 604 577 //report_item->delimiter = usb_hid_report_tag_data_uint32(data,item_size); 578 //TODO: 579 // DELIMITER STUFF 605 580 break; 606 581 … … 654 629 655 630 usb_log_debug("\t\tOFFSET: %X\n", report_item->offset); 656 usb_log_debug("\t\tSIZE: % X\n", report_item->size);631 usb_log_debug("\t\tSIZE: %zu\n", report_item->size); 657 632 usb_log_debug("\t\tLOGMIN: %d\n", report_item->logical_minimum); 658 633 usb_log_debug("\t\tLOGMAX: %d\n", report_item->logical_maximum); … … 665 640 usb_log_debug("\t\ttUSAGE: %X\n", report_item->usage); 666 641 usb_log_debug("\t\tUSAGE PAGE: %X\n", report_item->usage_page); 667 668 //usb_hid_print_usage_path(report_item->collection_path); 669 670 usb_log_debug("\n"); 642 643 // usb_log_debug("\n"); 671 644 672 645 } … … 693 666 usb_log_debug("Report ID: %d\n", report_des->report_id); 694 667 usb_log_debug("\tType: %d\n", report_des->type); 695 usb_log_debug("\tLength: % d\n", report_des->bit_length);696 usb_log_debug("\tItems: % d\n", report_des->item_length);668 usb_log_debug("\tLength: %zu\n", report_des->bit_length); 669 usb_log_debug("\tItems: %zu\n", report_des->item_length); 697 670 698 671 usb_hid_descriptor_print_list(&report_des->report_items); -
uspace/lib/usb/src/hidparser.c
r22ded10 r310c4df 405 405 } 406 406 407 size_t shift = 8 - offset%8 - length;407 size_t shift = offset%8; 408 408 409 409 value = value << shift;
Note:
See TracChangeset
for help on using the changeset viewer.