Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/include/linux/clk-provider.h |
| 3 | * |
| 4 | * Copyright (c) 2010-2011 Jeremy Kerr <jeremy.kerr@canonical.com> |
| 5 | * Copyright (C) 2011-2012 Linaro Ltd <mturquette@linaro.org> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | */ |
| 11 | #ifndef __LINUX_CLK_PROVIDER_H |
| 12 | #define __LINUX_CLK_PROVIDER_H |
| 13 | |
| 14 | #include <linux/clk.h> |
| 15 | |
| 16 | #ifdef CONFIG_COMMON_CLK |
| 17 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 18 | /* |
| 19 | * flags used across common struct clk. these flags should only affect the |
| 20 | * top-level framework. custom flags for dealing with hardware specifics |
| 21 | * belong in struct clk_foo |
| 22 | */ |
| 23 | #define CLK_SET_RATE_GATE BIT(0) /* must be gated across rate change */ |
| 24 | #define CLK_SET_PARENT_GATE BIT(1) /* must be gated across re-parent */ |
| 25 | #define CLK_SET_RATE_PARENT BIT(2) /* propagate rate change up one level */ |
| 26 | #define CLK_IGNORE_UNUSED BIT(3) /* do not gate even if unused */ |
| 27 | #define CLK_IS_ROOT BIT(4) /* root clk, has no parent */ |
Rajendra Nayak | f7d8caa | 2012-06-01 14:02:47 +0530 | [diff] [blame] | 28 | #define CLK_IS_BASIC BIT(5) /* Basic clk, can't do a to_clk_foo() */ |
Ulf Hansson | a093bde | 2012-08-31 14:21:28 +0200 | [diff] [blame] | 29 | #define CLK_GET_RATE_NOCACHE BIT(6) /* do not use the cached clk rate */ |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 30 | |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 31 | struct clk_hw; |
| 32 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 33 | /** |
| 34 | * struct clk_ops - Callback operations for hardware clocks; these are to |
| 35 | * be provided by the clock implementation, and will be called by drivers |
| 36 | * through the clk_* api. |
| 37 | * |
| 38 | * @prepare: Prepare the clock for enabling. This must not return until |
| 39 | * the clock is fully prepared, and it's safe to call clk_enable. |
| 40 | * This callback is intended to allow clock implementations to |
| 41 | * do any initialisation that may sleep. Called with |
| 42 | * prepare_lock held. |
| 43 | * |
| 44 | * @unprepare: Release the clock from its prepared state. This will typically |
| 45 | * undo any work done in the @prepare callback. Called with |
| 46 | * prepare_lock held. |
| 47 | * |
Ulf Hansson | 3d6ee28 | 2013-03-12 20:26:02 +0100 | [diff] [blame^] | 48 | * @is_prepared: Queries the hardware to determine if the clock is prepared. |
| 49 | * This function is allowed to sleep. Optional, if this op is not |
| 50 | * set then the prepare count will be used. |
| 51 | * |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 52 | * @enable: Enable the clock atomically. This must not return until the |
| 53 | * clock is generating a valid clock signal, usable by consumer |
| 54 | * devices. Called with enable_lock held. This function must not |
| 55 | * sleep. |
| 56 | * |
| 57 | * @disable: Disable the clock atomically. Called with enable_lock held. |
| 58 | * This function must not sleep. |
| 59 | * |
Stephen Boyd | 119c712 | 2012-10-03 23:38:53 -0700 | [diff] [blame] | 60 | * @is_enabled: Queries the hardware to determine if the clock is enabled. |
| 61 | * This function must not sleep. Optional, if this op is not |
| 62 | * set then the enable count will be used. |
| 63 | * |
Mike Turquette | 7c045a5 | 2012-12-04 11:00:35 -0800 | [diff] [blame] | 64 | * @disable_unused: Disable the clock atomically. Only called from |
| 65 | * clk_disable_unused for gate clocks with special needs. |
| 66 | * Called with enable_lock held. This function must not |
| 67 | * sleep. |
| 68 | * |
Stephen Boyd | 7ce3e8c | 2012-10-03 23:38:54 -0700 | [diff] [blame] | 69 | * @recalc_rate Recalculate the rate of this clock, by querying hardware. The |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 70 | * parent rate is an input parameter. It is up to the caller to |
Stephen Boyd | 7ce3e8c | 2012-10-03 23:38:54 -0700 | [diff] [blame] | 71 | * ensure that the prepare_mutex is held across this call. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 72 | * Returns the calculated rate. Optional, but recommended - if |
| 73 | * this op is not set then clock rate will be initialized to 0. |
| 74 | * |
| 75 | * @round_rate: Given a target rate as input, returns the closest rate actually |
| 76 | * supported by the clock. |
| 77 | * |
| 78 | * @get_parent: Queries the hardware to determine the parent of a clock. The |
| 79 | * return value is a u8 which specifies the index corresponding to |
| 80 | * the parent clock. This index can be applied to either the |
| 81 | * .parent_names or .parents arrays. In short, this function |
| 82 | * translates the parent value read from hardware into an array |
| 83 | * index. Currently only called when the clock is initialized by |
| 84 | * __clk_init. This callback is mandatory for clocks with |
| 85 | * multiple parents. It is optional (and unnecessary) for clocks |
| 86 | * with 0 or 1 parents. |
| 87 | * |
| 88 | * @set_parent: Change the input source of this clock; for clocks with multiple |
| 89 | * possible parents specify a new parent by passing in the index |
| 90 | * as a u8 corresponding to the parent in either the .parent_names |
| 91 | * or .parents arrays. This function in affect translates an |
| 92 | * array index into the value programmed into the hardware. |
| 93 | * Returns 0 on success, -EERROR otherwise. |
| 94 | * |
Shawn Guo | 1c0035d | 2012-04-12 20:50:18 +0800 | [diff] [blame] | 95 | * @set_rate: Change the rate of this clock. The requested rate is specified |
| 96 | * by the second argument, which should typically be the return |
| 97 | * of .round_rate call. The third argument gives the parent rate |
| 98 | * which is likely helpful for most .set_rate implementation. |
| 99 | * Returns 0 on success, -EERROR otherwise. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 100 | * |
| 101 | * The clk_enable/clk_disable and clk_prepare/clk_unprepare pairs allow |
| 102 | * implementations to split any work between atomic (enable) and sleepable |
| 103 | * (prepare) contexts. If enabling a clock requires code that might sleep, |
| 104 | * this must be done in clk_prepare. Clock enable code that will never be |
Stephen Boyd | 7ce3e8c | 2012-10-03 23:38:54 -0700 | [diff] [blame] | 105 | * called in a sleepable context may be implemented in clk_enable. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 106 | * |
| 107 | * Typically, drivers will call clk_prepare when a clock may be needed later |
| 108 | * (eg. when a device is opened), and clk_enable when the clock is actually |
| 109 | * required (eg. from an interrupt). Note that clk_prepare MUST have been |
| 110 | * called before clk_enable. |
| 111 | */ |
| 112 | struct clk_ops { |
| 113 | int (*prepare)(struct clk_hw *hw); |
| 114 | void (*unprepare)(struct clk_hw *hw); |
Ulf Hansson | 3d6ee28 | 2013-03-12 20:26:02 +0100 | [diff] [blame^] | 115 | int (*is_prepared)(struct clk_hw *hw); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 116 | int (*enable)(struct clk_hw *hw); |
| 117 | void (*disable)(struct clk_hw *hw); |
| 118 | int (*is_enabled)(struct clk_hw *hw); |
Mike Turquette | 7c045a5 | 2012-12-04 11:00:35 -0800 | [diff] [blame] | 119 | void (*disable_unused)(struct clk_hw *hw); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 120 | unsigned long (*recalc_rate)(struct clk_hw *hw, |
| 121 | unsigned long parent_rate); |
| 122 | long (*round_rate)(struct clk_hw *hw, unsigned long, |
| 123 | unsigned long *); |
| 124 | int (*set_parent)(struct clk_hw *hw, u8 index); |
| 125 | u8 (*get_parent)(struct clk_hw *hw); |
Shawn Guo | 1c0035d | 2012-04-12 20:50:18 +0800 | [diff] [blame] | 126 | int (*set_rate)(struct clk_hw *hw, unsigned long, |
| 127 | unsigned long); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 128 | void (*init)(struct clk_hw *hw); |
| 129 | }; |
| 130 | |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 131 | /** |
| 132 | * struct clk_init_data - holds init data that's common to all clocks and is |
| 133 | * shared between the clock provider and the common clock framework. |
| 134 | * |
| 135 | * @name: clock name |
| 136 | * @ops: operations this clock supports |
| 137 | * @parent_names: array of string names for all possible parents |
| 138 | * @num_parents: number of possible parents |
| 139 | * @flags: framework-level hints and quirks |
| 140 | */ |
| 141 | struct clk_init_data { |
| 142 | const char *name; |
| 143 | const struct clk_ops *ops; |
| 144 | const char **parent_names; |
| 145 | u8 num_parents; |
| 146 | unsigned long flags; |
| 147 | }; |
| 148 | |
| 149 | /** |
| 150 | * struct clk_hw - handle for traversing from a struct clk to its corresponding |
| 151 | * hardware-specific structure. struct clk_hw should be declared within struct |
| 152 | * clk_foo and then referenced by the struct clk instance that uses struct |
| 153 | * clk_foo's clk_ops |
| 154 | * |
| 155 | * @clk: pointer to the struct clk instance that points back to this struct |
| 156 | * clk_hw instance |
| 157 | * |
| 158 | * @init: pointer to struct clk_init_data that contains the init data shared |
| 159 | * with the common clock framework. |
| 160 | */ |
| 161 | struct clk_hw { |
| 162 | struct clk *clk; |
Mark Brown | dc4cd94 | 2012-05-14 15:12:42 +0100 | [diff] [blame] | 163 | const struct clk_init_data *init; |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 164 | }; |
| 165 | |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 166 | /* |
| 167 | * DOC: Basic clock implementations common to many platforms |
| 168 | * |
| 169 | * Each basic clock hardware type is comprised of a structure describing the |
| 170 | * clock hardware, implementations of the relevant callbacks in struct clk_ops, |
| 171 | * unique flags for that hardware type, a registration function and an |
| 172 | * alternative macro for static initialization |
| 173 | */ |
| 174 | |
| 175 | /** |
| 176 | * struct clk_fixed_rate - fixed-rate clock |
| 177 | * @hw: handle between common and hardware-specific interfaces |
| 178 | * @fixed_rate: constant frequency of clock |
| 179 | */ |
| 180 | struct clk_fixed_rate { |
| 181 | struct clk_hw hw; |
| 182 | unsigned long fixed_rate; |
| 183 | u8 flags; |
| 184 | }; |
| 185 | |
Shawn Guo | bffad66 | 2012-03-27 15:23:23 +0800 | [diff] [blame] | 186 | extern const struct clk_ops clk_fixed_rate_ops; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 187 | struct clk *clk_register_fixed_rate(struct device *dev, const char *name, |
| 188 | const char *parent_name, unsigned long flags, |
| 189 | unsigned long fixed_rate); |
| 190 | |
Grant Likely | 015ba40 | 2012-04-07 21:39:39 -0500 | [diff] [blame] | 191 | void of_fixed_clk_setup(struct device_node *np); |
| 192 | |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 193 | /** |
| 194 | * struct clk_gate - gating clock |
| 195 | * |
| 196 | * @hw: handle between common and hardware-specific interfaces |
| 197 | * @reg: register controlling gate |
| 198 | * @bit_idx: single bit controlling gate |
| 199 | * @flags: hardware-specific flags |
| 200 | * @lock: register lock |
| 201 | * |
| 202 | * Clock which can gate its output. Implements .enable & .disable |
| 203 | * |
| 204 | * Flags: |
Viresh Kumar | 1f73f31 | 2012-04-17 16:45:35 +0530 | [diff] [blame] | 205 | * CLK_GATE_SET_TO_DISABLE - by default this clock sets the bit at bit_idx to |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 206 | * enable the clock. Setting this flag does the opposite: setting the bit |
| 207 | * disable the clock and clearing it enables the clock |
| 208 | */ |
| 209 | struct clk_gate { |
| 210 | struct clk_hw hw; |
| 211 | void __iomem *reg; |
| 212 | u8 bit_idx; |
| 213 | u8 flags; |
| 214 | spinlock_t *lock; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 215 | }; |
| 216 | |
| 217 | #define CLK_GATE_SET_TO_DISABLE BIT(0) |
| 218 | |
Shawn Guo | bffad66 | 2012-03-27 15:23:23 +0800 | [diff] [blame] | 219 | extern const struct clk_ops clk_gate_ops; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 220 | struct clk *clk_register_gate(struct device *dev, const char *name, |
| 221 | const char *parent_name, unsigned long flags, |
| 222 | void __iomem *reg, u8 bit_idx, |
| 223 | u8 clk_gate_flags, spinlock_t *lock); |
| 224 | |
Rajendra Nayak | 357c3f0 | 2012-06-29 19:06:32 +0530 | [diff] [blame] | 225 | struct clk_div_table { |
| 226 | unsigned int val; |
| 227 | unsigned int div; |
| 228 | }; |
| 229 | |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 230 | /** |
| 231 | * struct clk_divider - adjustable divider clock |
| 232 | * |
| 233 | * @hw: handle between common and hardware-specific interfaces |
| 234 | * @reg: register containing the divider |
| 235 | * @shift: shift to the divider bit field |
| 236 | * @width: width of the divider bit field |
Rajendra Nayak | 357c3f0 | 2012-06-29 19:06:32 +0530 | [diff] [blame] | 237 | * @table: array of value/divider pairs, last entry should have div = 0 |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 238 | * @lock: register lock |
| 239 | * |
| 240 | * Clock with an adjustable divider affecting its output frequency. Implements |
| 241 | * .recalc_rate, .set_rate and .round_rate |
| 242 | * |
| 243 | * Flags: |
| 244 | * CLK_DIVIDER_ONE_BASED - by default the divisor is the value read from the |
| 245 | * register plus one. If CLK_DIVIDER_ONE_BASED is set then the divider is |
| 246 | * the raw value read from the register, with the value of zero considered |
| 247 | * invalid |
| 248 | * CLK_DIVIDER_POWER_OF_TWO - clock divisor is 2 raised to the value read from |
| 249 | * the hardware register |
| 250 | */ |
| 251 | struct clk_divider { |
| 252 | struct clk_hw hw; |
| 253 | void __iomem *reg; |
| 254 | u8 shift; |
| 255 | u8 width; |
| 256 | u8 flags; |
Rajendra Nayak | 357c3f0 | 2012-06-29 19:06:32 +0530 | [diff] [blame] | 257 | const struct clk_div_table *table; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 258 | spinlock_t *lock; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 259 | }; |
| 260 | |
| 261 | #define CLK_DIVIDER_ONE_BASED BIT(0) |
| 262 | #define CLK_DIVIDER_POWER_OF_TWO BIT(1) |
| 263 | |
Shawn Guo | bffad66 | 2012-03-27 15:23:23 +0800 | [diff] [blame] | 264 | extern const struct clk_ops clk_divider_ops; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 265 | struct clk *clk_register_divider(struct device *dev, const char *name, |
| 266 | const char *parent_name, unsigned long flags, |
| 267 | void __iomem *reg, u8 shift, u8 width, |
| 268 | u8 clk_divider_flags, spinlock_t *lock); |
Rajendra Nayak | 357c3f0 | 2012-06-29 19:06:32 +0530 | [diff] [blame] | 269 | struct clk *clk_register_divider_table(struct device *dev, const char *name, |
| 270 | const char *parent_name, unsigned long flags, |
| 271 | void __iomem *reg, u8 shift, u8 width, |
| 272 | u8 clk_divider_flags, const struct clk_div_table *table, |
| 273 | spinlock_t *lock); |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 274 | |
| 275 | /** |
| 276 | * struct clk_mux - multiplexer clock |
| 277 | * |
| 278 | * @hw: handle between common and hardware-specific interfaces |
| 279 | * @reg: register controlling multiplexer |
| 280 | * @shift: shift to multiplexer bit field |
| 281 | * @width: width of mutliplexer bit field |
| 282 | * @num_clks: number of parent clocks |
| 283 | * @lock: register lock |
| 284 | * |
| 285 | * Clock with multiple selectable parents. Implements .get_parent, .set_parent |
| 286 | * and .recalc_rate |
| 287 | * |
| 288 | * Flags: |
| 289 | * CLK_MUX_INDEX_ONE - register index starts at 1, not 0 |
Viresh Kumar | 1f73f31 | 2012-04-17 16:45:35 +0530 | [diff] [blame] | 290 | * CLK_MUX_INDEX_BIT - register index is a single bit (power of two) |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 291 | */ |
| 292 | struct clk_mux { |
| 293 | struct clk_hw hw; |
| 294 | void __iomem *reg; |
| 295 | u8 shift; |
| 296 | u8 width; |
| 297 | u8 flags; |
| 298 | spinlock_t *lock; |
| 299 | }; |
| 300 | |
| 301 | #define CLK_MUX_INDEX_ONE BIT(0) |
| 302 | #define CLK_MUX_INDEX_BIT BIT(1) |
| 303 | |
Shawn Guo | bffad66 | 2012-03-27 15:23:23 +0800 | [diff] [blame] | 304 | extern const struct clk_ops clk_mux_ops; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 305 | struct clk *clk_register_mux(struct device *dev, const char *name, |
Mark Brown | d305fb7 | 2012-03-21 20:01:20 +0000 | [diff] [blame] | 306 | const char **parent_names, u8 num_parents, unsigned long flags, |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 307 | void __iomem *reg, u8 shift, u8 width, |
| 308 | u8 clk_mux_flags, spinlock_t *lock); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 309 | |
| 310 | /** |
Sascha Hauer | f0948f5 | 2012-05-03 15:36:14 +0530 | [diff] [blame] | 311 | * struct clk_fixed_factor - fixed multiplier and divider clock |
| 312 | * |
| 313 | * @hw: handle between common and hardware-specific interfaces |
| 314 | * @mult: multiplier |
| 315 | * @div: divider |
| 316 | * |
| 317 | * Clock with a fixed multiplier and divider. The output frequency is the |
| 318 | * parent clock rate divided by div and multiplied by mult. |
| 319 | * Implements .recalc_rate, .set_rate and .round_rate |
| 320 | */ |
| 321 | |
| 322 | struct clk_fixed_factor { |
| 323 | struct clk_hw hw; |
| 324 | unsigned int mult; |
| 325 | unsigned int div; |
| 326 | }; |
| 327 | |
| 328 | extern struct clk_ops clk_fixed_factor_ops; |
| 329 | struct clk *clk_register_fixed_factor(struct device *dev, const char *name, |
| 330 | const char *parent_name, unsigned long flags, |
| 331 | unsigned int mult, unsigned int div); |
| 332 | |
| 333 | /** |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 334 | * clk_register - allocate a new clock, register it and return an opaque cookie |
| 335 | * @dev: device that is registering this clock |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 336 | * @hw: link to hardware-specific clock data |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 337 | * |
| 338 | * clk_register is the primary interface for populating the clock tree with new |
| 339 | * clock nodes. It returns a pointer to the newly allocated struct clk which |
| 340 | * cannot be dereferenced by driver code but may be used in conjuction with the |
Mike Turquette | d1302a3 | 2012-03-29 14:30:40 -0700 | [diff] [blame] | 341 | * rest of the clock API. In the event of an error clk_register will return an |
| 342 | * error code; drivers must test for an error code after calling clk_register. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 343 | */ |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 344 | struct clk *clk_register(struct device *dev, struct clk_hw *hw); |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 345 | struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 346 | |
Mark Brown | 1df5c93 | 2012-04-18 09:07:12 +0100 | [diff] [blame] | 347 | void clk_unregister(struct clk *clk); |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 348 | void devm_clk_unregister(struct device *dev, struct clk *clk); |
Mark Brown | 1df5c93 | 2012-04-18 09:07:12 +0100 | [diff] [blame] | 349 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 350 | /* helper functions */ |
| 351 | const char *__clk_get_name(struct clk *clk); |
| 352 | struct clk_hw *__clk_get_hw(struct clk *clk); |
| 353 | u8 __clk_get_num_parents(struct clk *clk); |
| 354 | struct clk *__clk_get_parent(struct clk *clk); |
Linus Torvalds | 9387468 | 2012-12-11 11:25:08 -0800 | [diff] [blame] | 355 | unsigned int __clk_get_enable_count(struct clk *clk); |
| 356 | unsigned int __clk_get_prepare_count(struct clk *clk); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 357 | unsigned long __clk_get_rate(struct clk *clk); |
| 358 | unsigned long __clk_get_flags(struct clk *clk); |
Ulf Hansson | 3d6ee28 | 2013-03-12 20:26:02 +0100 | [diff] [blame^] | 359 | bool __clk_is_prepared(struct clk *clk); |
Stephen Boyd | 2ac6b1f | 2012-10-03 23:38:55 -0700 | [diff] [blame] | 360 | bool __clk_is_enabled(struct clk *clk); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 361 | struct clk *__clk_lookup(const char *name); |
| 362 | |
| 363 | /* |
| 364 | * FIXME clock api without lock protection |
| 365 | */ |
| 366 | int __clk_prepare(struct clk *clk); |
| 367 | void __clk_unprepare(struct clk *clk); |
| 368 | void __clk_reparent(struct clk *clk, struct clk *new_parent); |
| 369 | unsigned long __clk_round_rate(struct clk *clk, unsigned long rate); |
| 370 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 371 | struct of_device_id; |
| 372 | |
| 373 | typedef void (*of_clk_init_cb_t)(struct device_node *); |
| 374 | |
| 375 | int of_clk_add_provider(struct device_node *np, |
| 376 | struct clk *(*clk_src_get)(struct of_phandle_args *args, |
| 377 | void *data), |
| 378 | void *data); |
| 379 | void of_clk_del_provider(struct device_node *np); |
| 380 | struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec, |
| 381 | void *data); |
Shawn Guo | 494bfec | 2012-08-22 21:36:27 +0800 | [diff] [blame] | 382 | struct clk_onecell_data { |
| 383 | struct clk **clks; |
| 384 | unsigned int clk_num; |
| 385 | }; |
| 386 | struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 387 | const char *of_clk_get_parent_name(struct device_node *np, int index); |
Prashant Gaikwad | f2f6c25 | 2013-01-04 12:30:52 +0530 | [diff] [blame] | 388 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 389 | void of_clk_init(const struct of_device_id *matches); |
| 390 | |
Prashant Gaikwad | f2f6c25 | 2013-01-04 12:30:52 +0530 | [diff] [blame] | 391 | #define CLK_OF_DECLARE(name, compat, fn) \ |
| 392 | static const struct of_device_id __clk_of_table_##name \ |
| 393 | __used __section(__clk_of_table) \ |
| 394 | = { .compatible = compat, .data = fn }; |
| 395 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 396 | #endif /* CONFIG_COMMON_CLK */ |
| 397 | #endif /* CLK_PROVIDER_H */ |