]> rtime.felk.cvut.cz Git - can-eth-gw-linux.git/blob - arch/arm/mach-omap2/dpll44xx.c
mm/bootmem.c: remove unused wrapper function reserve_bootmem_generic()
[can-eth-gw-linux.git] / arch / arm / mach-omap2 / dpll44xx.c
1 /*
2  * OMAP4-specific DPLL control functions
3  *
4  * Copyright (C) 2011 Texas Instruments, Inc.
5  * Rajendra Nayak
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  */
11
12 #include <linux/kernel.h>
13 #include <linux/errno.h>
14 #include <linux/clk.h>
15 #include <linux/io.h>
16 #include <linux/bitops.h>
17
18 #include "soc.h"
19 #include "clock.h"
20 #include "clock44xx.h"
21 #include "cm-regbits-44xx.h"
22
23 /* Supported only on OMAP4 */
24 int omap4_dpllmx_gatectrl_read(struct clk *clk)
25 {
26         u32 v;
27         u32 mask;
28
29         if (!clk || !clk->clksel_reg || !cpu_is_omap44xx())
30                 return -EINVAL;
31
32         mask = clk->flags & CLOCK_CLKOUTX2 ?
33                         OMAP4430_DPLL_CLKOUTX2_GATE_CTRL_MASK :
34                         OMAP4430_DPLL_CLKOUT_GATE_CTRL_MASK;
35
36         v = __raw_readl(clk->clksel_reg);
37         v &= mask;
38         v >>= __ffs(mask);
39
40         return v;
41 }
42
43 void omap4_dpllmx_allow_gatectrl(struct clk *clk)
44 {
45         u32 v;
46         u32 mask;
47
48         if (!clk || !clk->clksel_reg || !cpu_is_omap44xx())
49                 return;
50
51         mask = clk->flags & CLOCK_CLKOUTX2 ?
52                         OMAP4430_DPLL_CLKOUTX2_GATE_CTRL_MASK :
53                         OMAP4430_DPLL_CLKOUT_GATE_CTRL_MASK;
54
55         v = __raw_readl(clk->clksel_reg);
56         /* Clear the bit to allow gatectrl */
57         v &= ~mask;
58         __raw_writel(v, clk->clksel_reg);
59 }
60
61 void omap4_dpllmx_deny_gatectrl(struct clk *clk)
62 {
63         u32 v;
64         u32 mask;
65
66         if (!clk || !clk->clksel_reg || !cpu_is_omap44xx())
67                 return;
68
69         mask = clk->flags & CLOCK_CLKOUTX2 ?
70                         OMAP4430_DPLL_CLKOUTX2_GATE_CTRL_MASK :
71                         OMAP4430_DPLL_CLKOUT_GATE_CTRL_MASK;
72
73         v = __raw_readl(clk->clksel_reg);
74         /* Set the bit to deny gatectrl */
75         v |= mask;
76         __raw_writel(v, clk->clksel_reg);
77 }
78
79 const struct clkops clkops_omap4_dpllmx_ops = {
80         .allow_idle     = omap4_dpllmx_allow_gatectrl,
81         .deny_idle      = omap4_dpllmx_deny_gatectrl,
82 };
83
84 /**
85  * omap4_dpll_regm4xen_recalc - compute DPLL rate, considering REGM4XEN bit
86  * @clk: struct clk * of the DPLL to compute the rate for
87  *
88  * Compute the output rate for the OMAP4 DPLL represented by @clk.
89  * Takes the REGM4XEN bit into consideration, which is needed for the
90  * OMAP4 ABE DPLL.  Returns the DPLL's output rate (before M-dividers)
91  * upon success, or 0 upon error.
92  */
93 unsigned long omap4_dpll_regm4xen_recalc(struct clk *clk)
94 {
95         u32 v;
96         unsigned long rate;
97         struct dpll_data *dd;
98
99         if (!clk || !clk->dpll_data)
100                 return 0;
101
102         dd = clk->dpll_data;
103
104         rate = omap2_get_dpll_rate(clk);
105
106         /* regm4xen adds a multiplier of 4 to DPLL calculations */
107         v = __raw_readl(dd->control_reg);
108         if (v & OMAP4430_DPLL_REGM4XEN_MASK)
109                 rate *= OMAP4430_REGM4XEN_MULT;
110
111         return rate;
112 }
113
114 /**
115  * omap4_dpll_regm4xen_round_rate - round DPLL rate, considering REGM4XEN bit
116  * @clk: struct clk * of the DPLL to round a rate for
117  * @target_rate: the desired rate of the DPLL
118  *
119  * Compute the rate that would be programmed into the DPLL hardware
120  * for @clk if set_rate() were to be provided with the rate
121  * @target_rate.  Takes the REGM4XEN bit into consideration, which is
122  * needed for the OMAP4 ABE DPLL.  Returns the rounded rate (before
123  * M-dividers) upon success, -EINVAL if @clk is null or not a DPLL, or
124  * ~0 if an error occurred in omap2_dpll_round_rate().
125  */
126 long omap4_dpll_regm4xen_round_rate(struct clk *clk, unsigned long target_rate)
127 {
128         u32 v;
129         struct dpll_data *dd;
130         long r;
131
132         if (!clk || !clk->dpll_data)
133                 return -EINVAL;
134
135         dd = clk->dpll_data;
136
137         /* regm4xen adds a multiplier of 4 to DPLL calculations */
138         v = __raw_readl(dd->control_reg) & OMAP4430_DPLL_REGM4XEN_MASK;
139
140         if (v)
141                 target_rate = target_rate / OMAP4430_REGM4XEN_MULT;
142
143         r = omap2_dpll_round_rate(clk, target_rate);
144         if (r == ~0)
145                 return r;
146
147         if (v)
148                 clk->dpll_data->last_rounded_rate *= OMAP4430_REGM4XEN_MULT;
149
150         return clk->dpll_data->last_rounded_rate;
151 }