blob: 428e55e012dcd06f91ade3154c941aab6f1d5bb5 [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
9#include <linux/init.h>
10#include <linux/kernel.h>
11#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>
15#include <linux/slab.h>
16#include <linux/err.h>
17
Rafael J. Wysockib7b95922011-07-01 22:13:37 +020018#ifdef CONFIG_PM
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020019
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020020enum pce_status {
21 PCE_STATUS_NONE = 0,
22 PCE_STATUS_ACQUIRED,
23 PCE_STATUS_ENABLED,
24 PCE_STATUS_ERROR,
25};
26
27struct pm_clock_entry {
28 struct list_head node;
29 char *con_id;
30 struct clk *clk;
31 enum pce_status status;
32};
33
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020034/**
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +020035 * pm_clk_acquire - Acquire a device clock.
36 * @dev: Device whose clock is to be acquired.
37 * @ce: PM clock entry corresponding to the clock.
38 */
39static void pm_clk_acquire(struct device *dev, struct pm_clock_entry *ce)
40{
41 ce->clk = clk_get(dev, ce->con_id);
42 if (IS_ERR(ce->clk)) {
43 ce->status = PCE_STATUS_ERROR;
44 } else {
45 ce->status = PCE_STATUS_ACQUIRED;
46 dev_dbg(dev, "Clock %s managed by runtime PM.\n", ce->con_id);
47 }
48}
49
50/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +020051 * pm_clk_add - Start using a device clock for power management.
52 * @dev: Device whose clock is going to be used for power management.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020053 * @con_id: Connection ID of the clock.
54 *
55 * Add the clock represented by @con_id to the list of clocks used for
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +020056 * the power management of @dev.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020057 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +020058int pm_clk_add(struct device *dev, const char *con_id)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020059{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +020060 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020061 struct pm_clock_entry *ce;
62
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +020063 if (!psd)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020064 return -EINVAL;
65
66 ce = kzalloc(sizeof(*ce), GFP_KERNEL);
67 if (!ce) {
68 dev_err(dev, "Not enough memory for clock entry.\n");
69 return -ENOMEM;
70 }
71
72 if (con_id) {
73 ce->con_id = kstrdup(con_id, GFP_KERNEL);
74 if (!ce->con_id) {
75 dev_err(dev,
76 "Not enough memory for clock connection ID.\n");
77 kfree(ce);
78 return -ENOMEM;
79 }
80 }
81
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +020082 pm_clk_acquire(dev, ce);
83
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +020084 spin_lock_irq(&psd->lock);
85 list_add_tail(&ce->node, &psd->clock_list);
86 spin_unlock_irq(&psd->lock);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020087 return 0;
88}
89
90/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +020091 * __pm_clk_remove - Destroy PM clock entry.
92 * @ce: PM clock entry to destroy.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020093 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +020094static void __pm_clk_remove(struct pm_clock_entry *ce)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020095{
96 if (!ce)
97 return;
98
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +020099 if (ce->status < PCE_STATUS_ERROR) {
100 if (ce->status == PCE_STATUS_ENABLED)
101 clk_disable(ce->clk);
102
103 if (ce->status >= PCE_STATUS_ACQUIRED)
104 clk_put(ce->clk);
105 }
106
Jonghwan Choi0ab1e792011-10-22 00:22:54 +0200107 kfree(ce->con_id);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200108 kfree(ce);
109}
110
111/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200112 * pm_clk_remove - Stop using a device clock for power management.
113 * @dev: Device whose clock should not be used for PM any more.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200114 * @con_id: Connection ID of the clock.
115 *
116 * Remove the clock represented by @con_id from the list of clocks used for
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200117 * the power management of @dev.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200118 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200119void pm_clk_remove(struct device *dev, const char *con_id)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200120{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200121 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200122 struct pm_clock_entry *ce;
123
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200124 if (!psd)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200125 return;
126
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200127 spin_lock_irq(&psd->lock);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200128
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200129 list_for_each_entry(ce, &psd->clock_list, node) {
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200130 if (!con_id && !ce->con_id)
131 goto remove;
132 else if (!con_id || !ce->con_id)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200133 continue;
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200134 else if (!strcmp(con_id, ce->con_id))
135 goto remove;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200136 }
137
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200138 spin_unlock_irq(&psd->lock);
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200139 return;
140
141 remove:
142 list_del(&ce->node);
Rafael J. Wysocki0d41da22011-09-26 20:12:45 +0200143 spin_unlock_irq(&psd->lock);
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200144
145 __pm_clk_remove(ce);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200146}
147
148/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200149 * pm_clk_init - Initialize a device's list of power management clocks.
150 * @dev: Device to initialize the list of PM clocks for.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200151 *
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200152 * Initialize the lock and clock_list members of the device's pm_subsys_data
153 * object.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200154 */
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200155void pm_clk_init(struct device *dev)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200156{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200157 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysockief27bed2011-08-25 15:34:01 +0200158 if (psd)
159 INIT_LIST_HEAD(&psd->clock_list);
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200160}
161
162/**
163 * pm_clk_create - Create and initialize a device's list of PM clocks.
164 * @dev: Device to create and initialize the list of PM clocks for.
165 *
166 * Allocate a struct pm_subsys_data object, initialize its lock and clock_list
167 * members and make the @dev's power.subsys_data field point to it.
168 */
169int pm_clk_create(struct device *dev)
170{
Rafael J. Wysockief27bed2011-08-25 15:34:01 +0200171 int ret = dev_pm_get_subsys_data(dev);
172 return ret < 0 ? ret : 0;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200173}
174
175/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200176 * pm_clk_destroy - Destroy a device's list of power management clocks.
177 * @dev: Device to destroy the list of PM clocks for.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200178 *
179 * Clear the @dev's power.subsys_data field, remove the list of clock entries
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200180 * from the struct pm_subsys_data object pointed to by it before and free
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200181 * that object.
182 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200183void pm_clk_destroy(struct device *dev)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200184{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200185 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200186 struct pm_clock_entry *ce, *c;
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200187 struct list_head list;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200188
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200189 if (!psd)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200190 return;
191
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200192 INIT_LIST_HEAD(&list);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200193
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200194 spin_lock_irq(&psd->lock);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200195
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200196 list_for_each_entry_safe_reverse(ce, c, &psd->clock_list, node)
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200197 list_move(&ce->node, &list);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200198
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200199 spin_unlock_irq(&psd->lock);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200200
Rafael J. Wysockief27bed2011-08-25 15:34:01 +0200201 dev_pm_put_subsys_data(dev);
Rafael J. Wysockie8b364b2011-09-26 19:40:23 +0200202
203 list_for_each_entry_safe_reverse(ce, c, &list, node) {
204 list_del(&ce->node);
205 __pm_clk_remove(ce);
206 }
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200207}
208
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200209#endif /* CONFIG_PM */
210
211#ifdef CONFIG_PM_RUNTIME
212
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200213/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200214 * pm_clk_suspend - Disable clocks in a device's PM clock list.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200215 * @dev: Device to disable the clocks for.
216 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200217int pm_clk_suspend(struct device *dev)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200218{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200219 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200220 struct pm_clock_entry *ce;
Rafael J. Wysockib7ab83e2011-08-24 21:40:56 +0200221 unsigned long flags;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200222
223 dev_dbg(dev, "%s()\n", __func__);
224
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200225 if (!psd)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200226 return 0;
227
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200228 spin_lock_irqsave(&psd->lock, flags);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200229
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200230 list_for_each_entry_reverse(ce, &psd->clock_list, node) {
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200231 if (ce->status < PCE_STATUS_ERROR) {
Magnus Damm24050952011-11-10 00:44:10 +0100232 if (ce->status == PCE_STATUS_ENABLED)
233 clk_disable(ce->clk);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200234 ce->status = PCE_STATUS_ACQUIRED;
235 }
236 }
237
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200238 spin_unlock_irqrestore(&psd->lock, flags);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200239
240 return 0;
241}
242
243/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200244 * pm_clk_resume - Enable clocks in a device's PM clock list.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200245 * @dev: Device to enable the clocks for.
246 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200247int pm_clk_resume(struct device *dev)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200248{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200249 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200250 struct pm_clock_entry *ce;
Rafael J. Wysockib7ab83e2011-08-24 21:40:56 +0200251 unsigned long flags;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200252
253 dev_dbg(dev, "%s()\n", __func__);
254
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200255 if (!psd)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200256 return 0;
257
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200258 spin_lock_irqsave(&psd->lock, flags);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200259
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200260 list_for_each_entry(ce, &psd->clock_list, node) {
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200261 if (ce->status < PCE_STATUS_ERROR) {
262 clk_enable(ce->clk);
263 ce->status = PCE_STATUS_ENABLED;
264 }
265 }
266
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200267 spin_unlock_irqrestore(&psd->lock, flags);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200268
269 return 0;
270}
271
272/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200273 * pm_clk_notify - Notify routine for device addition and removal.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200274 * @nb: Notifier block object this function is a member of.
275 * @action: Operation being carried out by the caller.
276 * @data: Device the routine is being run for.
277 *
278 * For this function to work, @nb must be a member of an object of type
279 * struct pm_clk_notifier_block containing all of the requisite data.
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200280 * Specifically, the pm_domain member of that object is copied to the device's
281 * pm_domain field and its con_ids member is used to populate the device's list
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200282 * of PM clocks, depending on @action.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200283 *
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200284 * If the device's pm_domain field is already populated with a value different
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200285 * from the one stored in the struct pm_clk_notifier_block object, the function
286 * does nothing.
287 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200288static int pm_clk_notify(struct notifier_block *nb,
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200289 unsigned long action, void *data)
290{
291 struct pm_clk_notifier_block *clknb;
292 struct device *dev = data;
Rafael J. Wysocki3b3eca32011-06-07 23:34:58 +0200293 char **con_id;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200294 int error;
295
296 dev_dbg(dev, "%s() %ld\n", __func__, action);
297
298 clknb = container_of(nb, struct pm_clk_notifier_block, nb);
299
300 switch (action) {
301 case BUS_NOTIFY_ADD_DEVICE:
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200302 if (dev->pm_domain)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200303 break;
304
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200305 error = pm_clk_create(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200306 if (error)
307 break;
308
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200309 dev->pm_domain = clknb->pm_domain;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200310 if (clknb->con_ids[0]) {
Rafael J. Wysocki3b3eca32011-06-07 23:34:58 +0200311 for (con_id = clknb->con_ids; *con_id; con_id++)
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200312 pm_clk_add(dev, *con_id);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200313 } else {
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200314 pm_clk_add(dev, NULL);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200315 }
316
317 break;
318 case BUS_NOTIFY_DEL_DEVICE:
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200319 if (dev->pm_domain != clknb->pm_domain)
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200320 break;
321
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200322 dev->pm_domain = NULL;
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200323 pm_clk_destroy(dev);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200324 break;
325 }
326
327 return 0;
328}
329
330#else /* !CONFIG_PM_RUNTIME */
331
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200332#ifdef CONFIG_PM
333
334/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200335 * pm_clk_suspend - Disable clocks in a device's PM clock list.
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200336 * @dev: Device to disable the clocks for.
337 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200338int pm_clk_suspend(struct device *dev)
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200339{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200340 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200341 struct pm_clock_entry *ce;
Rafael J. Wysockib7ab83e2011-08-24 21:40:56 +0200342 unsigned long flags;
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200343
344 dev_dbg(dev, "%s()\n", __func__);
345
346 /* If there is no driver, the clocks are already disabled. */
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200347 if (!psd || !dev->driver)
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200348 return 0;
349
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200350 spin_lock_irqsave(&psd->lock, flags);
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200351
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200352 list_for_each_entry_reverse(ce, &psd->clock_list, node)
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200353 clk_disable(ce->clk);
354
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200355 spin_unlock_irqrestore(&psd->lock, flags);
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200356
357 return 0;
358}
359
360/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200361 * pm_clk_resume - Enable clocks in a device's PM clock list.
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200362 * @dev: Device to enable the clocks for.
363 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200364int pm_clk_resume(struct device *dev)
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200365{
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200366 struct pm_subsys_data *psd = dev_to_psd(dev);
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200367 struct pm_clock_entry *ce;
Rafael J. Wysockib7ab83e2011-08-24 21:40:56 +0200368 unsigned long flags;
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200369
370 dev_dbg(dev, "%s()\n", __func__);
371
372 /* If there is no driver, the clocks should remain disabled. */
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200373 if (!psd || !dev->driver)
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200374 return 0;
375
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200376 spin_lock_irqsave(&psd->lock, flags);
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200377
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200378 list_for_each_entry(ce, &psd->clock_list, node)
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200379 clk_enable(ce->clk);
380
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200381 spin_unlock_irqrestore(&psd->lock, flags);
Rafael J. Wysockib7b95922011-07-01 22:13:37 +0200382
383 return 0;
384}
385
386#endif /* CONFIG_PM */
387
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200388/**
389 * enable_clock - Enable a device clock.
390 * @dev: Device whose clock is to be enabled.
391 * @con_id: Connection ID of the clock.
392 */
393static void enable_clock(struct device *dev, const char *con_id)
394{
395 struct clk *clk;
396
397 clk = clk_get(dev, con_id);
398 if (!IS_ERR(clk)) {
399 clk_enable(clk);
400 clk_put(clk);
401 dev_info(dev, "Runtime PM disabled, clock forced on.\n");
402 }
403}
404
405/**
406 * disable_clock - Disable a device clock.
407 * @dev: Device whose clock is to be disabled.
408 * @con_id: Connection ID of the clock.
409 */
410static void disable_clock(struct device *dev, const char *con_id)
411{
412 struct clk *clk;
413
414 clk = clk_get(dev, con_id);
415 if (!IS_ERR(clk)) {
416 clk_disable(clk);
417 clk_put(clk);
418 dev_info(dev, "Runtime PM disabled, clock forced off.\n");
419 }
420}
421
422/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200423 * pm_clk_notify - Notify routine for device addition and removal.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200424 * @nb: Notifier block object this function is a member of.
425 * @action: Operation being carried out by the caller.
426 * @data: Device the routine is being run for.
427 *
428 * For this function to work, @nb must be a member of an object of type
429 * struct pm_clk_notifier_block containing all of the requisite data.
430 * Specifically, the con_ids member of that object is used to enable or disable
431 * the device's clocks, depending on @action.
432 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200433static int pm_clk_notify(struct notifier_block *nb,
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200434 unsigned long action, void *data)
435{
436 struct pm_clk_notifier_block *clknb;
437 struct device *dev = data;
Rafael J. Wysocki3b3eca32011-06-07 23:34:58 +0200438 char **con_id;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200439
440 dev_dbg(dev, "%s() %ld\n", __func__, action);
441
442 clknb = container_of(nb, struct pm_clk_notifier_block, nb);
443
444 switch (action) {
Rafael J. Wysocki4d1518f2011-06-21 23:24:33 +0200445 case BUS_NOTIFY_BIND_DRIVER:
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200446 if (clknb->con_ids[0]) {
Rafael J. Wysocki3b3eca32011-06-07 23:34:58 +0200447 for (con_id = clknb->con_ids; *con_id; con_id++)
448 enable_clock(dev, *con_id);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200449 } else {
450 enable_clock(dev, NULL);
451 }
452 break;
Rafael J. Wysocki4d1518f2011-06-21 23:24:33 +0200453 case BUS_NOTIFY_UNBOUND_DRIVER:
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200454 if (clknb->con_ids[0]) {
Rafael J. Wysocki3b3eca32011-06-07 23:34:58 +0200455 for (con_id = clknb->con_ids; *con_id; con_id++)
456 disable_clock(dev, *con_id);
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200457 } else {
458 disable_clock(dev, NULL);
459 }
460 break;
461 }
462
463 return 0;
464}
465
466#endif /* !CONFIG_PM_RUNTIME */
467
468/**
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200469 * pm_clk_add_notifier - Add bus type notifier for power management clocks.
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200470 * @bus: Bus type to add the notifier to.
471 * @clknb: Notifier to be added to the given bus type.
472 *
473 * The nb member of @clknb is not expected to be initialized and its
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200474 * notifier_call member will be replaced with pm_clk_notify(). However,
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200475 * the remaining members of @clknb should be populated prior to calling this
476 * routine.
477 */
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200478void pm_clk_add_notifier(struct bus_type *bus,
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200479 struct pm_clk_notifier_block *clknb)
480{
481 if (!bus || !clknb)
482 return;
483
Rafael J. Wysocki3d5c3032011-07-01 22:13:44 +0200484 clknb->nb.notifier_call = pm_clk_notify;
Rafael J. Wysocki85eb8c82011-04-30 00:25:44 +0200485 bus_register_notifier(bus, &clknb->nb);
486}