]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/mach-keystone/include/mach/clock.h
ARM: keystone2: Cleanup init_pll definition
[karo-tx-uboot.git] / arch / arm / mach-keystone / include / mach / clock.h
1 /*
2  * keystone2: common clock header file
3  *
4  * (C) Copyright 2012-2014
5  *     Texas Instruments Incorporated, <www.ti.com>
6  *
7  * SPDX-License-Identifier:     GPL-2.0+
8  */
9
10 #ifndef __ASM_ARCH_CLOCK_H
11 #define __ASM_ARCH_CLOCK_H
12
13 #ifndef __ASSEMBLY__
14
15 #ifdef CONFIG_SOC_K2HK
16 #include <asm/arch/clock-k2hk.h>
17 #endif
18
19 #ifdef CONFIG_SOC_K2E
20 #include <asm/arch/clock-k2e.h>
21 #endif
22
23 #ifdef CONFIG_SOC_K2L
24 #include <asm/arch/clock-k2l.h>
25 #endif
26
27 #define CORE_PLL MAIN_PLL
28 #define DDR3_PLL DDR3A_PLL
29
30 #include <asm/types.h>
31
32 #define GENERATE_ENUM(NUM, ENUM) ENUM = NUM,
33 #define GENERATE_INDX_STR(NUM, STRING) #NUM"\t- "#STRING"\n"
34 #define CLOCK_INDEXES_LIST      CLK_LIST(GENERATE_INDX_STR)
35
36 enum {
37         SPD800,
38         SPD850,
39         SPD1000,
40         SPD1200,
41         SPD1250,
42         SPD1350,
43         SPD1400,
44         SPD1500,
45         NUM_SPDS,
46 };
47
48 /* PLL identifiers */
49 enum {
50         MAIN_PLL,
51         TETRIS_PLL,
52         PASS_PLL,
53         DDR3A_PLL,
54         DDR3B_PLL,
55         MAX_PLL_COUNT,
56 };
57
58 enum clk_e {
59         CLK_LIST(GENERATE_ENUM)
60 };
61
62 struct keystone_pll_regs {
63         u32 reg0;
64         u32 reg1;
65 };
66
67 /* PLL configuration data */
68 struct pll_init_data {
69         int pll;
70         int pll_m;              /* PLL Multiplier */
71         int pll_d;              /* PLL divider */
72         int pll_od;             /* PLL output divider */
73 };
74
75 extern const struct keystone_pll_regs keystone_pll_regs[];
76 extern s16 divn_val[];
77 extern int speeds[];
78
79 void init_plls(void);
80 void init_pll(const struct pll_init_data *data);
81 struct pll_init_data *get_pll_init_data(int pll);
82 unsigned long clk_get_rate(unsigned int clk);
83 unsigned long clk_round_rate(unsigned int clk, unsigned long hz);
84 int clk_set_rate(unsigned int clk, unsigned long hz);
85 int get_max_dev_speed(void);
86 int get_max_arm_speed(void);
87
88 #endif
89 #endif