| 1 | /*
|
|---|
| 2 | * Copyright (c) 2010 Vojtech Horky
|
|---|
| 3 | * All rights reserved.
|
|---|
| 4 | *
|
|---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
|---|
| 6 | * modification, are permitted provided that the following conditions
|
|---|
| 7 | * are met:
|
|---|
| 8 | *
|
|---|
| 9 | * - Redistributions of source code must retain the above copyright
|
|---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
|---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 13 | * documentation and/or other materials provided with the distribution.
|
|---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
|---|
| 15 | * derived from this software without specific prior written permission.
|
|---|
| 16 | *
|
|---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 27 | */
|
|---|
| 28 |
|
|---|
| 29 | /** @addtogroup usb
|
|---|
| 30 | * @{
|
|---|
| 31 | */
|
|---|
| 32 | /**
|
|---|
| 33 | * @file
|
|---|
| 34 | * @brief USB querying.
|
|---|
| 35 | */
|
|---|
| 36 |
|
|---|
| 37 | #include <stdio.h>
|
|---|
| 38 | #include <stdlib.h>
|
|---|
| 39 | #include <errno.h>
|
|---|
| 40 | #include <str_error.h>
|
|---|
| 41 | #include <bool.h>
|
|---|
| 42 |
|
|---|
| 43 | #include <usb/usb.h>
|
|---|
| 44 | #include <usb/descriptor.h>
|
|---|
| 45 |
|
|---|
| 46 | #include "usbinfo.h"
|
|---|
| 47 |
|
|---|
| 48 | #define INDENT " "
|
|---|
| 49 | #define BYTES_PER_LINE 12
|
|---|
| 50 |
|
|---|
| 51 | #define BCD_INT(a) (((unsigned int)(a)) / 256)
|
|---|
| 52 | #define BCD_FRAC(a) (((unsigned int)(a)) % 256)
|
|---|
| 53 |
|
|---|
| 54 | #define BCD_FMT "%x.%x"
|
|---|
| 55 | #define BCD_ARGS(a) BCD_INT((a)), BCD_FRAC((a))
|
|---|
| 56 |
|
|---|
| 57 | void 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 | }
|
|---|
| 70 |
|
|---|
| 71 | void dump_match_ids(match_id_list_t *matches)
|
|---|
| 72 | {
|
|---|
| 73 | printf("Match ids:\n");
|
|---|
| 74 | link_t *link;
|
|---|
| 75 | for (link = matches->ids.next;
|
|---|
| 76 | link != &matches->ids;
|
|---|
| 77 | link = link->next) {
|
|---|
| 78 | match_id_t *match = list_get_instance(link, match_id_t, link);
|
|---|
| 79 |
|
|---|
| 80 | printf(INDENT "%d %s\n", match->score, match->id);
|
|---|
| 81 | }
|
|---|
| 82 | }
|
|---|
| 83 |
|
|---|
| 84 | void dump_standard_device_descriptor(usb_standard_device_descriptor_t *d)
|
|---|
| 85 | {
|
|---|
| 86 | printf("Standard device descriptor:\n");
|
|---|
| 87 |
|
|---|
| 88 | printf(INDENT "bLength = %d\n", d->length);
|
|---|
| 89 | printf(INDENT "bDescriptorType = 0x%02x\n", d->descriptor_type);
|
|---|
| 90 | printf(INDENT "bcdUSB = %d (" BCD_FMT ")\n", d->usb_spec_version,
|
|---|
| 91 | BCD_ARGS(d->usb_spec_version));
|
|---|
| 92 | printf(INDENT "bDeviceClass = 0x%02x\n", d->device_class);
|
|---|
| 93 | printf(INDENT "bDeviceSubClass = 0x%02x\n", d->device_subclass);
|
|---|
| 94 | printf(INDENT "bDeviceProtocol = 0x%02x\n", d->device_protocol);
|
|---|
| 95 | printf(INDENT "bMaxPacketSize0 = %d\n", d->max_packet_size);
|
|---|
| 96 | printf(INDENT "idVendor = %d\n", d->vendor_id);
|
|---|
| 97 | printf(INDENT "idProduct = %d\n", d->product_id);
|
|---|
| 98 | printf(INDENT "bcdDevice = %d\n", d->device_version);
|
|---|
| 99 | printf(INDENT "iManufacturer = %d\n", d->str_manufacturer);
|
|---|
| 100 | printf(INDENT "iProduct = %d\n", d->str_product);
|
|---|
| 101 | printf(INDENT "iSerialNumber = %d\n", d->str_serial_number);
|
|---|
| 102 | printf(INDENT "bNumConfigurations = %d\n", d->configuration_count);
|
|---|
| 103 | }
|
|---|
| 104 |
|
|---|
| 105 | void dump_standard_configuration_descriptor(
|
|---|
| 106 | int index, usb_standard_configuration_descriptor_t *d)
|
|---|
| 107 | {
|
|---|
| 108 | bool self_powered = d->attributes & 64;
|
|---|
| 109 | bool remote_wakeup = d->attributes & 32;
|
|---|
| 110 |
|
|---|
| 111 | printf("Standard configuration descriptor #%d\n", index);
|
|---|
| 112 | printf(INDENT "bLength = %d\n", d->length);
|
|---|
| 113 | printf(INDENT "bDescriptorType = 0x%02x\n", d->descriptor_type);
|
|---|
| 114 | printf(INDENT "wTotalLength = %d\n", d->total_length);
|
|---|
| 115 | printf(INDENT "bNumInterfaces = %d\n", d->interface_count);
|
|---|
| 116 | printf(INDENT "bConfigurationValue = %d\n", d->configuration_number);
|
|---|
| 117 | printf(INDENT "iConfiguration = %d\n", d->str_configuration);
|
|---|
| 118 | printf(INDENT "bmAttributes = %d [%s%s%s]\n", d->attributes,
|
|---|
| 119 | self_powered ? "self-powered" : "",
|
|---|
| 120 | (self_powered & remote_wakeup) ? ", " : "",
|
|---|
| 121 | remote_wakeup ? "remote-wakeup" : "");
|
|---|
| 122 | printf(INDENT "MaxPower = %d (%dmA)\n", d->max_power,
|
|---|
| 123 | 2 * d->max_power);
|
|---|
| 124 | // printf(INDENT " = %d\n", d->);
|
|---|
| 125 | }
|
|---|
| 126 |
|
|---|
| 127 |
|
|---|
| 128 | /** @}
|
|---|
| 129 | */
|
|---|