Hi:
Thank you for your reply. However, the same U disk is normal on the 8mplus platform. Once it is on the ls1028 platform, the above error will occur accidentally.In addition, I checked the kernel code and found that each time the above error occurs, the following code will be executed to turn off/on the port power. Is it caused by the following code?
drivers/usb/core/hub.c:
/* When halfway through our retry count, power-cycle the port */
if (i == (SET_CONFIG_TRIES / 2) - 1) {
dev_info(&port_dev->dev, "attempt power cycle\n");
usb_hub_set_port_power(hdev, hub, port1, false);
msleep(2 * hub_power_on_good_delay(hub));
usb_hub_set_port_power(hdev, hub, port1, true);
msleep(hub_power_on_good_delay(hub));
}