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> |
Gerhard Sittig | aa514ce | 2013-07-22 14:14:40 +0200 | [diff] [blame] | 15 | #include <linux/io.h> |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 16 | |
| 17 | #ifdef CONFIG_COMMON_CLK |
| 18 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 19 | /* |
| 20 | * flags used across common struct clk. these flags should only affect the |
| 21 | * top-level framework. custom flags for dealing with hardware specifics |
| 22 | * belong in struct clk_foo |
| 23 | */ |
| 24 | #define CLK_SET_RATE_GATE BIT(0) /* must be gated across rate change */ |
| 25 | #define CLK_SET_PARENT_GATE BIT(1) /* must be gated across re-parent */ |
| 26 | #define CLK_SET_RATE_PARENT BIT(2) /* propagate rate change up one level */ |
| 27 | #define CLK_IGNORE_UNUSED BIT(3) /* do not gate even if unused */ |
| 28 | #define CLK_IS_ROOT BIT(4) /* root clk, has no parent */ |
Rajendra Nayak | f7d8caa | 2012-06-01 14:02:47 +0530 | [diff] [blame] | 29 | #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] | 30 | #define CLK_GET_RATE_NOCACHE BIT(6) /* do not use the cached clk rate */ |
James Hogan | 819c1de | 2013-07-29 12:25:01 +0100 | [diff] [blame] | 31 | #define CLK_SET_RATE_NO_REPARENT BIT(7) /* don't re-parent on rate change */ |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 32 | |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 33 | struct clk_hw; |
| 34 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 35 | /** |
| 36 | * struct clk_ops - Callback operations for hardware clocks; these are to |
| 37 | * be provided by the clock implementation, and will be called by drivers |
| 38 | * through the clk_* api. |
| 39 | * |
| 40 | * @prepare: Prepare the clock for enabling. This must not return until |
| 41 | * the clock is fully prepared, and it's safe to call clk_enable. |
| 42 | * This callback is intended to allow clock implementations to |
| 43 | * do any initialisation that may sleep. Called with |
| 44 | * prepare_lock held. |
| 45 | * |
| 46 | * @unprepare: Release the clock from its prepared state. This will typically |
| 47 | * undo any work done in the @prepare callback. Called with |
| 48 | * prepare_lock held. |
| 49 | * |
Ulf Hansson | 3d6ee28 | 2013-03-12 20:26:02 +0100 | [diff] [blame] | 50 | * @is_prepared: Queries the hardware to determine if the clock is prepared. |
| 51 | * This function is allowed to sleep. Optional, if this op is not |
| 52 | * set then the prepare count will be used. |
| 53 | * |
Ulf Hansson | 3cc8247 | 2013-03-12 20:26:04 +0100 | [diff] [blame] | 54 | * @unprepare_unused: Unprepare the clock atomically. Only called from |
| 55 | * clk_disable_unused for prepare clocks with special needs. |
| 56 | * Called with prepare mutex held. This function may sleep. |
| 57 | * |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 58 | * @enable: Enable the clock atomically. This must not return until the |
| 59 | * clock is generating a valid clock signal, usable by consumer |
| 60 | * devices. Called with enable_lock held. This function must not |
| 61 | * sleep. |
| 62 | * |
| 63 | * @disable: Disable the clock atomically. Called with enable_lock held. |
| 64 | * This function must not sleep. |
| 65 | * |
Stephen Boyd | 119c712 | 2012-10-03 23:38:53 -0700 | [diff] [blame] | 66 | * @is_enabled: Queries the hardware to determine if the clock is enabled. |
| 67 | * This function must not sleep. Optional, if this op is not |
| 68 | * set then the enable count will be used. |
| 69 | * |
Mike Turquette | 7c045a5 | 2012-12-04 11:00:35 -0800 | [diff] [blame] | 70 | * @disable_unused: Disable the clock atomically. Only called from |
| 71 | * clk_disable_unused for gate clocks with special needs. |
| 72 | * Called with enable_lock held. This function must not |
| 73 | * sleep. |
| 74 | * |
Stephen Boyd | 7ce3e8c | 2012-10-03 23:38:54 -0700 | [diff] [blame] | 75 | * @recalc_rate Recalculate the rate of this clock, by querying hardware. The |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 76 | * 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] | 77 | * ensure that the prepare_mutex is held across this call. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 78 | * Returns the calculated rate. Optional, but recommended - if |
| 79 | * this op is not set then clock rate will be initialized to 0. |
| 80 | * |
| 81 | * @round_rate: Given a target rate as input, returns the closest rate actually |
| 82 | * supported by the clock. |
| 83 | * |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 84 | * @determine_rate: Given a target rate as input, returns the closest rate |
| 85 | * actually supported by the clock, and optionally the parent clock |
| 86 | * that should be used to provide the clock rate. |
| 87 | * |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 88 | * @get_parent: Queries the hardware to determine the parent of a clock. The |
| 89 | * return value is a u8 which specifies the index corresponding to |
| 90 | * the parent clock. This index can be applied to either the |
| 91 | * .parent_names or .parents arrays. In short, this function |
| 92 | * translates the parent value read from hardware into an array |
| 93 | * index. Currently only called when the clock is initialized by |
| 94 | * __clk_init. This callback is mandatory for clocks with |
| 95 | * multiple parents. It is optional (and unnecessary) for clocks |
| 96 | * with 0 or 1 parents. |
| 97 | * |
| 98 | * @set_parent: Change the input source of this clock; for clocks with multiple |
| 99 | * possible parents specify a new parent by passing in the index |
| 100 | * as a u8 corresponding to the parent in either the .parent_names |
| 101 | * or .parents arrays. This function in affect translates an |
| 102 | * array index into the value programmed into the hardware. |
| 103 | * Returns 0 on success, -EERROR otherwise. |
| 104 | * |
Shawn Guo | 1c0035d | 2012-04-12 20:50:18 +0800 | [diff] [blame] | 105 | * @set_rate: Change the rate of this clock. The requested rate is specified |
| 106 | * by the second argument, which should typically be the return |
| 107 | * of .round_rate call. The third argument gives the parent rate |
| 108 | * which is likely helpful for most .set_rate implementation. |
| 109 | * Returns 0 on success, -EERROR otherwise. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 110 | * |
| 111 | * The clk_enable/clk_disable and clk_prepare/clk_unprepare pairs allow |
| 112 | * implementations to split any work between atomic (enable) and sleepable |
| 113 | * (prepare) contexts. If enabling a clock requires code that might sleep, |
| 114 | * 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] | 115 | * called in a sleepable context may be implemented in clk_enable. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 116 | * |
| 117 | * Typically, drivers will call clk_prepare when a clock may be needed later |
| 118 | * (eg. when a device is opened), and clk_enable when the clock is actually |
| 119 | * required (eg. from an interrupt). Note that clk_prepare MUST have been |
| 120 | * called before clk_enable. |
| 121 | */ |
| 122 | struct clk_ops { |
| 123 | int (*prepare)(struct clk_hw *hw); |
| 124 | void (*unprepare)(struct clk_hw *hw); |
Ulf Hansson | 3d6ee28 | 2013-03-12 20:26:02 +0100 | [diff] [blame] | 125 | int (*is_prepared)(struct clk_hw *hw); |
Ulf Hansson | 3cc8247 | 2013-03-12 20:26:04 +0100 | [diff] [blame] | 126 | void (*unprepare_unused)(struct clk_hw *hw); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 127 | int (*enable)(struct clk_hw *hw); |
| 128 | void (*disable)(struct clk_hw *hw); |
| 129 | int (*is_enabled)(struct clk_hw *hw); |
Mike Turquette | 7c045a5 | 2012-12-04 11:00:35 -0800 | [diff] [blame] | 130 | void (*disable_unused)(struct clk_hw *hw); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 131 | unsigned long (*recalc_rate)(struct clk_hw *hw, |
| 132 | unsigned long parent_rate); |
| 133 | long (*round_rate)(struct clk_hw *hw, unsigned long, |
| 134 | unsigned long *); |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 135 | long (*determine_rate)(struct clk_hw *hw, unsigned long rate, |
| 136 | unsigned long *best_parent_rate, |
| 137 | struct clk **best_parent_clk); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 138 | int (*set_parent)(struct clk_hw *hw, u8 index); |
| 139 | u8 (*get_parent)(struct clk_hw *hw); |
Shawn Guo | 1c0035d | 2012-04-12 20:50:18 +0800 | [diff] [blame] | 140 | int (*set_rate)(struct clk_hw *hw, unsigned long, |
| 141 | unsigned long); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 142 | void (*init)(struct clk_hw *hw); |
| 143 | }; |
| 144 | |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 145 | /** |
| 146 | * struct clk_init_data - holds init data that's common to all clocks and is |
| 147 | * shared between the clock provider and the common clock framework. |
| 148 | * |
| 149 | * @name: clock name |
| 150 | * @ops: operations this clock supports |
| 151 | * @parent_names: array of string names for all possible parents |
| 152 | * @num_parents: number of possible parents |
| 153 | * @flags: framework-level hints and quirks |
| 154 | */ |
| 155 | struct clk_init_data { |
| 156 | const char *name; |
| 157 | const struct clk_ops *ops; |
| 158 | const char **parent_names; |
| 159 | u8 num_parents; |
| 160 | unsigned long flags; |
| 161 | }; |
| 162 | |
| 163 | /** |
| 164 | * struct clk_hw - handle for traversing from a struct clk to its corresponding |
| 165 | * hardware-specific structure. struct clk_hw should be declared within struct |
| 166 | * clk_foo and then referenced by the struct clk instance that uses struct |
| 167 | * clk_foo's clk_ops |
| 168 | * |
| 169 | * @clk: pointer to the struct clk instance that points back to this struct |
| 170 | * clk_hw instance |
| 171 | * |
| 172 | * @init: pointer to struct clk_init_data that contains the init data shared |
| 173 | * with the common clock framework. |
| 174 | */ |
| 175 | struct clk_hw { |
| 176 | struct clk *clk; |
Mark Brown | dc4cd94 | 2012-05-14 15:12:42 +0100 | [diff] [blame] | 177 | const struct clk_init_data *init; |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 178 | }; |
| 179 | |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 180 | /* |
| 181 | * DOC: Basic clock implementations common to many platforms |
| 182 | * |
| 183 | * Each basic clock hardware type is comprised of a structure describing the |
| 184 | * clock hardware, implementations of the relevant callbacks in struct clk_ops, |
| 185 | * unique flags for that hardware type, a registration function and an |
| 186 | * alternative macro for static initialization |
| 187 | */ |
| 188 | |
| 189 | /** |
| 190 | * struct clk_fixed_rate - fixed-rate clock |
| 191 | * @hw: handle between common and hardware-specific interfaces |
| 192 | * @fixed_rate: constant frequency of clock |
| 193 | */ |
| 194 | struct clk_fixed_rate { |
| 195 | struct clk_hw hw; |
| 196 | unsigned long fixed_rate; |
| 197 | u8 flags; |
| 198 | }; |
| 199 | |
Shawn Guo | bffad66 | 2012-03-27 15:23:23 +0800 | [diff] [blame] | 200 | extern const struct clk_ops clk_fixed_rate_ops; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 201 | struct clk *clk_register_fixed_rate(struct device *dev, const char *name, |
| 202 | const char *parent_name, unsigned long flags, |
| 203 | unsigned long fixed_rate); |
| 204 | |
Grant Likely | 015ba40 | 2012-04-07 21:39:39 -0500 | [diff] [blame] | 205 | void of_fixed_clk_setup(struct device_node *np); |
| 206 | |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 207 | /** |
| 208 | * struct clk_gate - gating clock |
| 209 | * |
| 210 | * @hw: handle between common and hardware-specific interfaces |
| 211 | * @reg: register controlling gate |
| 212 | * @bit_idx: single bit controlling gate |
| 213 | * @flags: hardware-specific flags |
| 214 | * @lock: register lock |
| 215 | * |
| 216 | * Clock which can gate its output. Implements .enable & .disable |
| 217 | * |
| 218 | * Flags: |
Viresh Kumar | 1f73f31 | 2012-04-17 16:45:35 +0530 | [diff] [blame] | 219 | * 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] | 220 | * enable the clock. Setting this flag does the opposite: setting the bit |
| 221 | * disable the clock and clearing it enables the clock |
Haojian Zhuang | 0457799 | 2013-06-08 22:47:19 +0800 | [diff] [blame] | 222 | * CLK_GATE_HIWORD_MASK - The gate settings are only in lower 16-bit |
| 223 | * of this register, and mask of gate bits are in higher 16-bit of this |
| 224 | * register. While setting the gate bits, higher 16-bit should also be |
| 225 | * updated to indicate changing gate bits. |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 226 | */ |
| 227 | struct clk_gate { |
| 228 | struct clk_hw hw; |
| 229 | void __iomem *reg; |
| 230 | u8 bit_idx; |
| 231 | u8 flags; |
| 232 | spinlock_t *lock; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 233 | }; |
| 234 | |
| 235 | #define CLK_GATE_SET_TO_DISABLE BIT(0) |
Haojian Zhuang | 0457799 | 2013-06-08 22:47:19 +0800 | [diff] [blame] | 236 | #define CLK_GATE_HIWORD_MASK BIT(1) |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 237 | |
Shawn Guo | bffad66 | 2012-03-27 15:23:23 +0800 | [diff] [blame] | 238 | extern const struct clk_ops clk_gate_ops; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 239 | struct clk *clk_register_gate(struct device *dev, const char *name, |
| 240 | const char *parent_name, unsigned long flags, |
| 241 | void __iomem *reg, u8 bit_idx, |
| 242 | u8 clk_gate_flags, spinlock_t *lock); |
| 243 | |
Rajendra Nayak | 357c3f0 | 2012-06-29 19:06:32 +0530 | [diff] [blame] | 244 | struct clk_div_table { |
| 245 | unsigned int val; |
| 246 | unsigned int div; |
| 247 | }; |
| 248 | |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 249 | /** |
| 250 | * struct clk_divider - adjustable divider clock |
| 251 | * |
| 252 | * @hw: handle between common and hardware-specific interfaces |
| 253 | * @reg: register containing the divider |
| 254 | * @shift: shift to the divider bit field |
| 255 | * @width: width of the divider bit field |
Rajendra Nayak | 357c3f0 | 2012-06-29 19:06:32 +0530 | [diff] [blame] | 256 | * @table: array of value/divider pairs, last entry should have div = 0 |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 257 | * @lock: register lock |
| 258 | * |
| 259 | * Clock with an adjustable divider affecting its output frequency. Implements |
| 260 | * .recalc_rate, .set_rate and .round_rate |
| 261 | * |
| 262 | * Flags: |
| 263 | * CLK_DIVIDER_ONE_BASED - by default the divisor is the value read from the |
| 264 | * register plus one. If CLK_DIVIDER_ONE_BASED is set then the divider is |
| 265 | * the raw value read from the register, with the value of zero considered |
Soren Brinkmann | 056b2053 | 2013-04-02 15:36:56 -0700 | [diff] [blame] | 266 | * invalid, unless CLK_DIVIDER_ALLOW_ZERO is set. |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 267 | * CLK_DIVIDER_POWER_OF_TWO - clock divisor is 2 raised to the value read from |
| 268 | * the hardware register |
Soren Brinkmann | 056b2053 | 2013-04-02 15:36:56 -0700 | [diff] [blame] | 269 | * CLK_DIVIDER_ALLOW_ZERO - Allow zero divisors. For dividers which have |
| 270 | * CLK_DIVIDER_ONE_BASED set, it is possible to end up with a zero divisor. |
| 271 | * Some hardware implementations gracefully handle this case and allow a |
| 272 | * zero divisor by not modifying their input clock |
| 273 | * (divide by one / bypass). |
Haojian Zhuang | d57dfe7 | 2013-06-08 22:47:18 +0800 | [diff] [blame] | 274 | * CLK_DIVIDER_HIWORD_MASK - The divider settings are only in lower 16-bit |
| 275 | * of this register, and mask of divider bits are in higher 16-bit of this |
| 276 | * register. While setting the divider bits, higher 16-bit should also be |
| 277 | * updated to indicate changing divider bits. |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 278 | */ |
| 279 | struct clk_divider { |
| 280 | struct clk_hw hw; |
| 281 | void __iomem *reg; |
| 282 | u8 shift; |
| 283 | u8 width; |
| 284 | u8 flags; |
Rajendra Nayak | 357c3f0 | 2012-06-29 19:06:32 +0530 | [diff] [blame] | 285 | const struct clk_div_table *table; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 286 | spinlock_t *lock; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 287 | }; |
| 288 | |
| 289 | #define CLK_DIVIDER_ONE_BASED BIT(0) |
| 290 | #define CLK_DIVIDER_POWER_OF_TWO BIT(1) |
Soren Brinkmann | 056b2053 | 2013-04-02 15:36:56 -0700 | [diff] [blame] | 291 | #define CLK_DIVIDER_ALLOW_ZERO BIT(2) |
Haojian Zhuang | d57dfe7 | 2013-06-08 22:47:18 +0800 | [diff] [blame] | 292 | #define CLK_DIVIDER_HIWORD_MASK BIT(3) |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 293 | |
Shawn Guo | bffad66 | 2012-03-27 15:23:23 +0800 | [diff] [blame] | 294 | extern const struct clk_ops clk_divider_ops; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 295 | struct clk *clk_register_divider(struct device *dev, const char *name, |
| 296 | const char *parent_name, unsigned long flags, |
| 297 | void __iomem *reg, u8 shift, u8 width, |
| 298 | u8 clk_divider_flags, spinlock_t *lock); |
Rajendra Nayak | 357c3f0 | 2012-06-29 19:06:32 +0530 | [diff] [blame] | 299 | struct clk *clk_register_divider_table(struct device *dev, const char *name, |
| 300 | const char *parent_name, unsigned long flags, |
| 301 | void __iomem *reg, u8 shift, u8 width, |
| 302 | u8 clk_divider_flags, const struct clk_div_table *table, |
| 303 | spinlock_t *lock); |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 304 | |
| 305 | /** |
| 306 | * struct clk_mux - multiplexer clock |
| 307 | * |
| 308 | * @hw: handle between common and hardware-specific interfaces |
| 309 | * @reg: register controlling multiplexer |
| 310 | * @shift: shift to multiplexer bit field |
| 311 | * @width: width of mutliplexer bit field |
James Hogan | 3566d40 | 2013-03-25 14:35:07 +0000 | [diff] [blame] | 312 | * @flags: hardware-specific flags |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 313 | * @lock: register lock |
| 314 | * |
| 315 | * Clock with multiple selectable parents. Implements .get_parent, .set_parent |
| 316 | * and .recalc_rate |
| 317 | * |
| 318 | * Flags: |
| 319 | * CLK_MUX_INDEX_ONE - register index starts at 1, not 0 |
Viresh Kumar | 1f73f31 | 2012-04-17 16:45:35 +0530 | [diff] [blame] | 320 | * CLK_MUX_INDEX_BIT - register index is a single bit (power of two) |
Haojian Zhuang | ba492e9 | 2013-06-08 22:47:17 +0800 | [diff] [blame] | 321 | * CLK_MUX_HIWORD_MASK - The mux settings are only in lower 16-bit of this |
| 322 | * register, and mask of mux bits are in higher 16-bit of this register. |
| 323 | * While setting the mux bits, higher 16-bit should also be updated to |
| 324 | * indicate changing mux bits. |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 325 | */ |
| 326 | struct clk_mux { |
| 327 | struct clk_hw hw; |
| 328 | void __iomem *reg; |
Peter De Schrijver | ce4f331 | 2013-03-22 14:07:53 +0200 | [diff] [blame] | 329 | u32 *table; |
| 330 | u32 mask; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 331 | u8 shift; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 332 | u8 flags; |
| 333 | spinlock_t *lock; |
| 334 | }; |
| 335 | |
| 336 | #define CLK_MUX_INDEX_ONE BIT(0) |
| 337 | #define CLK_MUX_INDEX_BIT BIT(1) |
Haojian Zhuang | ba492e9 | 2013-06-08 22:47:17 +0800 | [diff] [blame] | 338 | #define CLK_MUX_HIWORD_MASK BIT(2) |
Tomasz Figa | c57acd1 | 2013-07-23 01:49:18 +0200 | [diff] [blame] | 339 | #define CLK_MUX_READ_ONLY BIT(3) /* mux setting cannot be changed */ |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 340 | |
Shawn Guo | bffad66 | 2012-03-27 15:23:23 +0800 | [diff] [blame] | 341 | extern const struct clk_ops clk_mux_ops; |
Tomasz Figa | c57acd1 | 2013-07-23 01:49:18 +0200 | [diff] [blame] | 342 | extern const struct clk_ops clk_mux_ro_ops; |
Peter De Schrijver | ce4f331 | 2013-03-22 14:07:53 +0200 | [diff] [blame] | 343 | |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 344 | struct clk *clk_register_mux(struct device *dev, const char *name, |
Mark Brown | d305fb7 | 2012-03-21 20:01:20 +0000 | [diff] [blame] | 345 | const char **parent_names, u8 num_parents, unsigned long flags, |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 346 | void __iomem *reg, u8 shift, u8 width, |
| 347 | u8 clk_mux_flags, spinlock_t *lock); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 348 | |
Peter De Schrijver | ce4f331 | 2013-03-22 14:07:53 +0200 | [diff] [blame] | 349 | struct clk *clk_register_mux_table(struct device *dev, const char *name, |
| 350 | const char **parent_names, u8 num_parents, unsigned long flags, |
| 351 | void __iomem *reg, u8 shift, u32 mask, |
| 352 | u8 clk_mux_flags, u32 *table, spinlock_t *lock); |
| 353 | |
Gregory CLEMENT | 79b1664 | 2013-04-12 13:57:44 +0200 | [diff] [blame] | 354 | void of_fixed_factor_clk_setup(struct device_node *node); |
| 355 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 356 | /** |
Sascha Hauer | f0948f5 | 2012-05-03 15:36:14 +0530 | [diff] [blame] | 357 | * struct clk_fixed_factor - fixed multiplier and divider clock |
| 358 | * |
| 359 | * @hw: handle between common and hardware-specific interfaces |
| 360 | * @mult: multiplier |
| 361 | * @div: divider |
| 362 | * |
| 363 | * Clock with a fixed multiplier and divider. The output frequency is the |
| 364 | * parent clock rate divided by div and multiplied by mult. |
| 365 | * Implements .recalc_rate, .set_rate and .round_rate |
| 366 | */ |
| 367 | |
| 368 | struct clk_fixed_factor { |
| 369 | struct clk_hw hw; |
| 370 | unsigned int mult; |
| 371 | unsigned int div; |
| 372 | }; |
| 373 | |
| 374 | extern struct clk_ops clk_fixed_factor_ops; |
| 375 | struct clk *clk_register_fixed_factor(struct device *dev, const char *name, |
| 376 | const char *parent_name, unsigned long flags, |
| 377 | unsigned int mult, unsigned int div); |
| 378 | |
Prashant Gaikwad | ece7009 | 2013-03-20 17:30:34 +0530 | [diff] [blame] | 379 | /*** |
| 380 | * struct clk_composite - aggregate clock of mux, divider and gate clocks |
| 381 | * |
| 382 | * @hw: handle between common and hardware-specific interfaces |
Mike Turquette | d3a1c7b | 2013-04-11 11:31:36 -0700 | [diff] [blame] | 383 | * @mux_hw: handle between composite and hardware-specific mux clock |
| 384 | * @rate_hw: handle between composite and hardware-specific rate clock |
| 385 | * @gate_hw: handle between composite and hardware-specific gate clock |
Prashant Gaikwad | ece7009 | 2013-03-20 17:30:34 +0530 | [diff] [blame] | 386 | * @mux_ops: clock ops for mux |
Mike Turquette | d3a1c7b | 2013-04-11 11:31:36 -0700 | [diff] [blame] | 387 | * @rate_ops: clock ops for rate |
Prashant Gaikwad | ece7009 | 2013-03-20 17:30:34 +0530 | [diff] [blame] | 388 | * @gate_ops: clock ops for gate |
| 389 | */ |
| 390 | struct clk_composite { |
| 391 | struct clk_hw hw; |
| 392 | struct clk_ops ops; |
| 393 | |
| 394 | struct clk_hw *mux_hw; |
Mike Turquette | d3a1c7b | 2013-04-11 11:31:36 -0700 | [diff] [blame] | 395 | struct clk_hw *rate_hw; |
Prashant Gaikwad | ece7009 | 2013-03-20 17:30:34 +0530 | [diff] [blame] | 396 | struct clk_hw *gate_hw; |
| 397 | |
| 398 | const struct clk_ops *mux_ops; |
Mike Turquette | d3a1c7b | 2013-04-11 11:31:36 -0700 | [diff] [blame] | 399 | const struct clk_ops *rate_ops; |
Prashant Gaikwad | ece7009 | 2013-03-20 17:30:34 +0530 | [diff] [blame] | 400 | const struct clk_ops *gate_ops; |
| 401 | }; |
| 402 | |
| 403 | struct clk *clk_register_composite(struct device *dev, const char *name, |
| 404 | const char **parent_names, int num_parents, |
| 405 | struct clk_hw *mux_hw, const struct clk_ops *mux_ops, |
Mike Turquette | d3a1c7b | 2013-04-11 11:31:36 -0700 | [diff] [blame] | 406 | struct clk_hw *rate_hw, const struct clk_ops *rate_ops, |
Prashant Gaikwad | ece7009 | 2013-03-20 17:30:34 +0530 | [diff] [blame] | 407 | struct clk_hw *gate_hw, const struct clk_ops *gate_ops, |
| 408 | unsigned long flags); |
| 409 | |
Sascha Hauer | f0948f5 | 2012-05-03 15:36:14 +0530 | [diff] [blame] | 410 | /** |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 411 | * clk_register - allocate a new clock, register it and return an opaque cookie |
| 412 | * @dev: device that is registering this clock |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 413 | * @hw: link to hardware-specific clock data |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 414 | * |
| 415 | * clk_register is the primary interface for populating the clock tree with new |
| 416 | * clock nodes. It returns a pointer to the newly allocated struct clk which |
| 417 | * 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] | 418 | * rest of the clock API. In the event of an error clk_register will return an |
| 419 | * 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] | 420 | */ |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 421 | struct clk *clk_register(struct device *dev, struct clk_hw *hw); |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 422 | struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 423 | |
Mark Brown | 1df5c93 | 2012-04-18 09:07:12 +0100 | [diff] [blame] | 424 | void clk_unregister(struct clk *clk); |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 425 | void devm_clk_unregister(struct device *dev, struct clk *clk); |
Mark Brown | 1df5c93 | 2012-04-18 09:07:12 +0100 | [diff] [blame] | 426 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 427 | /* helper functions */ |
| 428 | const char *__clk_get_name(struct clk *clk); |
| 429 | struct clk_hw *__clk_get_hw(struct clk *clk); |
| 430 | u8 __clk_get_num_parents(struct clk *clk); |
| 431 | struct clk *__clk_get_parent(struct clk *clk); |
James Hogan | 7ef3dcc | 2013-07-29 12:24:58 +0100 | [diff] [blame] | 432 | struct clk *clk_get_parent_by_index(struct clk *clk, u8 index); |
Linus Torvalds | 9387468 | 2012-12-11 11:25:08 -0800 | [diff] [blame] | 433 | unsigned int __clk_get_enable_count(struct clk *clk); |
| 434 | unsigned int __clk_get_prepare_count(struct clk *clk); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 435 | unsigned long __clk_get_rate(struct clk *clk); |
| 436 | unsigned long __clk_get_flags(struct clk *clk); |
Ulf Hansson | 3d6ee28 | 2013-03-12 20:26:02 +0100 | [diff] [blame] | 437 | bool __clk_is_prepared(struct clk *clk); |
Stephen Boyd | 2ac6b1f | 2012-10-03 23:38:55 -0700 | [diff] [blame] | 438 | bool __clk_is_enabled(struct clk *clk); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 439 | struct clk *__clk_lookup(const char *name); |
James Hogan | e366fdd | 2013-07-29 12:25:02 +0100 | [diff] [blame] | 440 | long __clk_mux_determine_rate(struct clk_hw *hw, unsigned long rate, |
| 441 | unsigned long *best_parent_rate, |
| 442 | struct clk **best_parent_p); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 443 | |
| 444 | /* |
| 445 | * FIXME clock api without lock protection |
| 446 | */ |
| 447 | int __clk_prepare(struct clk *clk); |
| 448 | void __clk_unprepare(struct clk *clk); |
| 449 | void __clk_reparent(struct clk *clk, struct clk *new_parent); |
| 450 | unsigned long __clk_round_rate(struct clk *clk, unsigned long rate); |
| 451 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 452 | struct of_device_id; |
| 453 | |
| 454 | typedef void (*of_clk_init_cb_t)(struct device_node *); |
| 455 | |
Sebastian Hesselbarth | 0b151de | 2013-05-01 02:58:28 +0200 | [diff] [blame] | 456 | struct clk_onecell_data { |
| 457 | struct clk **clks; |
| 458 | unsigned int clk_num; |
| 459 | }; |
| 460 | |
| 461 | #define CLK_OF_DECLARE(name, compat, fn) \ |
| 462 | static const struct of_device_id __clk_of_table_##name \ |
| 463 | __used __section(__clk_of_table) \ |
| 464 | = { .compatible = compat, .data = fn }; |
| 465 | |
| 466 | #ifdef CONFIG_OF |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 467 | int of_clk_add_provider(struct device_node *np, |
| 468 | struct clk *(*clk_src_get)(struct of_phandle_args *args, |
| 469 | void *data), |
| 470 | void *data); |
| 471 | void of_clk_del_provider(struct device_node *np); |
| 472 | struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec, |
| 473 | void *data); |
Shawn Guo | 494bfec | 2012-08-22 21:36:27 +0800 | [diff] [blame] | 474 | 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] | 475 | 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] | 476 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 477 | void of_clk_init(const struct of_device_id *matches); |
| 478 | |
Sebastian Hesselbarth | 0b151de | 2013-05-01 02:58:28 +0200 | [diff] [blame] | 479 | #else /* !CONFIG_OF */ |
Prashant Gaikwad | f2f6c25 | 2013-01-04 12:30:52 +0530 | [diff] [blame] | 480 | |
Sebastian Hesselbarth | 0b151de | 2013-05-01 02:58:28 +0200 | [diff] [blame] | 481 | static inline int of_clk_add_provider(struct device_node *np, |
| 482 | struct clk *(*clk_src_get)(struct of_phandle_args *args, |
| 483 | void *data), |
| 484 | void *data) |
| 485 | { |
| 486 | return 0; |
| 487 | } |
| 488 | #define of_clk_del_provider(np) \ |
| 489 | { while (0); } |
| 490 | static inline struct clk *of_clk_src_simple_get( |
| 491 | struct of_phandle_args *clkspec, void *data) |
| 492 | { |
| 493 | return ERR_PTR(-ENOENT); |
| 494 | } |
| 495 | static inline struct clk *of_clk_src_onecell_get( |
| 496 | struct of_phandle_args *clkspec, void *data) |
| 497 | { |
| 498 | return ERR_PTR(-ENOENT); |
| 499 | } |
| 500 | static inline const char *of_clk_get_parent_name(struct device_node *np, |
| 501 | int index) |
| 502 | { |
| 503 | return NULL; |
| 504 | } |
| 505 | #define of_clk_init(matches) \ |
| 506 | { while (0); } |
| 507 | #endif /* CONFIG_OF */ |
Gerhard Sittig | aa514ce | 2013-07-22 14:14:40 +0200 | [diff] [blame] | 508 | |
| 509 | /* |
| 510 | * wrap access to peripherals in accessor routines |
| 511 | * for improved portability across platforms |
| 512 | */ |
| 513 | |
| 514 | static inline u32 clk_readl(u32 __iomem *reg) |
| 515 | { |
| 516 | return readl(reg); |
| 517 | } |
| 518 | |
| 519 | static inline void clk_writel(u32 val, u32 __iomem *reg) |
| 520 | { |
| 521 | writel(val, reg); |
| 522 | } |
| 523 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 524 | #endif /* CONFIG_COMMON_CLK */ |
| 525 | #endif /* CLK_PROVIDER_H */ |