treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152
[linux-block.git] / drivers / clk / at91 / clk-programmable.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
1f22f8bb
BB
2/*
3 * Copyright (C) 2013 Boris BREZILLON <b.brezillon@overkiz.com>
1f22f8bb
BB
4 */
5
6#include <linux/clk-provider.h>
7#include <linux/clkdev.h>
8#include <linux/clk/at91_pmc.h>
9#include <linux/of.h>
1bdf0232
BB
10#include <linux/mfd/syscon.h>
11#include <linux/regmap.h>
1f22f8bb
BB
12
13#include "pmc.h"
14
1f22f8bb
BB
15#define PROG_ID_MAX 7
16
17#define PROG_STATUS_MASK(id) (1 << ((id) + 8))
45b06682 18#define PROG_PRES(layout, pckr) ((pckr >> layout->pres_shift) & layout->pres_mask)
1f22f8bb
BB
19#define PROG_MAX_RM9200_CSS 3
20
1f22f8bb
BB
21struct clk_programmable {
22 struct clk_hw hw;
1bdf0232 23 struct regmap *regmap;
1f22f8bb 24 u8 id;
1f22f8bb
BB
25 const struct clk_programmable_layout *layout;
26};
27
28#define to_clk_programmable(hw) container_of(hw, struct clk_programmable, hw)
29
1f22f8bb
BB
30static unsigned long clk_programmable_recalc_rate(struct clk_hw *hw,
31 unsigned long parent_rate)
32{
1f22f8bb 33 struct clk_programmable *prog = to_clk_programmable(hw);
45b06682 34 const struct clk_programmable_layout *layout = prog->layout;
1bdf0232 35 unsigned int pckr;
45b06682 36 unsigned long rate;
1bdf0232
BB
37
38 regmap_read(prog->regmap, AT91_PMC_PCKR(prog->id), &pckr);
1f22f8bb 39
45b06682
MW
40 if (layout->is_pres_direct)
41 rate = parent_rate / (PROG_PRES(layout, pckr) + 1);
42 else
43 rate = parent_rate >> PROG_PRES(layout, pckr);
44
45 return rate;
1f22f8bb
BB
46}
47
0817b62c
BB
48static int clk_programmable_determine_rate(struct clk_hw *hw,
49 struct clk_rate_request *req)
1f22f8bb 50{
45b06682
MW
51 struct clk_programmable *prog = to_clk_programmable(hw);
52 const struct clk_programmable_layout *layout = prog->layout;
d0979335 53 struct clk_hw *parent;
419f6129
BB
54 long best_rate = -EINVAL;
55 unsigned long parent_rate;
45b06682 56 unsigned long tmp_rate = 0;
419f6129
BB
57 int shift;
58 int i;
59
497295af 60 for (i = 0; i < clk_hw_get_num_parents(hw); i++) {
d0979335 61 parent = clk_hw_get_parent_by_index(hw, i);
419f6129
BB
62 if (!parent)
63 continue;
64
d0979335 65 parent_rate = clk_hw_get_rate(parent);
45b06682
MW
66 if (layout->is_pres_direct) {
67 for (shift = 0; shift <= layout->pres_mask; shift++) {
68 tmp_rate = parent_rate / (shift + 1);
69 if (tmp_rate <= req->rate)
70 break;
71 }
72 } else {
73 for (shift = 0; shift < layout->pres_mask; shift++) {
74 tmp_rate = parent_rate >> shift;
75 if (tmp_rate <= req->rate)
76 break;
77 }
419f6129 78 }
1f22f8bb 79
0817b62c 80 if (tmp_rate > req->rate)
419f6129 81 continue;
1f22f8bb 82
0817b62c
BB
83 if (best_rate < 0 ||
84 (req->rate - tmp_rate) < (req->rate - best_rate)) {
419f6129 85 best_rate = tmp_rate;
0817b62c 86 req->best_parent_rate = parent_rate;
d0979335 87 req->best_parent_hw = parent;
1f22f8bb
BB
88 }
89
419f6129 90 if (!best_rate)
1f22f8bb
BB
91 break;
92 }
93
0817b62c
BB
94 if (best_rate < 0)
95 return best_rate;
96
97 req->rate = best_rate;
98 return 0;
1f22f8bb
BB
99}
100
101static int clk_programmable_set_parent(struct clk_hw *hw, u8 index)
102{
103 struct clk_programmable *prog = to_clk_programmable(hw);
104 const struct clk_programmable_layout *layout = prog->layout;
1bdf0232 105 unsigned int mask = layout->css_mask;
f96423f4 106 unsigned int pckr = index;
cce6db80
JJH
107
108 if (layout->have_slck_mck)
1bdf0232 109 mask |= AT91_PMC_CSSMCK_MCK;
cce6db80 110
1f22f8bb 111 if (index > layout->css_mask) {
1bdf0232 112 if (index > PROG_MAX_RM9200_CSS && !layout->have_slck_mck)
1f22f8bb 113 return -EINVAL;
1bdf0232
BB
114
115 pckr |= AT91_PMC_CSSMCK_MCK;
1f22f8bb
BB
116 }
117
1bdf0232
BB
118 regmap_update_bits(prog->regmap, AT91_PMC_PCKR(prog->id), mask, pckr);
119
1f22f8bb
BB
120 return 0;
121}
122
123static u8 clk_programmable_get_parent(struct clk_hw *hw)
124{
1f22f8bb 125 struct clk_programmable *prog = to_clk_programmable(hw);
1f22f8bb 126 const struct clk_programmable_layout *layout = prog->layout;
1bdf0232
BB
127 unsigned int pckr;
128 u8 ret;
129
130 regmap_read(prog->regmap, AT91_PMC_PCKR(prog->id), &pckr);
131
132 ret = pckr & layout->css_mask;
1f22f8bb 133
1bdf0232 134 if (layout->have_slck_mck && (pckr & AT91_PMC_CSSMCK_MCK) && !ret)
cce6db80 135 ret = PROG_MAX_RM9200_CSS + 1;
1f22f8bb
BB
136
137 return ret;
138}
139
140static int clk_programmable_set_rate(struct clk_hw *hw, unsigned long rate,
141 unsigned long parent_rate)
142{
143 struct clk_programmable *prog = to_clk_programmable(hw);
cce6db80 144 const struct clk_programmable_layout *layout = prog->layout;
141c71dd 145 unsigned long div = parent_rate / rate;
1f22f8bb 146 int shift = 0;
1bdf0232 147
141c71dd
JJH
148 if (!div)
149 return -EINVAL;
1f22f8bb 150
45b06682
MW
151 if (layout->is_pres_direct) {
152 shift = div - 1;
1f22f8bb 153
45b06682
MW
154 if (shift > layout->pres_mask)
155 return -EINVAL;
156 } else {
157 shift = fls(div) - 1;
1f22f8bb 158
45b06682
MW
159 if (div != (1 << shift))
160 return -EINVAL;
161
162 if (shift >= layout->pres_mask)
163 return -EINVAL;
164 }
1f22f8bb 165
1bdf0232 166 regmap_update_bits(prog->regmap, AT91_PMC_PCKR(prog->id),
45b06682 167 layout->pres_mask << layout->pres_shift,
1bdf0232 168 shift << layout->pres_shift);
cce6db80 169
1f22f8bb
BB
170 return 0;
171}
172
173static const struct clk_ops programmable_ops = {
1f22f8bb 174 .recalc_rate = clk_programmable_recalc_rate,
419f6129 175 .determine_rate = clk_programmable_determine_rate,
1f22f8bb
BB
176 .get_parent = clk_programmable_get_parent,
177 .set_parent = clk_programmable_set_parent,
178 .set_rate = clk_programmable_set_rate,
179};
180
b2e39dc0 181struct clk_hw * __init
1bdf0232 182at91_clk_register_programmable(struct regmap *regmap,
1f22f8bb
BB
183 const char *name, const char **parent_names,
184 u8 num_parents, u8 id,
185 const struct clk_programmable_layout *layout)
186{
1f22f8bb 187 struct clk_programmable *prog;
f5644f10 188 struct clk_hw *hw;
1f22f8bb 189 struct clk_init_data init;
f5644f10 190 int ret;
1f22f8bb
BB
191
192 if (id > PROG_ID_MAX)
193 return ERR_PTR(-EINVAL);
194
195 prog = kzalloc(sizeof(*prog), GFP_KERNEL);
196 if (!prog)
197 return ERR_PTR(-ENOMEM);
198
199 init.name = name;
200 init.ops = &programmable_ops;
201 init.parent_names = parent_names;
202 init.num_parents = num_parents;
203 init.flags = CLK_SET_RATE_GATE | CLK_SET_PARENT_GATE;
204
205 prog->id = id;
206 prog->layout = layout;
207 prog->hw.init = &init;
1bdf0232 208 prog->regmap = regmap;
1f22f8bb 209
f5644f10
SB
210 hw = &prog->hw;
211 ret = clk_hw_register(NULL, &prog->hw);
212 if (ret) {
1f22f8bb 213 kfree(prog);
91bbc174 214 hw = ERR_PTR(ret);
13967bea
RI
215 } else {
216 pmc_register_pck(id);
f5644f10 217 }
1f22f8bb 218
f5644f10 219 return hw;
1f22f8bb
BB
220}
221
b2e39dc0 222const struct clk_programmable_layout at91rm9200_programmable_layout = {
45b06682 223 .pres_mask = 0x7,
1f22f8bb
BB
224 .pres_shift = 2,
225 .css_mask = 0x3,
226 .have_slck_mck = 0,
45b06682 227 .is_pres_direct = 0,
1f22f8bb
BB
228};
229
b2e39dc0 230const struct clk_programmable_layout at91sam9g45_programmable_layout = {
45b06682 231 .pres_mask = 0x7,
1f22f8bb
BB
232 .pres_shift = 2,
233 .css_mask = 0x3,
234 .have_slck_mck = 1,
45b06682 235 .is_pres_direct = 0,
1f22f8bb
BB
236};
237
b2e39dc0 238const struct clk_programmable_layout at91sam9x5_programmable_layout = {
45b06682 239 .pres_mask = 0x7,
1f22f8bb
BB
240 .pres_shift = 4,
241 .css_mask = 0x7,
242 .have_slck_mck = 0,
45b06682 243 .is_pres_direct = 0,
1f22f8bb 244};