blob: 652b5a367c1f37fd91ee68f9da06c0a50e956224 [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>
Rajendra Nayak75f50402015-04-23 14:03:09 +053018#include <linux/pm_runtime.h>
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020019
Rafael J. Wysockib7b95922011-07-01 22:13:37 +020020#ifdef CONFIG_PM
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020021
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020022enum pce_status {
23 PCE_STATUS_NONE = 0,
24 PCE_STATUS_ACQUIRED,
25 PCE_STATUS_ENABLED,
26 PCE_STATUS_ERROR,
27};
28
29struct pm_clock_entry {
30 struct list_head node;
31 char *con_id;
32 struct clk *clk;
33 enum pce_status status;
34};
35
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020036/**
Ben Dooks5cda3fb2014-01-14 12:23:42 +000037 * pm_clk_enable - Enable a clock, reporting any errors
38 * @dev: The device for the given clock
Strashko, Grygorii471f7702014-11-06 15:51:01 +020039 * @ce: PM clock entry corresponding to the clock.
Ben Dooks5cda3fb2014-01-14 12:23:42 +000040 */
Colin Ian Kingf4745a92015-06-29 22:13:38 +010041static inline void __pm_clk_enable(struct device *dev, struct pm_clock_entry *ce)
Ben Dooks5cda3fb2014-01-14 12:23:42 +000042{
Strashko, Grygorii471f7702014-11-06 15:51:01 +020043 int ret;
44
45 if (ce->status < PCE_STATUS_ERROR) {
46 ret = clk_enable(ce->clk);
47 if (!ret)
48 ce->status = PCE_STATUS_ENABLED;
49 else
50 dev_err(dev, "%s: failed to enable clk %p, error %d\n",
51 __func__, ce->clk, ret);
52 }
Ben Dooks5cda3fb2014-01-14 12:23:42 +000053}
54
55/**
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +020056 * pm_clk_acquire - Acquire a device clock.
57 * @dev: Device whose clock is to be acquired.
58 * @ce: PM clock entry corresponding to the clock.
59 */
60static void pm_clk_acquire(struct device *dev, struct pm_clock_entry *ce)
61{
Geert Uytterhoeven245bd6f2014-11-06 15:51:00 +020062 if (!ce->clk)
63 ce->clk = clk_get(dev, ce->con_id);
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +020064 if (IS_ERR(ce->clk)) {
65 ce->status = PCE_STATUS_ERROR;
66 } else {
Ben Dooks8a6720e2014-01-14 12:23:40 +000067 clk_prepare(ce->clk);
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +020068 ce->status = PCE_STATUS_ACQUIRED;
Geert Uytterhoevenf17f4ad2015-05-29 18:35:31 +020069 dev_dbg(dev, "Clock %pC con_id %s managed by runtime PM.\n",
70 ce->clk, ce->con_id);
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +020071 }
72}
73
Geert Uytterhoeven245bd6f2014-11-06 15:51:00 +020074static int __pm_clk_add(struct device *dev, const char *con_id,
75 struct clk *clk)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020076{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +020077 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020078 struct pm_clock_entry *ce;
79
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +020080 if (!psd)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020081 return -EINVAL;
82
83 ce = kzalloc(sizeof(*ce), GFP_KERNEL);
Quentin Lambert59d84ca2015-02-09 10:45:32 +010084 if (!ce)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020085 return -ENOMEM;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020086
87 if (con_id) {
88 ce->con_id = kstrdup(con_id, GFP_KERNEL);
89 if (!ce->con_id) {
90 dev_err(dev,
91 "Not enough memory for clock connection ID.\n");
92 kfree(ce);
93 return -ENOMEM;
94 }
Geert Uytterhoeven245bd6f2014-11-06 15:51:00 +020095 } else {
Geert Uytterhoeven3fc3a0b2015-05-08 10:47:43 +020096 if (IS_ERR(clk) || !__clk_get(clk)) {
Geert Uytterhoeven245bd6f2014-11-06 15:51:00 +020097 kfree(ce);
98 return -ENOENT;
99 }
100 ce->clk = clk;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200101 }
102
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200103 pm_clk_acquire(dev, ce);
104
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200105 spin_lock_irq(&psd->lock);
106 list_add_tail(&ce->node, &psd->clock_list);
107 spin_unlock_irq(&psd->lock);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200108 return 0;
109}
110
111/**
Geert Uytterhoeven245bd6f2014-11-06 15:51:00 +0200112 * pm_clk_add - Start using a device clock for power management.
113 * @dev: Device whose clock is going to be used for power management.
114 * @con_id: Connection ID of the clock.
115 *
116 * Add the clock represented by @con_id to the list of clocks used for
117 * the power management of @dev.
118 */
119int pm_clk_add(struct device *dev, const char *con_id)
120{
121 return __pm_clk_add(dev, con_id, NULL);
122}
123
124/**
125 * pm_clk_add_clk - Start using a device clock for power management.
126 * @dev: Device whose clock is going to be used for power management.
127 * @clk: Clock pointer
128 *
129 * Add the clock to the list of clocks used for the power management of @dev.
130 * It will increment refcount on clock pointer, use clk_put() on it when done.
131 */
132int pm_clk_add_clk(struct device *dev, struct clk *clk)
133{
134 return __pm_clk_add(dev, NULL, clk);
135}
136
137/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200138 * __pm_clk_remove - Destroy PM clock entry.
139 * @ce: PM clock entry to destroy.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200140 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200141static void __pm_clk_remove(struct pm_clock_entry *ce)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200142{
143 if (!ce)
144 return;
145
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200146 if (ce->status < PCE_STATUS_ERROR) {
147 if (ce->status == PCE_STATUS_ENABLED)
Ben Dooks8a6720e2014-01-14 12:23:40 +0000148 clk_disable(ce->clk);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200149
Ben Dooks8a6720e2014-01-14 12:23:40 +0000150 if (ce->status >= PCE_STATUS_ACQUIRED) {
151 clk_unprepare(ce->clk);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200152 clk_put(ce->clk);
Ben Dooks8a6720e2014-01-14 12:23:40 +0000153 }
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200154 }
155
Jonghwan Choi0ab1e792011-10-22 00:22:54 +0200156 kfree(ce->con_id);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200157 kfree(ce);
158}
159
160/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200161 * pm_clk_remove - Stop using a device clock for power management.
162 * @dev: Device whose clock should not be used for PM any more.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200163 * @con_id: Connection ID of the clock.
164 *
165 * Remove the clock represented by @con_id from the list of clocks used for
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200166 * the power management of @dev.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200167 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200168void pm_clk_remove(struct device *dev, const char *con_id)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200169{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200170 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200171 struct pm_clock_entry *ce;
172
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200173 if (!psd)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200174 return;
175
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200176 spin_lock_irq(&psd->lock);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200177
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200178 list_for_each_entry(ce, &psd->clock_list, node) {
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200179 if (!con_id && !ce->con_id)
180 goto remove;
181 else if (!con_id || !ce->con_id)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200182 continue;
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200183 else if (!strcmp(con_id, ce->con_id))
184 goto remove;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200185 }
186
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200187 spin_unlock_irq(&psd->lock);
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200188 return;
189
190 remove:
191 list_del(&ce->node);
Rafael J. Wysocki0d41da22011-09-26 20:12:45 +0200192 spin_unlock_irq(&psd->lock);
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200193
194 __pm_clk_remove(ce);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200195}
196
197/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200198 * pm_clk_init - Initialize a device's list of power management clocks.
199 * @dev: Device to initialize the list of PM clocks for.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200200 *
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200201 * Initialize the lock and clock_list members of the device's pm_subsys_data
202 * object.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200203 */
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200204void pm_clk_init(struct device *dev)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200205{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200206 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysockief27bed2011-08-25 15:34:01 +0200207 if (psd)
208 INIT_LIST_HEAD(&psd->clock_list);
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200209}
210
211/**
212 * pm_clk_create - Create and initialize a device's list of PM clocks.
213 * @dev: Device to create and initialize the list of PM clocks for.
214 *
215 * Allocate a struct pm_subsys_data object, initialize its lock and clock_list
216 * members and make the @dev's power.subsys_data field point to it.
217 */
218int pm_clk_create(struct device *dev)
219{
Rafael J. Wysocki77254952012-08-07 13:50:14 +0200220 return dev_pm_get_subsys_data(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200221}
222
223/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200224 * pm_clk_destroy - Destroy a device's list of power management clocks.
225 * @dev: Device to destroy the list of PM clocks for.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200226 *
227 * Clear the @dev's power.subsys_data field, remove the list of clock entries
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200228 * from the struct pm_subsys_data object pointed to by it before and free
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200229 * that object.
230 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200231void pm_clk_destroy(struct device *dev)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200232{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200233 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200234 struct pm_clock_entry *ce, *c;
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200235 struct list_head list;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200236
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200237 if (!psd)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200238 return;
239
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200240 INIT_LIST_HEAD(&list);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200241
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200242 spin_lock_irq(&psd->lock);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200243
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200244 list_for_each_entry_safe_reverse(ce, c, &psd->clock_list, node)
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200245 list_move(&ce->node, &list);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200246
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200247 spin_unlock_irq(&psd->lock);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200248
Rafael J. Wysockief27bed2011-08-25 15:34:01 +0200249 dev_pm_put_subsys_data(dev);
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200250
251 list_for_each_entry_safe_reverse(ce, c, &list, node) {
252 list_del(&ce->node);
253 __pm_clk_remove(ce);
254 }
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200255}
256
257/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200258 * pm_clk_suspend - Disable clocks in a device's PM clock list.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200259 * @dev: Device to disable the clocks for.
260 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200261int pm_clk_suspend(struct device *dev)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200262{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200263 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200264 struct pm_clock_entry *ce;
Rafael J. Wysockib7ab83e2011-08-24 21:40:56 +0200265 unsigned long flags;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200266
267 dev_dbg(dev, "%s()\n", __func__);
268
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200269 if (!psd)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200270 return 0;
271
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200272 spin_lock_irqsave(&psd->lock, flags);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200273
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200274 list_for_each_entry_reverse(ce, &psd->clock_list, node) {
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200275 if (ce->status < PCE_STATUS_ERROR) {
Magnus Damm24050952011-11-10 00:44:10 +0100276 if (ce->status == PCE_STATUS_ENABLED)
277 clk_disable(ce->clk);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200278 ce->status = PCE_STATUS_ACQUIRED;
279 }
280 }
281
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200282 spin_unlock_irqrestore(&psd->lock, flags);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200283
284 return 0;
285}
286
287/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200288 * pm_clk_resume - Enable clocks in a device's PM clock list.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200289 * @dev: Device to enable the clocks for.
290 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200291int pm_clk_resume(struct device *dev)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200292{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200293 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200294 struct pm_clock_entry *ce;
Rafael J. Wysockib7ab83e2011-08-24 21:40:56 +0200295 unsigned long flags;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200296
297 dev_dbg(dev, "%s()\n", __func__);
298
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200299 if (!psd)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200300 return 0;
301
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200302 spin_lock_irqsave(&psd->lock, flags);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200303
Strashko, Grygorii471f7702014-11-06 15:51:01 +0200304 list_for_each_entry(ce, &psd->clock_list, node)
305 __pm_clk_enable(dev, ce);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200306
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200307 spin_unlock_irqrestore(&psd->lock, flags);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200308
309 return 0;
310}
311
312/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200313 * pm_clk_notify - Notify routine for device addition and removal.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200314 * @nb: Notifier block object this function is a member of.
315 * @action: Operation being carried out by the caller.
316 * @data: Device the routine is being run for.
317 *
318 * For this function to work, @nb must be a member of an object of type
319 * struct pm_clk_notifier_block containing all of the requisite data.
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200320 * Specifically, the pm_domain member of that object is copied to the device's
321 * pm_domain field and its con_ids member is used to populate the device's list
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200322 * of PM clocks, depending on @action.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200323 *
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200324 * If the device's pm_domain field is already populated with a value different
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200325 * from the one stored in the struct pm_clk_notifier_block object, the function
326 * does nothing.
327 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200328static int pm_clk_notify(struct notifier_block *nb,
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200329 unsigned long action, void *data)
330{
331 struct pm_clk_notifier_block *clknb;
332 struct device *dev = data;
Rafael J. Wysocki3b3eca32011-06-07 23:34:58 +0200333 char **con_id;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200334 int error;
335
336 dev_dbg(dev, "%s() %ld\n", __func__, action);
337
338 clknb = container_of(nb, struct pm_clk_notifier_block, nb);
339
340 switch (action) {
341 case BUS_NOTIFY_ADD_DEVICE:
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200342 if (dev->pm_domain)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200343 break;
344
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200345 error = pm_clk_create(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200346 if (error)
347 break;
348
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200349 dev->pm_domain = clknb->pm_domain;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200350 if (clknb->con_ids[0]) {
Rafael J. Wysocki3b3eca32011-06-07 23:34:58 +0200351 for (con_id = clknb->con_ids; *con_id; con_id++)
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200352 pm_clk_add(dev, *con_id);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200353 } else {
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200354 pm_clk_add(dev, NULL);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200355 }
356
357 break;
358 case BUS_NOTIFY_DEL_DEVICE:
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200359 if (dev->pm_domain != clknb->pm_domain)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200360 break;
361
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200362 dev->pm_domain = NULL;
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200363 pm_clk_destroy(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200364 break;
365 }
366
367 return 0;
368}
369
Rajendra Nayak75f50402015-04-23 14:03:09 +0530370int pm_clk_runtime_suspend(struct device *dev)
371{
372 int ret;
373
374 dev_dbg(dev, "%s\n", __func__);
375
376 ret = pm_generic_runtime_suspend(dev);
377 if (ret) {
378 dev_err(dev, "failed to suspend device\n");
379 return ret;
380 }
381
382 ret = pm_clk_suspend(dev);
383 if (ret) {
384 dev_err(dev, "failed to suspend clock\n");
385 pm_generic_runtime_resume(dev);
386 return ret;
387 }
388
389 return 0;
390}
391
392int pm_clk_runtime_resume(struct device *dev)
393{
394 int ret;
395
396 dev_dbg(dev, "%s\n", __func__);
397
398 ret = pm_clk_resume(dev);
399 if (ret) {
400 dev_err(dev, "failed to resume clock\n");
401 return ret;
402 }
403
404 return pm_generic_runtime_resume(dev);
405}
406
Rafael J. Wysockid30d8192014-11-27 22:38:05 +0100407#else /* !CONFIG_PM */
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200408
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200409/**
410 * enable_clock - Enable a device clock.
411 * @dev: Device whose clock is to be enabled.
412 * @con_id: Connection ID of the clock.
413 */
414static void enable_clock(struct device *dev, const char *con_id)
415{
416 struct clk *clk;
417
418 clk = clk_get(dev, con_id);
419 if (!IS_ERR(clk)) {
Murali Karicheric122f272012-10-23 01:18:40 +0200420 clk_prepare_enable(clk);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200421 clk_put(clk);
422 dev_info(dev, "Runtime PM disabled, clock forced on.\n");
423 }
424}
425
426/**
427 * disable_clock - Disable a device clock.
428 * @dev: Device whose clock is to be disabled.
429 * @con_id: Connection ID of the clock.
430 */
431static void disable_clock(struct device *dev, const char *con_id)
432{
433 struct clk *clk;
434
435 clk = clk_get(dev, con_id);
436 if (!IS_ERR(clk)) {
Murali Karicheric122f272012-10-23 01:18:40 +0200437 clk_disable_unprepare(clk);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200438 clk_put(clk);
439 dev_info(dev, "Runtime PM disabled, clock forced off.\n");
440 }
441}
442
443/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200444 * pm_clk_notify - Notify routine for device addition and removal.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200445 * @nb: Notifier block object this function is a member of.
446 * @action: Operation being carried out by the caller.
447 * @data: Device the routine is being run for.
448 *
449 * For this function to work, @nb must be a member of an object of type
450 * struct pm_clk_notifier_block containing all of the requisite data.
451 * Specifically, the con_ids member of that object is used to enable or disable
452 * the device's clocks, depending on @action.
453 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200454static int pm_clk_notify(struct notifier_block *nb,
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200455 unsigned long action, void *data)
456{
457 struct pm_clk_notifier_block *clknb;
458 struct device *dev = data;
Rafael J. Wysocki3b3eca32011-06-07 23:34:58 +0200459 char **con_id;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200460
461 dev_dbg(dev, "%s() %ld\n", __func__, action);
462
463 clknb = container_of(nb, struct pm_clk_notifier_block, nb);
464
465 switch (action) {
Rafael J. Wysocki4d1518f2011-06-21 23:24:33 +0200466 case BUS_NOTIFY_BIND_DRIVER:
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200467 if (clknb->con_ids[0]) {
Rafael J. Wysocki3b3eca32011-06-07 23:34:58 +0200468 for (con_id = clknb->con_ids; *con_id; con_id++)
469 enable_clock(dev, *con_id);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200470 } else {
471 enable_clock(dev, NULL);
472 }
473 break;
Rafael J. Wysocki4d1518f2011-06-21 23:24:33 +0200474 case BUS_NOTIFY_UNBOUND_DRIVER:
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200475 if (clknb->con_ids[0]) {
Rafael J. Wysocki3b3eca32011-06-07 23:34:58 +0200476 for (con_id = clknb->con_ids; *con_id; con_id++)
477 disable_clock(dev, *con_id);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200478 } else {
479 disable_clock(dev, NULL);
480 }
481 break;
482 }
483
484 return 0;
485}
486
Rafael J. Wysockid30d8192014-11-27 22:38:05 +0100487#endif /* !CONFIG_PM */
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200488
489/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200490 * pm_clk_add_notifier - Add bus type notifier for power management clocks.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200491 * @bus: Bus type to add the notifier to.
492 * @clknb: Notifier to be added to the given bus type.
493 *
494 * The nb member of @clknb is not expected to be initialized and its
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200495 * notifier_call member will be replaced with pm_clk_notify(). However,
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200496 * the remaining members of @clknb should be populated prior to calling this
497 * routine.
498 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200499void pm_clk_add_notifier(struct bus_type *bus,
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200500 struct pm_clk_notifier_block *clknb)
501{
502 if (!bus || !clknb)
503 return;
504
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200505 clknb->nb.notifier_call = pm_clk_notify;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200506 bus_register_notifier(bus, &clknb->nb);
507}