blob: 43dacad5c96d30cb53cc68aa0ed53163b26547bc [file] [log] [blame]
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +02001/*
2 * Copyright (C) 2013 Boris BREZILLON <b.brezillon@overkiz.com>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 */
10
11#include <linux/clk-provider.h>
12#include <linux/clkdev.h>
13#include <linux/clk/at91_pmc.h>
14#include <linux/of.h>
15#include <linux/of_address.h>
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +020016#include <linux/io.h>
17#include <linux/wait.h>
18#include <linux/sched.h>
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +020019
20#include "pmc.h"
21
22#define PROG_SOURCE_MAX 5
23#define PROG_ID_MAX 7
24
25#define PROG_STATUS_MASK(id) (1 << ((id) + 8))
26#define PROG_PRES_MASK 0x7
27#define PROG_MAX_RM9200_CSS 3
28
29struct clk_programmable_layout {
30 u8 pres_shift;
31 u8 css_mask;
32 u8 have_slck_mck;
33};
34
35struct clk_programmable {
36 struct clk_hw hw;
37 struct at91_pmc *pmc;
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +020038 u8 id;
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +020039 const struct clk_programmable_layout *layout;
40};
41
42#define to_clk_programmable(hw) container_of(hw, struct clk_programmable, hw)
43
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +020044static unsigned long clk_programmable_recalc_rate(struct clk_hw *hw,
45 unsigned long parent_rate)
46{
Jean-Jacques Hiblotcce6db82014-03-11 10:00:34 +010047 u32 pres;
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +020048 struct clk_programmable *prog = to_clk_programmable(hw);
49 struct at91_pmc *pmc = prog->pmc;
50 const struct clk_programmable_layout *layout = prog->layout;
51
Jean-Jacques Hiblotcce6db82014-03-11 10:00:34 +010052 pres = (pmc_read(pmc, AT91_PMC_PCKR(prog->id)) >> layout->pres_shift) &
53 PROG_PRES_MASK;
54 return parent_rate >> pres;
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +020055}
56
Boris Brezillon0817b622015-07-07 20:48:08 +020057static int clk_programmable_determine_rate(struct clk_hw *hw,
58 struct clk_rate_request *req)
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +020059{
Boris BREZILLON419f6122014-03-11 10:00:32 +010060 struct clk *parent = NULL;
61 long best_rate = -EINVAL;
62 unsigned long parent_rate;
63 unsigned long tmp_rate;
64 int shift;
65 int i;
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +020066
Boris BREZILLON419f6122014-03-11 10:00:32 +010067 for (i = 0; i < __clk_get_num_parents(hw->clk); i++) {
68 parent = clk_get_parent_by_index(hw->clk, i);
69 if (!parent)
70 continue;
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +020071
Boris BREZILLON419f6122014-03-11 10:00:32 +010072 parent_rate = __clk_get_rate(parent);
73 for (shift = 0; shift < PROG_PRES_MASK; shift++) {
74 tmp_rate = parent_rate >> shift;
Boris Brezillon0817b622015-07-07 20:48:08 +020075 if (tmp_rate <= req->rate)
Boris BREZILLON419f6122014-03-11 10:00:32 +010076 break;
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +020077 }
78
Boris Brezillon0817b622015-07-07 20:48:08 +020079 if (tmp_rate > req->rate)
Boris BREZILLON419f6122014-03-11 10:00:32 +010080 continue;
81
Boris Brezillon0817b622015-07-07 20:48:08 +020082 if (best_rate < 0 ||
83 (req->rate - tmp_rate) < (req->rate - best_rate)) {
Boris BREZILLON419f6122014-03-11 10:00:32 +010084 best_rate = tmp_rate;
Boris Brezillon0817b622015-07-07 20:48:08 +020085 req->best_parent_rate = parent_rate;
86 req->best_parent_hw = __clk_get_hw(parent);
Boris BREZILLON419f6122014-03-11 10:00:32 +010087 }
88
89 if (!best_rate)
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +020090 break;
91 }
92
Boris Brezillon0817b622015-07-07 20:48:08 +020093 if (best_rate < 0)
94 return best_rate;
95
96 req->rate = best_rate;
97 return 0;
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +020098}
99
100static int clk_programmable_set_parent(struct clk_hw *hw, u8 index)
101{
102 struct clk_programmable *prog = to_clk_programmable(hw);
103 const struct clk_programmable_layout *layout = prog->layout;
Jean-Jacques Hiblotcce6db82014-03-11 10:00:34 +0100104 struct at91_pmc *pmc = prog->pmc;
105 u32 tmp = pmc_read(pmc, AT91_PMC_PCKR(prog->id)) & ~layout->css_mask;
106
107 if (layout->have_slck_mck)
108 tmp &= AT91_PMC_CSSMCK_MCK;
109
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200110 if (index > layout->css_mask) {
111 if (index > PROG_MAX_RM9200_CSS && layout->have_slck_mck) {
Jean-Jacques Hiblotcce6db82014-03-11 10:00:34 +0100112 tmp |= AT91_PMC_CSSMCK_MCK;
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200113 return 0;
114 } else {
115 return -EINVAL;
116 }
117 }
118
Jean-Jacques Hiblotcce6db82014-03-11 10:00:34 +0100119 pmc_write(pmc, AT91_PMC_PCKR(prog->id), tmp | index);
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200120 return 0;
121}
122
123static u8 clk_programmable_get_parent(struct clk_hw *hw)
124{
125 u32 tmp;
126 u8 ret;
127 struct clk_programmable *prog = to_clk_programmable(hw);
128 struct at91_pmc *pmc = prog->pmc;
129 const struct clk_programmable_layout *layout = prog->layout;
130
131 tmp = pmc_read(pmc, AT91_PMC_PCKR(prog->id));
Jean-Jacques Hiblotcce6db82014-03-11 10:00:34 +0100132 ret = tmp & layout->css_mask;
133 if (layout->have_slck_mck && (tmp & AT91_PMC_CSSMCK_MCK) && !ret)
134 ret = PROG_MAX_RM9200_CSS + 1;
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200135
136 return ret;
137}
138
139static int clk_programmable_set_rate(struct clk_hw *hw, unsigned long rate,
140 unsigned long parent_rate)
141{
142 struct clk_programmable *prog = to_clk_programmable(hw);
Jean-Jacques Hiblotcce6db82014-03-11 10:00:34 +0100143 struct at91_pmc *pmc = prog->pmc;
144 const struct clk_programmable_layout *layout = prog->layout;
Jean-Jacques Hiblot141c71d2014-03-11 10:00:35 +0100145 unsigned long div = parent_rate / rate;
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200146 int shift = 0;
Jean-Jacques Hiblotcce6db82014-03-11 10:00:34 +0100147 u32 tmp = pmc_read(pmc, AT91_PMC_PCKR(prog->id)) &
148 ~(PROG_PRES_MASK << layout->pres_shift);
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200149
Jean-Jacques Hiblot141c71d2014-03-11 10:00:35 +0100150 if (!div)
151 return -EINVAL;
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200152
Jean-Jacques Hiblot141c71d2014-03-11 10:00:35 +0100153 shift = fls(div) - 1;
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200154
Jean-Jacques Hiblot141c71d2014-03-11 10:00:35 +0100155 if (div != (1<<shift))
156 return -EINVAL;
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200157
Jean-Jacques Hiblot141c71d2014-03-11 10:00:35 +0100158 if (shift >= PROG_PRES_MASK)
159 return -EINVAL;
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200160
Jean-Jacques Hiblotcce6db82014-03-11 10:00:34 +0100161 pmc_write(pmc, AT91_PMC_PCKR(prog->id),
162 tmp | (shift << layout->pres_shift));
163
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200164 return 0;
165}
166
167static const struct clk_ops programmable_ops = {
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200168 .recalc_rate = clk_programmable_recalc_rate,
Boris BREZILLON419f6122014-03-11 10:00:32 +0100169 .determine_rate = clk_programmable_determine_rate,
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200170 .get_parent = clk_programmable_get_parent,
171 .set_parent = clk_programmable_set_parent,
172 .set_rate = clk_programmable_set_rate,
173};
174
175static struct clk * __init
Jean-Jacques Hiblotcce6db82014-03-11 10:00:34 +0100176at91_clk_register_programmable(struct at91_pmc *pmc,
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200177 const char *name, const char **parent_names,
178 u8 num_parents, u8 id,
179 const struct clk_programmable_layout *layout)
180{
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200181 struct clk_programmable *prog;
182 struct clk *clk = NULL;
183 struct clk_init_data init;
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200184
185 if (id > PROG_ID_MAX)
186 return ERR_PTR(-EINVAL);
187
188 prog = kzalloc(sizeof(*prog), GFP_KERNEL);
189 if (!prog)
190 return ERR_PTR(-ENOMEM);
191
192 init.name = name;
193 init.ops = &programmable_ops;
194 init.parent_names = parent_names;
195 init.num_parents = num_parents;
196 init.flags = CLK_SET_RATE_GATE | CLK_SET_PARENT_GATE;
197
198 prog->id = id;
199 prog->layout = layout;
200 prog->hw.init = &init;
201 prog->pmc = pmc;
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200202
203 clk = clk_register(NULL, &prog->hw);
204 if (IS_ERR(clk))
205 kfree(prog);
206
207 return clk;
208}
209
210static const struct clk_programmable_layout at91rm9200_programmable_layout = {
211 .pres_shift = 2,
212 .css_mask = 0x3,
213 .have_slck_mck = 0,
214};
215
216static const struct clk_programmable_layout at91sam9g45_programmable_layout = {
217 .pres_shift = 2,
218 .css_mask = 0x3,
219 .have_slck_mck = 1,
220};
221
222static const struct clk_programmable_layout at91sam9x5_programmable_layout = {
223 .pres_shift = 4,
224 .css_mask = 0x7,
225 .have_slck_mck = 0,
226};
227
228static void __init
229of_at91_clk_prog_setup(struct device_node *np, struct at91_pmc *pmc,
230 const struct clk_programmable_layout *layout)
231{
232 int num;
233 u32 id;
234 int i;
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200235 struct clk *clk;
236 int num_parents;
237 const char *parent_names[PROG_SOURCE_MAX];
238 const char *name;
239 struct device_node *progclknp;
240
Geert Uytterhoeven51a43be2015-05-29 11:25:45 +0200241 num_parents = of_clk_get_parent_count(np);
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200242 if (num_parents <= 0 || num_parents > PROG_SOURCE_MAX)
243 return;
244
245 for (i = 0; i < num_parents; ++i) {
246 parent_names[i] = of_clk_get_parent_name(np, i);
247 if (!parent_names[i])
248 return;
249 }
250
251 num = of_get_child_count(np);
252 if (!num || num > (PROG_ID_MAX + 1))
253 return;
254
255 for_each_child_of_node(np, progclknp) {
256 if (of_property_read_u32(progclknp, "reg", &id))
257 continue;
258
259 if (of_property_read_string(np, "clock-output-names", &name))
260 name = progclknp->name;
261
Jean-Jacques Hiblotcce6db82014-03-11 10:00:34 +0100262 clk = at91_clk_register_programmable(pmc, name,
Boris BREZILLON1f22f8b2013-10-11 11:57:04 +0200263 parent_names, num_parents,
264 id, layout);
265 if (IS_ERR(clk))
266 continue;
267
268 of_clk_add_provider(progclknp, of_clk_src_simple_get, clk);
269 }
270}
271
272
273void __init of_at91rm9200_clk_prog_setup(struct device_node *np,
274 struct at91_pmc *pmc)
275{
276 of_at91_clk_prog_setup(np, pmc, &at91rm9200_programmable_layout);
277}
278
279void __init of_at91sam9g45_clk_prog_setup(struct device_node *np,
280 struct at91_pmc *pmc)
281{
282 of_at91_clk_prog_setup(np, pmc, &at91sam9g45_programmable_layout);
283}
284
285void __init of_at91sam9x5_clk_prog_setup(struct device_node *np,
286 struct at91_pmc *pmc)
287{
288 of_at91_clk_prog_setup(np, pmc, &at91sam9x5_programmable_layout);
289}