Re: [U-Boot] [PATCH] microblaze: Do not call timer init that early

2018-07-11 Thread Michal Simek
Hi Simon, On 11.7.2018 22:13, Simon Glass wrote: > Hi Michal, > > On 11 July 2018 at 08:32, Michal Simek wrote: >> Timer needs to be converted to DM but as of now it can't be called so >> early because intc controller is not ready. Call it later in board_r.c. >> Before this patch timer_init is c

Re: [U-Boot] [PATCH] microblaze: Do not call timer init that early

2018-07-11 Thread Simon Glass
Hi Michal, On 11 July 2018 at 08:32, Michal Simek wrote: > Timer needs to be converted to DM but as of now it can't be called so > early because intc controller is not ready. Call it later in board_r.c. > Before this patch timer_init is called twice which is wrong. > > Signed-off-by: Michal Simek

[U-Boot] [PATCH] microblaze: Do not call timer init that early

2018-07-11 Thread Michal Simek
Timer needs to be converted to DM but as of now it can't be called so early because intc controller is not ready. Call it later in board_r.c. Before this patch timer_init is called twice which is wrong. Signed-off-by: Michal Simek --- common/board_f.c | 2 +- 1 file changed, 1 insertion(+), 1 d