| 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 |
|
|---|
| 50 | #define BCD_INT(a) (((unsigned int)(a)) / 256)
|
|---|
| 51 | #define BCD_FRAC(a) (((unsigned int)(a)) % 256)
|
|---|
| 52 |
|
|---|
| 53 | #define BCD_FMT "%x.%x"
|
|---|
| 54 | #define BCD_ARGS(a) BCD_INT((a)), BCD_FRAC((a))
|
|---|
| 55 |
|
|---|
| 56 | void dump_standard_device_descriptor(usb_standard_device_descriptor_t *d)
|
|---|
| 57 | {
|
|---|
| 58 | printf("Standard device descriptor:\n");
|
|---|
| 59 |
|
|---|
| 60 | printf(INDENT "bLength = %d\n", d->length);
|
|---|
| 61 | printf(INDENT "bDescriptorType = 0x%02x\n", d->descriptor_type);
|
|---|
| 62 | printf(INDENT "bcdUSB = %d (" BCD_FMT ")\n", d->usb_spec_version,
|
|---|
| 63 | BCD_ARGS(d->usb_spec_version));
|
|---|
| 64 | printf(INDENT "bDeviceClass = 0x%02x\n", d->device_class);
|
|---|
| 65 | printf(INDENT "bDeviceSubClass = 0x%02x\n", d->device_subclass);
|
|---|
| 66 | printf(INDENT "bDeviceProtocol = 0x%02x\n", d->device_protocol);
|
|---|
| 67 | printf(INDENT "bMaxPacketSize0 = %d\n", d->max_packet_size);
|
|---|
| 68 | printf(INDENT "idVendor = %d\n", d->vendor_id);
|
|---|
| 69 | printf(INDENT "idProduct = %d\n", d->product_id);
|
|---|
| 70 | printf(INDENT "bcdDevice = %d\n", d->device_version);
|
|---|
| 71 | printf(INDENT "iManufacturer = %d\n", d->str_manufacturer);
|
|---|
| 72 | printf(INDENT "iProduct = %d\n", d->str_product);
|
|---|
| 73 | printf(INDENT "iSerialNumber = %d\n", d->str_serial_number);
|
|---|
| 74 | printf(INDENT "bNumConfigurations = %d\n", d->configuration_count);
|
|---|
| 75 | }
|
|---|
| 76 |
|
|---|
| 77 | /** @}
|
|---|
| 78 | */
|
|---|