mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 0/3] usb: Reduce USB scanning time
@ 2019-10-01  8:17 Primoz Fiser
  2019-10-01  8:17 ` [PATCH 1/3] usb: hub_port_reset(): Speedup hub reset handling Primoz Fiser
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Primoz Fiser @ 2019-10-01  8:17 UTC (permalink / raw)
  To: barebox

Hello, 

Recently we came across an embedded platform which has a very complex           
USB infrastructure. In total, 17 USB devices are connected over various         
USB hubs. Initial USB scanning on this platform takes an incredible             
amounts of time ~22 seconds. This huge delay is unacceptable if we are          
required to boot from USB and need to perform scanning on each boot-up.         
                                                                                
However this huge USB scanning delay is only apparent in Barebox as             
subsequent Linux drivers don't take as much time to enumerate the bus.          
Thus we decided to investigate and try to optimize USB scanning time as         
much as possible without loosing any functionality & retain stability.          
                                                                                
Code analysis of USB hub driver revealed many calls to mdelay(). Some of         
them unnecessary and some even longer than 1 second per port, statically           
placed without any checks if required at all. These delays significantly           
degrade USB scanning performance and must be reworked.                             
                                                                                   
Investigation lead us also to U-boot which was already tested by us on             
the same i.MX6 platform and didn't show such poor USB performance. We              
found out U-boot already implements quasi parallel USB scanning                    
strategy and thus we decided to port this functionality to Barebox.                
                                                                                   
We took great deal of ideas and code from U-boot patch series by Stefan            
Roese: https://lists.denx.de/pipermail/u-boot/2016-March/248493.html               
                                                                                   
Although we didn't achieve the same level of delay reduction as reported           
by Mr. Roese (28.4 to 1.8 seconds), USB scanning in our case now takes             
around 4.5 seconds (21.7 to 4.5 seconds) which is a significant                    
improvement!                                                                       
                                                                                   
We could take this patch series a step further by also porting patch 3/4           
"usb: Don't reset the USB hub a 2nd time" from U-boot. But according to            
comment in Barebox code: "This is a Windows scheme of initialization               
sequence, with double reset of the device (Linux uses the same                     
sequence)" we wanted to be safe and left the double device reset                   
functionality intact for the sake of retaining stability over speed                
performance.

All further details on changes are described in each patch description.

Best regards,
Primoz Fiser

Primoz Fiser (3):
  usb: hub_port_reset(): Speedup hub reset handling
  usb: usb_hub_port_connect_change(): Remove unnecessary delays
  usb: Change power-on / scanning timeout handling

 drivers/usb/core/hub.c | 184 +++++++++++++++++++++++++++++++++++------
 include/usb/usb.h      |   3 +
 2 files changed, 162 insertions(+), 25 deletions(-)

-- 
2.17.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-10-02  7:11 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-01  8:17 [PATCH 0/3] usb: Reduce USB scanning time Primoz Fiser
2019-10-01  8:17 ` [PATCH 1/3] usb: hub_port_reset(): Speedup hub reset handling Primoz Fiser
2019-10-01  8:17 ` [PATCH 2/3] usb: usb_hub_port_connect_change(): Remove unnecessary delays Primoz Fiser
2019-10-01  8:18 ` [PATCH 3/3] usb: Change power-on / scanning timeout handling Primoz Fiser
2019-10-02  7:11 ` [PATCH 0/3] usb: Reduce USB scanning time Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox