Changes in / [a1d12f4:290ea09] in mainline
- Location:
- uspace
- Files:
-
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/usbinfo/dump.c
ra1d12f4 r290ea09 43 43 #include <usb/usb.h> 44 44 #include <usb/descriptor.h> 45 #include <usb/debug.h>46 45 #include <usb/classes/classes.h> 47 46 … … 50 49 51 50 #define INDENT " " 51 #define PRINTLINE(indent, fmt, ...) printf("%s - " fmt, get_indent(indent), __VA_ARGS__) 52 52 #define BYTES_PER_LINE 12 53 53 54 #define BCD_INT(a) (((unsigned int)(a)) / 256) 55 #define BCD_FRAC(a) (((unsigned int)(a)) % 256) 56 57 #define BCD_FMT "%x.%x" 58 #define BCD_ARGS(a) BCD_INT((a)), BCD_FRAC((a)) 59 60 static void dump_descriptor_by_type(size_t, uint8_t *, size_t); 61 62 typedef struct { 63 int descriptor; 64 void (*dump)(size_t indent, uint8_t *descriptor, size_t length); 65 } descriptor_dump_t; 66 67 static void dump_descriptor_device(size_t, uint8_t *, size_t); 68 static void dump_descriptor_configuration(size_t, uint8_t *, size_t); 69 static void dump_descriptor_interface(size_t, uint8_t *, size_t); 70 static void dump_descriptor_string(size_t, uint8_t *, size_t); 71 static void dump_descriptor_endpoint(size_t, uint8_t *, size_t); 72 static void dump_descriptor_hid(size_t, uint8_t *, size_t); 73 static void dump_descriptor_hub(size_t, uint8_t *, size_t); 74 static void dump_descriptor_generic(size_t, uint8_t *, size_t); 75 76 static descriptor_dump_t descriptor_dumpers[] = { 77 { USB_DESCTYPE_DEVICE, dump_descriptor_device }, 78 { USB_DESCTYPE_CONFIGURATION, dump_descriptor_configuration }, 79 { USB_DESCTYPE_STRING, dump_descriptor_string }, 80 { USB_DESCTYPE_INTERFACE, dump_descriptor_interface }, 81 { USB_DESCTYPE_ENDPOINT, dump_descriptor_endpoint }, 82 { USB_DESCTYPE_HID, dump_descriptor_hid }, 83 { USB_DESCTYPE_HUB, dump_descriptor_hub }, 84 { -1, dump_descriptor_generic }, 85 { -1, NULL } 86 }; 54 87 55 88 static const char *get_indent(size_t level) … … 94 127 } 95 128 129 void dump_descriptor_by_type(size_t indent, uint8_t *d, size_t length) 130 { 131 if (length < 2) { 132 return; 133 } 134 int type = d[1]; 135 136 descriptor_dump_t *dumper = descriptor_dumpers; 137 while (dumper->dump != NULL) { 138 if ((dumper->descriptor == type) || (dumper->descriptor < 0)) { 139 dumper->dump(indent, d, length); 140 return; 141 } 142 dumper++; 143 } 144 } 145 96 146 void dump_usb_descriptor(uint8_t *descriptor, size_t size) 97 147 { 98 usb_dump_standard_descriptor(stdout, get_indent(0), "\n", 99 descriptor, size); 100 } 148 dump_descriptor_by_type(0, descriptor, size); 149 } 150 151 void dump_descriptor_device(size_t indent, uint8_t *descr, size_t size) 152 { 153 usb_standard_device_descriptor_t *d 154 = (usb_standard_device_descriptor_t *) descr; 155 if (size != sizeof(*d)) { 156 return; 157 } 158 159 PRINTLINE(indent, "bLength = %d\n", d->length); 160 PRINTLINE(indent, "bDescriptorType = 0x%02x\n", d->descriptor_type); 161 PRINTLINE(indent, "bcdUSB = %d (" BCD_FMT ")\n", d->usb_spec_version, 162 BCD_ARGS(d->usb_spec_version)); 163 PRINTLINE(indent, "bDeviceClass = 0x%02x\n", d->device_class); 164 PRINTLINE(indent, "bDeviceSubClass = 0x%02x\n", d->device_subclass); 165 PRINTLINE(indent, "bDeviceProtocol = 0x%02x\n", d->device_protocol); 166 PRINTLINE(indent, "bMaxPacketSize0 = %d\n", d->max_packet_size); 167 PRINTLINE(indent, "idVendor = %d\n", d->vendor_id); 168 PRINTLINE(indent, "idProduct = %d\n", d->product_id); 169 PRINTLINE(indent, "bcdDevice = %d\n", d->device_version); 170 PRINTLINE(indent, "iManufacturer = %d\n", d->str_manufacturer); 171 PRINTLINE(indent, "iProduct = %d\n", d->str_product); 172 PRINTLINE(indent, "iSerialNumber = %d\n", d->str_serial_number); 173 PRINTLINE(indent, "bNumConfigurations = %d\n", d->configuration_count); 174 } 175 176 void dump_descriptor_configuration(size_t indent, uint8_t *descr, size_t size) 177 { 178 usb_standard_configuration_descriptor_t *d 179 = (usb_standard_configuration_descriptor_t *) descr; 180 if (size != sizeof(*d)) { 181 return; 182 } 183 184 bool self_powered = d->attributes & 64; 185 bool remote_wakeup = d->attributes & 32; 186 187 PRINTLINE(indent, "bLength = %d\n", d->length); 188 PRINTLINE(indent, "bDescriptorType = 0x%02x\n", d->descriptor_type); 189 PRINTLINE(indent, "wTotalLength = %d\n", d->total_length); 190 PRINTLINE(indent, "bNumInterfaces = %d\n", d->interface_count); 191 PRINTLINE(indent, "bConfigurationValue = %d\n", d->configuration_number); 192 PRINTLINE(indent, "iConfiguration = %d\n", d->str_configuration); 193 PRINTLINE(indent, "bmAttributes = %d [%s%s%s]\n", d->attributes, 194 self_powered ? "self-powered" : "", 195 (self_powered & remote_wakeup) ? ", " : "", 196 remote_wakeup ? "remote-wakeup" : ""); 197 PRINTLINE(indent, "MaxPower = %d (%dmA)\n", d->max_power, 198 2 * d->max_power); 199 } 200 201 void dump_descriptor_interface(size_t indent, uint8_t *descr, size_t size) 202 { 203 usb_standard_interface_descriptor_t *d 204 = (usb_standard_interface_descriptor_t *) descr; 205 if (size != sizeof(*d)) { 206 return; 207 } 208 209 PRINTLINE(indent, "bLength = %d\n", d->length); 210 PRINTLINE(indent, "bDescriptorType = 0x%02x\n", d->descriptor_type); 211 PRINTLINE(indent, "bInterfaceNumber = %d\n", d->interface_number); 212 PRINTLINE(indent, "bAlternateSetting = %d\n", d->alternate_setting); 213 PRINTLINE(indent, "bNumEndpoints = %d\n", d->endpoint_count); 214 PRINTLINE(indent, "bInterfaceClass = %s\n", d->interface_class == 0 215 ? "reserved (0)" : usb_str_class(d->interface_class)); 216 PRINTLINE(indent, "bInterfaceSubClass = %d\n", d->interface_subclass); 217 PRINTLINE(indent, "bInterfaceProtocol = %d\n", d->interface_protocol); 218 PRINTLINE(indent, "iInterface = %d\n", d->str_interface); 219 } 220 221 void dump_descriptor_string(size_t indent, uint8_t *descr, size_t size) 222 { 223 dump_descriptor_generic(indent, descr, size); 224 } 225 226 void dump_descriptor_endpoint(size_t indent, uint8_t *descr, size_t size) 227 { 228 usb_standard_endpoint_descriptor_t *d 229 = (usb_standard_endpoint_descriptor_t *) descr; 230 if (size != sizeof(*d)) { 231 return; 232 } 233 234 int endpoint = d->endpoint_address & 15; 235 usb_direction_t direction = d->endpoint_address & 128 236 ? USB_DIRECTION_IN : USB_DIRECTION_OUT; 237 238 PRINTLINE(indent, "bLength = %d\n", d->length); 239 PRINTLINE(indent, "bDescriptorType = 0x%02X\n", d->descriptor_type); 240 PRINTLINE(indent, "bEndpointAddress = 0x%02X [%d, %s]\n", 241 d->endpoint_address, endpoint, 242 direction == USB_DIRECTION_IN ? "in" : "out"); 243 PRINTLINE(indent, "bmAttributes = %d\n", d->attributes); 244 PRINTLINE(indent, "wMaxPacketSize = %d\n", d->max_packet_size); 245 PRINTLINE(indent, "bInterval = %dms\n", d->poll_interval); 246 } 247 248 void dump_descriptor_hid(size_t indent, uint8_t *descr, size_t size) 249 { 250 dump_descriptor_generic(indent, descr, size); 251 } 252 253 void dump_descriptor_hub(size_t indent, uint8_t *descr, size_t size) 254 { 255 dump_descriptor_generic(indent, descr, size); 256 } 257 258 void dump_descriptor_generic(size_t indent, uint8_t *descr, size_t size) 259 { 260 dump_buffer(NULL, indent, descr, size); 261 } 262 101 263 102 264 void dump_match_ids(match_id_list_t *matches) … … 135 297 } 136 298 printf("%s%s (0x%02X):\n", get_indent(depth), name, type); 137 usb_dump_standard_descriptor(stdout, get_indent(depth), "\n",138 descriptor, descriptor[0]);299 dump_descriptor_by_type(depth, descriptor, descriptor[0]); 300 139 301 } 140 302 -
uspace/drv/usbkbd/descparser.c
ra1d12f4 r290ea09 187 187 case USB_DESCTYPE_HID: 188 188 if (desc_size < sizeof(usb_standard_hid_descriptor_t)) { 189 printf("Wrong size of descriptor: %d (should be % zu)\n",189 printf("Wrong size of descriptor: %d (should be %d)\n", 190 190 desc_size, sizeof(usb_standard_hid_descriptor_t)); 191 191 ret = EINVAL; -
uspace/lib/usb/Makefile
ra1d12f4 r290ea09 38 38 src/dp.c \ 39 39 src/drvpsync.c \ 40 src/dump.c \41 40 src/hcdhubd.c \ 42 41 src/hcdrv.c \ -
uspace/lib/usb/include/usb/debug.h
ra1d12f4 r290ea09 35 35 #ifndef LIBUSB_DEBUG_H_ 36 36 #define LIBUSB_DEBUG_H_ 37 #include <stdio.h>38 #include <usb/usb.h>39 37 40 38 void usb_dprintf(const char *tag, int level, const char *format, ...); 41 39 void usb_dprintf_enable(const char *tag, int level); 42 40 43 void usb_dump_standard_descriptor(FILE *, const char *, const char *,44 const uint8_t *, size_t);45 41 46 42 #endif
Note:
See TracChangeset
for help on using the changeset viewer.