Re: [U-Boot] [PATCH v3 008/108] dm: pci: Delay auto-config until after relocation

2019-10-27 Thread Bin Meng
Hi Simon, On Mon, Oct 21, 2019 at 11:33 AM Simon Glass wrote: > > At present PCI auto-configuration happens in U-Boot both before and after > relocation. This is a waste of time and may mess up static addresses used > in board_init_f(). Adjust the code to do auto-configuration once, after >

[U-Boot] [PATCH v3 008/108] dm: pci: Delay auto-config until after relocation

2019-10-20 Thread Simon Glass
At present PCI auto-configuration happens in U-Boot both before and after relocation. This is a waste of time and may mess up static addresses used in board_init_f(). Adjust the code to do auto-configuration once, after relocation. Signed-off-by: Simon Glass --- Changes in v3: None Changes in