2 * drivers/base/power/clock_ops.c - Generic clock manipulation PM callbacks
6 * This file is released under the GPLv2.
9 #include <linux/kernel.h>
10 #include <linux/device.h>
13 #include <linux/pm_clock.h>
14 #include <linux/clk.h>
15 #include <linux/clkdev.h>
16 #include <linux/slab.h>
17 #include <linux/err.h>
18 #include <linux/pm_domain.h>
19 #include <linux/pm_runtime.h>
30 struct pm_clock_entry {
31 struct list_head node;
34 enum pce_status status;
38 * pm_clk_enable - Enable a clock, reporting any errors
39 * @dev: The device for the given clock
40 * @ce: PM clock entry corresponding to the clock.
42 static inline void __pm_clk_enable(struct device *dev, struct pm_clock_entry *ce)
46 if (ce->status < PCE_STATUS_ERROR) {
47 ret = clk_enable(ce->clk);
49 ce->status = PCE_STATUS_ENABLED;
51 dev_err(dev, "%s: failed to enable clk %p, error %d\n",
52 __func__, ce->clk, ret);
57 * 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.
61 static void pm_clk_acquire(struct device *dev, struct pm_clock_entry *ce)
64 ce->clk = clk_get(dev, ce->con_id);
65 if (IS_ERR(ce->clk)) {
66 ce->status = PCE_STATUS_ERROR;
69 ce->status = PCE_STATUS_ACQUIRED;
70 dev_dbg(dev, "Clock %pC con_id %s managed by runtime PM.\n",
75 static int __pm_clk_add(struct device *dev, const char *con_id,
78 struct pm_subsys_data *psd = dev_to_psd(dev);
79 struct pm_clock_entry *ce;
84 ce = kzalloc(sizeof(*ce), GFP_KERNEL);
89 ce->con_id = kstrdup(con_id, GFP_KERNEL);
92 "Not enough memory for clock connection ID.\n");
104 pm_clk_acquire(dev, ce);
106 spin_lock_irq(&psd->lock);
107 list_add_tail(&ce->node, &psd->clock_list);
108 spin_unlock_irq(&psd->lock);
113 * 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.
117 * Add the clock represented by @con_id to the list of clocks used for
118 * the power management of @dev.
120 int pm_clk_add(struct device *dev, const char *con_id)
122 return __pm_clk_add(dev, con_id, NULL);
124 EXPORT_SYMBOL_GPL(pm_clk_add);
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
131 * Add the clock to the list of clocks used for the power management of @dev.
132 * 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
136 int pm_clk_add_clk(struct device *dev, struct clk *clk)
138 return __pm_clk_add(dev, NULL, clk);
140 EXPORT_SYMBOL_GPL(pm_clk_add_clk);
144 * 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.
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.
153 int of_pm_clk_add_clk(struct device *dev, const char *name)
158 if (!dev || !dev->of_node || !name)
161 clk = of_clk_get_by_name(dev->of_node, name);
165 ret = pm_clk_add_clk(dev, clk);
173 EXPORT_SYMBOL_GPL(of_pm_clk_add_clk);
176 * 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.
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.
185 int of_pm_clk_add_clks(struct device *dev)
188 unsigned int i, count;
191 if (!dev || !dev->of_node)
194 count = of_count_phandle_with_args(dev->of_node, "clocks",
199 clks = kcalloc(count, sizeof(*clks), GFP_KERNEL);
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]);
210 ret = pm_clk_add_clk(dev, clks[i]);
223 pm_clk_remove_clk(dev, clks[i]);
229 EXPORT_SYMBOL_GPL(of_pm_clk_add_clks);
232 * __pm_clk_remove - Destroy PM clock entry.
233 * @ce: PM clock entry to destroy.
235 static void __pm_clk_remove(struct pm_clock_entry *ce)
240 if (ce->status < PCE_STATUS_ERROR) {
241 if (ce->status == PCE_STATUS_ENABLED)
242 clk_disable(ce->clk);
244 if (ce->status >= PCE_STATUS_ACQUIRED) {
245 clk_unprepare(ce->clk);
255 * pm_clk_remove - Stop using a device clock for power management.
256 * @dev: Device whose clock should not be used for PM any more.
257 * @con_id: Connection ID of the clock.
259 * Remove the clock represented by @con_id from the list of clocks used for
260 * the power management of @dev.
262 void pm_clk_remove(struct device *dev, const char *con_id)
264 struct pm_subsys_data *psd = dev_to_psd(dev);
265 struct pm_clock_entry *ce;
270 spin_lock_irq(&psd->lock);
272 list_for_each_entry(ce, &psd->clock_list, node) {
273 if (!con_id && !ce->con_id)
275 else if (!con_id || !ce->con_id)
277 else if (!strcmp(con_id, ce->con_id))
281 spin_unlock_irq(&psd->lock);
286 spin_unlock_irq(&psd->lock);
290 EXPORT_SYMBOL_GPL(pm_clk_remove);
293 * 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
297 * Remove the clock pointed to by @clk from the list of clocks used for
298 * the power management of @dev.
300 void pm_clk_remove_clk(struct device *dev, struct clk *clk)
302 struct pm_subsys_data *psd = dev_to_psd(dev);
303 struct pm_clock_entry *ce;
308 spin_lock_irq(&psd->lock);
310 list_for_each_entry(ce, &psd->clock_list, node) {
315 spin_unlock_irq(&psd->lock);
320 spin_unlock_irq(&psd->lock);
324 EXPORT_SYMBOL_GPL(pm_clk_remove_clk);
327 * pm_clk_init - Initialize a device's list of power management clocks.
328 * @dev: Device to initialize the list of PM clocks for.
330 * Initialize the lock and clock_list members of the device's pm_subsys_data
333 void pm_clk_init(struct device *dev)
335 struct pm_subsys_data *psd = dev_to_psd(dev);
337 INIT_LIST_HEAD(&psd->clock_list);
339 EXPORT_SYMBOL_GPL(pm_clk_init);
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.
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.
348 int pm_clk_create(struct device *dev)
350 return dev_pm_get_subsys_data(dev);
352 EXPORT_SYMBOL_GPL(pm_clk_create);
355 * pm_clk_destroy - Destroy a device's list of power management clocks.
356 * @dev: Device to destroy the list of PM clocks for.
358 * Clear the @dev's power.subsys_data field, remove the list of clock entries
359 * from the struct pm_subsys_data object pointed to by it before and free
362 void pm_clk_destroy(struct device *dev)
364 struct pm_subsys_data *psd = dev_to_psd(dev);
365 struct pm_clock_entry *ce, *c;
366 struct list_head list;
371 INIT_LIST_HEAD(&list);
373 spin_lock_irq(&psd->lock);
375 list_for_each_entry_safe_reverse(ce, c, &psd->clock_list, node)
376 list_move(&ce->node, &list);
378 spin_unlock_irq(&psd->lock);
380 dev_pm_put_subsys_data(dev);
382 list_for_each_entry_safe_reverse(ce, c, &list, node) {
387 EXPORT_SYMBOL_GPL(pm_clk_destroy);
390 * pm_clk_suspend - Disable clocks in a device's PM clock list.
391 * @dev: Device to disable the clocks for.
393 int pm_clk_suspend(struct device *dev)
395 struct pm_subsys_data *psd = dev_to_psd(dev);
396 struct pm_clock_entry *ce;
399 dev_dbg(dev, "%s()\n", __func__);
404 spin_lock_irqsave(&psd->lock, flags);
406 list_for_each_entry_reverse(ce, &psd->clock_list, node) {
407 if (ce->status < PCE_STATUS_ERROR) {
408 if (ce->status == PCE_STATUS_ENABLED)
409 clk_disable(ce->clk);
410 ce->status = PCE_STATUS_ACQUIRED;
414 spin_unlock_irqrestore(&psd->lock, flags);
418 EXPORT_SYMBOL_GPL(pm_clk_suspend);
421 * pm_clk_resume - Enable clocks in a device's PM clock list.
422 * @dev: Device to enable the clocks for.
424 int pm_clk_resume(struct device *dev)
426 struct pm_subsys_data *psd = dev_to_psd(dev);
427 struct pm_clock_entry *ce;
430 dev_dbg(dev, "%s()\n", __func__);
435 spin_lock_irqsave(&psd->lock, flags);
437 list_for_each_entry(ce, &psd->clock_list, node)
438 __pm_clk_enable(dev, ce);
440 spin_unlock_irqrestore(&psd->lock, flags);
444 EXPORT_SYMBOL_GPL(pm_clk_resume);
447 * pm_clk_notify - Notify routine for device addition and removal.
448 * @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.
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.
454 * 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
456 * of PM clocks, depending on @action.
458 * If the device's pm_domain field is already populated with a value different
459 * from the one stored in the struct pm_clk_notifier_block object, the function
462 static int pm_clk_notify(struct notifier_block *nb,
463 unsigned long action, void *data)
465 struct pm_clk_notifier_block *clknb;
466 struct device *dev = data;
470 dev_dbg(dev, "%s() %ld\n", __func__, action);
472 clknb = container_of(nb, struct pm_clk_notifier_block, nb);
475 case BUS_NOTIFY_ADD_DEVICE:
479 error = pm_clk_create(dev);
483 dev_pm_domain_set(dev, clknb->pm_domain);
484 if (clknb->con_ids[0]) {
485 for (con_id = clknb->con_ids; *con_id; con_id++)
486 pm_clk_add(dev, *con_id);
488 pm_clk_add(dev, NULL);
492 case BUS_NOTIFY_DEL_DEVICE:
493 if (dev->pm_domain != clknb->pm_domain)
496 dev_pm_domain_set(dev, NULL);
504 int pm_clk_runtime_suspend(struct device *dev)
508 dev_dbg(dev, "%s\n", __func__);
510 ret = pm_generic_runtime_suspend(dev);
512 dev_err(dev, "failed to suspend device\n");
516 ret = pm_clk_suspend(dev);
518 dev_err(dev, "failed to suspend clock\n");
519 pm_generic_runtime_resume(dev);
525 EXPORT_SYMBOL_GPL(pm_clk_runtime_suspend);
527 int pm_clk_runtime_resume(struct device *dev)
531 dev_dbg(dev, "%s\n", __func__);
533 ret = pm_clk_resume(dev);
535 dev_err(dev, "failed to resume clock\n");
539 return pm_generic_runtime_resume(dev);
541 EXPORT_SYMBOL_GPL(pm_clk_runtime_resume);
543 #else /* !CONFIG_PM_CLK */
546 * enable_clock - Enable a device clock.
547 * @dev: Device whose clock is to be enabled.
548 * @con_id: Connection ID of the clock.
550 static void enable_clock(struct device *dev, const char *con_id)
554 clk = clk_get(dev, con_id);
556 clk_prepare_enable(clk);
558 dev_info(dev, "Runtime PM disabled, clock forced on.\n");
563 * disable_clock - Disable a device clock.
564 * @dev: Device whose clock is to be disabled.
565 * @con_id: Connection ID of the clock.
567 static void disable_clock(struct device *dev, const char *con_id)
571 clk = clk_get(dev, con_id);
573 clk_disable_unprepare(clk);
575 dev_info(dev, "Runtime PM disabled, clock forced off.\n");
580 * pm_clk_notify - Notify routine for device addition and removal.
581 * @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.
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.
590 static int pm_clk_notify(struct notifier_block *nb,
591 unsigned long action, void *data)
593 struct pm_clk_notifier_block *clknb;
594 struct device *dev = data;
597 dev_dbg(dev, "%s() %ld\n", __func__, action);
599 clknb = container_of(nb, struct pm_clk_notifier_block, nb);
602 case BUS_NOTIFY_BIND_DRIVER:
603 if (clknb->con_ids[0]) {
604 for (con_id = clknb->con_ids; *con_id; con_id++)
605 enable_clock(dev, *con_id);
607 enable_clock(dev, NULL);
610 case BUS_NOTIFY_DRIVER_NOT_BOUND:
611 case BUS_NOTIFY_UNBOUND_DRIVER:
612 if (clknb->con_ids[0]) {
613 for (con_id = clknb->con_ids; *con_id; con_id++)
614 disable_clock(dev, *con_id);
616 disable_clock(dev, NULL);
624 #endif /* !CONFIG_PM_CLK */
627 * pm_clk_add_notifier - Add bus type notifier for power management clocks.
628 * @bus: Bus type to add the notifier to.
629 * @clknb: Notifier to be added to the given bus type.
631 * The nb member of @clknb is not expected to be initialized and its
632 * notifier_call member will be replaced with pm_clk_notify(). However,
633 * the remaining members of @clknb should be populated prior to calling this
636 void pm_clk_add_notifier(struct bus_type *bus,
637 struct pm_clk_notifier_block *clknb)
642 clknb->nb.notifier_call = pm_clk_notify;
643 bus_register_notifier(bus, &clknb->nb);
645 EXPORT_SYMBOL_GPL(pm_clk_add_notifier);