blob: 8e2e4757adcb02c9cd07a0b868a45e0bb3baa3eb [file] [log] [blame]
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +02001/*
2 * drivers/base/power/clock_ops.c - Generic clock manipulation PM callbacks
3 *
4 * Copyright (c) 2011 Rafael J. Wysocki <rjw@sisk.pl>, Renesas Electronics Corp.
5 *
6 * This file is released under the GPLv2.
7 */
8
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +02009#include <linux/kernel.h>
Paul Gortmaker51990e82012-01-22 11:23:42 -050010#include <linux/device.h>
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020011#include <linux/io.h>
12#include <linux/pm.h>
Rafael J. Wysockib5e8d262011-08-25 15:34:19 +020013#include <linux/pm_clock.h>
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020014#include <linux/clk.h>
Geert Uytterhoeven245bd6f2014-11-06 15:51:00 +020015#include <linux/clkdev.h>
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020016#include <linux/slab.h>
17#include <linux/err.h>
Tomeu Vizoso989561d2016-01-07 16:46:13 +010018#include <linux/pm_domain.h>
Rajendra Nayak75f50402015-04-23 14:03:09 +053019#include <linux/pm_runtime.h>
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020020
Geert Uytterhoevena6175612015-10-19 10:16:07 +020021#ifdef CONFIG_PM_CLK
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020022
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020023enum pce_status {
24 PCE_STATUS_NONE = 0,
25 PCE_STATUS_ACQUIRED,
26 PCE_STATUS_ENABLED,
27 PCE_STATUS_ERROR,
28};
29
30struct pm_clock_entry {
31 struct list_head node;
32 char *con_id;
33 struct clk *clk;
34 enum pce_status status;
35};
36
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020037/**
Ben Dooks5cda3fb2014-01-14 12:23:42 +000038 * pm_clk_enable - Enable a clock, reporting any errors
39 * @dev: The device for the given clock
Strashko, Grygorii471f7702014-11-06 15:51:01 +020040 * @ce: PM clock entry corresponding to the clock.
Ben Dooks5cda3fb2014-01-14 12:23:42 +000041 */
Colin Ian Kingf4745a92015-06-29 22:13:38 +010042static inline void __pm_clk_enable(struct device *dev, struct pm_clock_entry *ce)
Ben Dooks5cda3fb2014-01-14 12:23:42 +000043{
Strashko, Grygorii471f7702014-11-06 15:51:01 +020044 int ret;
45
46 if (ce->status < PCE_STATUS_ERROR) {
47 ret = clk_enable(ce->clk);
48 if (!ret)
49 ce->status = PCE_STATUS_ENABLED;
50 else
51 dev_err(dev, "%s: failed to enable clk %p, error %d\n",
52 __func__, ce->clk, ret);
53 }
Ben Dooks5cda3fb2014-01-14 12:23:42 +000054}
55
56/**
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +020057 * pm_clk_acquire - Acquire a device clock.
58 * @dev: Device whose clock is to be acquired.
59 * @ce: PM clock entry corresponding to the clock.
60 */
61static void pm_clk_acquire(struct device *dev, struct pm_clock_entry *ce)
62{
Geert Uytterhoeven245bd6f2014-11-06 15:51:00 +020063 if (!ce->clk)
64 ce->clk = clk_get(dev, ce->con_id);
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +020065 if (IS_ERR(ce->clk)) {
66 ce->status = PCE_STATUS_ERROR;
67 } else {
Ben Dooks8a6720e2014-01-14 12:23:40 +000068 clk_prepare(ce->clk);
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +020069 ce->status = PCE_STATUS_ACQUIRED;
Geert Uytterhoevenf17f4ad2015-05-29 18:35:31 +020070 dev_dbg(dev, "Clock %pC con_id %s managed by runtime PM.\n",
71 ce->clk, ce->con_id);
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +020072 }
73}
74
Geert Uytterhoeven245bd6f2014-11-06 15:51:00 +020075static int __pm_clk_add(struct device *dev, const char *con_id,
76 struct clk *clk)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020077{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +020078 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020079 struct pm_clock_entry *ce;
80
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +020081 if (!psd)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020082 return -EINVAL;
83
84 ce = kzalloc(sizeof(*ce), GFP_KERNEL);
Quentin Lambert59d84ca2015-02-09 10:45:32 +010085 if (!ce)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020086 return -ENOMEM;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020087
88 if (con_id) {
89 ce->con_id = kstrdup(con_id, GFP_KERNEL);
90 if (!ce->con_id) {
91 dev_err(dev,
92 "Not enough memory for clock connection ID.\n");
93 kfree(ce);
94 return -ENOMEM;
95 }
Geert Uytterhoeven245bd6f2014-11-06 15:51:00 +020096 } else {
Stephen Boyd772b0502015-10-01 21:05:09 +020097 if (IS_ERR(clk)) {
Geert Uytterhoeven245bd6f2014-11-06 15:51:00 +020098 kfree(ce);
99 return -ENOENT;
100 }
101 ce->clk = clk;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200102 }
103
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200104 pm_clk_acquire(dev, ce);
105
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200106 spin_lock_irq(&psd->lock);
107 list_add_tail(&ce->node, &psd->clock_list);
108 spin_unlock_irq(&psd->lock);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200109 return 0;
110}
111
112/**
Geert Uytterhoeven245bd6f2014-11-06 15:51:00 +0200113 * pm_clk_add - Start using a device clock for power management.
114 * @dev: Device whose clock is going to be used for power management.
115 * @con_id: Connection ID of the clock.
116 *
117 * Add the clock represented by @con_id to the list of clocks used for
118 * the power management of @dev.
119 */
120int pm_clk_add(struct device *dev, const char *con_id)
121{
122 return __pm_clk_add(dev, con_id, NULL);
123}
Paul Gortmaker29b968b2016-06-05 13:58:15 -0400124EXPORT_SYMBOL_GPL(pm_clk_add);
Geert Uytterhoeven245bd6f2014-11-06 15:51:00 +0200125
126/**
127 * pm_clk_add_clk - Start using a device clock for power management.
128 * @dev: Device whose clock is going to be used for power management.
129 * @clk: Clock pointer
130 *
131 * Add the clock to the list of clocks used for the power management of @dev.
Stephen Boyd772b0502015-10-01 21:05:09 +0200132 * The power-management code will take control of the clock reference, so
133 * callers should not call clk_put() on @clk after this function sucessfully
134 * returned.
Geert Uytterhoeven245bd6f2014-11-06 15:51:00 +0200135 */
136int pm_clk_add_clk(struct device *dev, struct clk *clk)
137{
138 return __pm_clk_add(dev, NULL, clk);
139}
Paul Gortmaker29b968b2016-06-05 13:58:15 -0400140EXPORT_SYMBOL_GPL(pm_clk_add_clk);
Geert Uytterhoeven245bd6f2014-11-06 15:51:00 +0200141
Jon Hunter02113ba2016-03-15 11:33:40 +0000142
143/**
Jon Hunter498b5fd2016-06-21 11:33:25 +0100144 * of_pm_clk_add_clk - Start using a device clock for power management.
145 * @dev: Device whose clock is going to be used for power management.
146 * @name: Name of clock that is going to be used for power management.
147 *
148 * Add the clock described in the 'clocks' device-tree node that matches
149 * with the 'name' provided, to the list of clocks used for the power
150 * management of @dev. On success, returns 0. Returns a negative error
151 * code if the clock is not found or cannot be added.
152 */
153int of_pm_clk_add_clk(struct device *dev, const char *name)
154{
155 struct clk *clk;
156 int ret;
157
158 if (!dev || !dev->of_node || !name)
159 return -EINVAL;
160
161 clk = of_clk_get_by_name(dev->of_node, name);
162 if (IS_ERR(clk))
163 return PTR_ERR(clk);
164
165 ret = pm_clk_add_clk(dev, clk);
166 if (ret) {
167 clk_put(clk);
168 return ret;
169 }
170
171 return 0;
172}
173EXPORT_SYMBOL_GPL(of_pm_clk_add_clk);
174
175/**
Jon Hunter02113ba2016-03-15 11:33:40 +0000176 * of_pm_clk_add_clks - Start using device clock(s) for power management.
177 * @dev: Device whose clock(s) is going to be used for power management.
178 *
179 * Add a series of clocks described in the 'clocks' device-tree node for
180 * a device to the list of clocks used for the power management of @dev.
181 * On success, returns the number of clocks added. Returns a negative
182 * error code if there are no clocks in the device node for the device
183 * or if adding a clock fails.
184 */
185int of_pm_clk_add_clks(struct device *dev)
186{
187 struct clk **clks;
188 unsigned int i, count;
189 int ret;
190
191 if (!dev || !dev->of_node)
192 return -EINVAL;
193
194 count = of_count_phandle_with_args(dev->of_node, "clocks",
195 "#clock-cells");
Colin Ian King0b269852016-04-16 13:50:03 +0100196 if (count <= 0)
Jon Hunter02113ba2016-03-15 11:33:40 +0000197 return -ENODEV;
198
199 clks = kcalloc(count, sizeof(*clks), GFP_KERNEL);
200 if (!clks)
201 return -ENOMEM;
202
203 for (i = 0; i < count; i++) {
204 clks[i] = of_clk_get(dev->of_node, i);
205 if (IS_ERR(clks[i])) {
206 ret = PTR_ERR(clks[i]);
207 goto error;
208 }
209
210 ret = pm_clk_add_clk(dev, clks[i]);
211 if (ret) {
212 clk_put(clks[i]);
213 goto error;
214 }
215 }
216
217 kfree(clks);
218
219 return i;
220
221error:
222 while (i--)
223 pm_clk_remove_clk(dev, clks[i]);
224
225 kfree(clks);
226
227 return ret;
228}
Paul Gortmaker29b968b2016-06-05 13:58:15 -0400229EXPORT_SYMBOL_GPL(of_pm_clk_add_clks);
Jon Hunter02113ba2016-03-15 11:33:40 +0000230
Geert Uytterhoeven245bd6f2014-11-06 15:51:00 +0200231/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200232 * __pm_clk_remove - Destroy PM clock entry.
233 * @ce: PM clock entry to destroy.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200234 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200235static void __pm_clk_remove(struct pm_clock_entry *ce)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200236{
237 if (!ce)
238 return;
239
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200240 if (ce->status < PCE_STATUS_ERROR) {
241 if (ce->status == PCE_STATUS_ENABLED)
Ben Dooks8a6720e2014-01-14 12:23:40 +0000242 clk_disable(ce->clk);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200243
Ben Dooks8a6720e2014-01-14 12:23:40 +0000244 if (ce->status >= PCE_STATUS_ACQUIRED) {
245 clk_unprepare(ce->clk);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200246 clk_put(ce->clk);
Ben Dooks8a6720e2014-01-14 12:23:40 +0000247 }
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200248 }
249
Jonghwan Choi0ab1e792011-10-22 00:22:54 +0200250 kfree(ce->con_id);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200251 kfree(ce);
252}
253
254/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200255 * pm_clk_remove - Stop using a device clock for power management.
256 * @dev: Device whose clock should not be used for PM any more.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200257 * @con_id: Connection ID of the clock.
258 *
259 * Remove the clock represented by @con_id from the list of clocks used for
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200260 * the power management of @dev.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200261 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200262void pm_clk_remove(struct device *dev, const char *con_id)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200263{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200264 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200265 struct pm_clock_entry *ce;
266
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200267 if (!psd)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200268 return;
269
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200270 spin_lock_irq(&psd->lock);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200271
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200272 list_for_each_entry(ce, &psd->clock_list, node) {
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200273 if (!con_id && !ce->con_id)
274 goto remove;
275 else if (!con_id || !ce->con_id)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200276 continue;
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200277 else if (!strcmp(con_id, ce->con_id))
278 goto remove;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200279 }
280
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200281 spin_unlock_irq(&psd->lock);
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200282 return;
283
284 remove:
285 list_del(&ce->node);
Rafael J. Wysocki0d41da22011-09-26 20:12:45 +0200286 spin_unlock_irq(&psd->lock);
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200287
288 __pm_clk_remove(ce);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200289}
Paul Gortmaker29b968b2016-06-05 13:58:15 -0400290EXPORT_SYMBOL_GPL(pm_clk_remove);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200291
292/**
Jon Hunter02113ba2016-03-15 11:33:40 +0000293 * pm_clk_remove_clk - Stop using a device clock for power management.
294 * @dev: Device whose clock should not be used for PM any more.
295 * @clk: Clock pointer
296 *
297 * Remove the clock pointed to by @clk from the list of clocks used for
298 * the power management of @dev.
299 */
300void pm_clk_remove_clk(struct device *dev, struct clk *clk)
301{
302 struct pm_subsys_data *psd = dev_to_psd(dev);
303 struct pm_clock_entry *ce;
304
305 if (!psd || !clk)
306 return;
307
308 spin_lock_irq(&psd->lock);
309
310 list_for_each_entry(ce, &psd->clock_list, node) {
311 if (clk == ce->clk)
312 goto remove;
313 }
314
315 spin_unlock_irq(&psd->lock);
316 return;
317
318 remove:
319 list_del(&ce->node);
320 spin_unlock_irq(&psd->lock);
321
322 __pm_clk_remove(ce);
323}
Paul Gortmaker29b968b2016-06-05 13:58:15 -0400324EXPORT_SYMBOL_GPL(pm_clk_remove_clk);
Jon Hunter02113ba2016-03-15 11:33:40 +0000325
326/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200327 * pm_clk_init - Initialize a device's list of power management clocks.
328 * @dev: Device to initialize the list of PM clocks for.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200329 *
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200330 * Initialize the lock and clock_list members of the device's pm_subsys_data
331 * object.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200332 */
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200333void pm_clk_init(struct device *dev)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200334{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200335 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysockief27bed2011-08-25 15:34:01 +0200336 if (psd)
337 INIT_LIST_HEAD(&psd->clock_list);
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200338}
Paul Gortmaker29b968b2016-06-05 13:58:15 -0400339EXPORT_SYMBOL_GPL(pm_clk_init);
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200340
341/**
342 * pm_clk_create - Create and initialize a device's list of PM clocks.
343 * @dev: Device to create and initialize the list of PM clocks for.
344 *
345 * Allocate a struct pm_subsys_data object, initialize its lock and clock_list
346 * members and make the @dev's power.subsys_data field point to it.
347 */
348int pm_clk_create(struct device *dev)
349{
Rafael J. Wysocki77254952012-08-07 13:50:14 +0200350 return dev_pm_get_subsys_data(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200351}
Paul Gortmaker29b968b2016-06-05 13:58:15 -0400352EXPORT_SYMBOL_GPL(pm_clk_create);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200353
354/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200355 * pm_clk_destroy - Destroy a device's list of power management clocks.
356 * @dev: Device to destroy the list of PM clocks for.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200357 *
358 * Clear the @dev's power.subsys_data field, remove the list of clock entries
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200359 * from the struct pm_subsys_data object pointed to by it before and free
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200360 * that object.
361 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200362void pm_clk_destroy(struct device *dev)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200363{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200364 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200365 struct pm_clock_entry *ce, *c;
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200366 struct list_head list;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200367
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200368 if (!psd)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200369 return;
370
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200371 INIT_LIST_HEAD(&list);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200372
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200373 spin_lock_irq(&psd->lock);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200374
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200375 list_for_each_entry_safe_reverse(ce, c, &psd->clock_list, node)
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200376 list_move(&ce->node, &list);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200377
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200378 spin_unlock_irq(&psd->lock);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200379
Rafael J. Wysockief27bed2011-08-25 15:34:01 +0200380 dev_pm_put_subsys_data(dev);
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200381
382 list_for_each_entry_safe_reverse(ce, c, &list, node) {
383 list_del(&ce->node);
384 __pm_clk_remove(ce);
385 }
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200386}
Paul Gortmaker29b968b2016-06-05 13:58:15 -0400387EXPORT_SYMBOL_GPL(pm_clk_destroy);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200388
389/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200390 * pm_clk_suspend - Disable clocks in a device's PM clock list.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200391 * @dev: Device to disable the clocks for.
392 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200393int pm_clk_suspend(struct device *dev)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200394{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200395 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200396 struct pm_clock_entry *ce;
Rafael J. Wysockib7ab83e2011-08-24 21:40:56 +0200397 unsigned long flags;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200398
399 dev_dbg(dev, "%s()\n", __func__);
400
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200401 if (!psd)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200402 return 0;
403
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200404 spin_lock_irqsave(&psd->lock, flags);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200405
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200406 list_for_each_entry_reverse(ce, &psd->clock_list, node) {
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200407 if (ce->status < PCE_STATUS_ERROR) {
Magnus Damm24050952011-11-10 00:44:10 +0100408 if (ce->status == PCE_STATUS_ENABLED)
409 clk_disable(ce->clk);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200410 ce->status = PCE_STATUS_ACQUIRED;
411 }
412 }
413
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200414 spin_unlock_irqrestore(&psd->lock, flags);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200415
416 return 0;
417}
Paul Gortmaker29b968b2016-06-05 13:58:15 -0400418EXPORT_SYMBOL_GPL(pm_clk_suspend);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200419
420/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200421 * pm_clk_resume - Enable clocks in a device's PM clock list.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200422 * @dev: Device to enable the clocks for.
423 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200424int pm_clk_resume(struct device *dev)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200425{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200426 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200427 struct pm_clock_entry *ce;
Rafael J. Wysockib7ab83e2011-08-24 21:40:56 +0200428 unsigned long flags;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200429
430 dev_dbg(dev, "%s()\n", __func__);
431
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200432 if (!psd)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200433 return 0;
434
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200435 spin_lock_irqsave(&psd->lock, flags);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200436
Strashko, Grygorii471f7702014-11-06 15:51:01 +0200437 list_for_each_entry(ce, &psd->clock_list, node)
438 __pm_clk_enable(dev, ce);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200439
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200440 spin_unlock_irqrestore(&psd->lock, flags);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200441
442 return 0;
443}
Paul Gortmaker29b968b2016-06-05 13:58:15 -0400444EXPORT_SYMBOL_GPL(pm_clk_resume);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200445
446/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200447 * pm_clk_notify - Notify routine for device addition and removal.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200448 * @nb: Notifier block object this function is a member of.
449 * @action: Operation being carried out by the caller.
450 * @data: Device the routine is being run for.
451 *
452 * For this function to work, @nb must be a member of an object of type
453 * struct pm_clk_notifier_block containing all of the requisite data.
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200454 * Specifically, the pm_domain member of that object is copied to the device's
455 * pm_domain field and its con_ids member is used to populate the device's list
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200456 * of PM clocks, depending on @action.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200457 *
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200458 * If the device's pm_domain field is already populated with a value different
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200459 * from the one stored in the struct pm_clk_notifier_block object, the function
460 * does nothing.
461 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200462static int pm_clk_notify(struct notifier_block *nb,
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200463 unsigned long action, void *data)
464{
465 struct pm_clk_notifier_block *clknb;
466 struct device *dev = data;
Rafael J. Wysocki3b3eca32011-06-07 23:34:58 +0200467 char **con_id;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200468 int error;
469
470 dev_dbg(dev, "%s() %ld\n", __func__, action);
471
472 clknb = container_of(nb, struct pm_clk_notifier_block, nb);
473
474 switch (action) {
475 case BUS_NOTIFY_ADD_DEVICE:
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200476 if (dev->pm_domain)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200477 break;
478
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200479 error = pm_clk_create(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200480 if (error)
481 break;
482
Tomeu Vizoso989561d2016-01-07 16:46:13 +0100483 dev_pm_domain_set(dev, clknb->pm_domain);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200484 if (clknb->con_ids[0]) {
Rafael J. Wysocki3b3eca32011-06-07 23:34:58 +0200485 for (con_id = clknb->con_ids; *con_id; con_id++)
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200486 pm_clk_add(dev, *con_id);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200487 } else {
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200488 pm_clk_add(dev, NULL);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200489 }
490
491 break;
492 case BUS_NOTIFY_DEL_DEVICE:
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200493 if (dev->pm_domain != clknb->pm_domain)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200494 break;
495
Tomeu Vizoso989561d2016-01-07 16:46:13 +0100496 dev_pm_domain_set(dev, NULL);
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200497 pm_clk_destroy(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200498 break;
499 }
500
501 return 0;
502}
503
Rajendra Nayak75f50402015-04-23 14:03:09 +0530504int pm_clk_runtime_suspend(struct device *dev)
505{
506 int ret;
507
508 dev_dbg(dev, "%s\n", __func__);
509
510 ret = pm_generic_runtime_suspend(dev);
511 if (ret) {
512 dev_err(dev, "failed to suspend device\n");
513 return ret;
514 }
515
516 ret = pm_clk_suspend(dev);
517 if (ret) {
518 dev_err(dev, "failed to suspend clock\n");
519 pm_generic_runtime_resume(dev);
520 return ret;
521 }
522
523 return 0;
524}
Paul Gortmaker29b968b2016-06-05 13:58:15 -0400525EXPORT_SYMBOL_GPL(pm_clk_runtime_suspend);
Rajendra Nayak75f50402015-04-23 14:03:09 +0530526
527int pm_clk_runtime_resume(struct device *dev)
528{
529 int ret;
530
531 dev_dbg(dev, "%s\n", __func__);
532
533 ret = pm_clk_resume(dev);
534 if (ret) {
535 dev_err(dev, "failed to resume clock\n");
536 return ret;
537 }
538
539 return pm_generic_runtime_resume(dev);
540}
Paul Gortmaker29b968b2016-06-05 13:58:15 -0400541EXPORT_SYMBOL_GPL(pm_clk_runtime_resume);
Rajendra Nayak75f50402015-04-23 14:03:09 +0530542
Geert Uytterhoevena6175612015-10-19 10:16:07 +0200543#else /* !CONFIG_PM_CLK */
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200544
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200545/**
546 * enable_clock - Enable a device clock.
547 * @dev: Device whose clock is to be enabled.
548 * @con_id: Connection ID of the clock.
549 */
550static void enable_clock(struct device *dev, const char *con_id)
551{
552 struct clk *clk;
553
554 clk = clk_get(dev, con_id);
555 if (!IS_ERR(clk)) {
Murali Karicheric122f272012-10-23 01:18:40 +0200556 clk_prepare_enable(clk);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200557 clk_put(clk);
558 dev_info(dev, "Runtime PM disabled, clock forced on.\n");
559 }
560}
561
562/**
563 * disable_clock - Disable a device clock.
564 * @dev: Device whose clock is to be disabled.
565 * @con_id: Connection ID of the clock.
566 */
567static void disable_clock(struct device *dev, const char *con_id)
568{
569 struct clk *clk;
570
571 clk = clk_get(dev, con_id);
572 if (!IS_ERR(clk)) {
Murali Karicheric122f272012-10-23 01:18:40 +0200573 clk_disable_unprepare(clk);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200574 clk_put(clk);
575 dev_info(dev, "Runtime PM disabled, clock forced off.\n");
576 }
577}
578
579/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200580 * pm_clk_notify - Notify routine for device addition and removal.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200581 * @nb: Notifier block object this function is a member of.
582 * @action: Operation being carried out by the caller.
583 * @data: Device the routine is being run for.
584 *
585 * For this function to work, @nb must be a member of an object of type
586 * struct pm_clk_notifier_block containing all of the requisite data.
587 * Specifically, the con_ids member of that object is used to enable or disable
588 * the device's clocks, depending on @action.
589 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200590static int pm_clk_notify(struct notifier_block *nb,
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200591 unsigned long action, void *data)
592{
593 struct pm_clk_notifier_block *clknb;
594 struct device *dev = data;
Rafael J. Wysocki3b3eca32011-06-07 23:34:58 +0200595 char **con_id;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200596
597 dev_dbg(dev, "%s() %ld\n", __func__, action);
598
599 clknb = container_of(nb, struct pm_clk_notifier_block, nb);
600
601 switch (action) {
Rafael J. Wysocki4d1518f2011-06-21 23:24:33 +0200602 case BUS_NOTIFY_BIND_DRIVER:
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200603 if (clknb->con_ids[0]) {
Rafael J. Wysocki3b3eca32011-06-07 23:34:58 +0200604 for (con_id = clknb->con_ids; *con_id; con_id++)
605 enable_clock(dev, *con_id);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200606 } else {
607 enable_clock(dev, NULL);
608 }
609 break;
Andy Shevchenkod35818a2016-01-07 12:49:31 +0200610 case BUS_NOTIFY_DRIVER_NOT_BOUND:
Rafael J. Wysocki4d1518f2011-06-21 23:24:33 +0200611 case BUS_NOTIFY_UNBOUND_DRIVER:
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200612 if (clknb->con_ids[0]) {
Rafael J. Wysocki3b3eca32011-06-07 23:34:58 +0200613 for (con_id = clknb->con_ids; *con_id; con_id++)
614 disable_clock(dev, *con_id);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200615 } else {
616 disable_clock(dev, NULL);
617 }
618 break;
619 }
620
621 return 0;
622}
623
Geert Uytterhoevena6175612015-10-19 10:16:07 +0200624#endif /* !CONFIG_PM_CLK */
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200625
626/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200627 * pm_clk_add_notifier - Add bus type notifier for power management clocks.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200628 * @bus: Bus type to add the notifier to.
629 * @clknb: Notifier to be added to the given bus type.
630 *
631 * The nb member of @clknb is not expected to be initialized and its
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200632 * notifier_call member will be replaced with pm_clk_notify(). However,
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200633 * the remaining members of @clknb should be populated prior to calling this
634 * routine.
635 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200636void pm_clk_add_notifier(struct bus_type *bus,
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200637 struct pm_clk_notifier_block *clknb)
638{
639 if (!bus || !clknb)
640 return;
641
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200642 clknb->nb.notifier_call = pm_clk_notify;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200643 bus_register_notifier(bus, &clknb->nb);
644}
Paul Gortmaker29b968b2016-06-05 13:58:15 -0400645EXPORT_SYMBOL_GPL(pm_clk_add_notifier);