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> |
Maxime Ripard | 355bb16 | 2014-08-30 21:18:00 +0200 | [diff] [blame] | 16 | #include <linux/of.h> |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 17 | |
| 18 | #ifdef CONFIG_COMMON_CLK |
| 19 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 20 | /* |
| 21 | * flags used across common struct clk. these flags should only affect the |
| 22 | * top-level framework. custom flags for dealing with hardware specifics |
| 23 | * belong in struct clk_foo |
| 24 | */ |
| 25 | #define CLK_SET_RATE_GATE BIT(0) /* must be gated across rate change */ |
| 26 | #define CLK_SET_PARENT_GATE BIT(1) /* must be gated across re-parent */ |
| 27 | #define CLK_SET_RATE_PARENT BIT(2) /* propagate rate change up one level */ |
| 28 | #define CLK_IGNORE_UNUSED BIT(3) /* do not gate even if unused */ |
| 29 | #define CLK_IS_ROOT BIT(4) /* root clk, has no parent */ |
Rajendra Nayak | f7d8caa | 2012-06-01 14:02:47 +0530 | [diff] [blame] | 30 | #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] | 31 | #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] | 32 | #define CLK_SET_RATE_NO_REPARENT BIT(7) /* don't re-parent on rate change */ |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 33 | #define CLK_GET_ACCURACY_NOCACHE BIT(8) /* do not use the cached clk accuracy */ |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 34 | |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 35 | struct clk_hw; |
Alex Elder | c646cbf | 2014-03-21 06:43:56 -0500 | [diff] [blame] | 36 | struct dentry; |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 37 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 38 | /** |
| 39 | * struct clk_ops - Callback operations for hardware clocks; these are to |
| 40 | * be provided by the clock implementation, and will be called by drivers |
| 41 | * through the clk_* api. |
| 42 | * |
| 43 | * @prepare: Prepare the clock for enabling. This must not return until |
Geert Uytterhoeven | 725b418 | 2014-04-22 15:11:41 +0200 | [diff] [blame] | 44 | * the clock is fully prepared, and it's safe to call clk_enable. |
| 45 | * This callback is intended to allow clock implementations to |
| 46 | * do any initialisation that may sleep. Called with |
| 47 | * prepare_lock held. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 48 | * |
| 49 | * @unprepare: Release the clock from its prepared state. This will typically |
Geert Uytterhoeven | 725b418 | 2014-04-22 15:11:41 +0200 | [diff] [blame] | 50 | * undo any work done in the @prepare callback. Called with |
| 51 | * prepare_lock held. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 52 | * |
Ulf Hansson | 3d6ee28 | 2013-03-12 20:26:02 +0100 | [diff] [blame] | 53 | * @is_prepared: Queries the hardware to determine if the clock is prepared. |
| 54 | * This function is allowed to sleep. Optional, if this op is not |
| 55 | * set then the prepare count will be used. |
| 56 | * |
Ulf Hansson | 3cc8247 | 2013-03-12 20:26:04 +0100 | [diff] [blame] | 57 | * @unprepare_unused: Unprepare the clock atomically. Only called from |
| 58 | * clk_disable_unused for prepare clocks with special needs. |
| 59 | * Called with prepare mutex held. This function may sleep. |
| 60 | * |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 61 | * @enable: Enable the clock atomically. This must not return until the |
Geert Uytterhoeven | 725b418 | 2014-04-22 15:11:41 +0200 | [diff] [blame] | 62 | * clock is generating a valid clock signal, usable by consumer |
| 63 | * devices. Called with enable_lock held. This function must not |
| 64 | * sleep. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 65 | * |
| 66 | * @disable: Disable the clock atomically. Called with enable_lock held. |
Geert Uytterhoeven | 725b418 | 2014-04-22 15:11:41 +0200 | [diff] [blame] | 67 | * This function must not sleep. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 68 | * |
Stephen Boyd | 119c712 | 2012-10-03 23:38:53 -0700 | [diff] [blame] | 69 | * @is_enabled: Queries the hardware to determine if the clock is enabled. |
Geert Uytterhoeven | 725b418 | 2014-04-22 15:11:41 +0200 | [diff] [blame] | 70 | * This function must not sleep. Optional, if this op is not |
| 71 | * set then the enable count will be used. |
Stephen Boyd | 119c712 | 2012-10-03 23:38:53 -0700 | [diff] [blame] | 72 | * |
Mike Turquette | 7c045a5 | 2012-12-04 11:00:35 -0800 | [diff] [blame] | 73 | * @disable_unused: Disable the clock atomically. Only called from |
| 74 | * clk_disable_unused for gate clocks with special needs. |
| 75 | * Called with enable_lock held. This function must not |
| 76 | * sleep. |
| 77 | * |
Stephen Boyd | 7ce3e8c | 2012-10-03 23:38:54 -0700 | [diff] [blame] | 78 | * @recalc_rate Recalculate the rate of this clock, by querying hardware. The |
Geert Uytterhoeven | 725b418 | 2014-04-22 15:11:41 +0200 | [diff] [blame] | 79 | * parent rate is an input parameter. It is up to the caller to |
| 80 | * ensure that the prepare_mutex is held across this call. |
| 81 | * Returns the calculated rate. Optional, but recommended - if |
| 82 | * this op is not set then clock rate will be initialized to 0. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 83 | * |
| 84 | * @round_rate: Given a target rate as input, returns the closest rate actually |
Geert Uytterhoeven | 54e7301 | 2014-04-22 15:11:42 +0200 | [diff] [blame] | 85 | * supported by the clock. The parent rate is an input/output |
| 86 | * parameter. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 87 | * |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 88 | * @determine_rate: Given a target rate as input, returns the closest rate |
| 89 | * actually supported by the clock, and optionally the parent clock |
| 90 | * that should be used to provide the clock rate. |
| 91 | * |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 92 | * @set_parent: Change the input source of this clock; for clocks with multiple |
Geert Uytterhoeven | 54e7301 | 2014-04-22 15:11:42 +0200 | [diff] [blame] | 93 | * possible parents specify a new parent by passing in the index |
| 94 | * as a u8 corresponding to the parent in either the .parent_names |
| 95 | * or .parents arrays. This function in affect translates an |
| 96 | * array index into the value programmed into the hardware. |
| 97 | * Returns 0 on success, -EERROR otherwise. |
| 98 | * |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 99 | * @get_parent: Queries the hardware to determine the parent of a clock. The |
Geert Uytterhoeven | 725b418 | 2014-04-22 15:11:41 +0200 | [diff] [blame] | 100 | * return value is a u8 which specifies the index corresponding to |
| 101 | * the parent clock. This index can be applied to either the |
| 102 | * .parent_names or .parents arrays. In short, this function |
| 103 | * translates the parent value read from hardware into an array |
| 104 | * index. Currently only called when the clock is initialized by |
| 105 | * __clk_init. This callback is mandatory for clocks with |
| 106 | * multiple parents. It is optional (and unnecessary) for clocks |
| 107 | * with 0 or 1 parents. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 108 | * |
Shawn Guo | 1c0035d | 2012-04-12 20:50:18 +0800 | [diff] [blame] | 109 | * @set_rate: Change the rate of this clock. The requested rate is specified |
| 110 | * by the second argument, which should typically be the return |
| 111 | * of .round_rate call. The third argument gives the parent rate |
| 112 | * which is likely helpful for most .set_rate implementation. |
| 113 | * Returns 0 on success, -EERROR otherwise. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 114 | * |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 115 | * @set_rate_and_parent: Change the rate and the parent of this clock. The |
| 116 | * requested rate is specified by the second argument, which |
| 117 | * should typically be the return of .round_rate call. The |
| 118 | * third argument gives the parent rate which is likely helpful |
| 119 | * for most .set_rate_and_parent implementation. The fourth |
| 120 | * argument gives the parent index. This callback is optional (and |
| 121 | * unnecessary) for clocks with 0 or 1 parents as well as |
| 122 | * for clocks that can tolerate switching the rate and the parent |
| 123 | * separately via calls to .set_parent and .set_rate. |
| 124 | * Returns 0 on success, -EERROR otherwise. |
| 125 | * |
Geert Uytterhoeven | 54e7301 | 2014-04-22 15:11:42 +0200 | [diff] [blame] | 126 | * @recalc_accuracy: Recalculate the accuracy of this clock. The clock accuracy |
| 127 | * is expressed in ppb (parts per billion). The parent accuracy is |
| 128 | * an input parameter. |
| 129 | * Returns the calculated accuracy. Optional - if this op is not |
| 130 | * set then clock accuracy will be initialized to parent accuracy |
| 131 | * or 0 (perfect clock) if clock has no parent. |
| 132 | * |
Maxime Ripard | 9824cf7 | 2014-07-14 13:53:27 +0200 | [diff] [blame] | 133 | * @get_phase: Queries the hardware to get the current phase of a clock. |
| 134 | * Returned values are 0-359 degrees on success, negative |
| 135 | * error codes on failure. |
| 136 | * |
Mike Turquette | e59c537 | 2014-02-18 21:21:25 -0800 | [diff] [blame] | 137 | * @set_phase: Shift the phase this clock signal in degrees specified |
| 138 | * by the second argument. Valid values for degrees are |
| 139 | * 0-359. Return 0 on success, otherwise -EERROR. |
| 140 | * |
Geert Uytterhoeven | 54e7301 | 2014-04-22 15:11:42 +0200 | [diff] [blame] | 141 | * @init: Perform platform-specific initialization magic. |
| 142 | * This is not not used by any of the basic clock types. |
| 143 | * Please consider other ways of solving initialization problems |
| 144 | * before using this callback, as its use is discouraged. |
| 145 | * |
Alex Elder | c646cbf | 2014-03-21 06:43:56 -0500 | [diff] [blame] | 146 | * @debug_init: Set up type-specific debugfs entries for this clock. This |
| 147 | * is called once, after the debugfs directory entry for this |
| 148 | * clock has been created. The dentry pointer representing that |
| 149 | * directory is provided as an argument. Called with |
| 150 | * prepare_lock held. Returns 0 on success, -EERROR otherwise. |
| 151 | * |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 152 | * |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 153 | * The clk_enable/clk_disable and clk_prepare/clk_unprepare pairs allow |
| 154 | * implementations to split any work between atomic (enable) and sleepable |
| 155 | * (prepare) contexts. If enabling a clock requires code that might sleep, |
| 156 | * 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] | 157 | * called in a sleepable context may be implemented in clk_enable. |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 158 | * |
| 159 | * Typically, drivers will call clk_prepare when a clock may be needed later |
| 160 | * (eg. when a device is opened), and clk_enable when the clock is actually |
| 161 | * required (eg. from an interrupt). Note that clk_prepare MUST have been |
| 162 | * called before clk_enable. |
| 163 | */ |
| 164 | struct clk_ops { |
| 165 | int (*prepare)(struct clk_hw *hw); |
| 166 | void (*unprepare)(struct clk_hw *hw); |
Ulf Hansson | 3d6ee28 | 2013-03-12 20:26:02 +0100 | [diff] [blame] | 167 | int (*is_prepared)(struct clk_hw *hw); |
Ulf Hansson | 3cc8247 | 2013-03-12 20:26:04 +0100 | [diff] [blame] | 168 | void (*unprepare_unused)(struct clk_hw *hw); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 169 | int (*enable)(struct clk_hw *hw); |
| 170 | void (*disable)(struct clk_hw *hw); |
| 171 | int (*is_enabled)(struct clk_hw *hw); |
Mike Turquette | 7c045a5 | 2012-12-04 11:00:35 -0800 | [diff] [blame] | 172 | void (*disable_unused)(struct clk_hw *hw); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 173 | unsigned long (*recalc_rate)(struct clk_hw *hw, |
| 174 | unsigned long parent_rate); |
Geert Uytterhoeven | 54e7301 | 2014-04-22 15:11:42 +0200 | [diff] [blame] | 175 | long (*round_rate)(struct clk_hw *hw, unsigned long rate, |
| 176 | unsigned long *parent_rate); |
James Hogan | 71472c0 | 2013-07-29 12:25:00 +0100 | [diff] [blame] | 177 | long (*determine_rate)(struct clk_hw *hw, unsigned long rate, |
| 178 | unsigned long *best_parent_rate, |
| 179 | struct clk **best_parent_clk); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 180 | int (*set_parent)(struct clk_hw *hw, u8 index); |
| 181 | u8 (*get_parent)(struct clk_hw *hw); |
Geert Uytterhoeven | 54e7301 | 2014-04-22 15:11:42 +0200 | [diff] [blame] | 182 | int (*set_rate)(struct clk_hw *hw, unsigned long rate, |
| 183 | unsigned long parent_rate); |
Stephen Boyd | 3fa2252 | 2014-01-15 10:47:22 -0800 | [diff] [blame] | 184 | int (*set_rate_and_parent)(struct clk_hw *hw, |
| 185 | unsigned long rate, |
| 186 | unsigned long parent_rate, u8 index); |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 187 | unsigned long (*recalc_accuracy)(struct clk_hw *hw, |
| 188 | unsigned long parent_accuracy); |
Maxime Ripard | 9824cf7 | 2014-07-14 13:53:27 +0200 | [diff] [blame] | 189 | int (*get_phase)(struct clk_hw *hw); |
Mike Turquette | e59c537 | 2014-02-18 21:21:25 -0800 | [diff] [blame] | 190 | int (*set_phase)(struct clk_hw *hw, int degrees); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 191 | void (*init)(struct clk_hw *hw); |
Alex Elder | c646cbf | 2014-03-21 06:43:56 -0500 | [diff] [blame] | 192 | int (*debug_init)(struct clk_hw *hw, struct dentry *dentry); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 193 | }; |
| 194 | |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 195 | /** |
| 196 | * struct clk_init_data - holds init data that's common to all clocks and is |
| 197 | * shared between the clock provider and the common clock framework. |
| 198 | * |
| 199 | * @name: clock name |
| 200 | * @ops: operations this clock supports |
| 201 | * @parent_names: array of string names for all possible parents |
| 202 | * @num_parents: number of possible parents |
| 203 | * @flags: framework-level hints and quirks |
| 204 | */ |
| 205 | struct clk_init_data { |
| 206 | const char *name; |
| 207 | const struct clk_ops *ops; |
| 208 | const char **parent_names; |
| 209 | u8 num_parents; |
| 210 | unsigned long flags; |
| 211 | }; |
| 212 | |
| 213 | /** |
| 214 | * struct clk_hw - handle for traversing from a struct clk to its corresponding |
| 215 | * hardware-specific structure. struct clk_hw should be declared within struct |
| 216 | * clk_foo and then referenced by the struct clk instance that uses struct |
| 217 | * clk_foo's clk_ops |
| 218 | * |
| 219 | * @clk: pointer to the struct clk instance that points back to this struct |
| 220 | * clk_hw instance |
| 221 | * |
| 222 | * @init: pointer to struct clk_init_data that contains the init data shared |
| 223 | * with the common clock framework. |
| 224 | */ |
| 225 | struct clk_hw { |
| 226 | struct clk *clk; |
Mark Brown | dc4cd94 | 2012-05-14 15:12:42 +0100 | [diff] [blame] | 227 | const struct clk_init_data *init; |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 228 | }; |
| 229 | |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 230 | /* |
| 231 | * DOC: Basic clock implementations common to many platforms |
| 232 | * |
| 233 | * Each basic clock hardware type is comprised of a structure describing the |
| 234 | * clock hardware, implementations of the relevant callbacks in struct clk_ops, |
| 235 | * unique flags for that hardware type, a registration function and an |
| 236 | * alternative macro for static initialization |
| 237 | */ |
| 238 | |
| 239 | /** |
| 240 | * struct clk_fixed_rate - fixed-rate clock |
| 241 | * @hw: handle between common and hardware-specific interfaces |
| 242 | * @fixed_rate: constant frequency of clock |
| 243 | */ |
| 244 | struct clk_fixed_rate { |
| 245 | struct clk_hw hw; |
| 246 | unsigned long fixed_rate; |
Boris BREZILLON | 0903ea6 | 2013-12-21 10:34:48 +0100 | [diff] [blame] | 247 | unsigned long fixed_accuracy; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 248 | u8 flags; |
| 249 | }; |
| 250 | |
Shawn Guo | bffad66 | 2012-03-27 15:23:23 +0800 | [diff] [blame] | 251 | extern const struct clk_ops clk_fixed_rate_ops; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 252 | struct clk *clk_register_fixed_rate(struct device *dev, const char *name, |
| 253 | const char *parent_name, unsigned long flags, |
| 254 | unsigned long fixed_rate); |
Boris BREZILLON | 0903ea6 | 2013-12-21 10:34:48 +0100 | [diff] [blame] | 255 | struct clk *clk_register_fixed_rate_with_accuracy(struct device *dev, |
| 256 | const char *name, const char *parent_name, unsigned long flags, |
| 257 | unsigned long fixed_rate, unsigned long fixed_accuracy); |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 258 | |
Grant Likely | 015ba40 | 2012-04-07 21:39:39 -0500 | [diff] [blame] | 259 | void of_fixed_clk_setup(struct device_node *np); |
| 260 | |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 261 | /** |
| 262 | * struct clk_gate - gating clock |
| 263 | * |
| 264 | * @hw: handle between common and hardware-specific interfaces |
| 265 | * @reg: register controlling gate |
| 266 | * @bit_idx: single bit controlling gate |
| 267 | * @flags: hardware-specific flags |
| 268 | * @lock: register lock |
| 269 | * |
| 270 | * Clock which can gate its output. Implements .enable & .disable |
| 271 | * |
| 272 | * Flags: |
Viresh Kumar | 1f73f31 | 2012-04-17 16:45:35 +0530 | [diff] [blame] | 273 | * CLK_GATE_SET_TO_DISABLE - by default this clock sets the bit at bit_idx to |
Geert Uytterhoeven | 725b418 | 2014-04-22 15:11:41 +0200 | [diff] [blame] | 274 | * enable the clock. Setting this flag does the opposite: setting the bit |
| 275 | * disable the clock and clearing it enables the clock |
Haojian Zhuang | 0457799 | 2013-06-08 22:47:19 +0800 | [diff] [blame] | 276 | * CLK_GATE_HIWORD_MASK - The gate settings are only in lower 16-bit |
Geert Uytterhoeven | 725b418 | 2014-04-22 15:11:41 +0200 | [diff] [blame] | 277 | * of this register, and mask of gate bits are in higher 16-bit of this |
| 278 | * register. While setting the gate bits, higher 16-bit should also be |
| 279 | * updated to indicate changing gate bits. |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 280 | */ |
| 281 | struct clk_gate { |
| 282 | struct clk_hw hw; |
| 283 | void __iomem *reg; |
| 284 | u8 bit_idx; |
| 285 | u8 flags; |
| 286 | spinlock_t *lock; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 287 | }; |
| 288 | |
| 289 | #define CLK_GATE_SET_TO_DISABLE BIT(0) |
Haojian Zhuang | 0457799 | 2013-06-08 22:47:19 +0800 | [diff] [blame] | 290 | #define CLK_GATE_HIWORD_MASK BIT(1) |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 291 | |
Shawn Guo | bffad66 | 2012-03-27 15:23:23 +0800 | [diff] [blame] | 292 | extern const struct clk_ops clk_gate_ops; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 293 | struct clk *clk_register_gate(struct device *dev, const char *name, |
| 294 | const char *parent_name, unsigned long flags, |
| 295 | void __iomem *reg, u8 bit_idx, |
| 296 | u8 clk_gate_flags, spinlock_t *lock); |
| 297 | |
Rajendra Nayak | 357c3f0 | 2012-06-29 19:06:32 +0530 | [diff] [blame] | 298 | struct clk_div_table { |
| 299 | unsigned int val; |
| 300 | unsigned int div; |
| 301 | }; |
| 302 | |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 303 | /** |
| 304 | * struct clk_divider - adjustable divider clock |
| 305 | * |
| 306 | * @hw: handle between common and hardware-specific interfaces |
| 307 | * @reg: register containing the divider |
| 308 | * @shift: shift to the divider bit field |
| 309 | * @width: width of the divider bit field |
Rajendra Nayak | 357c3f0 | 2012-06-29 19:06:32 +0530 | [diff] [blame] | 310 | * @table: array of value/divider pairs, last entry should have div = 0 |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 311 | * @lock: register lock |
| 312 | * |
| 313 | * Clock with an adjustable divider affecting its output frequency. Implements |
| 314 | * .recalc_rate, .set_rate and .round_rate |
| 315 | * |
| 316 | * Flags: |
| 317 | * CLK_DIVIDER_ONE_BASED - by default the divisor is the value read from the |
Geert Uytterhoeven | 725b418 | 2014-04-22 15:11:41 +0200 | [diff] [blame] | 318 | * register plus one. If CLK_DIVIDER_ONE_BASED is set then the divider is |
| 319 | * 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] | 320 | * invalid, unless CLK_DIVIDER_ALLOW_ZERO is set. |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 321 | * CLK_DIVIDER_POWER_OF_TWO - clock divisor is 2 raised to the value read from |
Geert Uytterhoeven | 725b418 | 2014-04-22 15:11:41 +0200 | [diff] [blame] | 322 | * the hardware register |
Soren Brinkmann | 056b2053 | 2013-04-02 15:36:56 -0700 | [diff] [blame] | 323 | * CLK_DIVIDER_ALLOW_ZERO - Allow zero divisors. For dividers which have |
| 324 | * CLK_DIVIDER_ONE_BASED set, it is possible to end up with a zero divisor. |
| 325 | * Some hardware implementations gracefully handle this case and allow a |
| 326 | * zero divisor by not modifying their input clock |
| 327 | * (divide by one / bypass). |
Haojian Zhuang | d57dfe7 | 2013-06-08 22:47:18 +0800 | [diff] [blame] | 328 | * CLK_DIVIDER_HIWORD_MASK - The divider settings are only in lower 16-bit |
Geert Uytterhoeven | 725b418 | 2014-04-22 15:11:41 +0200 | [diff] [blame] | 329 | * of this register, and mask of divider bits are in higher 16-bit of this |
| 330 | * register. While setting the divider bits, higher 16-bit should also be |
| 331 | * updated to indicate changing divider bits. |
Maxime COQUELIN | 774b514 | 2014-01-29 17:24:07 +0100 | [diff] [blame] | 332 | * CLK_DIVIDER_ROUND_CLOSEST - Makes the best calculated divider to be rounded |
| 333 | * to the closest integer instead of the up one. |
Heiko Stuebner | 79c6ab5 | 2014-05-23 18:32:15 +0530 | [diff] [blame] | 334 | * CLK_DIVIDER_READ_ONLY - The divider settings are preconfigured and should |
| 335 | * not be changed by the clock framework. |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 336 | */ |
| 337 | struct clk_divider { |
| 338 | struct clk_hw hw; |
| 339 | void __iomem *reg; |
| 340 | u8 shift; |
| 341 | u8 width; |
| 342 | u8 flags; |
Rajendra Nayak | 357c3f0 | 2012-06-29 19:06:32 +0530 | [diff] [blame] | 343 | const struct clk_div_table *table; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 344 | spinlock_t *lock; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 345 | }; |
| 346 | |
| 347 | #define CLK_DIVIDER_ONE_BASED BIT(0) |
| 348 | #define CLK_DIVIDER_POWER_OF_TWO BIT(1) |
Soren Brinkmann | 056b2053 | 2013-04-02 15:36:56 -0700 | [diff] [blame] | 349 | #define CLK_DIVIDER_ALLOW_ZERO BIT(2) |
Haojian Zhuang | d57dfe7 | 2013-06-08 22:47:18 +0800 | [diff] [blame] | 350 | #define CLK_DIVIDER_HIWORD_MASK BIT(3) |
Maxime COQUELIN | 774b514 | 2014-01-29 17:24:07 +0100 | [diff] [blame] | 351 | #define CLK_DIVIDER_ROUND_CLOSEST BIT(4) |
Heiko Stuebner | 79c6ab5 | 2014-05-23 18:32:15 +0530 | [diff] [blame] | 352 | #define CLK_DIVIDER_READ_ONLY BIT(5) |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 353 | |
Shawn Guo | bffad66 | 2012-03-27 15:23:23 +0800 | [diff] [blame] | 354 | extern const struct clk_ops clk_divider_ops; |
Heiko Stuebner | 79c6ab5 | 2014-05-23 18:32:15 +0530 | [diff] [blame] | 355 | extern const struct clk_ops clk_divider_ro_ops; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 356 | struct clk *clk_register_divider(struct device *dev, const char *name, |
| 357 | const char *parent_name, unsigned long flags, |
| 358 | void __iomem *reg, u8 shift, u8 width, |
| 359 | u8 clk_divider_flags, spinlock_t *lock); |
Rajendra Nayak | 357c3f0 | 2012-06-29 19:06:32 +0530 | [diff] [blame] | 360 | struct clk *clk_register_divider_table(struct device *dev, const char *name, |
| 361 | const char *parent_name, unsigned long flags, |
| 362 | void __iomem *reg, u8 shift, u8 width, |
| 363 | u8 clk_divider_flags, const struct clk_div_table *table, |
| 364 | spinlock_t *lock); |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 365 | |
| 366 | /** |
| 367 | * struct clk_mux - multiplexer clock |
| 368 | * |
| 369 | * @hw: handle between common and hardware-specific interfaces |
| 370 | * @reg: register controlling multiplexer |
| 371 | * @shift: shift to multiplexer bit field |
| 372 | * @width: width of mutliplexer bit field |
James Hogan | 3566d40 | 2013-03-25 14:35:07 +0000 | [diff] [blame] | 373 | * @flags: hardware-specific flags |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 374 | * @lock: register lock |
| 375 | * |
| 376 | * Clock with multiple selectable parents. Implements .get_parent, .set_parent |
| 377 | * and .recalc_rate |
| 378 | * |
| 379 | * Flags: |
| 380 | * CLK_MUX_INDEX_ONE - register index starts at 1, not 0 |
Viresh Kumar | 1f73f31 | 2012-04-17 16:45:35 +0530 | [diff] [blame] | 381 | * 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] | 382 | * CLK_MUX_HIWORD_MASK - The mux settings are only in lower 16-bit of this |
Geert Uytterhoeven | 725b418 | 2014-04-22 15:11:41 +0200 | [diff] [blame] | 383 | * register, and mask of mux bits are in higher 16-bit of this register. |
| 384 | * While setting the mux bits, higher 16-bit should also be updated to |
| 385 | * indicate changing mux bits. |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 386 | */ |
| 387 | struct clk_mux { |
| 388 | struct clk_hw hw; |
| 389 | void __iomem *reg; |
Peter De Schrijver | ce4f331 | 2013-03-22 14:07:53 +0200 | [diff] [blame] | 390 | u32 *table; |
| 391 | u32 mask; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 392 | u8 shift; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 393 | u8 flags; |
| 394 | spinlock_t *lock; |
| 395 | }; |
| 396 | |
| 397 | #define CLK_MUX_INDEX_ONE BIT(0) |
| 398 | #define CLK_MUX_INDEX_BIT BIT(1) |
Haojian Zhuang | ba492e9 | 2013-06-08 22:47:17 +0800 | [diff] [blame] | 399 | #define CLK_MUX_HIWORD_MASK BIT(2) |
Tomasz Figa | c57acd1 | 2013-07-23 01:49:18 +0200 | [diff] [blame] | 400 | #define CLK_MUX_READ_ONLY BIT(3) /* mux setting cannot be changed */ |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 401 | |
Shawn Guo | bffad66 | 2012-03-27 15:23:23 +0800 | [diff] [blame] | 402 | extern const struct clk_ops clk_mux_ops; |
Tomasz Figa | c57acd1 | 2013-07-23 01:49:18 +0200 | [diff] [blame] | 403 | extern const struct clk_ops clk_mux_ro_ops; |
Peter De Schrijver | ce4f331 | 2013-03-22 14:07:53 +0200 | [diff] [blame] | 404 | |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 405 | struct clk *clk_register_mux(struct device *dev, const char *name, |
Mark Brown | d305fb7 | 2012-03-21 20:01:20 +0000 | [diff] [blame] | 406 | const char **parent_names, u8 num_parents, unsigned long flags, |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 407 | void __iomem *reg, u8 shift, u8 width, |
| 408 | u8 clk_mux_flags, spinlock_t *lock); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 409 | |
Peter De Schrijver | ce4f331 | 2013-03-22 14:07:53 +0200 | [diff] [blame] | 410 | struct clk *clk_register_mux_table(struct device *dev, const char *name, |
| 411 | const char **parent_names, u8 num_parents, unsigned long flags, |
| 412 | void __iomem *reg, u8 shift, u32 mask, |
| 413 | u8 clk_mux_flags, u32 *table, spinlock_t *lock); |
| 414 | |
Gregory CLEMENT | 79b1664 | 2013-04-12 13:57:44 +0200 | [diff] [blame] | 415 | void of_fixed_factor_clk_setup(struct device_node *node); |
| 416 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 417 | /** |
Sascha Hauer | f0948f5 | 2012-05-03 15:36:14 +0530 | [diff] [blame] | 418 | * struct clk_fixed_factor - fixed multiplier and divider clock |
| 419 | * |
| 420 | * @hw: handle between common and hardware-specific interfaces |
| 421 | * @mult: multiplier |
| 422 | * @div: divider |
| 423 | * |
| 424 | * Clock with a fixed multiplier and divider. The output frequency is the |
| 425 | * parent clock rate divided by div and multiplied by mult. |
| 426 | * Implements .recalc_rate, .set_rate and .round_rate |
| 427 | */ |
| 428 | |
| 429 | struct clk_fixed_factor { |
| 430 | struct clk_hw hw; |
| 431 | unsigned int mult; |
| 432 | unsigned int div; |
| 433 | }; |
| 434 | |
| 435 | extern struct clk_ops clk_fixed_factor_ops; |
| 436 | struct clk *clk_register_fixed_factor(struct device *dev, const char *name, |
| 437 | const char *parent_name, unsigned long flags, |
| 438 | unsigned int mult, unsigned int div); |
| 439 | |
Heikki Krogerus | e2d0e90 | 2014-05-15 16:40:25 +0300 | [diff] [blame] | 440 | /** |
| 441 | * struct clk_fractional_divider - adjustable fractional divider clock |
| 442 | * |
| 443 | * @hw: handle between common and hardware-specific interfaces |
| 444 | * @reg: register containing the divider |
| 445 | * @mshift: shift to the numerator bit field |
| 446 | * @mwidth: width of the numerator bit field |
| 447 | * @nshift: shift to the denominator bit field |
| 448 | * @nwidth: width of the denominator bit field |
| 449 | * @lock: register lock |
| 450 | * |
| 451 | * Clock with adjustable fractional divider affecting its output frequency. |
| 452 | */ |
| 453 | |
| 454 | struct clk_fractional_divider { |
| 455 | struct clk_hw hw; |
| 456 | void __iomem *reg; |
| 457 | u8 mshift; |
| 458 | u32 mmask; |
| 459 | u8 nshift; |
| 460 | u32 nmask; |
| 461 | u8 flags; |
| 462 | spinlock_t *lock; |
| 463 | }; |
| 464 | |
| 465 | extern const struct clk_ops clk_fractional_divider_ops; |
| 466 | struct clk *clk_register_fractional_divider(struct device *dev, |
| 467 | const char *name, const char *parent_name, unsigned long flags, |
| 468 | void __iomem *reg, u8 mshift, u8 mwidth, u8 nshift, u8 nwidth, |
| 469 | u8 clk_divider_flags, spinlock_t *lock); |
| 470 | |
Prashant Gaikwad | ece7009 | 2013-03-20 17:30:34 +0530 | [diff] [blame] | 471 | /*** |
| 472 | * struct clk_composite - aggregate clock of mux, divider and gate clocks |
| 473 | * |
| 474 | * @hw: handle between common and hardware-specific interfaces |
Mike Turquette | d3a1c7b | 2013-04-11 11:31:36 -0700 | [diff] [blame] | 475 | * @mux_hw: handle between composite and hardware-specific mux clock |
| 476 | * @rate_hw: handle between composite and hardware-specific rate clock |
| 477 | * @gate_hw: handle between composite and hardware-specific gate clock |
Prashant Gaikwad | ece7009 | 2013-03-20 17:30:34 +0530 | [diff] [blame] | 478 | * @mux_ops: clock ops for mux |
Mike Turquette | d3a1c7b | 2013-04-11 11:31:36 -0700 | [diff] [blame] | 479 | * @rate_ops: clock ops for rate |
Prashant Gaikwad | ece7009 | 2013-03-20 17:30:34 +0530 | [diff] [blame] | 480 | * @gate_ops: clock ops for gate |
| 481 | */ |
| 482 | struct clk_composite { |
| 483 | struct clk_hw hw; |
| 484 | struct clk_ops ops; |
| 485 | |
| 486 | struct clk_hw *mux_hw; |
Mike Turquette | d3a1c7b | 2013-04-11 11:31:36 -0700 | [diff] [blame] | 487 | struct clk_hw *rate_hw; |
Prashant Gaikwad | ece7009 | 2013-03-20 17:30:34 +0530 | [diff] [blame] | 488 | struct clk_hw *gate_hw; |
| 489 | |
| 490 | const struct clk_ops *mux_ops; |
Mike Turquette | d3a1c7b | 2013-04-11 11:31:36 -0700 | [diff] [blame] | 491 | const struct clk_ops *rate_ops; |
Prashant Gaikwad | ece7009 | 2013-03-20 17:30:34 +0530 | [diff] [blame] | 492 | const struct clk_ops *gate_ops; |
| 493 | }; |
| 494 | |
| 495 | struct clk *clk_register_composite(struct device *dev, const char *name, |
| 496 | const char **parent_names, int num_parents, |
| 497 | struct clk_hw *mux_hw, const struct clk_ops *mux_ops, |
Mike Turquette | d3a1c7b | 2013-04-11 11:31:36 -0700 | [diff] [blame] | 498 | struct clk_hw *rate_hw, const struct clk_ops *rate_ops, |
Prashant Gaikwad | ece7009 | 2013-03-20 17:30:34 +0530 | [diff] [blame] | 499 | struct clk_hw *gate_hw, const struct clk_ops *gate_ops, |
| 500 | unsigned long flags); |
| 501 | |
Jyri Sarha | c873d14 | 2014-09-05 15:21:34 +0300 | [diff] [blame] | 502 | /*** |
| 503 | * struct clk_gpio_gate - gpio gated clock |
| 504 | * |
| 505 | * @hw: handle between common and hardware-specific interfaces |
| 506 | * @gpiod: gpio descriptor |
| 507 | * |
| 508 | * Clock with a gpio control for enabling and disabling the parent clock. |
| 509 | * Implements .enable, .disable and .is_enabled |
| 510 | */ |
| 511 | |
| 512 | struct clk_gpio { |
| 513 | struct clk_hw hw; |
| 514 | struct gpio_desc *gpiod; |
| 515 | }; |
| 516 | |
| 517 | extern const struct clk_ops clk_gpio_gate_ops; |
| 518 | struct clk *clk_register_gpio_gate(struct device *dev, const char *name, |
| 519 | const char *parent_name, struct gpio_desc *gpio, |
| 520 | unsigned long flags); |
| 521 | |
| 522 | void of_gpio_clk_gate_setup(struct device_node *node); |
| 523 | |
Sascha Hauer | f0948f5 | 2012-05-03 15:36:14 +0530 | [diff] [blame] | 524 | /** |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 525 | * clk_register - allocate a new clock, register it and return an opaque cookie |
| 526 | * @dev: device that is registering this clock |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 527 | * @hw: link to hardware-specific clock data |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 528 | * |
| 529 | * clk_register is the primary interface for populating the clock tree with new |
| 530 | * clock nodes. It returns a pointer to the newly allocated struct clk which |
| 531 | * 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] | 532 | * rest of the clock API. In the event of an error clk_register will return an |
| 533 | * 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] | 534 | */ |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 535 | struct clk *clk_register(struct device *dev, struct clk_hw *hw); |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 536 | struct clk *devm_clk_register(struct device *dev, struct clk_hw *hw); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 537 | |
Mark Brown | 1df5c93 | 2012-04-18 09:07:12 +0100 | [diff] [blame] | 538 | void clk_unregister(struct clk *clk); |
Stephen Boyd | 46c8773 | 2012-09-24 13:38:04 -0700 | [diff] [blame] | 539 | void devm_clk_unregister(struct device *dev, struct clk *clk); |
Mark Brown | 1df5c93 | 2012-04-18 09:07:12 +0100 | [diff] [blame] | 540 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 541 | /* helper functions */ |
| 542 | const char *__clk_get_name(struct clk *clk); |
| 543 | struct clk_hw *__clk_get_hw(struct clk *clk); |
| 544 | u8 __clk_get_num_parents(struct clk *clk); |
| 545 | struct clk *__clk_get_parent(struct clk *clk); |
James Hogan | 7ef3dcc | 2013-07-29 12:24:58 +0100 | [diff] [blame] | 546 | struct clk *clk_get_parent_by_index(struct clk *clk, u8 index); |
Linus Torvalds | 9387468 | 2012-12-11 11:25:08 -0800 | [diff] [blame] | 547 | unsigned int __clk_get_enable_count(struct clk *clk); |
| 548 | unsigned int __clk_get_prepare_count(struct clk *clk); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 549 | unsigned long __clk_get_rate(struct clk *clk); |
Boris BREZILLON | 5279fc4 | 2013-12-21 10:34:47 +0100 | [diff] [blame] | 550 | unsigned long __clk_get_accuracy(struct clk *clk); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 551 | unsigned long __clk_get_flags(struct clk *clk); |
Ulf Hansson | 3d6ee28 | 2013-03-12 20:26:02 +0100 | [diff] [blame] | 552 | bool __clk_is_prepared(struct clk *clk); |
Stephen Boyd | 2ac6b1f | 2012-10-03 23:38:55 -0700 | [diff] [blame] | 553 | bool __clk_is_enabled(struct clk *clk); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 554 | struct clk *__clk_lookup(const char *name); |
James Hogan | e366fdd | 2013-07-29 12:25:02 +0100 | [diff] [blame] | 555 | long __clk_mux_determine_rate(struct clk_hw *hw, unsigned long rate, |
| 556 | unsigned long *best_parent_rate, |
| 557 | struct clk **best_parent_p); |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 558 | |
| 559 | /* |
| 560 | * FIXME clock api without lock protection |
| 561 | */ |
| 562 | int __clk_prepare(struct clk *clk); |
| 563 | void __clk_unprepare(struct clk *clk); |
| 564 | void __clk_reparent(struct clk *clk, struct clk *new_parent); |
| 565 | unsigned long __clk_round_rate(struct clk *clk, unsigned long rate); |
| 566 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 567 | struct of_device_id; |
| 568 | |
| 569 | typedef void (*of_clk_init_cb_t)(struct device_node *); |
| 570 | |
Sebastian Hesselbarth | 0b151de | 2013-05-01 02:58:28 +0200 | [diff] [blame] | 571 | struct clk_onecell_data { |
| 572 | struct clk **clks; |
| 573 | unsigned int clk_num; |
| 574 | }; |
| 575 | |
Tero Kristo | 819b486 | 2013-10-22 11:39:36 +0300 | [diff] [blame] | 576 | extern struct of_device_id __clk_of_table; |
| 577 | |
Rob Herring | 54196cc | 2014-05-08 16:09:24 -0500 | [diff] [blame] | 578 | #define CLK_OF_DECLARE(name, compat, fn) OF_DECLARE_1(clk, name, compat, fn) |
Sebastian Hesselbarth | 0b151de | 2013-05-01 02:58:28 +0200 | [diff] [blame] | 579 | |
| 580 | #ifdef CONFIG_OF |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 581 | int of_clk_add_provider(struct device_node *np, |
| 582 | struct clk *(*clk_src_get)(struct of_phandle_args *args, |
| 583 | void *data), |
| 584 | void *data); |
| 585 | void of_clk_del_provider(struct device_node *np); |
| 586 | struct clk *of_clk_src_simple_get(struct of_phandle_args *clkspec, |
| 587 | void *data); |
Shawn Guo | 494bfec | 2012-08-22 21:36:27 +0800 | [diff] [blame] | 588 | struct clk *of_clk_src_onecell_get(struct of_phandle_args *clkspec, void *data); |
Mike Turquette | f610274 | 2013-10-07 23:12:13 -0700 | [diff] [blame] | 589 | int of_clk_get_parent_count(struct device_node *np); |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 590 | 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] | 591 | |
Grant Likely | 766e6a4 | 2012-04-09 14:50:06 -0500 | [diff] [blame] | 592 | void of_clk_init(const struct of_device_id *matches); |
| 593 | |
Sebastian Hesselbarth | 0b151de | 2013-05-01 02:58:28 +0200 | [diff] [blame] | 594 | #else /* !CONFIG_OF */ |
Prashant Gaikwad | f2f6c25 | 2013-01-04 12:30:52 +0530 | [diff] [blame] | 595 | |
Sebastian Hesselbarth | 0b151de | 2013-05-01 02:58:28 +0200 | [diff] [blame] | 596 | static inline int of_clk_add_provider(struct device_node *np, |
| 597 | struct clk *(*clk_src_get)(struct of_phandle_args *args, |
| 598 | void *data), |
| 599 | void *data) |
| 600 | { |
| 601 | return 0; |
| 602 | } |
| 603 | #define of_clk_del_provider(np) \ |
| 604 | { while (0); } |
| 605 | static inline struct clk *of_clk_src_simple_get( |
| 606 | struct of_phandle_args *clkspec, void *data) |
| 607 | { |
| 608 | return ERR_PTR(-ENOENT); |
| 609 | } |
| 610 | static inline struct clk *of_clk_src_onecell_get( |
| 611 | struct of_phandle_args *clkspec, void *data) |
| 612 | { |
| 613 | return ERR_PTR(-ENOENT); |
| 614 | } |
| 615 | static inline const char *of_clk_get_parent_name(struct device_node *np, |
| 616 | int index) |
| 617 | { |
| 618 | return NULL; |
| 619 | } |
| 620 | #define of_clk_init(matches) \ |
| 621 | { while (0); } |
| 622 | #endif /* CONFIG_OF */ |
Gerhard Sittig | aa514ce | 2013-07-22 14:14:40 +0200 | [diff] [blame] | 623 | |
| 624 | /* |
| 625 | * wrap access to peripherals in accessor routines |
| 626 | * for improved portability across platforms |
| 627 | */ |
| 628 | |
Gerhard Sittig | 6d8cdb6 | 2013-11-30 23:51:24 +0100 | [diff] [blame] | 629 | #if IS_ENABLED(CONFIG_PPC) |
| 630 | |
| 631 | static inline u32 clk_readl(u32 __iomem *reg) |
| 632 | { |
| 633 | return ioread32be(reg); |
| 634 | } |
| 635 | |
| 636 | static inline void clk_writel(u32 val, u32 __iomem *reg) |
| 637 | { |
| 638 | iowrite32be(val, reg); |
| 639 | } |
| 640 | |
| 641 | #else /* platform dependent I/O accessors */ |
| 642 | |
Gerhard Sittig | aa514ce | 2013-07-22 14:14:40 +0200 | [diff] [blame] | 643 | static inline u32 clk_readl(u32 __iomem *reg) |
| 644 | { |
| 645 | return readl(reg); |
| 646 | } |
| 647 | |
| 648 | static inline void clk_writel(u32 val, u32 __iomem *reg) |
| 649 | { |
| 650 | writel(val, reg); |
| 651 | } |
| 652 | |
Gerhard Sittig | 6d8cdb6 | 2013-11-30 23:51:24 +0100 | [diff] [blame] | 653 | #endif /* platform dependent I/O accessors */ |
| 654 | |
Peter De Schrijver | fb2b3c9 | 2014-06-26 18:00:53 +0300 | [diff] [blame] | 655 | #ifdef CONFIG_DEBUG_FS |
| 656 | struct dentry *clk_debugfs_add_file(struct clk *clk, char *name, umode_t mode, |
| 657 | void *data, const struct file_operations *fops); |
| 658 | #endif |
| 659 | |
Mike Turquette | b2476490 | 2012-03-15 23:11:19 -0700 | [diff] [blame] | 660 | #endif /* CONFIG_COMMON_CLK */ |
| 661 | #endif /* CLK_PROVIDER_H */ |