diff options
Diffstat (limited to 'arch/arm/plat-omap/include/plat/clock.h')
-rw-r--r-- | arch/arm/plat-omap/include/plat/clock.h | 100 |
1 files changed, 70 insertions, 30 deletions
diff --git a/arch/arm/plat-omap/include/plat/clock.h b/arch/arm/plat-omap/include/plat/clock.h index 94fe2a0ce40a..34f7fa9ad4c0 100644 --- a/arch/arm/plat-omap/include/plat/clock.h +++ b/arch/arm/plat-omap/include/plat/clock.h | |||
@@ -1,9 +1,9 @@ | |||
1 | /* | 1 | /* |
2 | * arch/arm/plat-omap/include/mach/clock.h | 2 | * OMAP clock: data structure definitions, function prototypes, shared macros |
3 | * | 3 | * |
4 | * Copyright (C) 2004 - 2005 Nokia corporation | 4 | * Copyright (C) 2004-2005, 2008-2010 Nokia Corporation |
5 | * Written by Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com> | 5 | * Written by Tuukka Tikkanen <tuukka.tikkanen@elektrobit.com> |
6 | * Based on clocks.h by Tony Lindgren, Gordon McNutt and RidgeRun, Inc | 6 | * Based on clocks.h by Tony Lindgren, Gordon McNutt and RidgeRun, Inc |
7 | * | 7 | * |
8 | * This program is free software; you can redistribute it and/or modify | 8 | * This program is free software; you can redistribute it and/or modify |
9 | * it under the terms of the GNU General Public License version 2 as | 9 | * it under the terms of the GNU General Public License version 2 as |
@@ -22,12 +22,13 @@ struct clockdomain; | |||
22 | struct clkops { | 22 | struct clkops { |
23 | int (*enable)(struct clk *); | 23 | int (*enable)(struct clk *); |
24 | void (*disable)(struct clk *); | 24 | void (*disable)(struct clk *); |
25 | void (*find_idlest)(struct clk *, void __iomem **, u8 *); | 25 | void (*find_idlest)(struct clk *, void __iomem **, |
26 | void (*find_companion)(struct clk *, void __iomem **, u8 *); | 26 | u8 *, u8 *); |
27 | void (*find_companion)(struct clk *, void __iomem **, | ||
28 | u8 *); | ||
27 | }; | 29 | }; |
28 | 30 | ||
29 | #if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3) || \ | 31 | #ifdef CONFIG_ARCH_OMAP2PLUS |
30 | defined(CONFIG_ARCH_OMAP4) | ||
31 | 32 | ||
32 | struct clksel_rate { | 33 | struct clksel_rate { |
33 | u32 val; | 34 | u32 val; |
@@ -40,6 +41,50 @@ struct clksel { | |||
40 | const struct clksel_rate *rates; | 41 | const struct clksel_rate *rates; |
41 | }; | 42 | }; |
42 | 43 | ||
44 | /** | ||
45 | * struct dpll_data - DPLL registers and integration data | ||
46 | * @mult_div1_reg: register containing the DPLL M and N bitfields | ||
47 | * @mult_mask: mask of the DPLL M bitfield in @mult_div1_reg | ||
48 | * @div1_mask: mask of the DPLL N bitfield in @mult_div1_reg | ||
49 | * @clk_bypass: struct clk pointer to the clock's bypass clock input | ||
50 | * @clk_ref: struct clk pointer to the clock's reference clock input | ||
51 | * @control_reg: register containing the DPLL mode bitfield | ||
52 | * @enable_mask: mask of the DPLL mode bitfield in @control_reg | ||
53 | * @rate_tolerance: maximum variance allowed from target rate (in Hz) | ||
54 | * @last_rounded_rate: cache of the last rate result of omap2_dpll_round_rate() | ||
55 | * @last_rounded_m: cache of the last M result of omap2_dpll_round_rate() | ||
56 | * @max_multiplier: maximum valid non-bypass multiplier value (actual) | ||
57 | * @last_rounded_n: cache of the last N result of omap2_dpll_round_rate() | ||
58 | * @min_divider: minimum valid non-bypass divider value (actual) | ||
59 | * @max_divider: maximum valid non-bypass divider value (actual) | ||
60 | * @modes: possible values of @enable_mask | ||
61 | * @autoidle_reg: register containing the DPLL autoidle mode bitfield | ||
62 | * @idlest_reg: register containing the DPLL idle status bitfield | ||
63 | * @autoidle_mask: mask of the DPLL autoidle mode bitfield in @autoidle_reg | ||
64 | * @freqsel_mask: mask of the DPLL jitter correction bitfield in @control_reg | ||
65 | * @idlest_mask: mask of the DPLL idle status bitfield in @idlest_reg | ||
66 | * @auto_recal_bit: bitshift of the driftguard enable bit in @control_reg | ||
67 | * @recal_en_bit: bitshift of the PRM_IRQENABLE_* bit for recalibration IRQs | ||
68 | * @recal_st_bit: bitshift of the PRM_IRQSTATUS_* bit for recalibration IRQs | ||
69 | * @flags: DPLL type/features (see below) | ||
70 | * | ||
71 | * Possible values for @flags: | ||
72 | * DPLL_J_TYPE: "J-type DPLL" (only some 36xx, 4xxx DPLLs) | ||
73 | * NO_DCO_SEL: don't program DCO (only for some J-type DPLLs) | ||
74 | |||
75 | * @freqsel_mask is only used on the OMAP34xx family and AM35xx. | ||
76 | * | ||
77 | * XXX Some DPLLs have multiple bypass inputs, so it's not technically | ||
78 | * correct to only have one @clk_bypass pointer. | ||
79 | * | ||
80 | * XXX @rate_tolerance should probably be deprecated - currently there | ||
81 | * don't seem to be any usecases for DPLL rounding that is not exact. | ||
82 | * | ||
83 | * XXX The runtime-variable fields (@last_rounded_rate, @last_rounded_m, | ||
84 | * @last_rounded_n) should be separated from the runtime-fixed fields | ||
85 | * and placed into a differenct structure, so that the runtime-fixed data | ||
86 | * can be placed into read-only space. | ||
87 | */ | ||
43 | struct dpll_data { | 88 | struct dpll_data { |
44 | void __iomem *mult_div1_reg; | 89 | void __iomem *mult_div1_reg; |
45 | u32 mult_mask; | 90 | u32 mult_mask; |
@@ -51,13 +96,12 @@ struct dpll_data { | |||
51 | unsigned int rate_tolerance; | 96 | unsigned int rate_tolerance; |
52 | unsigned long last_rounded_rate; | 97 | unsigned long last_rounded_rate; |
53 | u16 last_rounded_m; | 98 | u16 last_rounded_m; |
99 | u16 max_multiplier; | ||
54 | u8 last_rounded_n; | 100 | u8 last_rounded_n; |
55 | u8 min_divider; | 101 | u8 min_divider; |
56 | u8 max_divider; | 102 | u8 max_divider; |
57 | u32 max_tolerance; | ||
58 | u16 max_multiplier; | ||
59 | #if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4) | ||
60 | u8 modes; | 103 | u8 modes; |
104 | #if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4) | ||
61 | void __iomem *autoidle_reg; | 105 | void __iomem *autoidle_reg; |
62 | void __iomem *idlest_reg; | 106 | void __iomem *idlest_reg; |
63 | u32 autoidle_mask; | 107 | u32 autoidle_mask; |
@@ -66,6 +110,7 @@ struct dpll_data { | |||
66 | u8 auto_recal_bit; | 110 | u8 auto_recal_bit; |
67 | u8 recal_en_bit; | 111 | u8 recal_en_bit; |
68 | u8 recal_st_bit; | 112 | u8 recal_st_bit; |
113 | u8 flags; | ||
69 | # endif | 114 | # endif |
70 | }; | 115 | }; |
71 | 116 | ||
@@ -75,12 +120,10 @@ struct clk { | |||
75 | struct list_head node; | 120 | struct list_head node; |
76 | const struct clkops *ops; | 121 | const struct clkops *ops; |
77 | const char *name; | 122 | const char *name; |
78 | int id; | ||
79 | struct clk *parent; | 123 | struct clk *parent; |
80 | struct list_head children; | 124 | struct list_head children; |
81 | struct list_head sibling; /* node for children */ | 125 | struct list_head sibling; /* node for children */ |
82 | unsigned long rate; | 126 | unsigned long rate; |
83 | __u32 flags; | ||
84 | void __iomem *enable_reg; | 127 | void __iomem *enable_reg; |
85 | unsigned long (*recalc)(struct clk *); | 128 | unsigned long (*recalc)(struct clk *); |
86 | int (*set_rate)(struct clk *, unsigned long); | 129 | int (*set_rate)(struct clk *, unsigned long); |
@@ -88,9 +131,9 @@ struct clk { | |||
88 | void (*init)(struct clk *); | 131 | void (*init)(struct clk *); |
89 | __u8 enable_bit; | 132 | __u8 enable_bit; |
90 | __s8 usecount; | 133 | __s8 usecount; |
91 | #if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3) || \ | ||
92 | defined(CONFIG_ARCH_OMAP4) | ||
93 | u8 fixed_div; | 134 | u8 fixed_div; |
135 | u8 flags; | ||
136 | #ifdef CONFIG_ARCH_OMAP2PLUS | ||
94 | void __iomem *clksel_reg; | 137 | void __iomem *clksel_reg; |
95 | u32 clksel_mask; | 138 | u32 clksel_mask; |
96 | const struct clksel *clksel; | 139 | const struct clksel *clksel; |
@@ -123,7 +166,7 @@ struct clk_functions { | |||
123 | #endif | 166 | #endif |
124 | }; | 167 | }; |
125 | 168 | ||
126 | extern unsigned int mpurate; | 169 | extern int mpurate; |
127 | 170 | ||
128 | extern int clk_init(struct clk_functions *custom_clocks); | 171 | extern int clk_init(struct clk_functions *custom_clocks); |
129 | extern void clk_preinit(struct clk *clk); | 172 | extern void clk_preinit(struct clk *clk); |
@@ -134,27 +177,23 @@ extern void propagate_rate(struct clk *clk); | |||
134 | extern void recalculate_root_clocks(void); | 177 | extern void recalculate_root_clocks(void); |
135 | extern unsigned long followparent_recalc(struct clk *clk); | 178 | extern unsigned long followparent_recalc(struct clk *clk); |
136 | extern void clk_enable_init_clocks(void); | 179 | extern void clk_enable_init_clocks(void); |
180 | unsigned long omap_fixed_divisor_recalc(struct clk *clk); | ||
137 | #ifdef CONFIG_CPU_FREQ | 181 | #ifdef CONFIG_CPU_FREQ |
138 | extern void clk_init_cpufreq_table(struct cpufreq_frequency_table **table); | 182 | extern void clk_init_cpufreq_table(struct cpufreq_frequency_table **table); |
139 | extern void clk_exit_cpufreq_table(struct cpufreq_frequency_table **table); | 183 | extern void clk_exit_cpufreq_table(struct cpufreq_frequency_table **table); |
140 | #endif | 184 | #endif |
185 | extern struct clk *omap_clk_get_by_name(const char *name); | ||
141 | 186 | ||
142 | extern const struct clkops clkops_null; | 187 | extern const struct clkops clkops_null; |
143 | 188 | ||
189 | extern struct clk dummy_ck; | ||
190 | |||
144 | /* Clock flags */ | 191 | /* Clock flags */ |
145 | /* bit 0 is free */ | 192 | #define ENABLE_REG_32BIT (1 << 0) /* Use 32-bit access */ |
146 | #define RATE_FIXED (1 << 1) /* Fixed clock rate */ | 193 | #define CLOCK_IDLE_CONTROL (1 << 1) |
147 | /* bits 2-4 are free */ | 194 | #define CLOCK_NO_IDLE_PARENT (1 << 2) |
148 | #define ENABLE_REG_32BIT (1 << 5) /* Use 32-bit access */ | 195 | #define ENABLE_ON_INIT (1 << 3) /* Enable upon framework init */ |
149 | #define CLOCK_IDLE_CONTROL (1 << 7) | 196 | #define INVERT_ENABLE (1 << 4) /* 0 enables, 1 disables */ |
150 | #define CLOCK_NO_IDLE_PARENT (1 << 8) | ||
151 | #define DELAYED_APP (1 << 9) /* Delay application of clock */ | ||
152 | #define CONFIG_PARTICIPANT (1 << 10) /* Fundamental clock */ | ||
153 | #define ENABLE_ON_INIT (1 << 11) /* Enable upon framework init */ | ||
154 | #define INVERT_ENABLE (1 << 12) /* 0 enables, 1 disables */ | ||
155 | #define CLOCK_IN_OMAP4430 (1 << 13) | ||
156 | #define ALWAYS_ENABLED (1 << 14) | ||
157 | /* bits 13-31 are currently free */ | ||
158 | 197 | ||
159 | /* Clksel_rate flags */ | 198 | /* Clksel_rate flags */ |
160 | #define DEFAULT_RATE (1 << 0) | 199 | #define DEFAULT_RATE (1 << 0) |
@@ -162,7 +201,8 @@ extern const struct clkops clkops_null; | |||
162 | #define RATE_IN_243X (1 << 2) | 201 | #define RATE_IN_243X (1 << 2) |
163 | #define RATE_IN_343X (1 << 3) /* rates common to all 343X */ | 202 | #define RATE_IN_343X (1 << 3) /* rates common to all 343X */ |
164 | #define RATE_IN_3430ES2 (1 << 4) /* 3430ES2 rates only */ | 203 | #define RATE_IN_3430ES2 (1 << 4) /* 3430ES2 rates only */ |
165 | #define RATE_IN_4430 (1 << 5) | 204 | #define RATE_IN_36XX (1 << 5) |
205 | #define RATE_IN_4430 (1 << 6) | ||
166 | 206 | ||
167 | #define RATE_IN_24XX (RATE_IN_242X | RATE_IN_243X) | 207 | #define RATE_IN_24XX (RATE_IN_242X | RATE_IN_243X) |
168 | 208 | ||