Re: [U-Boot] [PATCH 3/4] rockchip: Use rockchip_get_clk() to obtain the SoC clock

2016-07-18 Thread Simon Glass
On 17 July 2016 at 16:17, Anatolij Gustschin wrote: > On Sun, 17 Jul 2016 15:23:17 -0600 > Simon Glass s...@chromium.org wrote: > >> The current code picks the first available clock. In U-Boot proper this is >> the oscillator device, not the SoC clock device. As a result the HDMI display >> does n

Re: [U-Boot] [PATCH 3/4] rockchip: Use rockchip_get_clk() to obtain the SoC clock

2016-07-17 Thread Anatolij Gustschin
On Sun, 17 Jul 2016 15:23:17 -0600 Simon Glass s...@chromium.org wrote: > The current code picks the first available clock. In U-Boot proper this is > the oscillator device, not the SoC clock device. As a result the HDMI display > does not work. > > Fix this by calling rockchip_get_clk() instead.

[U-Boot] [PATCH 3/4] rockchip: Use rockchip_get_clk() to obtain the SoC clock

2016-07-17 Thread Simon Glass
The current code picks the first available clock. In U-Boot proper this is the oscillator device, not the SoC clock device. As a result the HDMI display does not work. Fix this by calling rockchip_get_clk() instead. Fixes: 135aa950 (clk: convert API to match reset/mailbox style) Signed-off-by: Si