blob: 354bbadb3bce91b01346ab3548f21e4962d42751 [file] [log] [blame]
Sebastian Hesselbartha4518402013-05-11 03:08:02 +02001/*
2 * Marvell EBU SoC common clock handling
3 *
4 * Copyright (C) 2012 Marvell
5 *
6 * Gregory CLEMENT <gregory.clement@free-electrons.com>
7 * Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
8 * Andrew Lunn <andrew@lunn.ch>
9 *
10 * This file is licensed under the terms of the GNU General Public
11 * License version 2. This program is licensed "as is" without any
12 * warranty of any kind, whether express or implied.
13 */
14
15#include <linux/kernel.h>
16#include <linux/clk.h>
17#include <linux/clkdev.h>
18#include <linux/clk-provider.h>
19#include <linux/io.h>
20#include <linux/of.h>
21#include <linux/of_address.h>
22
23#include "common.h"
24
25/*
26 * Core Clocks
27 */
28
Gregory CLEMENT15917b12014-09-02 10:15:16 +020029#define SSCG_CONF_MODE(reg) (((reg) >> 16) & 0x3)
30#define SSCG_SPREAD_DOWN 0x0
31#define SSCG_SPREAD_UP 0x1
32#define SSCG_SPREAD_CENTRAL 0x2
33#define SSCG_CONF_LOW(reg) (((reg) >> 8) & 0xFF)
34#define SSCG_CONF_HIGH(reg) ((reg) & 0xFF)
35
Sebastian Hesselbartha4518402013-05-11 03:08:02 +020036static struct clk_onecell_data clk_data;
37
Gregory CLEMENT15917b12014-09-02 10:15:16 +020038/*
39 * This function can be used by the Kirkwood, the Armada 370, the
40 * Armada XP and the Armada 375 SoC. The name of the function was
41 * chosen following the dt convention: using the first known SoC
42 * compatible with it.
43 */
44u32 kirkwood_fix_sscg_deviation(struct device_node *np, u32 system_clk)
45{
46 struct device_node *sscg_np = NULL;
47 void __iomem *sscg_map;
48 u32 sscg_reg;
49 s32 low_bound, high_bound;
50 u64 freq_swing_half;
51
52 sscg_np = of_find_node_by_name(np, "sscg");
53 if (sscg_np == NULL) {
54 pr_err("cannot get SSCG register node\n");
55 return system_clk;
56 }
57
58 sscg_map = of_iomap(sscg_np, 0);
59 if (sscg_map == NULL) {
60 pr_err("cannot map SSCG register\n");
61 goto out;
62 }
63
64 sscg_reg = readl(sscg_map);
65 high_bound = SSCG_CONF_HIGH(sscg_reg);
66 low_bound = SSCG_CONF_LOW(sscg_reg);
67
68 if ((high_bound - low_bound) <= 0)
69 goto out;
70 /*
71 * From Marvell engineer we got the following formula (when
72 * this code was written, the datasheet was erroneous)
73 * Spread percentage = 1/96 * (H - L) / H
74 * H = SSCG_High_Boundary
75 * L = SSCG_Low_Boundary
76 *
77 * As the deviation is half of spread then it lead to the
78 * following formula in the code.
79 *
80 * To avoid an overflow and not lose any significant digit in
81 * the same time we have to use a 64 bit integer.
82 */
83
84 freq_swing_half = (((u64)high_bound - (u64)low_bound)
85 * (u64)system_clk);
86 do_div(freq_swing_half, (2 * 96 * high_bound));
87
88 switch (SSCG_CONF_MODE(sscg_reg)) {
89 case SSCG_SPREAD_DOWN:
90 system_clk -= freq_swing_half;
91 break;
92 case SSCG_SPREAD_UP:
93 system_clk += freq_swing_half;
94 break;
95 case SSCG_SPREAD_CENTRAL:
96 default:
97 break;
98 }
99
100 iounmap(sscg_map);
101
102out:
103 of_node_put(sscg_np);
104
105 return system_clk;
106}
107
Sebastian Hesselbartha4518402013-05-11 03:08:02 +0200108void __init mvebu_coreclk_setup(struct device_node *np,
109 const struct coreclk_soc_desc *desc)
110{
111 const char *tclk_name = "tclk";
112 const char *cpuclk_name = "cpuclk";
113 void __iomem *base;
114 unsigned long rate;
115 int n;
116
117 base = of_iomap(np, 0);
118 if (WARN_ON(!base))
119 return;
120
121 /* Allocate struct for TCLK, cpu clk, and core ratio clocks */
122 clk_data.clk_num = 2 + desc->num_ratios;
123 clk_data.clks = kzalloc(clk_data.clk_num * sizeof(struct clk *),
124 GFP_KERNEL);
Jisheng Zhangf98d0072013-08-23 10:34:01 +0800125 if (WARN_ON(!clk_data.clks)) {
126 iounmap(base);
Sebastian Hesselbartha4518402013-05-11 03:08:02 +0200127 return;
Jisheng Zhangf98d0072013-08-23 10:34:01 +0800128 }
Sebastian Hesselbartha4518402013-05-11 03:08:02 +0200129
130 /* Register TCLK */
131 of_property_read_string_index(np, "clock-output-names", 0,
132 &tclk_name);
133 rate = desc->get_tclk_freq(base);
134 clk_data.clks[0] = clk_register_fixed_rate(NULL, tclk_name, NULL,
135 CLK_IS_ROOT, rate);
136 WARN_ON(IS_ERR(clk_data.clks[0]));
137
138 /* Register CPU clock */
139 of_property_read_string_index(np, "clock-output-names", 1,
140 &cpuclk_name);
141 rate = desc->get_cpu_freq(base);
Gregory CLEMENT15917b12014-09-02 10:15:16 +0200142
143 if (desc->is_sscg_enabled && desc->fix_sscg_deviation
144 && desc->is_sscg_enabled(base))
145 rate = desc->fix_sscg_deviation(np, rate);
146
Sebastian Hesselbartha4518402013-05-11 03:08:02 +0200147 clk_data.clks[1] = clk_register_fixed_rate(NULL, cpuclk_name, NULL,
148 CLK_IS_ROOT, rate);
149 WARN_ON(IS_ERR(clk_data.clks[1]));
150
151 /* Register fixed-factor clocks derived from CPU clock */
152 for (n = 0; n < desc->num_ratios; n++) {
153 const char *rclk_name = desc->ratios[n].name;
154 int mult, div;
155
156 of_property_read_string_index(np, "clock-output-names",
157 2+n, &rclk_name);
158 desc->get_clk_ratio(base, desc->ratios[n].id, &mult, &div);
159 clk_data.clks[2+n] = clk_register_fixed_factor(NULL, rclk_name,
160 cpuclk_name, 0, mult, div);
161 WARN_ON(IS_ERR(clk_data.clks[2+n]));
162 };
163
164 /* SAR register isn't needed anymore */
165 iounmap(base);
166
167 of_clk_add_provider(np, of_clk_src_onecell_get, &clk_data);
168}
169
170/*
171 * Clock Gating Control
172 */
173
174struct clk_gating_ctrl {
175 spinlock_t lock;
176 struct clk **gates;
177 int num_gates;
178};
179
180#define to_clk_gate(_hw) container_of(_hw, struct clk_gate, hw)
181
182static struct clk *clk_gating_get_src(
183 struct of_phandle_args *clkspec, void *data)
184{
185 struct clk_gating_ctrl *ctrl = (struct clk_gating_ctrl *)data;
186 int n;
187
188 if (clkspec->args_count < 1)
189 return ERR_PTR(-EINVAL);
190
191 for (n = 0; n < ctrl->num_gates; n++) {
192 struct clk_gate *gate =
193 to_clk_gate(__clk_get_hw(ctrl->gates[n]));
194 if (clkspec->args[0] == gate->bit_idx)
195 return ctrl->gates[n];
196 }
197 return ERR_PTR(-ENODEV);
198}
199
200void __init mvebu_clk_gating_setup(struct device_node *np,
201 const struct clk_gating_soc_desc *desc)
202{
203 struct clk_gating_ctrl *ctrl;
204 struct clk *clk;
205 void __iomem *base;
206 const char *default_parent = NULL;
207 int n;
208
209 base = of_iomap(np, 0);
210 if (WARN_ON(!base))
211 return;
212
213 clk = of_clk_get(np, 0);
214 if (!IS_ERR(clk)) {
215 default_parent = __clk_get_name(clk);
216 clk_put(clk);
217 }
218
219 ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
220 if (WARN_ON(!ctrl))
Jisheng Zhangf98d0072013-08-23 10:34:01 +0800221 goto ctrl_out;
Sebastian Hesselbartha4518402013-05-11 03:08:02 +0200222
223 spin_lock_init(&ctrl->lock);
224
225 /* Count, allocate, and register clock gates */
226 for (n = 0; desc[n].name;)
227 n++;
228
229 ctrl->num_gates = n;
230 ctrl->gates = kzalloc(ctrl->num_gates * sizeof(struct clk *),
231 GFP_KERNEL);
Jisheng Zhangf98d0072013-08-23 10:34:01 +0800232 if (WARN_ON(!ctrl->gates))
233 goto gates_out;
Sebastian Hesselbartha4518402013-05-11 03:08:02 +0200234
235 for (n = 0; n < ctrl->num_gates; n++) {
236 const char *parent =
237 (desc[n].parent) ? desc[n].parent : default_parent;
238 ctrl->gates[n] = clk_register_gate(NULL, desc[n].name, parent,
239 desc[n].flags, base, desc[n].bit_idx,
240 0, &ctrl->lock);
241 WARN_ON(IS_ERR(ctrl->gates[n]));
242 }
243
244 of_clk_add_provider(np, clk_gating_get_src, ctrl);
Jisheng Zhangf98d0072013-08-23 10:34:01 +0800245
246 return;
247gates_out:
248 kfree(ctrl);
249ctrl_out:
250 iounmap(base);
Sebastian Hesselbartha4518402013-05-11 03:08:02 +0200251}