blob: c871ea646d35d742c75136209bf10813b80da909 [file] [log] [blame]
Lukasz Majewskicd457c42019-06-24 15:50:41 +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) 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 Anderson6814a5c2019-12-24 23:56:22 -050011
Sean Anderson6814a5c2019-12-24 23:56:22 -050012#include <linux/bitops.h>
13#include <linux/err.h>
Peng Fan519eefb2019-07-31 07:01:52 +000014#include <clk-uclass.h>
Simon Glass9bc15642020-02-03 07:36:16 -070015#include <linux/err.h>
Lukasz Majewskicd457c42019-06-24 15:50:41 +020016
Simon Glass43033962020-07-19 10:15:56 -060017struct udevice;
18
Lukasz Majewski4de44bb2019-06-24 15:50:45 +020019static inline void clk_dm(ulong id, struct clk *clk)
20{
21 if (!IS_ERR(clk))
22 clk->id = id;
23}
24
25/*
26 * flags used across common struct clk. these flags should only affect the
27 * top-level framework. custom flags for dealing with hardware specifics
28 * belong in struct clk_foo
29 *
30 * Please update clk_flags[] in drivers/clk/clk.c when making changes here!
31 */
32#define CLK_SET_RATE_GATE BIT(0) /* must be gated across rate change */
33#define CLK_SET_PARENT_GATE BIT(1) /* must be gated across re-parent */
34#define CLK_SET_RATE_PARENT BIT(2) /* propagate rate change up one level */
35#define CLK_IGNORE_UNUSED BIT(3) /* do not gate even if unused */
36 /* unused */
37#define CLK_IS_BASIC BIT(5) /* Basic clk, can't do a to_clk_foo() */
38#define CLK_GET_RATE_NOCACHE BIT(6) /* do not use the cached clk rate */
39#define CLK_SET_RATE_NO_REPARENT BIT(7) /* don't re-parent on rate change */
40#define CLK_GET_ACCURACY_NOCACHE BIT(8) /* do not use the cached clk accuracy */
41#define CLK_RECALC_NEW_RATES BIT(9) /* recalc rates after notifications */
42#define CLK_SET_RATE_UNGATE BIT(10) /* clock needs to run to set rate */
43#define CLK_IS_CRITICAL BIT(11) /* do not gate, ever */
44/* parents need enable during gate/ungate, set rate and re-parent */
45#define CLK_OPS_PARENT_ENABLE BIT(12)
46/* duty cycle call may be forwarded to the parent clock */
47#define CLK_DUTY_CYCLE_PARENT BIT(13)
48
49#define CLK_MUX_INDEX_ONE BIT(0)
50#define CLK_MUX_INDEX_BIT BIT(1)
51#define CLK_MUX_HIWORD_MASK BIT(2)
52#define CLK_MUX_READ_ONLY BIT(3) /* mux can't be changed */
53#define CLK_MUX_ROUND_CLOSEST BIT(4)
54
55struct clk_mux {
56 struct clk clk;
57 void __iomem *reg;
58 u32 *table;
59 u32 mask;
60 u8 shift;
61 u8 flags;
62
63 /*
64 * Fields from struct clk_init_data - this struct has been
65 * omitted to avoid too deep level of CCF for bootloader
66 */
67 const char * const *parent_names;
68 u8 num_parents;
Lukasz Majewski669b7732019-06-24 15:50:49 +020069#if CONFIG_IS_ENABLED(SANDBOX_CLK_CCF)
70 u32 io_mux_val;
71#endif
72
Lukasz Majewski4de44bb2019-06-24 15:50:45 +020073};
74
75#define to_clk_mux(_clk) container_of(_clk, struct clk_mux, clk)
Peng Fan6a8c2ad2019-07-31 07:01:28 +000076extern const struct clk_ops clk_mux_ops;
77u8 clk_mux_get_parent(struct clk *clk);
Lukasz Majewski4de44bb2019-06-24 15:50:45 +020078
Dario Binacchi39fc7a62020-12-30 00:06:27 +010079/**
80 * clk_mux_index_to_val() - Convert the parent index to the register value
81 *
82 * It returns the value to write in the hardware register to output the selected
83 * input clock parent.
84 *
85 * @table: array of register values corresponding to the parent index (optional)
86 * @flags: hardware-specific flags
87 * @index: parent clock index
88 * @return the register value
89 */
90unsigned int clk_mux_index_to_val(u32 *table, unsigned int flags, u8 index);
91
Peng Fan0f085152019-07-31 07:01:34 +000092struct clk_gate {
93 struct clk clk;
94 void __iomem *reg;
95 u8 bit_idx;
96 u8 flags;
Peng Fan3b7f3ae2019-07-31 07:01:57 +000097#if CONFIG_IS_ENABLED(SANDBOX_CLK_CCF)
98 u32 io_gate_val;
99#endif
Peng Fan0f085152019-07-31 07:01:34 +0000100};
101
102#define to_clk_gate(_clk) container_of(_clk, struct clk_gate, clk)
103
104#define CLK_GATE_SET_TO_DISABLE BIT(0)
105#define CLK_GATE_HIWORD_MASK BIT(1)
106
107extern const struct clk_ops clk_gate_ops;
108struct clk *clk_register_gate(struct device *dev, const char *name,
109 const char *parent_name, unsigned long flags,
110 void __iomem *reg, u8 bit_idx,
111 u8 clk_gate_flags, spinlock_t *lock);
112
Lukasz Majewski4de44bb2019-06-24 15:50:45 +0200113struct clk_div_table {
114 unsigned int val;
115 unsigned int div;
116};
117
118struct clk_divider {
119 struct clk clk;
120 void __iomem *reg;
121 u8 shift;
122 u8 width;
123 u8 flags;
124 const struct clk_div_table *table;
Lukasz Majewskibb18f1b2019-06-24 15:50:48 +0200125#if CONFIG_IS_ENABLED(SANDBOX_CLK_CCF)
126 u32 io_divider_val;
127#endif
Lukasz Majewski4de44bb2019-06-24 15:50:45 +0200128};
129
130#define clk_div_mask(width) ((1 << (width)) - 1)
131#define to_clk_divider(_clk) container_of(_clk, struct clk_divider, clk)
132
133#define CLK_DIVIDER_ONE_BASED BIT(0)
134#define CLK_DIVIDER_POWER_OF_TWO BIT(1)
135#define CLK_DIVIDER_ALLOW_ZERO BIT(2)
136#define CLK_DIVIDER_HIWORD_MASK BIT(3)
137#define CLK_DIVIDER_ROUND_CLOSEST BIT(4)
138#define CLK_DIVIDER_READ_ONLY BIT(5)
139#define CLK_DIVIDER_MAX_AT_ZERO BIT(6)
Peng Fan46ed2662019-07-31 07:01:31 +0000140extern const struct clk_ops clk_divider_ops;
Dario Binacchi39fc7a62020-12-30 00:06:27 +0100141
142/**
143 * clk_divider_get_table_div() - convert the register value to the divider
144 *
145 * @table: array of register values corresponding to valid dividers
146 * @val: value to convert
147 * @return the divider
148 */
149unsigned int clk_divider_get_table_div(const struct clk_div_table *table,
150 unsigned int val);
151
152/**
153 * clk_divider_get_table_val() - convert the divider to the register value
154 *
155 * It returns the value to write in the hardware register to divide the input
156 * clock rate by @div.
157 *
158 * @table: array of register values corresponding to valid dividers
159 * @div: requested divider
160 * @return the register value
161 */
162unsigned int clk_divider_get_table_val(const struct clk_div_table *table,
163 unsigned int div);
164
165/**
166 * clk_divider_is_valid_div() - check if the divider is valid
167 *
168 * @table: array of valid dividers (optional)
169 * @div: divider to check
170 * @flags: hardware-specific flags
171 * @return true if the divider is valid, false otherwise
172 */
173bool clk_divider_is_valid_div(const struct clk_div_table *table,
174 unsigned int div, unsigned long flags);
175
176/**
177 * clk_divider_is_valid_table_div - check if the divider is in the @table array
178 *
179 * @table: array of valid dividers
180 * @div: divider to check
181 * @return true if the divider is found in the @table array, false otherwise
182 */
183bool clk_divider_is_valid_table_div(const struct clk_div_table *table,
184 unsigned int div);
Peng Fan46ed2662019-07-31 07:01:31 +0000185unsigned long divider_recalc_rate(struct clk *hw, unsigned long parent_rate,
186 unsigned int val,
187 const struct clk_div_table *table,
188 unsigned long flags, unsigned long width);
Lukasz Majewski4de44bb2019-06-24 15:50:45 +0200189
190struct clk_fixed_factor {
191 struct clk clk;
192 unsigned int mult;
193 unsigned int div;
194};
195
196#define to_clk_fixed_factor(_clk) container_of(_clk, struct clk_fixed_factor,\
197 clk)
198
Peng Fanec424a72019-07-31 07:01:39 +0000199struct clk_fixed_rate {
200 struct clk clk;
201 unsigned long fixed_rate;
202};
203
Simon Glassfa20e932020-12-03 16:55:20 -0700204#define to_clk_fixed_rate(dev) ((struct clk_fixed_rate *)dev_get_plat(dev))
Peng Fanec424a72019-07-31 07:01:39 +0000205
Peng Fan2d9bd932019-07-31 07:01:54 +0000206struct clk_composite {
207 struct clk clk;
208 struct clk_ops ops;
209
210 struct clk *mux;
211 struct clk *rate;
212 struct clk *gate;
213
214 const struct clk_ops *mux_ops;
215 const struct clk_ops *rate_ops;
216 const struct clk_ops *gate_ops;
217};
218
219#define to_clk_composite(_clk) container_of(_clk, struct clk_composite, clk)
220
221struct clk *clk_register_composite(struct device *dev, const char *name,
222 const char * const *parent_names, int num_parents,
223 struct clk *mux_clk, const struct clk_ops *mux_ops,
224 struct clk *rate_clk, const struct clk_ops *rate_ops,
225 struct clk *gate_clk, const struct clk_ops *gate_ops,
226 unsigned long flags);
227
Lukasz Majewski4de44bb2019-06-24 15:50:45 +0200228int clk_register(struct clk *clk, const char *drv_name, const char *name,
229 const char *parent_name);
230
231struct clk *clk_register_fixed_factor(struct device *dev, const char *name,
232 const char *parent_name, unsigned long flags,
233 unsigned int mult, unsigned int div);
234
235struct clk *clk_register_divider(struct device *dev, const char *name,
236 const char *parent_name, unsigned long flags,
237 void __iomem *reg, u8 shift, u8 width,
238 u8 clk_divider_flags);
239
240struct clk *clk_register_mux(struct device *dev, const char *name,
241 const char * const *parent_names, u8 num_parents,
242 unsigned long flags,
243 void __iomem *reg, u8 shift, u8 width,
244 u8 clk_mux_flags);
245
246const char *clk_hw_get_name(const struct clk *hw);
247ulong clk_generic_get_rate(struct clk *clk);
248
Simon Glass43033962020-07-19 10:15:56 -0600249struct clk *dev_get_clk_ptr(struct udevice *dev);
Lukasz Majewskicd457c42019-06-24 15:50:41 +0200250#endif /* __LINUX_CLK_PROVIDER_H */