mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
clk: rk3399: Set empty for vopl assigned-clocks
During vidconsole probe, the device probe will try to check whether the assigned clocks on that video console node is initialized or not? and return an error if not. But, unlike Linux U-Boot won't require to handle these vopl assigned-clocks since core clocks are enough to handle the video out to process. So, mark them as empty in set_rate to satisfy clk_set_defaults so-that probe happened properly. Signed-off-by: Jagan Teki <jagan@amarulasolutions.com> Reviewed-by: Kever Yang <kever.yang@rock-chips.com> Tested-by: Peter Robinson <pbrobinson@gmail.com>
This commit is contained in:
parent
e0718b3ab7
commit
b1bcd61665
1 changed files with 7 additions and 0 deletions
|
@ -994,6 +994,13 @@ static ulong rk3399_clk_set_rate(struct clk *clk, ulong rate)
|
|||
case DCLK_VOP1:
|
||||
ret = rk3399_vop_set_clk(priv->cru, clk->id, rate);
|
||||
break;
|
||||
case ACLK_VOP1:
|
||||
case HCLK_VOP1:
|
||||
/**
|
||||
* assigned-clocks handling won't require for vopl, so
|
||||
* return 0 to satisfy clk_set_defaults during device probe.
|
||||
*/
|
||||
return 0;
|
||||
case SCLK_DDRCLK:
|
||||
ret = rk3399_ddr_set_clk(priv->cru, rate);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue