Changeset 2c5cefa in mainline for uspace/app
- Timestamp:
- 2010-12-09T14:25:39Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 99ea659c
- Parents:
- f5e39475
- Location:
- uspace/app/usbinfo
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/usbinfo/dump.c
rf5e39475 r2c5cefa 47 47 48 48 #define INDENT " " 49 #define BYTES_PER_LINE 12 49 50 50 51 #define BCD_INT(a) (((unsigned int)(a)) / 256) … … 53 54 #define BCD_FMT "%x.%x" 54 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 } 55 70 56 71 void dump_standard_device_descriptor(usb_standard_device_descriptor_t *d) … … 75 90 } 76 91 92 void 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 77 115 /** @} 78 116 */ -
uspace/app/usbinfo/main.c
rf5e39475 r2c5cefa 107 107 */ 108 108 usb_standard_device_descriptor_t device_descriptor; 109 usb_dprintf( "usbinfo", 1,109 usb_dprintf(NAME, 1, 110 110 "usb_drv_req_get_device_descriptor(%d, %d, %p)\n", 111 111 hc_phone, (int) address, &device_descriptor); … … 121 121 dump_standard_device_descriptor(&device_descriptor); 122 122 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); 123 160 124 161 return EOK; -
uspace/app/usbinfo/usbinfo.h
rf5e39475 r2c5cefa 43 43 #define NAME "usbinfo" 44 44 45 void dump_buffer(const char *, const uint8_t *, size_t); 45 46 void dump_standard_device_descriptor(usb_standard_device_descriptor_t *); 47 void dump_standard_configuration_descriptor(int, 48 usb_standard_configuration_descriptor_t *); 46 49 47 50 #endif
Note:
See TracChangeset
for help on using the changeset viewer.
