Re: [U-Boot] [PATCH v3 030/108] x86: Move CPU init to before spl_init()

2019-11-02 Thread Bin Meng
On Mon, Oct 28, 2019 at 3:52 PM Bin Meng wrote: > > On Mon, Oct 21, 2019 at 11:40 AM Simon Glass wrote: > > > > At present we call spl_init() before identifying the CPU. This is not a > > good idea - e.g. if bootstage is enabled then it will try to set up the > > timer which works better if the

Re: [U-Boot] [PATCH v3 030/108] x86: Move CPU init to before spl_init()

2019-10-28 Thread Bin Meng
On Mon, Oct 21, 2019 at 11:40 AM Simon Glass wrote: > > At present we call spl_init() before identifying the CPU. This is not a > good idea - e.g. if bootstage is enabled then it will try to set up the > timer which works better if the CPU is identified. > > Put explicit code at each entry

[U-Boot] [PATCH v3 030/108] x86: Move CPU init to before spl_init()

2019-10-20 Thread Simon Glass
At present we call spl_init() before identifying the CPU. This is not a good idea - e.g. if bootstage is enabled then it will try to set up the timer which works better if the CPU is identified. Put explicit code at each entry pointer to identify the CPU. Signed-off-by: Simon Glass --- Changes