mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-19 09:04:51 +08:00
c0daa3e6f5
Remove the composite clock registration function and helpers. Replace unnecessary configuration struct with static initialization of the desired clock type. To preserve git bisect this patch also flips the switch and starts using of_clk_add_hw_provider instead of the deprecated meson_clk_register_clks method. As a byproduct clk.c can be deleted. Tested-by: Kevin Hilman <khilman@baylibre.com> Signed-off-by: Michael Turquette <mturquette@baylibre.com>
28 lines
566 B
C
28 lines
566 B
C
/*
|
|
* Meson8b clock tree IDs
|
|
*/
|
|
|
|
#ifndef __MESON8B_CLKC_H
|
|
#define __MESON8B_CLKC_H
|
|
|
|
#define CLKID_UNUSED 0
|
|
#define CLKID_XTAL 1
|
|
#define CLKID_PLL_FIXED 2
|
|
#define CLKID_PLL_VID 3
|
|
#define CLKID_PLL_SYS 4
|
|
#define CLKID_FCLK_DIV2 5
|
|
#define CLKID_FCLK_DIV3 6
|
|
#define CLKID_FCLK_DIV4 7
|
|
#define CLKID_FCLK_DIV5 8
|
|
#define CLKID_FCLK_DIV7 9
|
|
#define CLKID_CLK81 10
|
|
#define CLKID_MALI 11
|
|
#define CLKID_CPUCLK 12
|
|
#define CLKID_ZERO 13
|
|
#define CLKID_MPEG_SEL 14
|
|
#define CLKID_MPEG_DIV 15
|
|
|
|
#define CLK_NR_CLKS (CLKID_MPEG_DIV + 1)
|
|
|
|
#endif /* __MESON8B_CLKC_H */
|