Changes in / [a82889e:f8e8738] in mainline


Ignore:
Files:
17 added
8 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/amd64/Makefile.inc

    ra82889e rf8e8738  
    5050        usbhub \
    5151        usbkbd \
     52        usbhid \
    5253        usbmid \
    5354        usbmouse \
  • uspace/Makefile

    ra82889e rf8e8738  
    123123                drv/usbflbk \
    124124                drv/usbkbd \
     125                drv/usbhid \
    125126                drv/usbhub \
    126127                drv/usbmid \
     
    143144                drv/usbflbk \
    144145                drv/usbkbd \
     146                drv/usbhid \
    145147                drv/usbhub \
    146148                drv/usbmid \
  • uspace/drv/usbkbd/kbddev.c

    ra82889e rf8e8738  
    265265static void usb_kbd_set_led(usb_kbd_t *kbd_dev)
    266266{
     267        if (kbd_dev->output_size == 0) {
     268                return;
     269        }
     270       
    267271        unsigned i = 0;
    268272       
     
    288292       
    289293        int rc = usb_hid_report_output_translate(kbd_dev->parser,
    290             kbd_dev->led_path, USB_HID_PATH_COMPARE_END, kbd_dev->output_buffer,
     294            kbd_dev->led_path,
     295            USB_HID_PATH_COMPARE_END | USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY,
     296            kbd_dev->output_buffer,
    291297            kbd_dev->output_size, kbd_dev->led_data, kbd_dev->led_output_size);
    292298       
     
    539545 *                  according to HID Usage Tables.
    540546 * @param count Number of key codes in report (size of the report).
    541  * @param modifiers Bitmap of modifiers (Ctrl, Alt, Shift, GUI).
     547 * @param report_id
    542548 * @param arg User-specified argument. Expects pointer to the keyboard device
    543549 *            structure representing the keyboard.
     
    546552 */
    547553static void usb_kbd_process_keycodes(const uint8_t *key_codes, size_t count,
    548     uint8_t modifiers, void *arg)
     554    uint8_t report_id, void *arg)
    549555{
    550556        if (arg == NULL) {
     
    557563        assert(kbd_dev != NULL);
    558564
    559         usb_log_debug("Got keys from parser: %s\n",
    560             usb_debug_str_buffer(key_codes, count, 0));
     565        usb_log_debug("Got keys from parser (report id: %u): %s\n",
     566            report_id, usb_debug_str_buffer(key_codes, count, 0));
    561567       
    562568        if (count != kbd_dev->key_count) {
     
    608614        usb_hid_report_path_t *path = usb_hid_report_path();
    609615        usb_hid_report_path_append_item(path, USB_HIDUT_PAGE_KEYBOARD, 0);
     616        usb_hid_report_path_set_report_id(path, 1);
    610617       
    611618        int rc = usb_hid_parse_report(kbd_dev->parser, buffer,
    612             actual_size, path, USB_HID_PATH_COMPARE_STRICT, callbacks, kbd_dev);
     619            actual_size, path,
     620            USB_HID_PATH_COMPARE_END | USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY,
     621            callbacks, kbd_dev);
    613622
    614623        usb_hid_report_path_free (path);
     
    758767        usb_hid_report_path_t *path = usb_hid_report_path();
    759768        usb_hid_report_path_append_item(path, USB_HIDUT_PAGE_KEYBOARD, 0);
     769       
     770        usb_hid_report_path_set_report_id(path, 1);
     771       
    760772        kbd_dev->key_count = usb_hid_report_input_length(
    761             kbd_dev->parser, path, USB_HID_PATH_COMPARE_STRICT);
     773            kbd_dev->parser, path,
     774            USB_HID_PATH_COMPARE_END | USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY);
    762775        usb_hid_report_path_free (path);
    763776       
     
    777790        kbd_dev->output_buffer = usb_hid_report_output(kbd_dev->parser,
    778791            &kbd_dev->output_size);
    779         if (kbd_dev->output_buffer == NULL) {
     792        if (kbd_dev->output_buffer == NULL && kbd_dev->output_size != 0) {
    780793                usb_log_warning("Error creating output report buffer.\n");
    781794                free(kbd_dev->keys);
     
    790803       
    791804        kbd_dev->led_output_size = usb_hid_report_output_size(kbd_dev->parser,
    792             kbd_dev->led_path, USB_HID_PATH_COMPARE_END);
     805            kbd_dev->led_path,
     806            USB_HID_PATH_COMPARE_END | USB_HID_PATH_COMPARE_USAGE_PAGE_ONLY);
    793807       
    794808        usb_log_debug("Output report size (in items): %zu\n",
  • uspace/drv/usbkbd/main.c

    ra82889e rf8e8738  
    3333/**
    3434 * @file
    35  * Main routines of USB HID driver.
     35 * Main routines of USB KBD driver.
    3636 */
    3737
     
    7575 * @sa usb_kbd_fibril(), usb_kbd_repeat_fibril()
    7676 */
    77 static int usbhid_try_add_device(usb_device_t *dev)
     77static int usb_kbd_try_add_device(usb_device_t *dev)
    7878{
    7979        /* Create the function exposed under /dev/devices. */
     
    105105                usb_kbd_free(&kbd_dev);
    106106                return rc;
    107         }       
     107        }
    108108       
    109109        usb_log_debug("USB/HID KBD device structure initialized.\n");
     
    195195 * @retval EREFUSED if the device is not supported.
    196196 */
    197 static int usbhid_add_device(usb_device_t *dev)
     197static int usb_kbd_add_device(usb_device_t *dev)
    198198{
    199         usb_log_debug("usbhid_add_device()\n");
     199        usb_log_debug("usb_kbd_add_device()\n");
    200200       
    201201        if (dev->interface_no < 0) {
    202202                usb_log_warning("Device is not a supported keyboard.\n");
    203                 usb_log_error("Failed to add HID device: endpoint not found."
    204                     "\n");
     203                usb_log_error("Failed to add USB KBD device: endpoint not "
     204                    "found.\n");
    205205                return ENOTSUP;
    206206        }
    207207       
    208         int rc = usbhid_try_add_device(dev);
     208        int rc = usb_kbd_try_add_device(dev);
    209209       
    210210        if (rc != EOK) {
    211211                usb_log_warning("Device is not a supported keyboard.\n");
    212                 usb_log_error("Failed to add HID device: %s.\n",
     212                usb_log_error("Failed to add KBD device: %s.\n",
    213213                    str_error(rc));
    214214                return rc;
     
    224224/* Currently, the framework supports only device adding. Once the framework
    225225 * supports unplug, more callbacks will be added. */
    226 static usb_driver_ops_t usbhid_driver_ops = {
    227         .add_device = usbhid_add_device,
     226static usb_driver_ops_t usb_kbd_driver_ops = {
     227        .add_device = usb_kbd_add_device,
    228228};
    229229
    230230
    231231/* The driver itself. */
    232 static usb_driver_t usbhid_driver = {
     232static usb_driver_t usb_kbd_driver = {
    233233        .name = NAME,
    234         .ops = &usbhid_driver_ops,
     234        .ops = &usb_kbd_driver_ops,
    235235        .endpoints = usb_kbd_endpoints
    236236};
     
    238238/*----------------------------------------------------------------------------*/
    239239
    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 
    253240int main(int argc, char *argv[])
    254241{
    255         printf(NAME ": HelenOS USB HID driver.\n");
     242        printf(NAME ": HelenOS USB KBD driver.\n");
    256243
    257244        usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME);
    258245
    259         return usb_driver_main(&usbhid_driver);
     246        return usb_driver_main(&usb_kbd_driver);
    260247}
    261248
  • uspace/drv/usbkbd/usbkbd.ma

    ra82889e rf8e8738  
    1 100 usb&interface&class=HID&subclass=0x01&protocol=0x01
    2 10 usb&interface&class=HID
     110 usb&interface&class=HID&subclass=0x01&protocol=0x01
  • uspace/lib/usb/include/usb/classes/hidparser.h

    ra82889e rf8e8738  
    8888        /** */ 
    8989        int depth;     
     90        uint8_t report_id;
    9091       
    9192        /** */ 
     
    155156        /** */ 
    156157        link_t feature;
     158       
     159        int use_report_id;
     160       
    157161} usb_hid_report_parser_t;     
    158162
     
    166170         * @param arg Custom argument.
    167171         */
    168         void (*keyboard)(const uint8_t *key_codes, size_t count, const uint8_t modifiers, void *arg);
     172        void (*keyboard)(const uint8_t *key_codes, size_t count, const uint8_t report_id, void *arg);
    169173} usb_hid_report_in_callbacks_t;
    170174
     
    269273
    270274/** */
     275int usb_hid_report_path_set_report_id(usb_hid_report_path_t *usage_path, uint8_t report_id);
     276
     277/** */
    271278int usb_hid_report_path_append_item(usb_hid_report_path_t *usage_path, int32_t usage_page, int32_t usage);
    272279
  • uspace/lib/usb/src/hidparser.c

    ra82889e rf8e8738  
    106106    list_initialize(&(parser->feature));
    107107
     108        parser->use_report_id = 0;
    108109    return EOK;   
    109110}
     
    186187                                        tmp_usage_path = NULL;
    187188
     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                                        }
    188193                                       
    189194                                        switch(tag) {
     
    647652        }
    648653
     654        parser->use_report_id = 0;
     655
    649656        usb_hid_free_report_list(&parser->input);
    650657        usb_hid_free_report_list(&parser->output);
     
    676683        size_t i=0;
    677684        size_t j=0;
     685        uint8_t report_id = 0;
    678686
    679687        if(parser == NULL) {
     
    686694        if(!(keys = malloc(sizeof(uint8_t) * key_count))){
    687695                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);
    688701        }
    689702
     
    693706
    694707                item = list_get_instance(list_item, usb_hid_report_item_t, link);
     708
    695709                if(!USB_HID_ITEM_FLAG_CONSTANT(item->item_flags) &&
    696710                   (usb_hid_report_compare_usage_path(item->usage_path, path, flags) == EOK)) {
     
    715729        }
    716730
    717         callbacks->keyboard(keys, key_count, 0, arg);
     731        callbacks->keyboard(keys, key_count, report_id, arg);
    718732           
    719733        free(keys);     
     
    739753        int32_t mask;
    740754        const uint8_t *foo;
    741        
     755
    742756        // now only common numbers llowed
    743757        if(item->size > 32) {
     
    758772                (usb_pow(10,(item->unit_exponent))));
    759773        }
     774
    760775        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        }
    761780       
    762781        // FIXME
     
    942961
    943962        int only_page;
     963
     964        if(report_path->report_id != path->report_id) {
     965                return 1;
     966        }
    944967
    945968        if(path->depth == 0){
     
    10381061        else {
    10391062                path->depth = 0;
     1063                path->report_id = 0;
    10401064                list_initialize(&path->link);
    10411065                return path;
     
    11551179                return 0;
    11561180        }
    1157        
     1181
    11581182        item = parser->output.next;
    11591183        while(&parser->output != item) {
     
    11951219        int length;
    11961220        int32_t tmp_value;
     1221        size_t offset_prefix = 0;
    11971222       
    11981223        if(parser == NULL) {
    11991224                return EINVAL;
     1225        }
     1226
     1227        if(parser->use_report_id != 0) {
     1228                buffer[0] = path->report_id;
     1229                offset_prefix = 8;
    12001230        }
    12011231
     
    12181248//                              // variable item
    12191249                                value = usb_hid_translate_data_reverse(report_item, data[idx++]);
    1220                                 offset = report_item->offset + (i * report_item->size);
     1250                                offset = report_item->offset + (i * report_item->size) + offset_prefix;
    12211251                                length = report_item->size;
    12221252                        }
     
    12241254                                //bitmap
    12251255                                value += usb_hid_translate_data_reverse(report_item, data[idx++]);
    1226                                 offset = report_item->offset;
     1256                                offset = report_item->offset + offset_prefix;
    12271257                                length = report_item->size * report_item->count;
    12281258                        }
     
    13231353
    13241354
     1355int 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
    13251365/**
    13261366 * @}
  • uspace/lib/usb/src/hidreport.c

    ra82889e rf8e8738  
    8080                d = usb_dp_get_sibling_descriptor(&parser, &parser_data,
    8181                    dev->descriptors.configuration, d);
     82                ++i;
    8283        }
    8384       
Note: See TracChangeset for help on using the changeset viewer.