blob: 9fe95919537e4e50f93554dfb229b00d99345c11 [file] [log] [blame]
Vikram Mulukutla8810e342011-10-20 20:26:53 -07001/* Copyright (c) 2012, Code Aurora Forum. All rights reserved.
2 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 */
13
14#define pr_fmt(fmt) "%s: " fmt, __func__
15
16#include <linux/kernel.h>
17#include <linux/init.h>
18#include <linux/err.h>
19#include <linux/ctype.h>
20#include <linux/bitops.h>
21#include <linux/io.h>
22#include <linux/spinlock.h>
23#include <linux/delay.h>
24#include <linux/clk.h>
25
26#include <mach/clk.h>
27
28#include "clock.h"
29#include "clock-local2.h"
30
31/*
32 * When enabling/disabling a clock, check the halt bit up to this number
33 * number of times (with a 1 us delay in between) before continuing.
34 */
35#define HALT_CHECK_MAX_LOOPS 200
36/* For clock without halt checking, wait this long after enables/disables. */
37#define HALT_CHECK_DELAY_US 10
38
39/*
40 * When updating an RCG configuration, check the update bit up to this number
41 * number of times (with a 1 us delay in between) before continuing.
42 */
43#define UPDATE_CHECK_MAX_LOOPS 200
44
45DEFINE_SPINLOCK(local_clock_reg_lock);
46struct clk_freq_tbl rcg_dummy_freq = F_END;
47
48#define CMD_RCGR_REG(x) (*(x)->base + (x)->cmd_rcgr_reg)
49#define CFG_RCGR_REG(x) (*(x)->base + (x)->cmd_rcgr_reg + 0x4)
50#define M_REG(x) (*(x)->base + (x)->cmd_rcgr_reg + 0x8)
51#define N_REG(x) (*(x)->base + (x)->cmd_rcgr_reg + 0xC)
52#define D_REG(x) (*(x)->base + (x)->cmd_rcgr_reg + 0x10)
53#define CBCR_REG(x) (*(x)->base + (x)->cbcr_reg)
54#define BCR_REG(x) (*(x)->base + (x)->bcr_reg)
55#define VOTE_REG(x) (*(x)->base + (x)->vote_reg)
56
57/*
58 * Important clock bit positions and masks
59 */
60#define CMD_RCGR_ROOT_ENABLE_BIT BIT(1)
61#define CBCR_BRANCH_ENABLE_BIT BIT(0)
62#define CBCR_BRANCH_OFF_BIT BIT(31)
63#define CMD_RCGR_CONFIG_UPDATE_BIT BIT(0)
64#define CMD_RCGR_ROOT_STATUS_BIT BIT(31)
65#define BCR_BLK_ARES_BIT BIT(0)
66#define CBCR_HW_CTL_BIT BIT(1)
67#define CFG_RCGR_DIV_MASK BM(4, 0)
68#define CFG_RCGR_SRC_SEL_MASK BM(10, 8)
69#define MND_MODE_MASK BM(13, 12)
70#define MND_DUAL_EDGE_MODE_BVAL BVAL(13, 12, 0x2)
71#define CMD_RCGR_CONFIG_DIRTY_MASK BM(7, 4)
72#define CBCR_BRANCH_CDIV_MASK BM(24, 16)
73#define CBCR_BRANCH_CDIV_MASKED(val) BVAL(24, 16, (val));
74
75enum branch_state {
76 BRANCH_ON,
77 BRANCH_OFF,
78};
79
80/*
81 * RCG functions
82 */
83
84/*
85 * Update an RCG with a new configuration. This may include a new M, N, or D
86 * value, source selection or pre-divider value.
87 *
88 */
89static void rcg_update_config(struct rcg_clk *rcg)
90{
91 u32 cmd_rcgr_regval, count;
92
93 cmd_rcgr_regval = readl_relaxed(CMD_RCGR_REG(rcg));
94 cmd_rcgr_regval |= CMD_RCGR_CONFIG_UPDATE_BIT;
95 writel_relaxed(cmd_rcgr_regval, CMD_RCGR_REG(rcg));
96
97 /* Wait for update to take effect */
98 for (count = UPDATE_CHECK_MAX_LOOPS; count > 0; count--) {
99 if (!(readl_relaxed(CMD_RCGR_REG(rcg)) &
100 CMD_RCGR_CONFIG_UPDATE_BIT))
101 return;
102 udelay(1);
103 }
104
105 WARN(count == 0, "%s: rcg didn't update its configuration.",
106 rcg->c.dbg_name);
107}
108
109/* RCG set rate function for clocks with Half Integer Dividers. */
110void set_rate_hid(struct rcg_clk *rcg, struct clk_freq_tbl *nf)
111{
112 u32 cfg_regval;
113
114 cfg_regval = readl_relaxed(CFG_RCGR_REG(rcg));
115 cfg_regval &= ~(CFG_RCGR_DIV_MASK | CFG_RCGR_SRC_SEL_MASK);
116 cfg_regval |= nf->div_src_val;
117 writel_relaxed(cfg_regval, CFG_RCGR_REG(rcg));
118
119 rcg_update_config(rcg);
120}
121
122/* RCG set rate function for clocks with MND & Half Integer Dividers. */
123void set_rate_mnd(struct rcg_clk *rcg, struct clk_freq_tbl *nf)
124{
125 u32 cfg_regval;
126
127 writel_relaxed(nf->m_val, M_REG(rcg));
128 writel_relaxed(nf->n_val, N_REG(rcg));
129 writel_relaxed(nf->d_val, D_REG(rcg));
130
131 cfg_regval = readl_relaxed(CFG_RCGR_REG(rcg));
132 cfg_regval &= ~(CFG_RCGR_DIV_MASK | CFG_RCGR_SRC_SEL_MASK);
133 cfg_regval |= nf->div_src_val;
134
135 /* Activate or disable the M/N:D divider as necessary */
136 cfg_regval &= ~MND_MODE_MASK;
137 if (nf->n_val != 0)
138 cfg_regval |= MND_DUAL_EDGE_MODE_BVAL;
139 writel_relaxed(cfg_regval, CFG_RCGR_REG(rcg));
140
141 rcg_update_config(rcg);
142}
143
144static int rcg_clk_enable(struct clk *c)
145{
146 struct rcg_clk *rcg = to_rcg_clk(c);
147
148 WARN(rcg->current_freq == &rcg_dummy_freq,
149 "Attempting to enable %s before setting its rate. "
150 "Set the rate first!\n", rcg->c.dbg_name);
151
152 return 0;
153}
154
155static int rcg_clk_set_rate(struct clk *c, unsigned long rate)
156{
157 struct clk_freq_tbl *cf, *nf;
158 struct rcg_clk *rcg = to_rcg_clk(c);
159 int rc = 0;
160 unsigned long flags;
161
162 for (nf = rcg->freq_tbl; nf->freq_hz != FREQ_END
163 && nf->freq_hz != rate; nf++)
164 ;
165
166 if (nf->freq_hz == FREQ_END)
167 return -EINVAL;
168
Vikram Mulukutla8810e342011-10-20 20:26:53 -0700169 cf = rcg->current_freq;
Vikram Mulukutla8810e342011-10-20 20:26:53 -0700170
171 if (rcg->c.count) {
172 /* TODO: Modify to use the prepare API */
173 /* Enable source clock dependency for the new freq. */
174 rc = clk_enable(nf->src_clk);
175 if (rc)
176 goto out;
177 }
178
179 BUG_ON(!rcg->set_rate);
180
181 spin_lock_irqsave(&local_clock_reg_lock, flags);
182
183 /* Perform clock-specific frequency switch operations. */
184 rcg->set_rate(rcg, nf);
185
186 spin_unlock_irqrestore(&local_clock_reg_lock, flags);
187
188 /* Release source requirements of the old freq. */
189 if (rcg->c.count)
190 clk_disable(cf->src_clk);
191
192 rcg->current_freq = nf;
193out:
194 return rc;
195}
196
197/* Return a supported rate that's at least the specified rate. */
198static long rcg_clk_round_rate(struct clk *c, unsigned long rate)
199{
200 struct rcg_clk *rcg = to_rcg_clk(c);
201 struct clk_freq_tbl *f;
202
203 for (f = rcg->freq_tbl; f->freq_hz != FREQ_END; f++)
204 if (f->freq_hz >= rate)
205 return f->freq_hz;
206
207 return -EPERM;
208}
209
210/* Return the nth supported frequency for a given clock. */
211static int rcg_clk_list_rate(struct clk *c, unsigned n)
212{
213 struct rcg_clk *rcg = to_rcg_clk(c);
214
215 if (!rcg->freq_tbl || rcg->freq_tbl->freq_hz == FREQ_END)
216 return -ENXIO;
217
218 return (rcg->freq_tbl + n)->freq_hz;
219}
220
221static struct clk *rcg_clk_get_parent(struct clk *c)
222{
223 return to_rcg_clk(c)->current_freq->src_clk;
224}
225
226static enum handoff _rcg_clk_handoff(struct rcg_clk *rcg, int has_mnd)
227{
228 u32 n_regval = 0, m_regval = 0, d_regval = 0;
229 u32 cfg_regval;
230 struct clk_freq_tbl *freq;
231 u32 cmd_rcgr_regval;
232
233 /* Is the root enabled? */
234 cmd_rcgr_regval = readl_relaxed(CMD_RCGR_REG(rcg));
235 if ((cmd_rcgr_regval & CMD_RCGR_ROOT_STATUS_BIT))
236 return HANDOFF_DISABLED_CLK;
237
238 /* Is there a pending configuration? */
239 if (cmd_rcgr_regval & CMD_RCGR_CONFIG_DIRTY_MASK)
240 return HANDOFF_UNKNOWN_RATE;
241
242 /* Get values of m, n, d, div and src_sel registers. */
243 if (has_mnd) {
244 m_regval = readl_relaxed(M_REG(rcg));
245 n_regval = readl_relaxed(N_REG(rcg));
246 d_regval = readl_relaxed(D_REG(rcg));
247
248 /*
249 * The n and d values stored in the frequency tables are sign
250 * extended to 32 bits. The n and d values in the registers are
251 * sign extended to 8 or 16 bits. Sign extend the values read
252 * from the registers so that they can be compared to the
253 * values in the frequency tables.
254 */
255 n_regval |= (n_regval >> 8) ? BM(31, 16) : BM(31, 8);
256 d_regval |= (d_regval >> 8) ? BM(31, 16) : BM(31, 8);
257 }
258
259 cfg_regval = readl_relaxed(CFG_RCGR_REG(rcg));
260 cfg_regval &= CFG_RCGR_SRC_SEL_MASK | CFG_RCGR_DIV_MASK
261 | MND_MODE_MASK;
262
263 /* If mnd counter is present, check if it's in use. */
264 has_mnd = (has_mnd) &&
265 ((cfg_regval & MND_MODE_MASK) == MND_DUAL_EDGE_MODE_BVAL);
266
267 /*
268 * Clear out the mn counter mode bits since we now want to compare only
269 * the source mux selection and pre-divider values in the registers.
270 */
271 cfg_regval &= ~MND_MODE_MASK;
272
273 /* Figure out what rate the rcg is running at */
274 for (freq = rcg->freq_tbl; freq->freq_hz != FREQ_END; freq++) {
275 if (freq->div_src_val != cfg_regval)
276 continue;
277 if (has_mnd) {
278 if (freq->m_val != m_regval)
279 continue;
280 if (freq->n_val != n_regval)
281 continue;
282 if (freq->d_val != d_regval)
283 continue;
284 }
Vikram Mulukutla8810e342011-10-20 20:26:53 -0700285 break;
286 }
287
288 /* No known frequency found */
289 if (freq->freq_hz == FREQ_END)
290 return HANDOFF_UNKNOWN_RATE;
291
292 rcg->current_freq = freq;
293 rcg->c.rate = freq->freq_hz;
294
295 return HANDOFF_ENABLED_CLK;
296}
297
298static enum handoff rcg_mnd_clk_handoff(struct clk *c)
299{
300 return _rcg_clk_handoff(to_rcg_clk(c), 1);
301}
302
303static enum handoff rcg_clk_handoff(struct clk *c)
304{
305 return _rcg_clk_handoff(to_rcg_clk(c), 0);
306}
307
308/*
309 * Branch clock functions
310 */
311static void branch_clk_halt_check(u32 halt_check, const char *clk_name,
312 void __iomem *cbcr_reg,
313 enum branch_state br_status)
314{
Vikram Mulukutla86b9fa62012-05-02 16:39:14 -0700315 char *status_str = (br_status == BRANCH_ON) ? "off" : "on";
Vikram Mulukutla8810e342011-10-20 20:26:53 -0700316
317 /*
318 * Use a memory barrier since some halt status registers are
319 * not within the same 1K segment as the branch/root enable
320 * registers. It's also needed in the udelay() case to ensure
321 * the delay starts after the branch disable.
322 */
323 mb();
324
325 if (halt_check == DELAY || halt_check == HALT_VOTED) {
326 udelay(HALT_CHECK_DELAY_US);
327 } else if (halt_check == HALT) {
328 int count;
329 for (count = HALT_CHECK_MAX_LOOPS; count > 0; count--) {
330 if (br_status == BRANCH_ON
331 && !(readl_relaxed(cbcr_reg)
332 & CBCR_BRANCH_OFF_BIT))
333 return;
334 if (br_status == BRANCH_OFF
335 && (readl_relaxed(cbcr_reg)
336 & CBCR_BRANCH_OFF_BIT))
337 return;
338 udelay(1);
339 }
340 WARN(count == 0, "%s status stuck %s", clk_name, status_str);
341 }
342}
343
344static int branch_clk_enable(struct clk *c)
345{
346 unsigned long flags;
347 u32 cbcr_val;
348 struct branch_clk *branch = to_branch_clk(c);
349
350 spin_lock_irqsave(&local_clock_reg_lock, flags);
351 cbcr_val = readl_relaxed(CBCR_REG(branch));
352 cbcr_val |= CBCR_BRANCH_ENABLE_BIT;
353 writel_relaxed(cbcr_val, CBCR_REG(branch));
354 spin_unlock_irqrestore(&local_clock_reg_lock, flags);
355
356 /* Wait for clock to enable before continuing. */
357 branch_clk_halt_check(branch->halt_check, branch->c.dbg_name,
358 CBCR_REG(branch), BRANCH_ON);
359
360 return 0;
361}
362
363static void branch_clk_disable(struct clk *c)
364{
365 unsigned long flags;
366 struct branch_clk *branch = to_branch_clk(c);
367 u32 reg_val;
368
369 spin_lock_irqsave(&local_clock_reg_lock, flags);
370 reg_val = readl_relaxed(CBCR_REG(branch));
371 reg_val &= ~CBCR_BRANCH_ENABLE_BIT;
372 writel_relaxed(reg_val, CBCR_REG(branch));
373 spin_unlock_irqrestore(&local_clock_reg_lock, flags);
374
375 /* Wait for clock to disable before continuing. */
376 branch_clk_halt_check(branch->halt_check, branch->c.dbg_name,
377 CBCR_REG(branch), BRANCH_OFF);
378}
379
380static int branch_cdiv_set_rate(struct branch_clk *branch, unsigned long rate)
381{
382 unsigned long flags;
383 u32 regval;
384
385 if (rate > branch->max_div)
386 return -EINVAL;
387
388 spin_lock_irqsave(&local_clock_reg_lock, flags);
389 regval = readl_relaxed(CBCR_REG(branch));
390 regval &= ~CBCR_BRANCH_CDIV_MASK;
391 regval |= CBCR_BRANCH_CDIV_MASKED(rate);
392 writel_relaxed(regval, CBCR_REG(branch));
393 spin_unlock_irqrestore(&local_clock_reg_lock, flags);
394
395 return 0;
396}
397
398static int branch_clk_set_rate(struct clk *c, unsigned long rate)
399{
400 struct branch_clk *branch = to_branch_clk(c);
401
402 if (branch->max_div)
403 return branch_cdiv_set_rate(branch, rate);
404
405 if (!branch->has_sibling)
406 return clk_set_rate(branch->parent, rate);
407
408 return -EPERM;
409}
410
Vikram Mulukutla5c3252d2012-05-25 12:28:54 -0700411static long branch_clk_round_rate(struct clk *c, unsigned long rate)
412{
413 struct branch_clk *branch = to_branch_clk(c);
414
415 if (branch->max_div)
416 return rate <= (branch->max_div) ? rate : -EPERM;
417
418 if (!branch->has_sibling)
419 return clk_round_rate(branch->parent, rate);
420
421 return -EPERM;
422}
423
Vikram Mulukutla8810e342011-10-20 20:26:53 -0700424static unsigned long branch_clk_get_rate(struct clk *c)
425{
426 struct branch_clk *branch = to_branch_clk(c);
427
428 if (branch->max_div)
429 return branch->c.rate;
430
431 if (!branch->has_sibling)
432 return clk_get_rate(branch->parent);
433
434 return 0;
435}
436
437static struct clk *branch_clk_get_parent(struct clk *c)
438{
439 return to_branch_clk(c)->parent;
440}
441
442static int branch_clk_list_rate(struct clk *c, unsigned n)
443{
444 struct branch_clk *branch = to_branch_clk(c);
445
446 if (branch->has_sibling == 1)
447 return -ENXIO;
448
449 if (branch->parent)
450 return rcg_clk_list_rate(branch->parent, n);
451 else
452 return 0;
453}
454
455static enum handoff branch_clk_handoff(struct clk *c)
456{
457 struct branch_clk *branch = to_branch_clk(c);
458 u32 cbcr_regval;
459
460 cbcr_regval = readl_relaxed(CBCR_REG(branch));
461 if ((cbcr_regval & CBCR_BRANCH_OFF_BIT))
462 return HANDOFF_DISABLED_CLK;
Vikram Mulukutla8810e342011-10-20 20:26:53 -0700463
464 if (branch->parent) {
465 if (branch->parent->ops->handoff)
466 return branch->parent->ops->handoff(branch->parent);
467 }
468
469 return HANDOFF_ENABLED_CLK;
470}
471
472static int __branch_clk_reset(void __iomem *bcr_reg,
Vikram Mulukutla21c6b912012-06-14 14:18:45 -0700473 enum clk_reset_action action)
Vikram Mulukutla8810e342011-10-20 20:26:53 -0700474{
475 int ret = 0;
476 unsigned long flags;
477 u32 reg_val;
478
Vikram Mulukutla8810e342011-10-20 20:26:53 -0700479 spin_lock_irqsave(&local_clock_reg_lock, flags);
480 reg_val = readl_relaxed(bcr_reg);
481 switch (action) {
482 case CLK_RESET_ASSERT:
483 reg_val |= BCR_BLK_ARES_BIT;
484 break;
485 case CLK_RESET_DEASSERT:
486 reg_val &= ~BCR_BLK_ARES_BIT;
487 break;
488 default:
489 ret = -EINVAL;
490 }
491 writel_relaxed(reg_val, bcr_reg);
492 spin_unlock_irqrestore(&local_clock_reg_lock, flags);
493
494 /* Make sure write is issued before returning. */
495 mb();
496
497 return ret;
498}
499
500static int branch_clk_reset(struct clk *c, enum clk_reset_action action)
501{
502 struct branch_clk *branch = to_branch_clk(c);
Vikram Mulukutla21c6b912012-06-14 14:18:45 -0700503
504 if (!branch->bcr_reg) {
505 WARN("clk_reset called on an unsupported clock (%s)\n",
506 c->dbg_name);
507 return -EPERM;
508 }
509 return __branch_clk_reset(BCR_REG(branch), action);
Vikram Mulukutla8810e342011-10-20 20:26:53 -0700510}
511
512/*
513 * Voteable clock functions
514 */
515static int local_vote_clk_reset(struct clk *c, enum clk_reset_action action)
516{
Vikram Mulukutla27784c02012-06-06 13:37:36 -0700517 struct local_vote_clk *vclk = to_local_vote_clk(c);
Vikram Mulukutla21c6b912012-06-14 14:18:45 -0700518
519 if (!vclk->bcr_reg) {
520 WARN("clk_reset called on an unsupported clock (%s)\n",
521 c->dbg_name);
522 return -EPERM;
523 }
524 return __branch_clk_reset(BCR_REG(vclk), action);
Vikram Mulukutla8810e342011-10-20 20:26:53 -0700525}
526
527static int local_vote_clk_enable(struct clk *c)
528{
529 unsigned long flags;
530 u32 ena;
531 struct local_vote_clk *vclk = to_local_vote_clk(c);
532
533 spin_lock_irqsave(&local_clock_reg_lock, flags);
534 ena = readl_relaxed(VOTE_REG(vclk));
535 ena |= vclk->en_mask;
536 writel_relaxed(ena, VOTE_REG(vclk));
537 spin_unlock_irqrestore(&local_clock_reg_lock, flags);
538
539 branch_clk_halt_check(vclk->halt_check, c->dbg_name, CBCR_REG(vclk),
540 BRANCH_ON);
541
542 return 0;
543}
544
545static void local_vote_clk_disable(struct clk *c)
546{
547 unsigned long flags;
548 u32 ena;
549 struct local_vote_clk *vclk = to_local_vote_clk(c);
550
551 spin_lock_irqsave(&local_clock_reg_lock, flags);
552 ena = readl_relaxed(VOTE_REG(vclk));
553 ena &= ~vclk->en_mask;
554 writel_relaxed(ena, VOTE_REG(vclk));
555 spin_unlock_irqrestore(&local_clock_reg_lock, flags);
556}
557
558static enum handoff local_vote_clk_handoff(struct clk *c)
559{
560 struct local_vote_clk *vclk = to_local_vote_clk(c);
561 u32 vote_regval;
562
563 /* Is the branch voted on by apps? */
564 vote_regval = readl_relaxed(VOTE_REG(vclk));
565 if (!(vote_regval & vclk->en_mask))
566 return HANDOFF_DISABLED_CLK;
Vikram Mulukutla8810e342011-10-20 20:26:53 -0700567
568 return HANDOFF_ENABLED_CLK;
569}
570
571struct clk_ops clk_ops_rcg = {
572 .enable = rcg_clk_enable,
573 .set_rate = rcg_clk_set_rate,
574 .list_rate = rcg_clk_list_rate,
575 .round_rate = rcg_clk_round_rate,
576 .get_parent = rcg_clk_get_parent,
577 .handoff = rcg_clk_handoff,
578};
579
580struct clk_ops clk_ops_rcg_mnd = {
581 .enable = rcg_clk_enable,
582 .set_rate = rcg_clk_set_rate,
583 .list_rate = rcg_clk_list_rate,
584 .round_rate = rcg_clk_round_rate,
585 .get_parent = rcg_clk_get_parent,
586 .handoff = rcg_mnd_clk_handoff,
587};
588
589struct clk_ops clk_ops_branch = {
590 .enable = branch_clk_enable,
591 .disable = branch_clk_disable,
592 .auto_off = branch_clk_disable,
593 .set_rate = branch_clk_set_rate,
594 .get_rate = branch_clk_get_rate,
595 .list_rate = branch_clk_list_rate,
Vikram Mulukutla5c3252d2012-05-25 12:28:54 -0700596 .round_rate = branch_clk_round_rate,
Vikram Mulukutla8810e342011-10-20 20:26:53 -0700597 .reset = branch_clk_reset,
598 .get_parent = branch_clk_get_parent,
599 .handoff = branch_clk_handoff,
600};
601
602struct clk_ops clk_ops_vote = {
603 .enable = local_vote_clk_enable,
604 .disable = local_vote_clk_disable,
605 .auto_off = local_vote_clk_disable,
606 .reset = local_vote_clk_reset,
607 .handoff = local_vote_clk_handoff,
608};