Re: [U-Boot] [PATCH v2 01/51] dm: timer: Correct timer init ordering after relocation

2016-03-13 Thread Bin Meng
On Mon, Mar 14, 2016 at 12:08 PM, Bin Meng wrote: > On Sat, Mar 12, 2016 at 1:06 PM, Simon Glass wrote: >> Commit 1057e6c broke use of the timer with driver model. If the timer is used >> before relocation, then it becomes broken after relocation. This prevents >> some x86 boards from booting. Fi

Re: [U-Boot] [PATCH v2 01/51] dm: timer: Correct timer init ordering after relocation

2016-03-13 Thread Bin Meng
On Sat, Mar 12, 2016 at 1:06 PM, Simon Glass wrote: > Commit 1057e6c broke use of the timer with driver model. If the timer is used > before relocation, then it becomes broken after relocation. This prevents > some x86 boards from booting. Fix it. > > Fixes: 1057e6c (timer: Set up the real timer a

[U-Boot] [PATCH v2 01/51] dm: timer: Correct timer init ordering after relocation

2016-03-11 Thread Simon Glass
Commit 1057e6c broke use of the timer with driver model. If the timer is used before relocation, then it becomes broken after relocation. This prevents some x86 boards from booting. Fix it. Fixes: 1057e6c (timer: Set up the real timer after driver model is available) Signed-off-by: Simon Glass -