more verbose diagnostics for USB device scan

This commit is contained in:
Markus Fröschle
2021-01-10 12:51:21 +01:00
parent f3d4bba977
commit 72011bb875

View File

@@ -188,7 +188,7 @@ int usb_init(int32_t handle, const struct pci_device_id *ent)
} }
} }
xprintf("Scanning bus for devices... "); xprintf("Scanning bus for devices...\r\n");
controller_priv[bus_index] = priv; controller_priv[bus_index] = priv;
controller_priv[bus_index]->usbnum = bus_index; controller_priv[bus_index]->usbnum = bus_index;
@@ -634,6 +634,7 @@ int usb_get_descriptor(struct usb_device *dev, unsigned char type, unsigned char
dbg("dev=%d type=%d, index=%d\r\n", dev->devnum, type, index); dbg("dev=%d type=%d, index=%d\r\n", dev->devnum, type, index);
res = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), res = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
USB_REQ_GET_DESCRIPTOR, USB_DIR_IN, (type << 8) + index, 0, buf, size, USB_CNTL_TIMEOUT); USB_REQ_GET_DESCRIPTOR, USB_DIR_IN, (type << 8) + index, 0, buf, size, USB_CNTL_TIMEOUT);
dbg("result=0x%x\r\n", res);
return res; return res;
} }
@@ -1056,7 +1057,7 @@ struct usb_device *usb_alloc_new_device(int bus, void *priv)
int index = dev_index[bus]; int index = dev_index[bus];
struct usb_device *dev; struct usb_device *dev;
dbg("USB %d new device %d\r\n", bus, index); dbg("USB bus %d new device %d\r\n", bus, index);
if (index >= USB_MAX_DEVICE) if (index >= USB_MAX_DEVICE)
{ {
dbg("ERROR, too many USB Devices, max=%d\r\n", USB_MAX_DEVICE); dbg("ERROR, too many USB Devices, max=%d\r\n", USB_MAX_DEVICE);
@@ -1118,7 +1119,6 @@ int usb_new_device(struct usb_device *dev)
return 1; return 1;
} }
//#define CONFIG_LEGACY_USB_INIT_SEQ
#ifdef CONFIG_LEGACY_USB_INIT_SEQ #ifdef CONFIG_LEGACY_USB_INIT_SEQ
/* /*
* this is the old and known way of initializing devices, it is * this is the old and known way of initializing devices, it is
@@ -1132,7 +1132,7 @@ int usb_new_device(struct usb_device *dev)
dev->epmaxpacketin[0] = 8; dev->epmaxpacketin[0] = 8;
dev->epmaxpacketout[0] = 8; dev->epmaxpacketout[0] = 8;
error = usb_get_descriptor(dev, USB_DT_DEVICE, 0, &dev->descriptor, 8); error = usb_get_descriptor(dev, USB_DT_DEVICE, 0, &dev->descriptor, 8);
if (err < 8) if (error < 8)
{ {
err("\r\nUSB device not responding, giving up (status=%lX)\r\n", dev->status); err("\r\nUSB device not responding, giving up (status=%lX)\r\n", dev->status);
driver_mem_free(tmpbuf); driver_mem_free(tmpbuf);
@@ -1286,8 +1286,8 @@ int usb_new_device(struct usb_device *dev)
{ {
usb_string(dev, dev->descriptor.iSerialNumber, dev->serial, sizeof(dev->serial)); usb_string(dev, dev->descriptor.iSerialNumber, dev->serial, sizeof(dev->serial));
} }
inf("Manufacturer %s\r\n", dev->mf); inf("Manufacturer %s, ", dev->mf);
inf("Product %s\r\n", dev->prod); inf("Product %s, ", dev->prod);
inf("SerialNumber %s\r\n", dev->serial); inf("SerialNumber %s\r\n", dev->serial);
/* now probe if the device is a hub */ /* now probe if the device is a hub */
@@ -1319,7 +1319,6 @@ void usb_scan_devices(void *priv)
dev = usb_alloc_new_device(bus_index, priv); dev = usb_alloc_new_device(bus_index, priv);
if (usb_new_device(dev)) if (usb_new_device(dev))
{ {
xprintf("No USB Device found\r\n");
if (dev != NULL) if (dev != NULL)
{ {
dev_index[bus_index]--; dev_index[bus_index]--;