Changes in / [f8e8738:a82889e] in mainline
- Files:
-
- 17 deleted
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/amd64/Makefile.inc
rf8e8738 ra82889e 50 50 usbhub \ 51 51 usbkbd \ 52 usbhid \53 52 usbmid \ 54 53 usbmouse \ -
uspace/Makefile
rf8e8738 ra82889e 123 123 drv/usbflbk \ 124 124 drv/usbkbd \ 125 drv/usbhid \126 125 drv/usbhub \ 127 126 drv/usbmid \ … … 144 143 drv/usbflbk \ 145 144 drv/usbkbd \ 146 drv/usbhid \147 145 drv/usbhub \ 148 146 drv/usbmid \ -
uspace/drv/usbkbd/kbddev.c
rf8e8738 ra82889e 265 265 static void usb_kbd_set_led(usb_kbd_t *kbd_dev) 266 266 { 267 if (kbd_dev->output_size == 0) {268 return;269 }270 271 267 unsigned i = 0; 272 268 … … 292 288 293 289 int rc = usb_hid_report_output_translate(kbd_dev->parser, 294 kbd_dev->led_path, 295 USB_HID_PATH_COMPARE_END | USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY, 296 kbd_dev->output_buffer, 290 kbd_dev->led_path, USB_HID_PATH_COMPARE_END, kbd_dev->output_buffer, 297 291 kbd_dev->output_size, kbd_dev->led_data, kbd_dev->led_output_size); 298 292 … … 545 539 * according to HID Usage Tables. 546 540 * @param count Number of key codes in report (size of the report). 547 * @param report_id541 * @param modifiers Bitmap of modifiers (Ctrl, Alt, Shift, GUI). 548 542 * @param arg User-specified argument. Expects pointer to the keyboard device 549 543 * structure representing the keyboard. … … 552 546 */ 553 547 static void usb_kbd_process_keycodes(const uint8_t *key_codes, size_t count, 554 uint8_t report_id, void *arg)548 uint8_t modifiers, void *arg) 555 549 { 556 550 if (arg == NULL) { … … 563 557 assert(kbd_dev != NULL); 564 558 565 usb_log_debug("Got keys from parser (report id: %u): %s\n",566 report_id,usb_debug_str_buffer(key_codes, count, 0));559 usb_log_debug("Got keys from parser: %s\n", 560 usb_debug_str_buffer(key_codes, count, 0)); 567 561 568 562 if (count != kbd_dev->key_count) { … … 614 608 usb_hid_report_path_t *path = usb_hid_report_path(); 615 609 usb_hid_report_path_append_item(path, USB_HIDUT_PAGE_KEYBOARD, 0); 616 usb_hid_report_path_set_report_id(path, 1);617 610 618 611 int rc = usb_hid_parse_report(kbd_dev->parser, buffer, 619 actual_size, path, 620 USB_HID_PATH_COMPARE_END | USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY, 621 callbacks, kbd_dev); 612 actual_size, path, USB_HID_PATH_COMPARE_STRICT, callbacks, kbd_dev); 622 613 623 614 usb_hid_report_path_free (path); … … 767 758 usb_hid_report_path_t *path = usb_hid_report_path(); 768 759 usb_hid_report_path_append_item(path, USB_HIDUT_PAGE_KEYBOARD, 0); 769 770 usb_hid_report_path_set_report_id(path, 1);771 772 760 kbd_dev->key_count = usb_hid_report_input_length( 773 kbd_dev->parser, path, 774 USB_HID_PATH_COMPARE_END | USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY); 761 kbd_dev->parser, path, USB_HID_PATH_COMPARE_STRICT); 775 762 usb_hid_report_path_free (path); 776 763 … … 790 777 kbd_dev->output_buffer = usb_hid_report_output(kbd_dev->parser, 791 778 &kbd_dev->output_size); 792 if (kbd_dev->output_buffer == NULL && kbd_dev->output_size != 0) {779 if (kbd_dev->output_buffer == NULL) { 793 780 usb_log_warning("Error creating output report buffer.\n"); 794 781 free(kbd_dev->keys); … … 803 790 804 791 kbd_dev->led_output_size = usb_hid_report_output_size(kbd_dev->parser, 805 kbd_dev->led_path, 806 USB_HID_PATH_COMPARE_END | USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY); 792 kbd_dev->led_path, USB_HID_PATH_COMPARE_END); 807 793 808 794 usb_log_debug("Output report size (in items): %zu\n", -
uspace/drv/usbkbd/main.c
rf8e8738 ra82889e 33 33 /** 34 34 * @file 35 * Main routines of USB KBD driver.35 * Main routines of USB HID driver. 36 36 */ 37 37 … … 75 75 * @sa usb_kbd_fibril(), usb_kbd_repeat_fibril() 76 76 */ 77 static int usb _kbd_try_add_device(usb_device_t *dev)77 static int usbhid_try_add_device(usb_device_t *dev) 78 78 { 79 79 /* Create the function exposed under /dev/devices. */ … … 105 105 usb_kbd_free(&kbd_dev); 106 106 return rc; 107 } 107 } 108 108 109 109 usb_log_debug("USB/HID KBD device structure initialized.\n"); … … 195 195 * @retval EREFUSED if the device is not supported. 196 196 */ 197 static int usb _kbd_add_device(usb_device_t *dev)197 static int usbhid_add_device(usb_device_t *dev) 198 198 { 199 usb_log_debug("usb _kbd_add_device()\n");199 usb_log_debug("usbhid_add_device()\n"); 200 200 201 201 if (dev->interface_no < 0) { 202 202 usb_log_warning("Device is not a supported keyboard.\n"); 203 usb_log_error("Failed to add USB KBD device: endpoint not"204 " found.\n");203 usb_log_error("Failed to add HID device: endpoint not found." 204 "\n"); 205 205 return ENOTSUP; 206 206 } 207 207 208 int rc = usb _kbd_try_add_device(dev);208 int rc = usbhid_try_add_device(dev); 209 209 210 210 if (rc != EOK) { 211 211 usb_log_warning("Device is not a supported keyboard.\n"); 212 usb_log_error("Failed to add KBD device: %s.\n",212 usb_log_error("Failed to add HID device: %s.\n", 213 213 str_error(rc)); 214 214 return rc; … … 224 224 /* Currently, the framework supports only device adding. Once the framework 225 225 * supports unplug, more callbacks will be added. */ 226 static usb_driver_ops_t usb _kbd_driver_ops = {227 .add_device = usb _kbd_add_device,226 static usb_driver_ops_t usbhid_driver_ops = { 227 .add_device = usbhid_add_device, 228 228 }; 229 229 230 230 231 231 /* The driver itself. */ 232 static usb_driver_t usb _kbd_driver = {232 static usb_driver_t usbhid_driver = { 233 233 .name = NAME, 234 .ops = &usb _kbd_driver_ops,234 .ops = &usbhid_driver_ops, 235 235 .endpoints = usb_kbd_endpoints 236 236 }; … … 238 238 /*----------------------------------------------------------------------------*/ 239 239 240 //static driver_ops_t kbd_driver_ops = { 241 // .add_device = usbhid_add_device, 242 //}; 243 244 ///*----------------------------------------------------------------------------*/ 245 246 //static driver_t kbd_driver = { 247 // .name = NAME, 248 // .driver_ops = &kbd_driver_ops 249 //}; 250 251 /*----------------------------------------------------------------------------*/ 252 240 253 int main(int argc, char *argv[]) 241 254 { 242 printf(NAME ": HelenOS USB KBD driver.\n");255 printf(NAME ": HelenOS USB HID driver.\n"); 243 256 244 257 usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME); 245 258 246 return usb_driver_main(&usb _kbd_driver);259 return usb_driver_main(&usbhid_driver); 247 260 } 248 261 -
uspace/drv/usbkbd/usbkbd.ma
rf8e8738 ra82889e 1 10 usb&interface&class=HID&subclass=0x01&protocol=0x01 1 100 usb&interface&class=HID&subclass=0x01&protocol=0x01 2 10 usb&interface&class=HID -
uspace/lib/usb/include/usb/classes/hidparser.h
rf8e8738 ra82889e 88 88 /** */ 89 89 int depth; 90 uint8_t report_id;91 90 92 91 /** */ … … 156 155 /** */ 157 156 link_t feature; 158 159 int use_report_id;160 161 157 } usb_hid_report_parser_t; 162 158 … … 170 166 * @param arg Custom argument. 171 167 */ 172 void (*keyboard)(const uint8_t *key_codes, size_t count, const uint8_t report_id, void *arg);168 void (*keyboard)(const uint8_t *key_codes, size_t count, const uint8_t modifiers, void *arg); 173 169 } usb_hid_report_in_callbacks_t; 174 170 … … 273 269 274 270 /** */ 275 int usb_hid_report_path_set_report_id(usb_hid_report_path_t *usage_path, uint8_t report_id);276 277 /** */278 271 int usb_hid_report_path_append_item(usb_hid_report_path_t *usage_path, int32_t usage_page, int32_t usage); 279 272 -
uspace/lib/usb/src/hidparser.c
rf8e8738 ra82889e 106 106 list_initialize(&(parser->feature)); 107 107 108 parser->use_report_id = 0;109 108 return EOK; 110 109 } … … 187 186 tmp_usage_path = NULL; 188 187 189 usb_hid_report_path_set_report_id(report_item->usage_path, report_item->id);190 if(report_item->id != 0){191 parser->use_report_id = 1;192 }193 188 194 189 switch(tag) { … … 652 647 } 653 648 654 parser->use_report_id = 0;655 656 649 usb_hid_free_report_list(&parser->input); 657 650 usb_hid_free_report_list(&parser->output); … … 683 676 size_t i=0; 684 677 size_t j=0; 685 uint8_t report_id = 0;686 678 687 679 if(parser == NULL) { … … 694 686 if(!(keys = malloc(sizeof(uint8_t) * key_count))){ 695 687 return ENOMEM; 696 }697 698 if(parser->use_report_id != 0) {699 report_id = data[0];700 usb_hid_report_path_set_report_id(path, report_id);701 688 } 702 689 … … 706 693 707 694 item = list_get_instance(list_item, usb_hid_report_item_t, link); 708 709 695 if(!USB_HID_ITEM_FLAG_CONSTANT(item->item_flags) && 710 696 (usb_hid_report_compare_usage_path(item->usage_path, path, flags) == EOK)) { … … 729 715 } 730 716 731 callbacks->keyboard(keys, key_count, report_id, arg);717 callbacks->keyboard(keys, key_count, 0, arg); 732 718 733 719 free(keys); … … 753 739 int32_t mask; 754 740 const uint8_t *foo; 755 741 756 742 // now only common numbers llowed 757 743 if(item->size > 32) { … … 772 758 (usb_pow(10,(item->unit_exponent)))); 773 759 } 774 775 760 offset = item->offset + (j * item->size); 776 if(item->id != 0) {777 offset += 8;778 usb_log_debug("MOVED OFFSET BY 1Byte, REPORT_ID(%d)\n", item->id);779 }780 761 781 762 // FIXME … … 961 942 962 943 int only_page; 963 964 if(report_path->report_id != path->report_id) {965 return 1;966 }967 944 968 945 if(path->depth == 0){ … … 1061 1038 else { 1062 1039 path->depth = 0; 1063 path->report_id = 0;1064 1040 list_initialize(&path->link); 1065 1041 return path; … … 1179 1155 return 0; 1180 1156 } 1181 1157 1182 1158 item = parser->output.next; 1183 1159 while(&parser->output != item) { … … 1219 1195 int length; 1220 1196 int32_t tmp_value; 1221 size_t offset_prefix = 0;1222 1197 1223 1198 if(parser == NULL) { 1224 1199 return EINVAL; 1225 }1226 1227 if(parser->use_report_id != 0) {1228 buffer[0] = path->report_id;1229 offset_prefix = 8;1230 1200 } 1231 1201 … … 1248 1218 // // variable item 1249 1219 value = usb_hid_translate_data_reverse(report_item, data[idx++]); 1250 offset = report_item->offset + (i * report_item->size) + offset_prefix;1220 offset = report_item->offset + (i * report_item->size); 1251 1221 length = report_item->size; 1252 1222 } … … 1254 1224 //bitmap 1255 1225 value += usb_hid_translate_data_reverse(report_item, data[idx++]); 1256 offset = report_item->offset + offset_prefix;1226 offset = report_item->offset; 1257 1227 length = report_item->size * report_item->count; 1258 1228 } … … 1353 1323 1354 1324 1355 int usb_hid_report_path_set_report_id(usb_hid_report_path_t *path, uint8_t report_id)1356 {1357 if(path == NULL){1358 return EINVAL;1359 }1360 1361 path->report_id = report_id;1362 return EOK;1363 }1364 1365 1325 /** 1366 1326 * @} -
uspace/lib/usb/src/hidreport.c
rf8e8738 ra82889e 80 80 d = usb_dp_get_sibling_descriptor(&parser, &parser_data, 81 81 dev->descriptors.configuration, d); 82 ++i;83 82 } 84 83
Note:
See TracChangeset
for help on using the changeset viewer.