Home
last modified time | relevance | path

Searched refs:soc_clk_ctl (Results 1 – 3 of 3) sorted by relevance

/openbmc/u-boot/board/synopsys/hsdk/
H A Dhsdk.c566 soc_clk_ctl("cpu-clk", &rate, CLK_ON | CLK_SET | CLK_MHZ); in setup_clocks()
573 soc_clk_ctl("tun-clk", &rate, CLK_ON | CLK_SET | CLK_MHZ); in setup_clocks()
575 soc_clk_ctl("tun-clk", NULL, CLK_OFF); in setup_clocks()
580 soc_clk_ctl("axi-clk", &rate, CLK_SET | CLK_ON | CLK_MHZ); in setup_clocks()
853 if (soc_clk_ctl("cpu-clk", &rate, CLK_GET | CLK_MHZ)) in do_hsdk_clock_get()
859 if (soc_clk_ctl("tun-clk", &rate, CLK_GET | CLK_MHZ)) in do_hsdk_clock_get()
865 if (soc_clk_ctl("axi-clk", &rate, CLK_GET | CLK_MHZ)) in do_hsdk_clock_get()
880 soc_clk_ctl("cpu-clk", NULL, CLK_PRINT | CLK_MHZ); in do_hsdk_clock_print()
881 soc_clk_ctl("tun-clk", NULL, CLK_PRINT | CLK_MHZ); in do_hsdk_clock_print()
882 soc_clk_ctl("axi-clk", NULL, CLK_PRINT | CLK_MHZ); in do_hsdk_clock_print()
[all …]
H A Dclk-lib.h35 int soc_clk_ctl(const char *name, ulong *rate, enum clk_ctl_ops ctl);
H A Dclk-lib.c15 int soc_clk_ctl(const char *name, ulong *rate, enum clk_ctl_ops ctl) in soc_clk_ctl() function