Lukasz Majewski | 1d7993d | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 1 | // 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 Delaunay | 560e1e0 | 2021-11-19 15:12:07 +0100 | [diff] [blame^] | 24 | #define LOG_CATEGORY UCLASS_CLK |
| 25 | |
Lukasz Majewski | 1d7993d | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 26 | #include <common.h> |
Dario Binacchi | 76eaa2d | 2020-05-02 17:58:31 +0200 | [diff] [blame] | 27 | #include <clk.h> |
Lukasz Majewski | 1d7993d | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 28 | #include <clk-uclass.h> |
Patrick Delaunay | 560e1e0 | 2021-11-19 15:12:07 +0100 | [diff] [blame^] | 29 | #include <log.h> |
Patrick Delaunay | 572c446 | 2021-11-19 15:12:06 +0100 | [diff] [blame] | 30 | #include <malloc.h> |
| 31 | #include <asm/io.h> |
Lukasz Majewski | 1d7993d | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 32 | #include <dm/device.h> |
Patrick Delaunay | 560e1e0 | 2021-11-19 15:12:07 +0100 | [diff] [blame^] | 33 | #include <dm/device_compat.h> |
Simon Glass | 61b29b8 | 2020-02-03 07:36:15 -0700 | [diff] [blame] | 34 | #include <dm/devres.h> |
Lukasz Majewski | ebd3f1f | 2020-08-24 11:12:18 +0200 | [diff] [blame] | 35 | #include <dm/uclass.h> |
Simon Glass | cd93d62 | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 36 | #include <linux/bitops.h> |
Lukasz Majewski | 1d7993d | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 37 | #include <linux/clk-provider.h> |
Simon Glass | 61b29b8 | 2020-02-03 07:36:15 -0700 | [diff] [blame] | 38 | #include <linux/err.h> |
Patrick Delaunay | 572c446 | 2021-11-19 15:12:06 +0100 | [diff] [blame] | 39 | |
Dario Binacchi | 76eaa2d | 2020-05-02 17:58:31 +0200 | [diff] [blame] | 40 | #include "clk.h" |
Lukasz Majewski | 1d7993d | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 41 | |
| 42 | #define UBOOT_DM_CLK_CCF_MUX "ccf_clk_mux" |
| 43 | |
| 44 | int clk_mux_val_to_index(struct clk *clk, u32 *table, unsigned int flags, |
| 45 | unsigned int val) |
| 46 | { |
Sean Anderson | 78ce0bd | 2020-06-24 06:41:06 -0400 | [diff] [blame] | 47 | struct clk_mux *mux = to_clk_mux(clk); |
Lukasz Majewski | 1d7993d | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 48 | int num_parents = mux->num_parents; |
| 49 | |
| 50 | if (table) { |
| 51 | int i; |
| 52 | |
| 53 | for (i = 0; i < num_parents; i++) |
| 54 | if (table[i] == val) |
| 55 | return i; |
| 56 | return -EINVAL; |
| 57 | } |
| 58 | |
| 59 | if (val && (flags & CLK_MUX_INDEX_BIT)) |
| 60 | val = ffs(val) - 1; |
| 61 | |
| 62 | if (val && (flags & CLK_MUX_INDEX_ONE)) |
| 63 | val--; |
| 64 | |
| 65 | if (val >= num_parents) |
| 66 | return -EINVAL; |
| 67 | |
| 68 | return val; |
| 69 | } |
| 70 | |
Peng Fan | 4b04408 | 2019-07-31 07:01:28 +0000 | [diff] [blame] | 71 | unsigned int clk_mux_index_to_val(u32 *table, unsigned int flags, u8 index) |
| 72 | { |
| 73 | unsigned int val = index; |
| 74 | |
| 75 | if (table) { |
| 76 | val = table[index]; |
| 77 | } else { |
| 78 | if (flags & CLK_MUX_INDEX_BIT) |
| 79 | val = 1 << index; |
| 80 | |
| 81 | if (flags & CLK_MUX_INDEX_ONE) |
| 82 | val++; |
| 83 | } |
| 84 | |
| 85 | return val; |
| 86 | } |
| 87 | |
| 88 | u8 clk_mux_get_parent(struct clk *clk) |
Lukasz Majewski | 1d7993d | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 89 | { |
Sean Anderson | 78ce0bd | 2020-06-24 06:41:06 -0400 | [diff] [blame] | 90 | struct clk_mux *mux = to_clk_mux(clk); |
Lukasz Majewski | 1d7993d | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 91 | u32 val; |
| 92 | |
Lukasz Majewski | 5da0095 | 2019-06-24 15:50:49 +0200 | [diff] [blame] | 93 | #if CONFIG_IS_ENABLED(SANDBOX_CLK_CCF) |
| 94 | val = mux->io_mux_val; |
| 95 | #else |
| 96 | val = readl(mux->reg); |
| 97 | #endif |
| 98 | val >>= mux->shift; |
Lukasz Majewski | 1d7993d | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 99 | val &= mux->mask; |
| 100 | |
| 101 | return clk_mux_val_to_index(clk, mux->table, mux->flags, val); |
| 102 | } |
| 103 | |
Peng Fan | 4b04408 | 2019-07-31 07:01:28 +0000 | [diff] [blame] | 104 | static int clk_fetch_parent_index(struct clk *clk, |
| 105 | struct clk *parent) |
| 106 | { |
Sean Anderson | 78ce0bd | 2020-06-24 06:41:06 -0400 | [diff] [blame] | 107 | struct clk_mux *mux = to_clk_mux(clk); |
Peng Fan | 4b04408 | 2019-07-31 07:01:28 +0000 | [diff] [blame] | 108 | |
| 109 | int i; |
| 110 | |
| 111 | if (!parent) |
| 112 | return -EINVAL; |
| 113 | |
| 114 | for (i = 0; i < mux->num_parents; i++) { |
| 115 | if (!strcmp(parent->dev->name, mux->parent_names[i])) |
| 116 | return i; |
| 117 | } |
| 118 | |
| 119 | return -EINVAL; |
| 120 | } |
| 121 | |
| 122 | static int clk_mux_set_parent(struct clk *clk, struct clk *parent) |
| 123 | { |
Sean Anderson | 78ce0bd | 2020-06-24 06:41:06 -0400 | [diff] [blame] | 124 | struct clk_mux *mux = to_clk_mux(clk); |
Peng Fan | 4b04408 | 2019-07-31 07:01:28 +0000 | [diff] [blame] | 125 | int index; |
| 126 | u32 val; |
| 127 | u32 reg; |
| 128 | |
| 129 | index = clk_fetch_parent_index(clk, parent); |
| 130 | if (index < 0) { |
Patrick Delaunay | 560e1e0 | 2021-11-19 15:12:07 +0100 | [diff] [blame^] | 131 | log_err("Could not fetch index\n"); |
Peng Fan | 4b04408 | 2019-07-31 07:01:28 +0000 | [diff] [blame] | 132 | return index; |
| 133 | } |
| 134 | |
| 135 | val = clk_mux_index_to_val(mux->table, mux->flags, index); |
| 136 | |
| 137 | if (mux->flags & CLK_MUX_HIWORD_MASK) { |
| 138 | reg = mux->mask << (mux->shift + 16); |
| 139 | } else { |
Dario Binacchi | e3b5d74 | 2020-05-02 17:58:33 +0200 | [diff] [blame] | 140 | #if CONFIG_IS_ENABLED(SANDBOX_CLK_CCF) |
| 141 | reg = mux->io_mux_val; |
| 142 | #else |
Peng Fan | 4b04408 | 2019-07-31 07:01:28 +0000 | [diff] [blame] | 143 | reg = readl(mux->reg); |
Dario Binacchi | e3b5d74 | 2020-05-02 17:58:33 +0200 | [diff] [blame] | 144 | #endif |
Peng Fan | 4b04408 | 2019-07-31 07:01:28 +0000 | [diff] [blame] | 145 | reg &= ~(mux->mask << mux->shift); |
| 146 | } |
| 147 | val = val << mux->shift; |
| 148 | reg |= val; |
Dario Binacchi | e3b5d74 | 2020-05-02 17:58:33 +0200 | [diff] [blame] | 149 | #if CONFIG_IS_ENABLED(SANDBOX_CLK_CCF) |
| 150 | mux->io_mux_val = reg; |
| 151 | #else |
Peng Fan | 4b04408 | 2019-07-31 07:01:28 +0000 | [diff] [blame] | 152 | writel(reg, mux->reg); |
Dario Binacchi | e3b5d74 | 2020-05-02 17:58:33 +0200 | [diff] [blame] | 153 | #endif |
Peng Fan | 4b04408 | 2019-07-31 07:01:28 +0000 | [diff] [blame] | 154 | |
| 155 | return 0; |
| 156 | } |
| 157 | |
Lukasz Majewski | 1d7993d | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 158 | const struct clk_ops clk_mux_ops = { |
Dario Binacchi | fa181d1 | 2020-10-14 23:42:17 +0200 | [diff] [blame] | 159 | .get_rate = clk_generic_get_rate, |
Peng Fan | 4b04408 | 2019-07-31 07:01:28 +0000 | [diff] [blame] | 160 | .set_parent = clk_mux_set_parent, |
Lukasz Majewski | 1d7993d | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 161 | }; |
| 162 | |
| 163 | struct clk *clk_hw_register_mux_table(struct device *dev, const char *name, |
| 164 | const char * const *parent_names, u8 num_parents, |
| 165 | unsigned long flags, |
| 166 | void __iomem *reg, u8 shift, u32 mask, |
| 167 | u8 clk_mux_flags, u32 *table) |
| 168 | { |
| 169 | struct clk_mux *mux; |
| 170 | struct clk *clk; |
| 171 | u8 width = 0; |
| 172 | int ret; |
| 173 | |
| 174 | if (clk_mux_flags & CLK_MUX_HIWORD_MASK) { |
| 175 | width = fls(mask) - ffs(mask) + 1; |
| 176 | if (width + shift > 16) { |
Patrick Delaunay | 560e1e0 | 2021-11-19 15:12:07 +0100 | [diff] [blame^] | 177 | dev_err(dev, "mux value exceeds LOWORD field\n"); |
Lukasz Majewski | 1d7993d | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 178 | return ERR_PTR(-EINVAL); |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | /* allocate the mux */ |
| 183 | mux = kzalloc(sizeof(*mux), GFP_KERNEL); |
| 184 | if (!mux) |
| 185 | return ERR_PTR(-ENOMEM); |
| 186 | |
| 187 | /* U-boot specific assignments */ |
| 188 | mux->parent_names = parent_names; |
| 189 | mux->num_parents = num_parents; |
| 190 | |
| 191 | /* struct clk_mux assignments */ |
| 192 | mux->reg = reg; |
| 193 | mux->shift = shift; |
| 194 | mux->mask = mask; |
| 195 | mux->flags = clk_mux_flags; |
| 196 | mux->table = table; |
Lukasz Majewski | 5da0095 | 2019-06-24 15:50:49 +0200 | [diff] [blame] | 197 | #if CONFIG_IS_ENABLED(SANDBOX_CLK_CCF) |
| 198 | mux->io_mux_val = *(u32 *)reg; |
| 199 | #endif |
Lukasz Majewski | 1d7993d | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 200 | |
| 201 | clk = &mux->clk; |
Dario Binacchi | 16bdc85 | 2020-04-13 14:36:27 +0200 | [diff] [blame] | 202 | clk->flags = flags; |
Lukasz Majewski | 1d7993d | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 203 | |
| 204 | /* |
| 205 | * Read the current mux setup - so we assign correct parent. |
| 206 | * |
| 207 | * Changing parent would require changing internals of udevice struct |
Dario Binacchi | 40559d2 | 2020-05-02 17:58:32 +0200 | [diff] [blame] | 208 | * for the corresponding clock (to do that define .set_parent() method). |
Lukasz Majewski | 1d7993d | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 209 | */ |
| 210 | ret = clk_register(clk, UBOOT_DM_CLK_CCF_MUX, name, |
| 211 | parent_names[clk_mux_get_parent(clk)]); |
| 212 | if (ret) { |
| 213 | kfree(mux); |
| 214 | return ERR_PTR(ret); |
| 215 | } |
| 216 | |
| 217 | return clk; |
| 218 | } |
| 219 | |
| 220 | struct clk *clk_register_mux_table(struct device *dev, const char *name, |
| 221 | const char * const *parent_names, u8 num_parents, |
| 222 | unsigned long flags, |
| 223 | void __iomem *reg, u8 shift, u32 mask, |
| 224 | u8 clk_mux_flags, u32 *table) |
| 225 | { |
| 226 | struct clk *clk; |
| 227 | |
| 228 | clk = clk_hw_register_mux_table(dev, name, parent_names, num_parents, |
| 229 | flags, reg, shift, mask, clk_mux_flags, |
| 230 | table); |
| 231 | if (IS_ERR(clk)) |
| 232 | return ERR_CAST(clk); |
| 233 | return clk; |
| 234 | } |
| 235 | |
| 236 | struct clk *clk_register_mux(struct device *dev, const char *name, |
| 237 | const char * const *parent_names, u8 num_parents, |
| 238 | unsigned long flags, |
| 239 | void __iomem *reg, u8 shift, u8 width, |
| 240 | u8 clk_mux_flags) |
| 241 | { |
| 242 | u32 mask = BIT(width) - 1; |
| 243 | |
| 244 | return clk_register_mux_table(dev, name, parent_names, num_parents, |
| 245 | flags, reg, shift, mask, clk_mux_flags, |
| 246 | NULL); |
| 247 | } |
| 248 | |
| 249 | U_BOOT_DRIVER(ccf_clk_mux) = { |
| 250 | .name = UBOOT_DM_CLK_CCF_MUX, |
| 251 | .id = UCLASS_CLK, |
| 252 | .ops = &clk_mux_ops, |
| 253 | .flags = DM_FLAG_PRE_RELOC, |
| 254 | }; |