blob: 3ff22114d702468192c781fe12ae72144691e509 [file] [log] [blame]
Paul Walmsleydf791b32010-01-26 20:13:04 -07001/*
2 * clkt_clksel.c - OMAP2/3/4 clksel clock functions
3 *
4 * Copyright (C) 2005-2008 Texas Instruments, Inc.
5 * Copyright (C) 2004-2010 Nokia Corporation
6 *
7 * Contacts:
8 * Richard Woodruff <r-woodruff2@ti.com>
9 * Paul Walmsley
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 *
Paul Walmsley435699d2010-05-18 18:40:24 -060015 *
16 * clksel clocks are clocks that do not have a fixed parent, or that
17 * can divide their parent's rate, or possibly both at the same time, based
18 * on the contents of a hardware register bitfield.
19 *
20 * All of the various mux and divider settings can be encoded into
21 * struct clksel* data structures, and then these can be autogenerated
22 * from some hardware database for each new chip generation. This
23 * should avoid the need to write, review, and validate a lot of new
24 * clock code for each new chip, since it can be exported from the SoC
25 * design flow. This is now done on OMAP4.
26 *
27 * The fusion of mux and divider clocks is a software creation. In
28 * hardware reality, the multiplexer (parent selection) and the
29 * divider exist separately. XXX At some point these clksel clocks
30 * should be split into "divider" clocks and "mux" clocks to better
31 * match the hardware.
32 *
33 * (The name "clksel" comes from the name of the corresponding
34 * register field in the OMAP2/3 family of SoCs.)
Paul Walmsleydf791b32010-01-26 20:13:04 -070035 *
36 * XXX Currently these clocks are only used in the OMAP2/3/4 code, but
37 * many of the OMAP1 clocks should be convertible to use this
38 * mechanism.
39 */
40#undef DEBUG
41
42#include <linux/kernel.h>
43#include <linux/errno.h>
44#include <linux/clk.h>
45#include <linux/io.h>
Tony Lindgrend9a5f4d2012-03-07 17:28:01 -080046#include <linux/bug.h>
Paul Walmsleydf791b32010-01-26 20:13:04 -070047
48#include <plat/clock.h>
49
50#include "clock.h"
Paul Walmsleydf791b32010-01-26 20:13:04 -070051
52/* Private functions */
53
54/**
Paul Walmsley435699d2010-05-18 18:40:24 -060055 * _get_clksel_by_parent() - return clksel struct for a given clk & parent
Paul Walmsleydf791b32010-01-26 20:13:04 -070056 * @clk: OMAP struct clk ptr to inspect
57 * @src_clk: OMAP struct clk ptr of the parent clk to search for
58 *
59 * Scan the struct clksel array associated with the clock to find
60 * the element associated with the supplied parent clock address.
61 * Returns a pointer to the struct clksel on success or NULL on error.
62 */
Paul Walmsley435699d2010-05-18 18:40:24 -060063static const struct clksel *_get_clksel_by_parent(struct clk *clk,
64 struct clk *src_clk)
Paul Walmsleydf791b32010-01-26 20:13:04 -070065{
66 const struct clksel *clks;
67
Paul Walmsley435699d2010-05-18 18:40:24 -060068 for (clks = clk->clksel; clks->parent; clks++)
Paul Walmsleydf791b32010-01-26 20:13:04 -070069 if (clks->parent == src_clk)
70 break; /* Found the requested parent */
Paul Walmsleydf791b32010-01-26 20:13:04 -070071
72 if (!clks->parent) {
Paul Walmsley435699d2010-05-18 18:40:24 -060073 /* This indicates a data problem */
Paul Walmsley7852ec02012-07-26 00:54:26 -060074 WARN(1, "clock: %s: could not find parent clock %s in clksel array\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -060075 __clk_get_name(clk), __clk_get_name(src_clk));
Paul Walmsleydf791b32010-01-26 20:13:04 -070076 return NULL;
77 }
78
79 return clks;
80}
81
Paul Walmsleyd74b4942010-05-18 18:40:24 -060082/**
Paul Walmsley435699d2010-05-18 18:40:24 -060083 * _get_div_and_fieldval() - find the new clksel divisor and field value to use
Paul Walmsleyd74b4942010-05-18 18:40:24 -060084 * @src_clk: planned new parent struct clk *
85 * @clk: struct clk * that is being reparented
86 * @field_val: pointer to a u32 to contain the register data for the divisor
87 *
88 * Given an intended new parent struct clk * @src_clk, and the struct
89 * clk * @clk to the clock that is being reparented, find the
90 * appropriate rate divisor for the new clock (returned as the return
91 * value), and the corresponding register bitfield data to program to
92 * reach that divisor (returned in the u32 pointed to by @field_val).
93 * Returns 0 on error, or returns the newly-selected divisor upon
94 * success (in this latter case, the corresponding register bitfield
95 * value is passed back in the variable pointed to by @field_val)
Paul Walmsleydf791b32010-01-26 20:13:04 -070096 */
Paul Walmsley435699d2010-05-18 18:40:24 -060097static u8 _get_div_and_fieldval(struct clk *src_clk, struct clk *clk,
98 u32 *field_val)
Paul Walmsleydf791b32010-01-26 20:13:04 -070099{
100 const struct clksel *clks;
Felipe Balbi405505c2011-01-16 13:22:03 +0200101 const struct clksel_rate *clkr, *max_clkr = NULL;
Paul Walmsleyd74b4942010-05-18 18:40:24 -0600102 u8 max_div = 0;
Paul Walmsleydf791b32010-01-26 20:13:04 -0700103
Paul Walmsley435699d2010-05-18 18:40:24 -0600104 clks = _get_clksel_by_parent(clk, src_clk);
Paul Walmsleydf791b32010-01-26 20:13:04 -0700105 if (!clks)
106 return 0;
107
Paul Walmsleyd74b4942010-05-18 18:40:24 -0600108 /*
109 * Find the highest divisor (e.g., the one resulting in the
110 * lowest rate) to use as the default. This should avoid
111 * clock rates that are too high for the device. XXX A better
112 * solution here would be to try to determine if there is a
113 * divisor matching the original clock rate before the parent
114 * switch, and if it cannot be found, to fall back to the
115 * highest divisor.
116 */
Paul Walmsleydf791b32010-01-26 20:13:04 -0700117 for (clkr = clks->rates; clkr->div; clkr++) {
Paul Walmsleyd74b4942010-05-18 18:40:24 -0600118 if (!(clkr->flags & cpu_mask))
119 continue;
120
121 if (clkr->div > max_div) {
122 max_div = clkr->div;
123 max_clkr = clkr;
124 }
Paul Walmsleydf791b32010-01-26 20:13:04 -0700125 }
126
Paul Walmsleyd74b4942010-05-18 18:40:24 -0600127 if (max_div == 0) {
Paul Walmsley435699d2010-05-18 18:40:24 -0600128 /* This indicates an error in the clksel data */
Paul Walmsley7852ec02012-07-26 00:54:26 -0600129 WARN(1, "clock: %s: could not find divisor for parent %s\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600130 __clk_get_name(clk),
131 __clk_get_name(__clk_get_parent(src_clk)));
Paul Walmsleydf791b32010-01-26 20:13:04 -0700132 return 0;
133 }
134
Paul Walmsleyd74b4942010-05-18 18:40:24 -0600135 *field_val = max_clkr->val;
Paul Walmsleydf791b32010-01-26 20:13:04 -0700136
Paul Walmsleyd74b4942010-05-18 18:40:24 -0600137 return max_div;
Paul Walmsleydf791b32010-01-26 20:13:04 -0700138}
139
Paul Walmsley435699d2010-05-18 18:40:24 -0600140/**
141 * _write_clksel_reg() - program a clock's clksel register in hardware
142 * @clk: struct clk * to program
143 * @v: clksel bitfield value to program (with LSB at bit 0)
144 *
145 * Shift the clksel register bitfield value @v to its appropriate
146 * location in the clksel register and write it in. This function
147 * will ensure that the write to the clksel_reg reaches its
148 * destination before returning -- important since PRM and CM register
149 * accesses can be quite slow compared to ARM cycles -- but does not
150 * take into account any time the hardware might take to switch the
151 * clock source.
152 */
153static void _write_clksel_reg(struct clk *clk, u32 field_val)
154{
155 u32 v;
156
157 v = __raw_readl(clk->clksel_reg);
158 v &= ~clk->clksel_mask;
159 v |= field_val << __ffs(clk->clksel_mask);
160 __raw_writel(v, clk->clksel_reg);
161
162 v = __raw_readl(clk->clksel_reg); /* OCP barrier */
163}
164
165/**
166 * _clksel_to_divisor() - turn clksel field value into integer divider
167 * @clk: OMAP struct clk to use
168 * @field_val: register field value to find
169 *
170 * Given a struct clk of a rate-selectable clksel clock, and a register field
171 * value to search for, find the corresponding clock divisor. The register
172 * field value should be pre-masked and shifted down so the LSB is at bit 0
173 * before calling. Returns 0 on error or returns the actual integer divisor
174 * upon success.
175 */
176static u32 _clksel_to_divisor(struct clk *clk, u32 field_val)
177{
178 const struct clksel *clks;
179 const struct clksel_rate *clkr;
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600180 struct clk *parent;
Paul Walmsley435699d2010-05-18 18:40:24 -0600181
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600182 parent = __clk_get_parent(clk);
183 clks = _get_clksel_by_parent(clk, parent);
Paul Walmsley435699d2010-05-18 18:40:24 -0600184 if (!clks)
185 return 0;
186
187 for (clkr = clks->rates; clkr->div; clkr++) {
188 if (!(clkr->flags & cpu_mask))
189 continue;
190
191 if (clkr->val == field_val)
192 break;
193 }
194
195 if (!clkr->div) {
196 /* This indicates a data error */
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600197 WARN(1, "clock: %s: could not find fieldval %d for parent %s\n",
198 __clk_get_name(clk), field_val, __clk_get_name(parent));
Paul Walmsley435699d2010-05-18 18:40:24 -0600199 return 0;
200 }
201
202 return clkr->div;
203}
204
205/**
206 * _divisor_to_clksel() - turn clksel integer divisor into a field value
207 * @clk: OMAP struct clk to use
208 * @div: integer divisor to search for
209 *
210 * Given a struct clk of a rate-selectable clksel clock, and a clock
211 * divisor, find the corresponding register field value. Returns the
212 * register field value _before_ left-shifting (i.e., LSB is at bit
213 * 0); or returns 0xFFFFFFFF (~0) upon error.
214 */
215static u32 _divisor_to_clksel(struct clk *clk, u32 div)
216{
217 const struct clksel *clks;
218 const struct clksel_rate *clkr;
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600219 struct clk *parent;
Paul Walmsley435699d2010-05-18 18:40:24 -0600220
221 /* should never happen */
222 WARN_ON(div == 0);
223
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600224 parent = __clk_get_parent(clk);
225 clks = _get_clksel_by_parent(clk, parent);
Paul Walmsley435699d2010-05-18 18:40:24 -0600226 if (!clks)
227 return ~0;
228
229 for (clkr = clks->rates; clkr->div; clkr++) {
230 if (!(clkr->flags & cpu_mask))
231 continue;
232
233 if (clkr->div == div)
234 break;
235 }
236
237 if (!clkr->div) {
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600238 pr_err("clock: %s: could not find divisor %d for parent %s\n",
239 __clk_get_name(clk), div, __clk_get_name(parent));
Paul Walmsley435699d2010-05-18 18:40:24 -0600240 return ~0;
241 }
242
243 return clkr->val;
244}
245
246/**
247 * _read_divisor() - get current divisor applied to parent clock (from hdwr)
248 * @clk: OMAP struct clk to use.
249 *
250 * Read the current divisor register value for @clk that is programmed
251 * into the hardware, convert it into the actual divisor value, and
252 * return it; or return 0 on error.
253 */
254static u32 _read_divisor(struct clk *clk)
255{
256 u32 v;
257
258 if (!clk->clksel || !clk->clksel_mask)
259 return 0;
260
261 v = __raw_readl(clk->clksel_reg);
262 v &= clk->clksel_mask;
263 v >>= __ffs(clk->clksel_mask);
264
265 return _clksel_to_divisor(clk, v);
266}
Paul Walmsleydf791b32010-01-26 20:13:04 -0700267
268/* Public functions */
269
270/**
Paul Walmsley435699d2010-05-18 18:40:24 -0600271 * omap2_clksel_round_rate_div() - find divisor for the given clock and rate
Paul Walmsleydf791b32010-01-26 20:13:04 -0700272 * @clk: OMAP struct clk to use
273 * @target_rate: desired clock rate
274 * @new_div: ptr to where we should store the divisor
275 *
276 * Finds 'best' divider value in an array based on the source and target
277 * rates. The divider array must be sorted with smallest divider first.
Paul Walmsley435699d2010-05-18 18:40:24 -0600278 * This function is also used by the DPLL3 M2 divider code.
Paul Walmsleydf791b32010-01-26 20:13:04 -0700279 *
280 * Returns the rounded clock rate or returns 0xffffffff on error.
281 */
282u32 omap2_clksel_round_rate_div(struct clk *clk, unsigned long target_rate,
283 u32 *new_div)
284{
285 unsigned long test_rate;
286 const struct clksel *clks;
287 const struct clksel_rate *clkr;
288 u32 last_div = 0;
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600289 struct clk *parent;
290 unsigned long parent_rate;
291 const char *clk_name;
292
293 parent = __clk_get_parent(clk);
294 parent_rate = __clk_get_rate(parent);
295 clk_name = __clk_get_name(clk);
Paul Walmsleydf791b32010-01-26 20:13:04 -0700296
Paul Walmsley435699d2010-05-18 18:40:24 -0600297 if (!clk->clksel || !clk->clksel_mask)
298 return ~0;
299
Paul Walmsleydf791b32010-01-26 20:13:04 -0700300 pr_debug("clock: clksel_round_rate_div: %s target_rate %ld\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600301 clk_name, target_rate);
Paul Walmsleydf791b32010-01-26 20:13:04 -0700302
303 *new_div = 1;
304
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600305 clks = _get_clksel_by_parent(clk, parent);
Paul Walmsleydf791b32010-01-26 20:13:04 -0700306 if (!clks)
307 return ~0;
308
309 for (clkr = clks->rates; clkr->div; clkr++) {
310 if (!(clkr->flags & cpu_mask))
311 continue;
312
313 /* Sanity check */
314 if (clkr->div <= last_div)
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600315 pr_err("clock: %s: clksel_rate table not sorted\n",
316 clk_name);
Paul Walmsleydf791b32010-01-26 20:13:04 -0700317
318 last_div = clkr->div;
319
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600320 test_rate = parent_rate / clkr->div;
Paul Walmsleydf791b32010-01-26 20:13:04 -0700321
322 if (test_rate <= target_rate)
323 break; /* found it */
324 }
325
326 if (!clkr->div) {
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600327 pr_err("clock: %s: could not find divisor for target rate %ld for parent %s\n",
328 clk_name, target_rate, __clk_get_name(parent));
Paul Walmsleydf791b32010-01-26 20:13:04 -0700329 return ~0;
330 }
331
332 *new_div = clkr->div;
333
334 pr_debug("clock: new_div = %d, new_rate = %ld\n", *new_div,
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600335 (parent_rate / clkr->div));
Paul Walmsleydf791b32010-01-26 20:13:04 -0700336
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600337 return parent_rate / clkr->div;
Paul Walmsleydf791b32010-01-26 20:13:04 -0700338}
339
Paul Walmsley435699d2010-05-18 18:40:24 -0600340/*
341 * Clocktype interface functions to the OMAP clock code
342 * (i.e., those used in struct clk field function pointers, etc.)
343 */
344
Paul Walmsleydf791b32010-01-26 20:13:04 -0700345/**
Paul Walmsley435699d2010-05-18 18:40:24 -0600346 * omap2_init_clksel_parent() - set a clksel clk's parent field from the hdwr
347 * @clk: OMAP clock struct ptr to use
348 *
349 * Given a pointer @clk to a source-selectable struct clk, read the
350 * hardware register and determine what its parent is currently set
351 * to. Update @clk's .parent field with the appropriate clk ptr. No
352 * return value.
353 */
354void omap2_init_clksel_parent(struct clk *clk)
355{
356 const struct clksel *clks;
357 const struct clksel_rate *clkr;
358 u32 r, found = 0;
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600359 struct clk *parent;
360 const char *clk_name;
Paul Walmsley435699d2010-05-18 18:40:24 -0600361
362 if (!clk->clksel || !clk->clksel_mask)
363 return;
364
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600365 parent = __clk_get_parent(clk);
366 clk_name = __clk_get_name(clk);
367
Paul Walmsley435699d2010-05-18 18:40:24 -0600368 r = __raw_readl(clk->clksel_reg) & clk->clksel_mask;
369 r >>= __ffs(clk->clksel_mask);
370
371 for (clks = clk->clksel; clks->parent && !found; clks++) {
372 for (clkr = clks->rates; clkr->div && !found; clkr++) {
373 if (!(clkr->flags & cpu_mask))
374 continue;
375
376 if (clkr->val == r) {
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600377 if (parent != clks->parent) {
Paul Walmsley7852ec02012-07-26 00:54:26 -0600378 pr_debug("clock: %s: inited parent to %s (was %s)\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600379 clk_name,
380 __clk_get_name(clks->parent),
381 ((parent) ?
382 __clk_get_name(parent) :
383 "NULL"));
Paul Walmsley435699d2010-05-18 18:40:24 -0600384 clk_reparent(clk, clks->parent);
Peter Senna Tschudinc09fcc432012-09-18 18:36:11 +0200385 }
Paul Walmsley435699d2010-05-18 18:40:24 -0600386 found = 1;
387 }
388 }
389 }
390
391 /* This indicates a data error */
392 WARN(!found, "clock: %s: init parent: could not find regval %0x\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600393 clk_name, r);
Paul Walmsley435699d2010-05-18 18:40:24 -0600394
395 return;
396}
397
398/**
399 * omap2_clksel_recalc() - function ptr to pass via struct clk .recalc field
400 * @clk: struct clk *
401 *
402 * This function is intended to be called only by the clock framework.
403 * Each clksel clock should have its struct clk .recalc field set to this
404 * function. Returns the clock's current rate, based on its parent's rate
405 * and its current divisor setting in the hardware.
406 */
407unsigned long omap2_clksel_recalc(struct clk *clk)
408{
409 unsigned long rate;
410 u32 div = 0;
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600411 struct clk *parent;
Paul Walmsley435699d2010-05-18 18:40:24 -0600412
413 div = _read_divisor(clk);
414 if (div == 0)
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600415 return __clk_get_rate(clk);
Paul Walmsley435699d2010-05-18 18:40:24 -0600416
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600417 parent = __clk_get_parent(clk);
418 rate = __clk_get_rate(parent) / div;
Paul Walmsley435699d2010-05-18 18:40:24 -0600419
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600420 pr_debug("clock: %s: recalc'd rate is %ld (div %d)\n",
421 __clk_get_name(clk), rate, div);
Paul Walmsley435699d2010-05-18 18:40:24 -0600422
423 return rate;
424}
425
426/**
427 * omap2_clksel_round_rate() - find rounded rate for the given clock and rate
Paul Walmsleydf791b32010-01-26 20:13:04 -0700428 * @clk: OMAP struct clk to use
429 * @target_rate: desired clock rate
430 *
Paul Walmsley435699d2010-05-18 18:40:24 -0600431 * This function is intended to be called only by the clock framework.
Paul Walmsleydf791b32010-01-26 20:13:04 -0700432 * Finds best target rate based on the source clock and possible dividers.
433 * rates. The divider array must be sorted with smallest divider first.
Paul Walmsleydf791b32010-01-26 20:13:04 -0700434 *
435 * Returns the rounded clock rate or returns 0xffffffff on error.
436 */
437long omap2_clksel_round_rate(struct clk *clk, unsigned long target_rate)
438{
439 u32 new_div;
440
441 return omap2_clksel_round_rate_div(clk, target_rate, &new_div);
442}
443
Paul Walmsleydf791b32010-01-26 20:13:04 -0700444/**
Paul Walmsley435699d2010-05-18 18:40:24 -0600445 * omap2_clksel_set_rate() - program clock rate in hardware
446 * @clk: struct clk * to program rate
447 * @rate: target rate to program
Paul Walmsleydf791b32010-01-26 20:13:04 -0700448 *
Paul Walmsley435699d2010-05-18 18:40:24 -0600449 * This function is intended to be called only by the clock framework.
450 * Program @clk's rate to @rate in the hardware. The clock can be
451 * either enabled or disabled when this happens, although if the clock
452 * is enabled, some downstream devices may glitch or behave
453 * unpredictably when the clock rate is changed - this depends on the
454 * hardware. This function does not currently check the usecount of
455 * the clock, so if multiple drivers are using the clock, and the rate
456 * is changed, they will all be affected without any notification.
457 * Returns -EINVAL upon error, or 0 upon success.
Paul Walmsleydf791b32010-01-26 20:13:04 -0700458 */
Paul Walmsleydf791b32010-01-26 20:13:04 -0700459int omap2_clksel_set_rate(struct clk *clk, unsigned long rate)
460{
Paul Walmsley435699d2010-05-18 18:40:24 -0600461 u32 field_val, validrate, new_div = 0;
Paul Walmsleydf791b32010-01-26 20:13:04 -0700462
Paul Walmsley435699d2010-05-18 18:40:24 -0600463 if (!clk->clksel || !clk->clksel_mask)
Paul Walmsleydf791b32010-01-26 20:13:04 -0700464 return -EINVAL;
465
466 validrate = omap2_clksel_round_rate_div(clk, rate, &new_div);
467 if (validrate != rate)
468 return -EINVAL;
469
Paul Walmsley435699d2010-05-18 18:40:24 -0600470 field_val = _divisor_to_clksel(clk, new_div);
Paul Walmsleydf791b32010-01-26 20:13:04 -0700471 if (field_val == ~0)
472 return -EINVAL;
473
Paul Walmsley435699d2010-05-18 18:40:24 -0600474 _write_clksel_reg(clk, field_val);
Paul Walmsleydf791b32010-01-26 20:13:04 -0700475
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600476 clk->rate = __clk_get_rate(__clk_get_parent(clk)) / new_div;
Paul Walmsleydf791b32010-01-26 20:13:04 -0700477
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600478 pr_debug("clock: %s: set rate to %ld\n", __clk_get_name(clk),
479 __clk_get_rate(clk));
Paul Walmsley435699d2010-05-18 18:40:24 -0600480
Paul Walmsleydf791b32010-01-26 20:13:04 -0700481 return 0;
482}
483
Paul Walmsley435699d2010-05-18 18:40:24 -0600484/*
485 * Clksel parent setting function - not passed in struct clk function
486 * pointer - instead, the OMAP clock code currently assumes that any
487 * parent-setting clock is a clksel clock, and calls
488 * omap2_clksel_set_parent() by default
489 */
490
491/**
492 * omap2_clksel_set_parent() - change a clock's parent clock
493 * @clk: struct clk * of the child clock
494 * @new_parent: struct clk * of the new parent clock
495 *
496 * This function is intended to be called only by the clock framework.
497 * Change the parent clock of clock @clk to @new_parent. This is
498 * intended to be used while @clk is disabled. This function does not
499 * currently check the usecount of the clock, so if multiple drivers
500 * are using the clock, and the parent is changed, they will all be
501 * affected without any notification. Returns -EINVAL upon error, or
502 * 0 upon success.
503 */
Paul Walmsleydf791b32010-01-26 20:13:04 -0700504int omap2_clksel_set_parent(struct clk *clk, struct clk *new_parent)
505{
Paul Walmsley435699d2010-05-18 18:40:24 -0600506 u32 field_val = 0;
507 u32 parent_div;
Paul Walmsleydf791b32010-01-26 20:13:04 -0700508
Paul Walmsleyd74b4942010-05-18 18:40:24 -0600509 if (!clk->clksel || !clk->clksel_mask)
Paul Walmsleydf791b32010-01-26 20:13:04 -0700510 return -EINVAL;
511
Paul Walmsley435699d2010-05-18 18:40:24 -0600512 parent_div = _get_div_and_fieldval(new_parent, clk, &field_val);
Paul Walmsleydf791b32010-01-26 20:13:04 -0700513 if (!parent_div)
514 return -EINVAL;
515
Paul Walmsley435699d2010-05-18 18:40:24 -0600516 _write_clksel_reg(clk, field_val);
Paul Walmsleydf791b32010-01-26 20:13:04 -0700517
Paul Walmsleydf791b32010-01-26 20:13:04 -0700518 clk_reparent(clk, new_parent);
519
520 /* CLKSEL clocks follow their parents' rates, divided by a divisor */
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600521 clk->rate = __clk_get_rate(new_parent);
Paul Walmsleydf791b32010-01-26 20:13:04 -0700522
523 if (parent_div > 0)
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600524 __clk_get_rate(clk) /= parent_div;
Paul Walmsleydf791b32010-01-26 20:13:04 -0700525
Paul Walmsley435699d2010-05-18 18:40:24 -0600526 pr_debug("clock: %s: set parent to %s (new rate %ld)\n",
Rajendra Nayak5dcc3b92012-09-22 02:24:17 -0600527 __clk_get_name(clk),
528 __clk_get_name(__clk_get_parent(clk)),
529 __clk_get_rate(clk));
Paul Walmsleydf791b32010-01-26 20:13:04 -0700530
531 return 0;
532}