Re: [PATCH 2/4] rockchip: veyron: move board_early_init_f to _r (after reloc)

2020-05-14 Thread Kever Yang
On 2020/5/14 上午3:15, Urja Rannikko wrote: Previously veyron_init() was called in board_init() context, which is called after relocation. Moving it to veyron.c used board_early_init_f which is called way earlier, and causes veyron_init to hang. Using board_early_init_r instead fixes this. Fixes

[PATCH 2/4] rockchip: veyron: move board_early_init_f to _r (after reloc)

2020-05-13 Thread Urja Rannikko
Previously veyron_init() was called in board_init() context, which is called after relocation. Moving it to veyron.c used board_early_init_f which is called way earlier, and causes veyron_init to hang. Using board_early_init_r instead fixes this. Fixes: b678f2790c ("rockchip: rk3288: Move veyron_i