source: mainline/uspace/app/usbinfo/dump.c@ 2c5cefa

lfn serial ticket/834-toolchain-update topic/fix-logger-deadlock topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 2c5cefa was 2c5cefa, checked in by Vojtech Horky <vojtechhorky@…>, 15 years ago

Add retrieval of configuration descriptor

The `usbinfo' app displays configuration descriptor as well.

  • Property mode set to 100644
File size: 4.0 KB
Line 
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
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}
70
71void dump_standard_device_descriptor(usb_standard_device_descriptor_t *d)
72{
73 printf("Standard device descriptor:\n");
74
75 printf(INDENT "bLength = %d\n", d->length);
76 printf(INDENT "bDescriptorType = 0x%02x\n", d->descriptor_type);
77 printf(INDENT "bcdUSB = %d (" BCD_FMT ")\n", d->usb_spec_version,
78 BCD_ARGS(d->usb_spec_version));
79 printf(INDENT "bDeviceClass = 0x%02x\n", d->device_class);
80 printf(INDENT "bDeviceSubClass = 0x%02x\n", d->device_subclass);
81 printf(INDENT "bDeviceProtocol = 0x%02x\n", d->device_protocol);
82 printf(INDENT "bMaxPacketSize0 = %d\n", d->max_packet_size);
83 printf(INDENT "idVendor = %d\n", d->vendor_id);
84 printf(INDENT "idProduct = %d\n", d->product_id);
85 printf(INDENT "bcdDevice = %d\n", d->device_version);
86 printf(INDENT "iManufacturer = %d\n", d->str_manufacturer);
87 printf(INDENT "iProduct = %d\n", d->str_product);
88 printf(INDENT "iSerialNumber = %d\n", d->str_serial_number);
89 printf(INDENT "bNumConfigurations = %d\n", d->configuration_count);
90}
91
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
115/** @}
116 */
Note: See TracBrowser for help on using the repository browser.