Changeset 2c5cefa in mainline for uspace/app


Ignore:
Timestamp:
2010-12-09T14:25:39Z (15 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
99ea659c
Parents:
f5e39475
Message:

Add retrieval of configuration descriptor

The `usbinfo' app displays configuration descriptor as well.

Location:
uspace/app/usbinfo
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/usbinfo/dump.c

    rf5e39475 r2c5cefa  
    4747
    4848#define INDENT "  "
     49#define BYTES_PER_LINE 12
    4950
    5051#define BCD_INT(a) (((unsigned int)(a)) / 256)
     
    5354#define BCD_FMT "%x.%x"
    5455#define BCD_ARGS(a) BCD_INT((a)), BCD_FRAC((a))
     56
     57void dump_buffer(const char *msg, const uint8_t *buffer, size_t length)
     58{
     59        printf("%s\n", msg);
     60
     61        size_t i;
     62        for (i = 0; i < length; i++) {
     63                printf("  0x%02X", buffer[i]);
     64                if (((i > 0) && (((i+1) % BYTES_PER_LINE) == 0))
     65                    || (i + 1 == length)) {
     66                        printf("\n");
     67                }
     68        }
     69}
    5570
    5671void dump_standard_device_descriptor(usb_standard_device_descriptor_t *d)
     
    7590}
    7691
     92void dump_standard_configuration_descriptor(
     93    int index, usb_standard_configuration_descriptor_t *d)
     94{
     95        bool self_powered = d->attributes & 64;
     96        bool remote_wakeup = d->attributes & 32;
     97       
     98        printf("Standard configuration descriptor #%d\n", index);
     99        printf(INDENT "bLength = %d\n", d->length);
     100        printf(INDENT "bDescriptorType = 0x%02x\n", d->descriptor_type);
     101        printf(INDENT "wTotalLength = %d\n", d->total_length);
     102        printf(INDENT "bNumInterfaces = %d\n", d->interface_count);
     103        printf(INDENT "bConfigurationValue = %d\n", d->configuration_number);
     104        printf(INDENT "iConfiguration = %d\n", d->str_configuration);
     105        printf(INDENT "bmAttributes = %d [%s%s%s]\n", d->attributes,
     106            self_powered ? "self-powered" : "",
     107            (self_powered & remote_wakeup) ? ", " : "",
     108            remote_wakeup ? "remote-wakeup" : "");
     109        printf(INDENT "MaxPower = %d (%dmA)\n", d->max_power,
     110            2 * d->max_power);
     111        // printf(INDENT " = %d\n", d->);
     112}
     113
     114
    77115/** @}
    78116 */
  • uspace/app/usbinfo/main.c

    rf5e39475 r2c5cefa  
    107107         */
    108108        usb_standard_device_descriptor_t device_descriptor;
    109         usb_dprintf("usbinfo", 1,
     109        usb_dprintf(NAME, 1,
    110110            "usb_drv_req_get_device_descriptor(%d, %d, %p)\n",
    111111            hc_phone, (int) address, &device_descriptor);
     
    121121        dump_standard_device_descriptor(&device_descriptor);
    122122
     123        /*
     124         * Get first configuration descriptor and dump it.
     125         */
     126        usb_standard_configuration_descriptor_t config_descriptor;
     127        int config_index = 0;
     128        usb_dprintf(NAME, 1,
     129            "usb_drv_req_get_bare_configuration_descriptor(%d, %d, %d, %p)\n",
     130            hc_phone, (int) address, config_index, &config_descriptor);
     131
     132        rc = usb_drv_req_get_bare_configuration_descriptor(hc_phone, address,
     133            config_index, &config_descriptor );
     134        if (rc != EOK) {
     135                fprintf(stderr,
     136                    NAME ": failed to fetch standard configuration descriptor: %s.\n",
     137                    str_error(rc));
     138                return rc;
     139        }
     140        dump_standard_configuration_descriptor(config_index,
     141            &config_descriptor);
     142
     143        void *full_config_descriptor = malloc(config_descriptor.total_length);
     144        usb_dprintf(NAME, 1,
     145            "usb_drv_req_get_full_configuration_descriptor(%d, %d, %d, %p, %zu)\n",
     146            hc_phone, (int) address, config_index,
     147            full_config_descriptor, config_descriptor.total_length);
     148
     149        rc = usb_drv_req_get_full_configuration_descriptor(hc_phone, address,
     150            config_index,
     151            full_config_descriptor, config_descriptor.total_length, NULL);
     152        if (rc != EOK) {
     153                fprintf(stderr,
     154                    NAME ": failed to fetch full configuration descriptor: %s.\n",
     155                    str_error(rc));
     156                return rc;
     157        }
     158        dump_buffer("Full configuration descriptor:",
     159            full_config_descriptor, config_descriptor.total_length);
    123160
    124161        return EOK;
  • uspace/app/usbinfo/usbinfo.h

    rf5e39475 r2c5cefa  
    4343#define NAME "usbinfo"
    4444
     45void dump_buffer(const char *, const uint8_t *, size_t);
    4546void dump_standard_device_descriptor(usb_standard_device_descriptor_t *);
     47void dump_standard_configuration_descriptor(int,
     48    usb_standard_configuration_descriptor_t *);
    4649
    4750#endif
Note: See TracChangeset for help on using the changeset viewer.