blob: f410518461e914348af8a2d28656032d38d04e41 [file] [log] [blame]
Lukasz Majewski1d7993d2019-06-24 15:50:45 +02001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2019 DENX Software Engineering
4 * Lukasz Majewski, DENX Software Engineering, lukma@denx.de
5 *
6 * Copyright (C) 2011 Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>
7 * Copyright (C) 2011 Richard Zhao, Linaro <richard.zhao@linaro.org>
8 * Copyright (C) 2011-2012 Mike Turquette, Linaro Ltd <mturquette@linaro.org>
9 *
10 * Simple multiplexer clock implementation
11 */
12
13/*
14 * U-Boot CCF porting node:
15 *
16 * The Linux kernel - as of tag: 5.0-rc3 is using also the imx_clk_fixup_mux()
17 * version of CCF mux. It is used on e.g. imx6q to provide fixes (like
18 * imx_cscmr1_fixup) for broken HW.
19 *
20 * At least for IMX6Q (but NOT IMX6QP) it is important when we set the parent
21 * clock.
22 */
23
Patrick Delaunay560e1e02021-11-19 15:12:07 +010024#define LOG_CATEGORY UCLASS_CLK
25
Lukasz Majewski1d7993d2019-06-24 15:50:45 +020026#include <common.h>
Dario Binacchi76eaa2d2020-05-02 17:58:31 +020027#include <clk.h>
Lukasz Majewski1d7993d2019-06-24 15:50:45 +020028#include <clk-uclass.h>
Patrick Delaunay560e1e02021-11-19 15:12:07 +010029#include <log.h>
Patrick Delaunay572c4462021-11-19 15:12:06 +010030#include <malloc.h>
31#include <asm/io.h>
Lukasz Majewski1d7993d2019-06-24 15:50:45 +020032#include <dm/device.h>
Patrick Delaunay560e1e02021-11-19 15:12:07 +010033#include <dm/device_compat.h>
Simon Glass61b29b82020-02-03 07:36:15 -070034#include <dm/devres.h>
Lukasz Majewskiebd3f1f2020-08-24 11:12:18 +020035#include <dm/uclass.h>
Simon Glasscd93d622020-05-10 11:40:13 -060036#include <linux/bitops.h>
Lukasz Majewski1d7993d2019-06-24 15:50:45 +020037#include <linux/clk-provider.h>
Simon Glass61b29b82020-02-03 07:36:15 -070038#include <linux/err.h>
Simon Glass1e94b462023-09-14 18:21:46 -060039#include <linux/printk.h>
Patrick Delaunay572c4462021-11-19 15:12:06 +010040
Dario Binacchi76eaa2d2020-05-02 17:58:31 +020041#include "clk.h"
Lukasz Majewski1d7993d2019-06-24 15:50:45 +020042
43#define UBOOT_DM_CLK_CCF_MUX "ccf_clk_mux"
44
45int clk_mux_val_to_index(struct clk *clk, u32 *table, unsigned int flags,
46 unsigned int val)
47{
Sean Anderson78ce0bd2020-06-24 06:41:06 -040048 struct clk_mux *mux = to_clk_mux(clk);
Lukasz Majewski1d7993d2019-06-24 15:50:45 +020049 int num_parents = mux->num_parents;
50
51 if (table) {
52 int i;
53
54 for (i = 0; i < num_parents; i++)
55 if (table[i] == val)
56 return i;
57 return -EINVAL;
58 }
59
60 if (val && (flags & CLK_MUX_INDEX_BIT))
61 val = ffs(val) - 1;
62
63 if (val && (flags & CLK_MUX_INDEX_ONE))
64 val--;
65
66 if (val >= num_parents)
67 return -EINVAL;
68
69 return val;
70}
71
Peng Fan4b044082019-07-31 07:01:28 +000072unsigned int clk_mux_index_to_val(u32 *table, unsigned int flags, u8 index)
73{
74 unsigned int val = index;
75
76 if (table) {
77 val = table[index];
78 } else {
79 if (flags & CLK_MUX_INDEX_BIT)
80 val = 1 << index;
81
82 if (flags & CLK_MUX_INDEX_ONE)
83 val++;
84 }
85
86 return val;
87}
88
89u8 clk_mux_get_parent(struct clk *clk)
Lukasz Majewski1d7993d2019-06-24 15:50:45 +020090{
Sean Anderson78ce0bd2020-06-24 06:41:06 -040091 struct clk_mux *mux = to_clk_mux(clk);
Lukasz Majewski1d7993d2019-06-24 15:50:45 +020092 u32 val;
93
Simon Glass4051c402023-02-05 15:40:43 -070094#if IS_ENABLED(CONFIG_SANDBOX_CLK_CCF)
Lukasz Majewski5da00952019-06-24 15:50:49 +020095 val = mux->io_mux_val;
96#else
97 val = readl(mux->reg);
98#endif
99 val >>= mux->shift;
Lukasz Majewski1d7993d2019-06-24 15:50:45 +0200100 val &= mux->mask;
101
102 return clk_mux_val_to_index(clk, mux->table, mux->flags, val);
103}
104
Peng Fan4b044082019-07-31 07:01:28 +0000105static int clk_fetch_parent_index(struct clk *clk,
106 struct clk *parent)
107{
Sean Anderson78ce0bd2020-06-24 06:41:06 -0400108 struct clk_mux *mux = to_clk_mux(clk);
Peng Fan4b044082019-07-31 07:01:28 +0000109
110 int i;
111
112 if (!parent)
113 return -EINVAL;
114
115 for (i = 0; i < mux->num_parents; i++) {
116 if (!strcmp(parent->dev->name, mux->parent_names[i]))
117 return i;
118 }
119
120 return -EINVAL;
121}
122
123static int clk_mux_set_parent(struct clk *clk, struct clk *parent)
124{
Sean Anderson78ce0bd2020-06-24 06:41:06 -0400125 struct clk_mux *mux = to_clk_mux(clk);
Peng Fan4b044082019-07-31 07:01:28 +0000126 int index;
127 u32 val;
128 u32 reg;
129
130 index = clk_fetch_parent_index(clk, parent);
131 if (index < 0) {
Patrick Delaunay560e1e02021-11-19 15:12:07 +0100132 log_err("Could not fetch index\n");
Peng Fan4b044082019-07-31 07:01:28 +0000133 return index;
134 }
135
136 val = clk_mux_index_to_val(mux->table, mux->flags, index);
137
138 if (mux->flags & CLK_MUX_HIWORD_MASK) {
139 reg = mux->mask << (mux->shift + 16);
140 } else {
Simon Glass4051c402023-02-05 15:40:43 -0700141#if IS_ENABLED(CONFIG_SANDBOX_CLK_CCF)
Dario Binacchie3b5d742020-05-02 17:58:33 +0200142 reg = mux->io_mux_val;
143#else
Peng Fan4b044082019-07-31 07:01:28 +0000144 reg = readl(mux->reg);
Dario Binacchie3b5d742020-05-02 17:58:33 +0200145#endif
Peng Fan4b044082019-07-31 07:01:28 +0000146 reg &= ~(mux->mask << mux->shift);
147 }
148 val = val << mux->shift;
149 reg |= val;
Simon Glass4051c402023-02-05 15:40:43 -0700150#if IS_ENABLED(CONFIG_SANDBOX_CLK_CCF)
Dario Binacchie3b5d742020-05-02 17:58:33 +0200151 mux->io_mux_val = reg;
152#else
Peng Fan4b044082019-07-31 07:01:28 +0000153 writel(reg, mux->reg);
Dario Binacchie3b5d742020-05-02 17:58:33 +0200154#endif
Peng Fan4b044082019-07-31 07:01:28 +0000155
156 return 0;
157}
158
Lukasz Majewski1d7993d2019-06-24 15:50:45 +0200159const struct clk_ops clk_mux_ops = {
Dario Binacchifa181d12020-10-14 23:42:17 +0200160 .get_rate = clk_generic_get_rate,
Peng Fan4b044082019-07-31 07:01:28 +0000161 .set_parent = clk_mux_set_parent,
Lukasz Majewski1d7993d2019-06-24 15:50:45 +0200162};
163
164struct clk *clk_hw_register_mux_table(struct device *dev, const char *name,
165 const char * const *parent_names, u8 num_parents,
166 unsigned long flags,
167 void __iomem *reg, u8 shift, u32 mask,
168 u8 clk_mux_flags, u32 *table)
169{
170 struct clk_mux *mux;
171 struct clk *clk;
172 u8 width = 0;
173 int ret;
174
175 if (clk_mux_flags & CLK_MUX_HIWORD_MASK) {
176 width = fls(mask) - ffs(mask) + 1;
177 if (width + shift > 16) {
Patrick Delaunay560e1e02021-11-19 15:12:07 +0100178 dev_err(dev, "mux value exceeds LOWORD field\n");
Lukasz Majewski1d7993d2019-06-24 15:50:45 +0200179 return ERR_PTR(-EINVAL);
180 }
181 }
182
183 /* allocate the mux */
184 mux = kzalloc(sizeof(*mux), GFP_KERNEL);
185 if (!mux)
186 return ERR_PTR(-ENOMEM);
187
Michal Simek1be82af2023-05-17 09:17:16 +0200188 /* U-Boot specific assignments */
Lukasz Majewski1d7993d2019-06-24 15:50:45 +0200189 mux->parent_names = parent_names;
190 mux->num_parents = num_parents;
191
192 /* struct clk_mux assignments */
193 mux->reg = reg;
194 mux->shift = shift;
195 mux->mask = mask;
196 mux->flags = clk_mux_flags;
197 mux->table = table;
Simon Glass4051c402023-02-05 15:40:43 -0700198#if IS_ENABLED(CONFIG_SANDBOX_CLK_CCF)
Lukasz Majewski5da00952019-06-24 15:50:49 +0200199 mux->io_mux_val = *(u32 *)reg;
200#endif
Lukasz Majewski1d7993d2019-06-24 15:50:45 +0200201
202 clk = &mux->clk;
Dario Binacchi16bdc852020-04-13 14:36:27 +0200203 clk->flags = flags;
Lukasz Majewski1d7993d2019-06-24 15:50:45 +0200204
205 /*
206 * Read the current mux setup - so we assign correct parent.
207 *
208 * Changing parent would require changing internals of udevice struct
Dario Binacchi40559d22020-05-02 17:58:32 +0200209 * for the corresponding clock (to do that define .set_parent() method).
Lukasz Majewski1d7993d2019-06-24 15:50:45 +0200210 */
211 ret = clk_register(clk, UBOOT_DM_CLK_CCF_MUX, name,
212 parent_names[clk_mux_get_parent(clk)]);
213 if (ret) {
214 kfree(mux);
215 return ERR_PTR(ret);
216 }
217
218 return clk;
219}
220
221struct clk *clk_register_mux_table(struct device *dev, const char *name,
222 const char * const *parent_names, u8 num_parents,
223 unsigned long flags,
224 void __iomem *reg, u8 shift, u32 mask,
225 u8 clk_mux_flags, u32 *table)
226{
227 struct clk *clk;
228
229 clk = clk_hw_register_mux_table(dev, name, parent_names, num_parents,
230 flags, reg, shift, mask, clk_mux_flags,
231 table);
232 if (IS_ERR(clk))
233 return ERR_CAST(clk);
234 return clk;
235}
236
237struct clk *clk_register_mux(struct device *dev, const char *name,
238 const char * const *parent_names, u8 num_parents,
239 unsigned long flags,
240 void __iomem *reg, u8 shift, u8 width,
241 u8 clk_mux_flags)
242{
243 u32 mask = BIT(width) - 1;
244
245 return clk_register_mux_table(dev, name, parent_names, num_parents,
246 flags, reg, shift, mask, clk_mux_flags,
247 NULL);
248}
249
250U_BOOT_DRIVER(ccf_clk_mux) = {
251 .name = UBOOT_DM_CLK_CCF_MUX,
252 .id = UCLASS_CLK,
253 .ops = &clk_mux_ops,
254 .flags = DM_FLAG_PRE_RELOC,
255};