diff options
-rw-r--r-- | drivers/sh/clk/core.c | 20 | ||||
-rw-r--r-- | include/linux/sh_clk.h | 3 |
2 files changed, 23 insertions, 0 deletions
diff --git a/drivers/sh/clk/core.c b/drivers/sh/clk/core.c index dc8d022c07a1..352036b1f9a2 100644 --- a/drivers/sh/clk/core.c +++ b/drivers/sh/clk/core.c | |||
@@ -173,6 +173,26 @@ long clk_rate_div_range_round(struct clk *clk, unsigned int div_min, | |||
173 | return clk_rate_round_helper(&div_range_round); | 173 | return clk_rate_round_helper(&div_range_round); |
174 | } | 174 | } |
175 | 175 | ||
176 | static long clk_rate_mult_range_iter(unsigned int pos, | ||
177 | struct clk_rate_round_data *rounder) | ||
178 | { | ||
179 | return clk_get_rate(rounder->arg) * pos; | ||
180 | } | ||
181 | |||
182 | long clk_rate_mult_range_round(struct clk *clk, unsigned int mult_min, | ||
183 | unsigned int mult_max, unsigned long rate) | ||
184 | { | ||
185 | struct clk_rate_round_data mult_range_round = { | ||
186 | .min = mult_min, | ||
187 | .max = mult_max, | ||
188 | .func = clk_rate_mult_range_iter, | ||
189 | .arg = clk_get_parent(clk), | ||
190 | .rate = rate, | ||
191 | }; | ||
192 | |||
193 | return clk_rate_round_helper(&mult_range_round); | ||
194 | } | ||
195 | |||
176 | int clk_rate_table_find(struct clk *clk, | 196 | int clk_rate_table_find(struct clk *clk, |
177 | struct cpufreq_frequency_table *freq_table, | 197 | struct cpufreq_frequency_table *freq_table, |
178 | unsigned long rate) | 198 | unsigned long rate) |
diff --git a/include/linux/sh_clk.h b/include/linux/sh_clk.h index 3ccf18648d0a..9237c299641c 100644 --- a/include/linux/sh_clk.h +++ b/include/linux/sh_clk.h | |||
@@ -94,6 +94,9 @@ int clk_rate_table_find(struct clk *clk, | |||
94 | long clk_rate_div_range_round(struct clk *clk, unsigned int div_min, | 94 | long clk_rate_div_range_round(struct clk *clk, unsigned int div_min, |
95 | unsigned int div_max, unsigned long rate); | 95 | unsigned int div_max, unsigned long rate); |
96 | 96 | ||
97 | long clk_rate_mult_range_round(struct clk *clk, unsigned int mult_min, | ||
98 | unsigned int mult_max, unsigned long rate); | ||
99 | |||
97 | long clk_round_parent(struct clk *clk, unsigned long target, | 100 | long clk_round_parent(struct clk *clk, unsigned long target, |
98 | unsigned long *best_freq, unsigned long *parent_freq, | 101 | unsigned long *best_freq, unsigned long *parent_freq, |
99 | unsigned int div_min, unsigned int div_max); | 102 | unsigned int div_min, unsigned int div_max); |