2 * drivers/base/power/clock_ops.c - Generic clock manipulation PM callbacks
4 * Copyright (c) 2011 Rafael J. Wysocki <rjw@sisk.pl>, Renesas Electronics Corp.
6 * This file is released under the GPLv2.
9 #include <linux/init.h>
10 #include <linux/kernel.h>
13 #include <linux/pm_runtime.h>
14 #include <linux/clk.h>
15 #include <linux/slab.h>
16 #include <linux/err.h>
21 struct list_head clock_list
;
32 struct pm_clock_entry
{
33 struct list_head node
;
36 enum pce_status status
;
39 static struct pm_clk_data
*__to_pcd(struct device
*dev
)
41 return dev
? dev
->power
.subsys_data
: NULL
;
45 * pm_clk_add - Start using a device clock for power management.
46 * @dev: Device whose clock is going to be used for power management.
47 * @con_id: Connection ID of the clock.
49 * Add the clock represented by @con_id to the list of clocks used for
50 * the power management of @dev.
52 int pm_clk_add(struct device
*dev
, const char *con_id
)
54 struct pm_clk_data
*pcd
= __to_pcd(dev
);
55 struct pm_clock_entry
*ce
;
60 ce
= kzalloc(sizeof(*ce
), GFP_KERNEL
);
62 dev_err(dev
, "Not enough memory for clock entry.\n");
67 ce
->con_id
= kstrdup(con_id
, GFP_KERNEL
);
70 "Not enough memory for clock connection ID.\n");
76 spin_lock_irq(&pcd
->lock
);
77 list_add_tail(&ce
->node
, &pcd
->clock_list
);
78 spin_unlock_irq(&pcd
->lock
);
83 * __pm_clk_remove - Destroy PM clock entry.
84 * @ce: PM clock entry to destroy.
86 * This routine must be called under the spinlock protecting the PM list of
87 * clocks corresponding the the @ce's device.
89 static void __pm_clk_remove(struct pm_clock_entry
*ce
)
96 if (ce
->status
< PCE_STATUS_ERROR
) {
97 if (ce
->status
== PCE_STATUS_ENABLED
)
100 if (ce
->status
>= PCE_STATUS_ACQUIRED
)
111 * pm_clk_remove - Stop using a device clock for power management.
112 * @dev: Device whose clock should not be used for PM any more.
113 * @con_id: Connection ID of the clock.
115 * Remove the clock represented by @con_id from the list of clocks used for
116 * the power management of @dev.
118 void pm_clk_remove(struct device
*dev
, const char *con_id
)
120 struct pm_clk_data
*pcd
= __to_pcd(dev
);
121 struct pm_clock_entry
*ce
;
126 spin_lock_irq(&pcd
->lock
);
128 list_for_each_entry(ce
, &pcd
->clock_list
, node
) {
129 if (!con_id
&& !ce
->con_id
) {
132 } else if (!con_id
|| !ce
->con_id
) {
134 } else if (!strcmp(con_id
, ce
->con_id
)) {
140 spin_unlock_irq(&pcd
->lock
);
144 * pm_clk_init - Initialize a device's list of power management clocks.
145 * @dev: Device to initialize the list of PM clocks for.
147 * Allocate a struct pm_clk_data object, initialize its lock member and
148 * make the @dev's power.subsys_data field point to it.
150 int pm_clk_init(struct device
*dev
)
152 struct pm_clk_data
*pcd
;
154 pcd
= kzalloc(sizeof(*pcd
), GFP_KERNEL
);
156 dev_err(dev
, "Not enough memory for PM clock data.\n");
160 INIT_LIST_HEAD(&pcd
->clock_list
);
161 spin_lock_init(&pcd
->lock
);
162 dev
->power
.subsys_data
= pcd
;
167 * pm_clk_destroy - Destroy a device's list of power management clocks.
168 * @dev: Device to destroy the list of PM clocks for.
170 * Clear the @dev's power.subsys_data field, remove the list of clock entries
171 * from the struct pm_clk_data object pointed to by it before and free
174 void pm_clk_destroy(struct device
*dev
)
176 struct pm_clk_data
*pcd
= __to_pcd(dev
);
177 struct pm_clock_entry
*ce
, *c
;
182 dev
->power
.subsys_data
= NULL
;
184 spin_lock_irq(&pcd
->lock
);
186 list_for_each_entry_safe_reverse(ce
, c
, &pcd
->clock_list
, node
)
189 spin_unlock_irq(&pcd
->lock
);
194 #endif /* CONFIG_PM */
196 #ifdef CONFIG_PM_RUNTIME
199 * pm_clk_acquire - Acquire a device clock.
200 * @dev: Device whose clock is to be acquired.
201 * @con_id: Connection ID of the clock.
203 static void pm_clk_acquire(struct device
*dev
,
204 struct pm_clock_entry
*ce
)
206 ce
->clk
= clk_get(dev
, ce
->con_id
);
207 if (IS_ERR(ce
->clk
)) {
208 ce
->status
= PCE_STATUS_ERROR
;
210 ce
->status
= PCE_STATUS_ACQUIRED
;
211 dev_dbg(dev
, "Clock %s managed by runtime PM.\n", ce
->con_id
);
216 * pm_clk_suspend - Disable clocks in a device's PM clock list.
217 * @dev: Device to disable the clocks for.
219 int pm_clk_suspend(struct device
*dev
)
221 struct pm_clk_data
*pcd
= __to_pcd(dev
);
222 struct pm_clock_entry
*ce
;
225 dev_dbg(dev
, "%s()\n", __func__
);
230 spin_lock_irqsave(&pcd
->lock
, flags
);
232 list_for_each_entry_reverse(ce
, &pcd
->clock_list
, node
) {
233 if (ce
->status
== PCE_STATUS_NONE
)
234 pm_clk_acquire(dev
, ce
);
236 if (ce
->status
< PCE_STATUS_ERROR
) {
237 clk_disable(ce
->clk
);
238 ce
->status
= PCE_STATUS_ACQUIRED
;
242 spin_unlock_irqrestore(&pcd
->lock
, flags
);
248 * pm_clk_resume - Enable clocks in a device's PM clock list.
249 * @dev: Device to enable the clocks for.
251 int pm_clk_resume(struct device
*dev
)
253 struct pm_clk_data
*pcd
= __to_pcd(dev
);
254 struct pm_clock_entry
*ce
;
257 dev_dbg(dev
, "%s()\n", __func__
);
262 spin_lock_irqsave(&pcd
->lock
, flags
);
264 list_for_each_entry(ce
, &pcd
->clock_list
, node
) {
265 if (ce
->status
== PCE_STATUS_NONE
)
266 pm_clk_acquire(dev
, ce
);
268 if (ce
->status
< PCE_STATUS_ERROR
) {
270 ce
->status
= PCE_STATUS_ENABLED
;
274 spin_unlock_irqrestore(&pcd
->lock
, flags
);
280 * pm_clk_notify - Notify routine for device addition and removal.
281 * @nb: Notifier block object this function is a member of.
282 * @action: Operation being carried out by the caller.
283 * @data: Device the routine is being run for.
285 * For this function to work, @nb must be a member of an object of type
286 * struct pm_clk_notifier_block containing all of the requisite data.
287 * Specifically, the pm_domain member of that object is copied to the device's
288 * pm_domain field and its con_ids member is used to populate the device's list
289 * of PM clocks, depending on @action.
291 * If the device's pm_domain field is already populated with a value different
292 * from the one stored in the struct pm_clk_notifier_block object, the function
295 static int pm_clk_notify(struct notifier_block
*nb
,
296 unsigned long action
, void *data
)
298 struct pm_clk_notifier_block
*clknb
;
299 struct device
*dev
= data
;
303 dev_dbg(dev
, "%s() %ld\n", __func__
, action
);
305 clknb
= container_of(nb
, struct pm_clk_notifier_block
, nb
);
308 case BUS_NOTIFY_ADD_DEVICE
:
312 error
= pm_clk_init(dev
);
316 dev
->pm_domain
= clknb
->pm_domain
;
317 if (clknb
->con_ids
[0]) {
318 for (con_id
= clknb
->con_ids
; *con_id
; con_id
++)
319 pm_clk_add(dev
, *con_id
);
321 pm_clk_add(dev
, NULL
);
325 case BUS_NOTIFY_DEL_DEVICE
:
326 if (dev
->pm_domain
!= clknb
->pm_domain
)
329 dev
->pm_domain
= NULL
;
337 #else /* !CONFIG_PM_RUNTIME */
342 * pm_clk_suspend - Disable clocks in a device's PM clock list.
343 * @dev: Device to disable the clocks for.
345 int pm_clk_suspend(struct device
*dev
)
347 struct pm_clk_data
*pcd
= __to_pcd(dev
);
348 struct pm_clock_entry
*ce
;
351 dev_dbg(dev
, "%s()\n", __func__
);
353 /* If there is no driver, the clocks are already disabled. */
354 if (!pcd
|| !dev
->driver
)
357 spin_lock_irqsave(&pcd
->lock
, flags
);
359 list_for_each_entry_reverse(ce
, &pcd
->clock_list
, node
)
360 clk_disable(ce
->clk
);
362 spin_unlock_irqrestore(&pcd
->lock
, flags
);
368 * pm_clk_resume - Enable clocks in a device's PM clock list.
369 * @dev: Device to enable the clocks for.
371 int pm_clk_resume(struct device
*dev
)
373 struct pm_clk_data
*pcd
= __to_pcd(dev
);
374 struct pm_clock_entry
*ce
;
377 dev_dbg(dev
, "%s()\n", __func__
);
379 /* If there is no driver, the clocks should remain disabled. */
380 if (!pcd
|| !dev
->driver
)
383 spin_lock_irqsave(&pcd
->lock
, flags
);
385 list_for_each_entry(ce
, &pcd
->clock_list
, node
)
388 spin_unlock_irqrestore(&pcd
->lock
, flags
);
393 #endif /* CONFIG_PM */
396 * enable_clock - Enable a device clock.
397 * @dev: Device whose clock is to be enabled.
398 * @con_id: Connection ID of the clock.
400 static void enable_clock(struct device
*dev
, const char *con_id
)
404 clk
= clk_get(dev
, con_id
);
408 dev_info(dev
, "Runtime PM disabled, clock forced on.\n");
413 * disable_clock - Disable a device clock.
414 * @dev: Device whose clock is to be disabled.
415 * @con_id: Connection ID of the clock.
417 static void disable_clock(struct device
*dev
, const char *con_id
)
421 clk
= clk_get(dev
, con_id
);
425 dev_info(dev
, "Runtime PM disabled, clock forced off.\n");
430 * pm_clk_notify - Notify routine for device addition and removal.
431 * @nb: Notifier block object this function is a member of.
432 * @action: Operation being carried out by the caller.
433 * @data: Device the routine is being run for.
435 * For this function to work, @nb must be a member of an object of type
436 * struct pm_clk_notifier_block containing all of the requisite data.
437 * Specifically, the con_ids member of that object is used to enable or disable
438 * the device's clocks, depending on @action.
440 static int pm_clk_notify(struct notifier_block
*nb
,
441 unsigned long action
, void *data
)
443 struct pm_clk_notifier_block
*clknb
;
444 struct device
*dev
= data
;
447 dev_dbg(dev
, "%s() %ld\n", __func__
, action
);
449 clknb
= container_of(nb
, struct pm_clk_notifier_block
, nb
);
452 case BUS_NOTIFY_BIND_DRIVER
:
453 if (clknb
->con_ids
[0]) {
454 for (con_id
= clknb
->con_ids
; *con_id
; con_id
++)
455 enable_clock(dev
, *con_id
);
457 enable_clock(dev
, NULL
);
460 case BUS_NOTIFY_UNBOUND_DRIVER
:
461 if (clknb
->con_ids
[0]) {
462 for (con_id
= clknb
->con_ids
; *con_id
; con_id
++)
463 disable_clock(dev
, *con_id
);
465 disable_clock(dev
, NULL
);
473 #endif /* !CONFIG_PM_RUNTIME */
476 * pm_clk_add_notifier - Add bus type notifier for power management clocks.
477 * @bus: Bus type to add the notifier to.
478 * @clknb: Notifier to be added to the given bus type.
480 * The nb member of @clknb is not expected to be initialized and its
481 * notifier_call member will be replaced with pm_clk_notify(). However,
482 * the remaining members of @clknb should be populated prior to calling this
485 void pm_clk_add_notifier(struct bus_type
*bus
,
486 struct pm_clk_notifier_block
*clknb
)
491 clknb
->nb
.notifier_call
= pm_clk_notify
;
492 bus_register_notifier(bus
, &clknb
->nb
);