Lukasz Majewski | cd457c4 | 2019-06-24 15:50:41 +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) 2010-2011 Jeremy Kerr <jeremy.kerr@canonical.com> |
| 7 | * Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org> |
| 8 | */ |
| 9 | #ifndef __LINUX_CLK_PROVIDER_H |
| 10 | #define __LINUX_CLK_PROVIDER_H |
Sean Anderson | 6814a5c | 2019-12-24 23:56:22 -0500 | [diff] [blame] | 11 | |
Sean Anderson | 6814a5c | 2019-12-24 23:56:22 -0500 | [diff] [blame] | 12 | #include <linux/bitops.h> |
| 13 | #include <linux/err.h> |
Peng Fan | 519eefb | 2019-07-31 07:01:52 +0000 | [diff] [blame] | 14 | #include <clk-uclass.h> |
Lukasz Majewski | cd457c4 | 2019-06-24 15:50:41 +0200 | [diff] [blame] | 15 | |
Simon Glass | 4303396 | 2020-07-19 10:15:56 -0600 | [diff] [blame] | 16 | struct udevice; |
| 17 | |
Lukasz Majewski | 4de44bb | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 18 | static inline void clk_dm(ulong id, struct clk *clk) |
| 19 | { |
| 20 | if (!IS_ERR(clk)) |
| 21 | clk->id = id; |
| 22 | } |
| 23 | |
| 24 | /* |
| 25 | * flags used across common struct clk. these flags should only affect the |
| 26 | * top-level framework. custom flags for dealing with hardware specifics |
| 27 | * belong in struct clk_foo |
| 28 | * |
| 29 | * Please update clk_flags[] in drivers/clk/clk.c when making changes here! |
| 30 | */ |
| 31 | #define CLK_SET_RATE_GATE BIT(0) /* must be gated across rate change */ |
| 32 | #define CLK_SET_PARENT_GATE BIT(1) /* must be gated across re-parent */ |
| 33 | #define CLK_SET_RATE_PARENT BIT(2) /* propagate rate change up one level */ |
| 34 | #define CLK_IGNORE_UNUSED BIT(3) /* do not gate even if unused */ |
| 35 | /* unused */ |
| 36 | #define CLK_IS_BASIC BIT(5) /* Basic clk, can't do a to_clk_foo() */ |
| 37 | #define CLK_GET_RATE_NOCACHE BIT(6) /* do not use the cached clk rate */ |
| 38 | #define CLK_SET_RATE_NO_REPARENT BIT(7) /* don't re-parent on rate change */ |
| 39 | #define CLK_GET_ACCURACY_NOCACHE BIT(8) /* do not use the cached clk accuracy */ |
| 40 | #define CLK_RECALC_NEW_RATES BIT(9) /* recalc rates after notifications */ |
| 41 | #define CLK_SET_RATE_UNGATE BIT(10) /* clock needs to run to set rate */ |
| 42 | #define CLK_IS_CRITICAL BIT(11) /* do not gate, ever */ |
| 43 | /* parents need enable during gate/ungate, set rate and re-parent */ |
| 44 | #define CLK_OPS_PARENT_ENABLE BIT(12) |
| 45 | /* duty cycle call may be forwarded to the parent clock */ |
| 46 | #define CLK_DUTY_CYCLE_PARENT BIT(13) |
| 47 | |
| 48 | #define CLK_MUX_INDEX_ONE BIT(0) |
| 49 | #define CLK_MUX_INDEX_BIT BIT(1) |
| 50 | #define CLK_MUX_HIWORD_MASK BIT(2) |
| 51 | #define CLK_MUX_READ_ONLY BIT(3) /* mux can't be changed */ |
| 52 | #define CLK_MUX_ROUND_CLOSEST BIT(4) |
| 53 | |
| 54 | struct clk_mux { |
| 55 | struct clk clk; |
| 56 | void __iomem *reg; |
| 57 | u32 *table; |
| 58 | u32 mask; |
| 59 | u8 shift; |
| 60 | u8 flags; |
| 61 | |
| 62 | /* |
| 63 | * Fields from struct clk_init_data - this struct has been |
| 64 | * omitted to avoid too deep level of CCF for bootloader |
| 65 | */ |
| 66 | const char * const *parent_names; |
| 67 | u8 num_parents; |
Simon Glass | 0a6a0c4 | 2023-02-05 15:40:43 -0700 | [diff] [blame] | 68 | #if IS_ENABLED(CONFIG_SANDBOX_CLK_CCF) |
Lukasz Majewski | 669b773 | 2019-06-24 15:50:49 +0200 | [diff] [blame] | 69 | u32 io_mux_val; |
| 70 | #endif |
| 71 | |
Lukasz Majewski | 4de44bb | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 72 | }; |
| 73 | |
| 74 | #define to_clk_mux(_clk) container_of(_clk, struct clk_mux, clk) |
Peng Fan | 6a8c2ad | 2019-07-31 07:01:28 +0000 | [diff] [blame] | 75 | extern const struct clk_ops clk_mux_ops; |
| 76 | u8 clk_mux_get_parent(struct clk *clk); |
Lukasz Majewski | 4de44bb | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 77 | |
Dario Binacchi | 39fc7a6 | 2020-12-30 00:06:27 +0100 | [diff] [blame] | 78 | /** |
| 79 | * clk_mux_index_to_val() - Convert the parent index to the register value |
| 80 | * |
| 81 | * It returns the value to write in the hardware register to output the selected |
| 82 | * input clock parent. |
| 83 | * |
| 84 | * @table: array of register values corresponding to the parent index (optional) |
| 85 | * @flags: hardware-specific flags |
| 86 | * @index: parent clock index |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 87 | * Return: the register value |
Dario Binacchi | 39fc7a6 | 2020-12-30 00:06:27 +0100 | [diff] [blame] | 88 | */ |
| 89 | unsigned int clk_mux_index_to_val(u32 *table, unsigned int flags, u8 index); |
| 90 | |
Peng Fan | 0f08515 | 2019-07-31 07:01:34 +0000 | [diff] [blame] | 91 | struct clk_gate { |
| 92 | struct clk clk; |
| 93 | void __iomem *reg; |
| 94 | u8 bit_idx; |
| 95 | u8 flags; |
Simon Glass | 0a6a0c4 | 2023-02-05 15:40:43 -0700 | [diff] [blame] | 96 | #if IS_ENABLED(CONFIG_SANDBOX_CLK_CCF) |
Peng Fan | 3b7f3ae | 2019-07-31 07:01:57 +0000 | [diff] [blame] | 97 | u32 io_gate_val; |
| 98 | #endif |
Peng Fan | 0f08515 | 2019-07-31 07:01:34 +0000 | [diff] [blame] | 99 | }; |
| 100 | |
| 101 | #define to_clk_gate(_clk) container_of(_clk, struct clk_gate, clk) |
| 102 | |
| 103 | #define CLK_GATE_SET_TO_DISABLE BIT(0) |
| 104 | #define CLK_GATE_HIWORD_MASK BIT(1) |
| 105 | |
| 106 | extern const struct clk_ops clk_gate_ops; |
| 107 | struct clk *clk_register_gate(struct device *dev, const char *name, |
| 108 | const char *parent_name, unsigned long flags, |
| 109 | void __iomem *reg, u8 bit_idx, |
| 110 | u8 clk_gate_flags, spinlock_t *lock); |
| 111 | |
Lukasz Majewski | 4de44bb | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 112 | struct clk_div_table { |
| 113 | unsigned int val; |
| 114 | unsigned int div; |
| 115 | }; |
| 116 | |
| 117 | struct clk_divider { |
| 118 | struct clk clk; |
| 119 | void __iomem *reg; |
| 120 | u8 shift; |
| 121 | u8 width; |
| 122 | u8 flags; |
| 123 | const struct clk_div_table *table; |
Simon Glass | 0a6a0c4 | 2023-02-05 15:40:43 -0700 | [diff] [blame] | 124 | #if IS_ENABLED(CONFIG_SANDBOX_CLK_CCF) |
Lukasz Majewski | bb18f1b | 2019-06-24 15:50:48 +0200 | [diff] [blame] | 125 | u32 io_divider_val; |
| 126 | #endif |
Lukasz Majewski | 4de44bb | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 127 | }; |
| 128 | |
| 129 | #define clk_div_mask(width) ((1 << (width)) - 1) |
| 130 | #define to_clk_divider(_clk) container_of(_clk, struct clk_divider, clk) |
| 131 | |
| 132 | #define CLK_DIVIDER_ONE_BASED BIT(0) |
| 133 | #define CLK_DIVIDER_POWER_OF_TWO BIT(1) |
| 134 | #define CLK_DIVIDER_ALLOW_ZERO BIT(2) |
| 135 | #define CLK_DIVIDER_HIWORD_MASK BIT(3) |
| 136 | #define CLK_DIVIDER_ROUND_CLOSEST BIT(4) |
| 137 | #define CLK_DIVIDER_READ_ONLY BIT(5) |
| 138 | #define CLK_DIVIDER_MAX_AT_ZERO BIT(6) |
Peng Fan | 46ed266 | 2019-07-31 07:01:31 +0000 | [diff] [blame] | 139 | extern const struct clk_ops clk_divider_ops; |
Dario Binacchi | 39fc7a6 | 2020-12-30 00:06:27 +0100 | [diff] [blame] | 140 | |
| 141 | /** |
| 142 | * clk_divider_get_table_div() - convert the register value to the divider |
| 143 | * |
| 144 | * @table: array of register values corresponding to valid dividers |
| 145 | * @val: value to convert |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 146 | * Return: the divider |
Dario Binacchi | 39fc7a6 | 2020-12-30 00:06:27 +0100 | [diff] [blame] | 147 | */ |
| 148 | unsigned int clk_divider_get_table_div(const struct clk_div_table *table, |
| 149 | unsigned int val); |
| 150 | |
| 151 | /** |
| 152 | * clk_divider_get_table_val() - convert the divider to the register value |
| 153 | * |
| 154 | * It returns the value to write in the hardware register to divide the input |
| 155 | * clock rate by @div. |
| 156 | * |
| 157 | * @table: array of register values corresponding to valid dividers |
| 158 | * @div: requested divider |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 159 | * Return: the register value |
Dario Binacchi | 39fc7a6 | 2020-12-30 00:06:27 +0100 | [diff] [blame] | 160 | */ |
| 161 | unsigned int clk_divider_get_table_val(const struct clk_div_table *table, |
| 162 | unsigned int div); |
| 163 | |
| 164 | /** |
| 165 | * clk_divider_is_valid_div() - check if the divider is valid |
| 166 | * |
| 167 | * @table: array of valid dividers (optional) |
| 168 | * @div: divider to check |
| 169 | * @flags: hardware-specific flags |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 170 | * Return: true if the divider is valid, false otherwise |
Dario Binacchi | 39fc7a6 | 2020-12-30 00:06:27 +0100 | [diff] [blame] | 171 | */ |
| 172 | bool clk_divider_is_valid_div(const struct clk_div_table *table, |
| 173 | unsigned int div, unsigned long flags); |
| 174 | |
| 175 | /** |
| 176 | * clk_divider_is_valid_table_div - check if the divider is in the @table array |
| 177 | * |
| 178 | * @table: array of valid dividers |
| 179 | * @div: divider to check |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 180 | * Return: true if the divider is found in the @table array, false otherwise |
Dario Binacchi | 39fc7a6 | 2020-12-30 00:06:27 +0100 | [diff] [blame] | 181 | */ |
| 182 | bool clk_divider_is_valid_table_div(const struct clk_div_table *table, |
| 183 | unsigned int div); |
Peng Fan | 46ed266 | 2019-07-31 07:01:31 +0000 | [diff] [blame] | 184 | unsigned long divider_recalc_rate(struct clk *hw, unsigned long parent_rate, |
| 185 | unsigned int val, |
| 186 | const struct clk_div_table *table, |
| 187 | unsigned long flags, unsigned long width); |
Lukasz Majewski | 4de44bb | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 188 | |
| 189 | struct clk_fixed_factor { |
| 190 | struct clk clk; |
| 191 | unsigned int mult; |
| 192 | unsigned int div; |
| 193 | }; |
| 194 | |
Simon Glass | b95c7b9 | 2021-03-15 17:25:23 +1300 | [diff] [blame] | 195 | extern const struct clk_ops clk_fixed_rate_ops; |
| 196 | |
Lukasz Majewski | 4de44bb | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 197 | #define to_clk_fixed_factor(_clk) container_of(_clk, struct clk_fixed_factor,\ |
| 198 | clk) |
| 199 | |
Peng Fan | ec424a7 | 2019-07-31 07:01:39 +0000 | [diff] [blame] | 200 | struct clk_fixed_rate { |
| 201 | struct clk clk; |
| 202 | unsigned long fixed_rate; |
| 203 | }; |
| 204 | |
Simon Glass | fa20e93 | 2020-12-03 16:55:20 -0700 | [diff] [blame] | 205 | #define to_clk_fixed_rate(dev) ((struct clk_fixed_rate *)dev_get_plat(dev)) |
Peng Fan | ec424a7 | 2019-07-31 07:01:39 +0000 | [diff] [blame] | 206 | |
Simon Glass | b95c7b9 | 2021-03-15 17:25:23 +1300 | [diff] [blame] | 207 | void clk_fixed_rate_ofdata_to_plat_(struct udevice *dev, |
| 208 | struct clk_fixed_rate *plat); |
| 209 | |
Peng Fan | 2d9bd93 | 2019-07-31 07:01:54 +0000 | [diff] [blame] | 210 | struct clk_composite { |
| 211 | struct clk clk; |
| 212 | struct clk_ops ops; |
| 213 | |
| 214 | struct clk *mux; |
| 215 | struct clk *rate; |
| 216 | struct clk *gate; |
| 217 | |
| 218 | const struct clk_ops *mux_ops; |
| 219 | const struct clk_ops *rate_ops; |
| 220 | const struct clk_ops *gate_ops; |
| 221 | }; |
| 222 | |
| 223 | #define to_clk_composite(_clk) container_of(_clk, struct clk_composite, clk) |
| 224 | |
| 225 | struct clk *clk_register_composite(struct device *dev, const char *name, |
| 226 | const char * const *parent_names, int num_parents, |
| 227 | struct clk *mux_clk, const struct clk_ops *mux_ops, |
| 228 | struct clk *rate_clk, const struct clk_ops *rate_ops, |
| 229 | struct clk *gate_clk, const struct clk_ops *gate_ops, |
| 230 | unsigned long flags); |
| 231 | |
Lukasz Majewski | 4de44bb | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 232 | int clk_register(struct clk *clk, const char *drv_name, const char *name, |
| 233 | const char *parent_name); |
| 234 | |
| 235 | struct clk *clk_register_fixed_factor(struct device *dev, const char *name, |
| 236 | const char *parent_name, unsigned long flags, |
| 237 | unsigned int mult, unsigned int div); |
| 238 | |
| 239 | struct clk *clk_register_divider(struct device *dev, const char *name, |
| 240 | const char *parent_name, unsigned long flags, |
| 241 | void __iomem *reg, u8 shift, u8 width, |
| 242 | u8 clk_divider_flags); |
| 243 | |
| 244 | struct clk *clk_register_mux(struct device *dev, const char *name, |
| 245 | const char * const *parent_names, u8 num_parents, |
| 246 | unsigned long flags, |
| 247 | void __iomem *reg, u8 shift, u8 width, |
| 248 | u8 clk_mux_flags); |
| 249 | |
Tero Kristo | de4ef9b | 2021-06-11 11:45:06 +0300 | [diff] [blame] | 250 | struct clk *clk_register_fixed_rate(struct device *dev, const char *name, |
| 251 | ulong rate); |
| 252 | |
Lukasz Majewski | 4de44bb | 2019-06-24 15:50:45 +0200 | [diff] [blame] | 253 | const char *clk_hw_get_name(const struct clk *hw); |
| 254 | ulong clk_generic_get_rate(struct clk *clk); |
| 255 | |
Simon Glass | 4303396 | 2020-07-19 10:15:56 -0600 | [diff] [blame] | 256 | struct clk *dev_get_clk_ptr(struct udevice *dev); |
Sean Anderson | 4659612 | 2022-03-20 16:34:45 -0400 | [diff] [blame] | 257 | |
| 258 | ulong ccf_clk_get_rate(struct clk *clk); |
| 259 | ulong ccf_clk_set_rate(struct clk *clk, unsigned long rate); |
| 260 | int ccf_clk_set_parent(struct clk *clk, struct clk *parent); |
| 261 | int ccf_clk_enable(struct clk *clk); |
| 262 | int ccf_clk_disable(struct clk *clk); |
| 263 | extern const struct clk_ops ccf_clk_ops; |
| 264 | |
Lukasz Majewski | cd457c4 | 2019-06-24 15:50:41 +0200 | [diff] [blame] | 265 | #endif /* __LINUX_CLK_PROVIDER_H */ |