1 // SPDX-License-Identifier: GPL-2.0
3 * drivers/base/power/clock_ops.c - Generic clock manipulation PM callbacks
5 * Copyright (c) 2011 Rafael J. Wysocki <rjw@sisk.pl>, Renesas Electronics Corp.
8 #include <linux/kernel.h>
9 #include <linux/device.h>
12 #include <linux/pm_clock.h>
13 #include <linux/clk.h>
14 #include <linux/clkdev.h>
15 #include <linux/of_clk.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
;
68 if (clk_prepare(ce
->clk
)) {
69 ce
->status
= PCE_STATUS_ERROR
;
70 dev_err(dev
, "clk_prepare() failed\n");
72 ce
->status
= PCE_STATUS_ACQUIRED
;
74 "Clock %pC con_id %s managed by runtime PM.\n",
80 static int __pm_clk_add(struct device
*dev
, const char *con_id
,
83 struct pm_subsys_data
*psd
= dev_to_psd(dev
);
84 struct pm_clock_entry
*ce
;
89 ce
= kzalloc(sizeof(*ce
), GFP_KERNEL
);
94 ce
->con_id
= kstrdup(con_id
, GFP_KERNEL
);
107 pm_clk_acquire(dev
, ce
);
109 spin_lock_irq(&psd
->lock
);
110 list_add_tail(&ce
->node
, &psd
->clock_list
);
111 spin_unlock_irq(&psd
->lock
);
116 * pm_clk_add - Start using a device clock for power management.
117 * @dev: Device whose clock is going to be used for power management.
118 * @con_id: Connection ID of the clock.
120 * Add the clock represented by @con_id to the list of clocks used for
121 * the power management of @dev.
123 int pm_clk_add(struct device
*dev
, const char *con_id
)
125 return __pm_clk_add(dev
, con_id
, NULL
);
127 EXPORT_SYMBOL_GPL(pm_clk_add
);
130 * pm_clk_add_clk - Start using a device clock for power management.
131 * @dev: Device whose clock is going to be used for power management.
132 * @clk: Clock pointer
134 * Add the clock to the list of clocks used for the power management of @dev.
135 * The power-management code will take control of the clock reference, so
136 * callers should not call clk_put() on @clk after this function sucessfully
139 int pm_clk_add_clk(struct device
*dev
, struct clk
*clk
)
141 return __pm_clk_add(dev
, NULL
, clk
);
143 EXPORT_SYMBOL_GPL(pm_clk_add_clk
);
147 * of_pm_clk_add_clk - Start using a device clock for power management.
148 * @dev: Device whose clock is going to be used for power management.
149 * @name: Name of clock that is going to be used for power management.
151 * Add the clock described in the 'clocks' device-tree node that matches
152 * with the 'name' provided, to the list of clocks used for the power
153 * management of @dev. On success, returns 0. Returns a negative error
154 * code if the clock is not found or cannot be added.
156 int of_pm_clk_add_clk(struct device
*dev
, const char *name
)
161 if (!dev
|| !dev
->of_node
|| !name
)
164 clk
= of_clk_get_by_name(dev
->of_node
, name
);
168 ret
= pm_clk_add_clk(dev
, clk
);
176 EXPORT_SYMBOL_GPL(of_pm_clk_add_clk
);
179 * of_pm_clk_add_clks - Start using device clock(s) for power management.
180 * @dev: Device whose clock(s) is going to be used for power management.
182 * Add a series of clocks described in the 'clocks' device-tree node for
183 * a device to the list of clocks used for the power management of @dev.
184 * On success, returns the number of clocks added. Returns a negative
185 * error code if there are no clocks in the device node for the device
186 * or if adding a clock fails.
188 int of_pm_clk_add_clks(struct device
*dev
)
194 if (!dev
|| !dev
->of_node
)
197 count
= of_clk_get_parent_count(dev
->of_node
);
201 clks
= kcalloc(count
, sizeof(*clks
), GFP_KERNEL
);
205 for (i
= 0; i
< count
; i
++) {
206 clks
[i
] = of_clk_get(dev
->of_node
, i
);
207 if (IS_ERR(clks
[i
])) {
208 ret
= PTR_ERR(clks
[i
]);
212 ret
= pm_clk_add_clk(dev
, clks
[i
]);
225 pm_clk_remove_clk(dev
, clks
[i
]);
231 EXPORT_SYMBOL_GPL(of_pm_clk_add_clks
);
234 * __pm_clk_remove - Destroy PM clock entry.
235 * @ce: PM clock entry to destroy.
237 static void __pm_clk_remove(struct pm_clock_entry
*ce
)
242 if (ce
->status
< PCE_STATUS_ERROR
) {
243 if (ce
->status
== PCE_STATUS_ENABLED
)
244 clk_disable(ce
->clk
);
246 if (ce
->status
>= PCE_STATUS_ACQUIRED
) {
247 clk_unprepare(ce
->clk
);
257 * pm_clk_remove - Stop using a device clock for power management.
258 * @dev: Device whose clock should not be used for PM any more.
259 * @con_id: Connection ID of the clock.
261 * Remove the clock represented by @con_id from the list of clocks used for
262 * the power management of @dev.
264 void pm_clk_remove(struct device
*dev
, const char *con_id
)
266 struct pm_subsys_data
*psd
= dev_to_psd(dev
);
267 struct pm_clock_entry
*ce
;
272 spin_lock_irq(&psd
->lock
);
274 list_for_each_entry(ce
, &psd
->clock_list
, node
) {
275 if (!con_id
&& !ce
->con_id
)
277 else if (!con_id
|| !ce
->con_id
)
279 else if (!strcmp(con_id
, ce
->con_id
))
283 spin_unlock_irq(&psd
->lock
);
288 spin_unlock_irq(&psd
->lock
);
292 EXPORT_SYMBOL_GPL(pm_clk_remove
);
295 * pm_clk_remove_clk - Stop using a device clock for power management.
296 * @dev: Device whose clock should not be used for PM any more.
297 * @clk: Clock pointer
299 * Remove the clock pointed to by @clk from the list of clocks used for
300 * the power management of @dev.
302 void pm_clk_remove_clk(struct device
*dev
, struct clk
*clk
)
304 struct pm_subsys_data
*psd
= dev_to_psd(dev
);
305 struct pm_clock_entry
*ce
;
310 spin_lock_irq(&psd
->lock
);
312 list_for_each_entry(ce
, &psd
->clock_list
, node
) {
317 spin_unlock_irq(&psd
->lock
);
322 spin_unlock_irq(&psd
->lock
);
326 EXPORT_SYMBOL_GPL(pm_clk_remove_clk
);
329 * pm_clk_init - Initialize a device's list of power management clocks.
330 * @dev: Device to initialize the list of PM clocks for.
332 * Initialize the lock and clock_list members of the device's pm_subsys_data
335 void pm_clk_init(struct device
*dev
)
337 struct pm_subsys_data
*psd
= dev_to_psd(dev
);
339 INIT_LIST_HEAD(&psd
->clock_list
);
341 EXPORT_SYMBOL_GPL(pm_clk_init
);
344 * pm_clk_create - Create and initialize a device's list of PM clocks.
345 * @dev: Device to create and initialize the list of PM clocks for.
347 * Allocate a struct pm_subsys_data object, initialize its lock and clock_list
348 * members and make the @dev's power.subsys_data field point to it.
350 int pm_clk_create(struct device
*dev
)
352 return dev_pm_get_subsys_data(dev
);
354 EXPORT_SYMBOL_GPL(pm_clk_create
);
357 * pm_clk_destroy - Destroy a device's list of power management clocks.
358 * @dev: Device to destroy the list of PM clocks for.
360 * Clear the @dev's power.subsys_data field, remove the list of clock entries
361 * from the struct pm_subsys_data object pointed to by it before and free
364 void pm_clk_destroy(struct device
*dev
)
366 struct pm_subsys_data
*psd
= dev_to_psd(dev
);
367 struct pm_clock_entry
*ce
, *c
;
368 struct list_head list
;
373 INIT_LIST_HEAD(&list
);
375 spin_lock_irq(&psd
->lock
);
377 list_for_each_entry_safe_reverse(ce
, c
, &psd
->clock_list
, node
)
378 list_move(&ce
->node
, &list
);
380 spin_unlock_irq(&psd
->lock
);
382 dev_pm_put_subsys_data(dev
);
384 list_for_each_entry_safe_reverse(ce
, c
, &list
, node
) {
389 EXPORT_SYMBOL_GPL(pm_clk_destroy
);
392 * pm_clk_suspend - Disable clocks in a device's PM clock list.
393 * @dev: Device to disable the clocks for.
395 int pm_clk_suspend(struct device
*dev
)
397 struct pm_subsys_data
*psd
= dev_to_psd(dev
);
398 struct pm_clock_entry
*ce
;
401 dev_dbg(dev
, "%s()\n", __func__
);
406 spin_lock_irqsave(&psd
->lock
, flags
);
408 list_for_each_entry_reverse(ce
, &psd
->clock_list
, node
) {
409 if (ce
->status
< PCE_STATUS_ERROR
) {
410 if (ce
->status
== PCE_STATUS_ENABLED
)
411 clk_disable(ce
->clk
);
412 ce
->status
= PCE_STATUS_ACQUIRED
;
416 spin_unlock_irqrestore(&psd
->lock
, flags
);
420 EXPORT_SYMBOL_GPL(pm_clk_suspend
);
423 * pm_clk_resume - Enable clocks in a device's PM clock list.
424 * @dev: Device to enable the clocks for.
426 int pm_clk_resume(struct device
*dev
)
428 struct pm_subsys_data
*psd
= dev_to_psd(dev
);
429 struct pm_clock_entry
*ce
;
432 dev_dbg(dev
, "%s()\n", __func__
);
437 spin_lock_irqsave(&psd
->lock
, flags
);
439 list_for_each_entry(ce
, &psd
->clock_list
, node
)
440 __pm_clk_enable(dev
, ce
);
442 spin_unlock_irqrestore(&psd
->lock
, flags
);
446 EXPORT_SYMBOL_GPL(pm_clk_resume
);
449 * pm_clk_notify - Notify routine for device addition and removal.
450 * @nb: Notifier block object this function is a member of.
451 * @action: Operation being carried out by the caller.
452 * @data: Device the routine is being run for.
454 * For this function to work, @nb must be a member of an object of type
455 * struct pm_clk_notifier_block containing all of the requisite data.
456 * Specifically, the pm_domain member of that object is copied to the device's
457 * pm_domain field and its con_ids member is used to populate the device's list
458 * of PM clocks, depending on @action.
460 * If the device's pm_domain field is already populated with a value different
461 * from the one stored in the struct pm_clk_notifier_block object, the function
464 static int pm_clk_notify(struct notifier_block
*nb
,
465 unsigned long action
, void *data
)
467 struct pm_clk_notifier_block
*clknb
;
468 struct device
*dev
= data
;
472 dev_dbg(dev
, "%s() %ld\n", __func__
, action
);
474 clknb
= container_of(nb
, struct pm_clk_notifier_block
, nb
);
477 case BUS_NOTIFY_ADD_DEVICE
:
481 error
= pm_clk_create(dev
);
485 dev_pm_domain_set(dev
, clknb
->pm_domain
);
486 if (clknb
->con_ids
[0]) {
487 for (con_id
= clknb
->con_ids
; *con_id
; con_id
++)
488 pm_clk_add(dev
, *con_id
);
490 pm_clk_add(dev
, NULL
);
494 case BUS_NOTIFY_DEL_DEVICE
:
495 if (dev
->pm_domain
!= clknb
->pm_domain
)
498 dev_pm_domain_set(dev
, NULL
);
506 int pm_clk_runtime_suspend(struct device
*dev
)
510 dev_dbg(dev
, "%s\n", __func__
);
512 ret
= pm_generic_runtime_suspend(dev
);
514 dev_err(dev
, "failed to suspend device\n");
518 ret
= pm_clk_suspend(dev
);
520 dev_err(dev
, "failed to suspend clock\n");
521 pm_generic_runtime_resume(dev
);
527 EXPORT_SYMBOL_GPL(pm_clk_runtime_suspend
);
529 int pm_clk_runtime_resume(struct device
*dev
)
533 dev_dbg(dev
, "%s\n", __func__
);
535 ret
= pm_clk_resume(dev
);
537 dev_err(dev
, "failed to resume clock\n");
541 return pm_generic_runtime_resume(dev
);
543 EXPORT_SYMBOL_GPL(pm_clk_runtime_resume
);
545 #else /* !CONFIG_PM_CLK */
548 * enable_clock - Enable a device clock.
549 * @dev: Device whose clock is to be enabled.
550 * @con_id: Connection ID of the clock.
552 static void enable_clock(struct device
*dev
, const char *con_id
)
556 clk
= clk_get(dev
, con_id
);
558 clk_prepare_enable(clk
);
560 dev_info(dev
, "Runtime PM disabled, clock forced on.\n");
565 * disable_clock - Disable a device clock.
566 * @dev: Device whose clock is to be disabled.
567 * @con_id: Connection ID of the clock.
569 static void disable_clock(struct device
*dev
, const char *con_id
)
573 clk
= clk_get(dev
, con_id
);
575 clk_disable_unprepare(clk
);
577 dev_info(dev
, "Runtime PM disabled, clock forced off.\n");
582 * pm_clk_notify - Notify routine for device addition and removal.
583 * @nb: Notifier block object this function is a member of.
584 * @action: Operation being carried out by the caller.
585 * @data: Device the routine is being run for.
587 * For this function to work, @nb must be a member of an object of type
588 * struct pm_clk_notifier_block containing all of the requisite data.
589 * Specifically, the con_ids member of that object is used to enable or disable
590 * the device's clocks, depending on @action.
592 static int pm_clk_notify(struct notifier_block
*nb
,
593 unsigned long action
, void *data
)
595 struct pm_clk_notifier_block
*clknb
;
596 struct device
*dev
= data
;
599 dev_dbg(dev
, "%s() %ld\n", __func__
, action
);
601 clknb
= container_of(nb
, struct pm_clk_notifier_block
, nb
);
604 case BUS_NOTIFY_BIND_DRIVER
:
605 if (clknb
->con_ids
[0]) {
606 for (con_id
= clknb
->con_ids
; *con_id
; con_id
++)
607 enable_clock(dev
, *con_id
);
609 enable_clock(dev
, NULL
);
612 case BUS_NOTIFY_DRIVER_NOT_BOUND
:
613 case BUS_NOTIFY_UNBOUND_DRIVER
:
614 if (clknb
->con_ids
[0]) {
615 for (con_id
= clknb
->con_ids
; *con_id
; con_id
++)
616 disable_clock(dev
, *con_id
);
618 disable_clock(dev
, NULL
);
626 #endif /* !CONFIG_PM_CLK */
629 * pm_clk_add_notifier - Add bus type notifier for power management clocks.
630 * @bus: Bus type to add the notifier to.
631 * @clknb: Notifier to be added to the given bus type.
633 * The nb member of @clknb is not expected to be initialized and its
634 * notifier_call member will be replaced with pm_clk_notify(). However,
635 * the remaining members of @clknb should be populated prior to calling this
638 void pm_clk_add_notifier(struct bus_type
*bus
,
639 struct pm_clk_notifier_block
*clknb
)
644 clknb
->nb
.notifier_call
= pm_clk_notify
;
645 bus_register_notifier(bus
, &clknb
->nb
);
647 EXPORT_SYMBOL_GPL(pm_clk_add_notifier
);