Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * drivers/base/power/clock_ops.c - Generic clock manipulation PM callbacks
4 *
5 * Copyright (c) 2011 Rafael J. Wysocki <rjw@sisk.pl>, Renesas Electronics Corp.
6 */
7
8#include <linux/kernel.h>
9#include <linux/device.h>
10#include <linux/io.h>
11#include <linux/pm.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>
20
21#ifdef CONFIG_PM_CLK
22
23enum pce_status {
24 PCE_STATUS_NONE = 0,
25 PCE_STATUS_ACQUIRED,
26 PCE_STATUS_ENABLED,
27 PCE_STATUS_ERROR,
28};
29
30struct pm_clock_entry {
31 struct list_head node;
32 char *con_id;
33 struct clk *clk;
34 enum pce_status status;
35};
36
37/**
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.
41 */
42static inline void __pm_clk_enable(struct device *dev, struct pm_clock_entry *ce)
43{
44 int ret;
45
46 if (ce->status < PCE_STATUS_ERROR) {
47 ret = clk_enable(ce->clk);
48 if (!ret)
49 ce->status = PCE_STATUS_ENABLED;
50 else
51 dev_err(dev, "%s: failed to enable clk %p, error %d\n",
52 __func__, ce->clk, ret);
53 }
54}
55
56/**
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.
60 */
61static void pm_clk_acquire(struct device *dev, struct pm_clock_entry *ce)
62{
63 if (!ce->clk)
64 ce->clk = clk_get(dev, ce->con_id);
65 if (IS_ERR(ce->clk)) {
66 ce->status = PCE_STATUS_ERROR;
67 } else {
68 if (clk_prepare(ce->clk)) {
69 ce->status = PCE_STATUS_ERROR;
70 dev_err(dev, "clk_prepare() failed\n");
71 } else {
72 ce->status = PCE_STATUS_ACQUIRED;
73 dev_dbg(dev,
74 "Clock %pC con_id %s managed by runtime PM.\n",
75 ce->clk, ce->con_id);
76 }
77 }
78}
79
80static int __pm_clk_add(struct device *dev, const char *con_id,
81 struct clk *clk)
82{
83 struct pm_subsys_data *psd = dev_to_psd(dev);
84 struct pm_clock_entry *ce;
85
86 if (!psd)
87 return -EINVAL;
88
89 ce = kzalloc(sizeof(*ce), GFP_KERNEL);
90 if (!ce)
91 return -ENOMEM;
92
93 if (con_id) {
94 ce->con_id = kstrdup(con_id, GFP_KERNEL);
95 if (!ce->con_id) {
96 kfree(ce);
97 return -ENOMEM;
98 }
99 } else {
100 if (IS_ERR(clk)) {
101 kfree(ce);
102 return -ENOENT;
103 }
104 ce->clk = clk;
105 }
106
107 pm_clk_acquire(dev, ce);
108
109 spin_lock_irq(&psd->lock);
110 list_add_tail(&ce->node, &psd->clock_list);
111 spin_unlock_irq(&psd->lock);
112 return 0;
113}
114
115/**
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.
119 *
120 * Add the clock represented by @con_id to the list of clocks used for
121 * the power management of @dev.
122 */
123int pm_clk_add(struct device *dev, const char *con_id)
124{
125 return __pm_clk_add(dev, con_id, NULL);
126}
127EXPORT_SYMBOL_GPL(pm_clk_add);
128
129/**
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
133 *
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
137 * returned.
138 */
139int pm_clk_add_clk(struct device *dev, struct clk *clk)
140{
141 return __pm_clk_add(dev, NULL, clk);
142}
143EXPORT_SYMBOL_GPL(pm_clk_add_clk);
144
145
146/**
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.
150 *
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.
155 */
156int of_pm_clk_add_clk(struct device *dev, const char *name)
157{
158 struct clk *clk;
159 int ret;
160
161 if (!dev || !dev->of_node || !name)
162 return -EINVAL;
163
164 clk = of_clk_get_by_name(dev->of_node, name);
165 if (IS_ERR(clk))
166 return PTR_ERR(clk);
167
168 ret = pm_clk_add_clk(dev, clk);
169 if (ret) {
170 clk_put(clk);
171 return ret;
172 }
173
174 return 0;
175}
176EXPORT_SYMBOL_GPL(of_pm_clk_add_clk);
177
178/**
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.
181 *
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.
187 */
188int of_pm_clk_add_clks(struct device *dev)
189{
190 struct clk **clks;
191 int i, count;
192 int ret;
193
194 if (!dev || !dev->of_node)
195 return -EINVAL;
196
197 count = of_clk_get_parent_count(dev->of_node);
198 if (count <= 0)
199 return -ENODEV;
200
201 clks = kcalloc(count, sizeof(*clks), GFP_KERNEL);
202 if (!clks)
203 return -ENOMEM;
204
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]);
209 goto error;
210 }
211
212 ret = pm_clk_add_clk(dev, clks[i]);
213 if (ret) {
214 clk_put(clks[i]);
215 goto error;
216 }
217 }
218
219 kfree(clks);
220
221 return i;
222
223error:
224 while (i--)
225 pm_clk_remove_clk(dev, clks[i]);
226
227 kfree(clks);
228
229 return ret;
230}
231EXPORT_SYMBOL_GPL(of_pm_clk_add_clks);
232
233/**
234 * __pm_clk_remove - Destroy PM clock entry.
235 * @ce: PM clock entry to destroy.
236 */
237static void __pm_clk_remove(struct pm_clock_entry *ce)
238{
239 if (!ce)
240 return;
241
242 if (ce->status < PCE_STATUS_ERROR) {
243 if (ce->status == PCE_STATUS_ENABLED)
244 clk_disable(ce->clk);
245
246 if (ce->status >= PCE_STATUS_ACQUIRED) {
247 clk_unprepare(ce->clk);
248 clk_put(ce->clk);
249 }
250 }
251
252 kfree(ce->con_id);
253 kfree(ce);
254}
255
256/**
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.
260 *
261 * Remove the clock represented by @con_id from the list of clocks used for
262 * the power management of @dev.
263 */
264void pm_clk_remove(struct device *dev, const char *con_id)
265{
266 struct pm_subsys_data *psd = dev_to_psd(dev);
267 struct pm_clock_entry *ce;
268
269 if (!psd)
270 return;
271
272 spin_lock_irq(&psd->lock);
273
274 list_for_each_entry(ce, &psd->clock_list, node) {
275 if (!con_id && !ce->con_id)
276 goto remove;
277 else if (!con_id || !ce->con_id)
278 continue;
279 else if (!strcmp(con_id, ce->con_id))
280 goto remove;
281 }
282
283 spin_unlock_irq(&psd->lock);
284 return;
285
286 remove:
287 list_del(&ce->node);
288 spin_unlock_irq(&psd->lock);
289
290 __pm_clk_remove(ce);
291}
292EXPORT_SYMBOL_GPL(pm_clk_remove);
293
294/**
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
298 *
299 * Remove the clock pointed to by @clk from the list of clocks used for
300 * the power management of @dev.
301 */
302void pm_clk_remove_clk(struct device *dev, struct clk *clk)
303{
304 struct pm_subsys_data *psd = dev_to_psd(dev);
305 struct pm_clock_entry *ce;
306
307 if (!psd || !clk)
308 return;
309
310 spin_lock_irq(&psd->lock);
311
312 list_for_each_entry(ce, &psd->clock_list, node) {
313 if (clk == ce->clk)
314 goto remove;
315 }
316
317 spin_unlock_irq(&psd->lock);
318 return;
319
320 remove:
321 list_del(&ce->node);
322 spin_unlock_irq(&psd->lock);
323
324 __pm_clk_remove(ce);
325}
326EXPORT_SYMBOL_GPL(pm_clk_remove_clk);
327
328/**
329 * pm_clk_init - Initialize a device's list of power management clocks.
330 * @dev: Device to initialize the list of PM clocks for.
331 *
332 * Initialize the lock and clock_list members of the device's pm_subsys_data
333 * object.
334 */
335void pm_clk_init(struct device *dev)
336{
337 struct pm_subsys_data *psd = dev_to_psd(dev);
338 if (psd)
339 INIT_LIST_HEAD(&psd->clock_list);
340}
341EXPORT_SYMBOL_GPL(pm_clk_init);
342
343/**
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.
346 *
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.
349 */
350int pm_clk_create(struct device *dev)
351{
352 return dev_pm_get_subsys_data(dev);
353}
354EXPORT_SYMBOL_GPL(pm_clk_create);
355
356/**
357 * pm_clk_destroy - Destroy a device's list of power management clocks.
358 * @dev: Device to destroy the list of PM clocks for.
359 *
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
362 * that object.
363 */
364void pm_clk_destroy(struct device *dev)
365{
366 struct pm_subsys_data *psd = dev_to_psd(dev);
367 struct pm_clock_entry *ce, *c;
368 struct list_head list;
369
370 if (!psd)
371 return;
372
373 INIT_LIST_HEAD(&list);
374
375 spin_lock_irq(&psd->lock);
376
377 list_for_each_entry_safe_reverse(ce, c, &psd->clock_list, node)
378 list_move(&ce->node, &list);
379
380 spin_unlock_irq(&psd->lock);
381
382 dev_pm_put_subsys_data(dev);
383
384 list_for_each_entry_safe_reverse(ce, c, &list, node) {
385 list_del(&ce->node);
386 __pm_clk_remove(ce);
387 }
388}
389EXPORT_SYMBOL_GPL(pm_clk_destroy);
390
391/**
392 * pm_clk_suspend - Disable clocks in a device's PM clock list.
393 * @dev: Device to disable the clocks for.
394 */
395int pm_clk_suspend(struct device *dev)
396{
397 struct pm_subsys_data *psd = dev_to_psd(dev);
398 struct pm_clock_entry *ce;
399 unsigned long flags;
400
401 dev_dbg(dev, "%s()\n", __func__);
402
403 if (!psd)
404 return 0;
405
406 spin_lock_irqsave(&psd->lock, flags);
407
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;
413 }
414 }
415
416 spin_unlock_irqrestore(&psd->lock, flags);
417
418 return 0;
419}
420EXPORT_SYMBOL_GPL(pm_clk_suspend);
421
422/**
423 * pm_clk_resume - Enable clocks in a device's PM clock list.
424 * @dev: Device to enable the clocks for.
425 */
426int pm_clk_resume(struct device *dev)
427{
428 struct pm_subsys_data *psd = dev_to_psd(dev);
429 struct pm_clock_entry *ce;
430 unsigned long flags;
431
432 dev_dbg(dev, "%s()\n", __func__);
433
434 if (!psd)
435 return 0;
436
437 spin_lock_irqsave(&psd->lock, flags);
438
439 list_for_each_entry(ce, &psd->clock_list, node)
440 __pm_clk_enable(dev, ce);
441
442 spin_unlock_irqrestore(&psd->lock, flags);
443
444 return 0;
445}
446EXPORT_SYMBOL_GPL(pm_clk_resume);
447
448/**
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.
453 *
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.
459 *
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
462 * does nothing.
463 */
464static int pm_clk_notify(struct notifier_block *nb,
465 unsigned long action, void *data)
466{
467 struct pm_clk_notifier_block *clknb;
468 struct device *dev = data;
469 char **con_id;
470 int error;
471
472 dev_dbg(dev, "%s() %ld\n", __func__, action);
473
474 clknb = container_of(nb, struct pm_clk_notifier_block, nb);
475
476 switch (action) {
477 case BUS_NOTIFY_ADD_DEVICE:
478 if (dev->pm_domain)
479 break;
480
481 error = pm_clk_create(dev);
482 if (error)
483 break;
484
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);
489 } else {
490 pm_clk_add(dev, NULL);
491 }
492
493 break;
494 case BUS_NOTIFY_DEL_DEVICE:
495 if (dev->pm_domain != clknb->pm_domain)
496 break;
497
498 dev_pm_domain_set(dev, NULL);
499 pm_clk_destroy(dev);
500 break;
501 }
502
503 return 0;
504}
505
506int pm_clk_runtime_suspend(struct device *dev)
507{
508 int ret;
509
510 dev_dbg(dev, "%s\n", __func__);
511
512 ret = pm_generic_runtime_suspend(dev);
513 if (ret) {
514 dev_err(dev, "failed to suspend device\n");
515 return ret;
516 }
517
518 ret = pm_clk_suspend(dev);
519 if (ret) {
520 dev_err(dev, "failed to suspend clock\n");
521 pm_generic_runtime_resume(dev);
522 return ret;
523 }
524
525 return 0;
526}
527EXPORT_SYMBOL_GPL(pm_clk_runtime_suspend);
528
529int pm_clk_runtime_resume(struct device *dev)
530{
531 int ret;
532
533 dev_dbg(dev, "%s\n", __func__);
534
535 ret = pm_clk_resume(dev);
536 if (ret) {
537 dev_err(dev, "failed to resume clock\n");
538 return ret;
539 }
540
541 return pm_generic_runtime_resume(dev);
542}
543EXPORT_SYMBOL_GPL(pm_clk_runtime_resume);
544
545#else /* !CONFIG_PM_CLK */
546
547/**
548 * enable_clock - Enable a device clock.
549 * @dev: Device whose clock is to be enabled.
550 * @con_id: Connection ID of the clock.
551 */
552static void enable_clock(struct device *dev, const char *con_id)
553{
554 struct clk *clk;
555
556 clk = clk_get(dev, con_id);
557 if (!IS_ERR(clk)) {
558 clk_prepare_enable(clk);
559 clk_put(clk);
560 dev_info(dev, "Runtime PM disabled, clock forced on.\n");
561 }
562}
563
564/**
565 * disable_clock - Disable a device clock.
566 * @dev: Device whose clock is to be disabled.
567 * @con_id: Connection ID of the clock.
568 */
569static void disable_clock(struct device *dev, const char *con_id)
570{
571 struct clk *clk;
572
573 clk = clk_get(dev, con_id);
574 if (!IS_ERR(clk)) {
575 clk_disable_unprepare(clk);
576 clk_put(clk);
577 dev_info(dev, "Runtime PM disabled, clock forced off.\n");
578 }
579}
580
581/**
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.
586 *
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.
591 */
592static int pm_clk_notify(struct notifier_block *nb,
593 unsigned long action, void *data)
594{
595 struct pm_clk_notifier_block *clknb;
596 struct device *dev = data;
597 char **con_id;
598
599 dev_dbg(dev, "%s() %ld\n", __func__, action);
600
601 clknb = container_of(nb, struct pm_clk_notifier_block, nb);
602
603 switch (action) {
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);
608 } else {
609 enable_clock(dev, NULL);
610 }
611 break;
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);
617 } else {
618 disable_clock(dev, NULL);
619 }
620 break;
621 }
622
623 return 0;
624}
625
626#endif /* !CONFIG_PM_CLK */
627
628/**
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.
632 *
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
636 * routine.
637 */
638void pm_clk_add_notifier(struct bus_type *bus,
639 struct pm_clk_notifier_block *clknb)
640{
641 if (!bus || !clknb)
642 return;
643
644 clknb->nb.notifier_call = pm_clk_notify;
645 bus_register_notifier(bus, &clknb->nb);
646}
647EXPORT_SYMBOL_GPL(pm_clk_add_notifier);
1/*
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/device.h>
12#include <linux/io.h>
13#include <linux/pm.h>
14#include <linux/pm_clock.h>
15#include <linux/clk.h>
16#include <linux/slab.h>
17#include <linux/err.h>
18
19#ifdef CONFIG_PM
20
21enum pce_status {
22 PCE_STATUS_NONE = 0,
23 PCE_STATUS_ACQUIRED,
24 PCE_STATUS_ENABLED,
25 PCE_STATUS_ERROR,
26};
27
28struct pm_clock_entry {
29 struct list_head node;
30 char *con_id;
31 struct clk *clk;
32 enum pce_status status;
33};
34
35/**
36 * pm_clk_acquire - Acquire a device clock.
37 * @dev: Device whose clock is to be acquired.
38 * @ce: PM clock entry corresponding to the clock.
39 */
40static void pm_clk_acquire(struct device *dev, struct pm_clock_entry *ce)
41{
42 ce->clk = clk_get(dev, ce->con_id);
43 if (IS_ERR(ce->clk)) {
44 ce->status = PCE_STATUS_ERROR;
45 } else {
46 ce->status = PCE_STATUS_ACQUIRED;
47 dev_dbg(dev, "Clock %s managed by runtime PM.\n", ce->con_id);
48 }
49}
50
51/**
52 * pm_clk_add - Start using a device clock for power management.
53 * @dev: Device whose clock is going to be used for power management.
54 * @con_id: Connection ID of the clock.
55 *
56 * Add the clock represented by @con_id to the list of clocks used for
57 * the power management of @dev.
58 */
59int pm_clk_add(struct device *dev, const char *con_id)
60{
61 struct pm_subsys_data *psd = dev_to_psd(dev);
62 struct pm_clock_entry *ce;
63
64 if (!psd)
65 return -EINVAL;
66
67 ce = kzalloc(sizeof(*ce), GFP_KERNEL);
68 if (!ce) {
69 dev_err(dev, "Not enough memory for clock entry.\n");
70 return -ENOMEM;
71 }
72
73 if (con_id) {
74 ce->con_id = kstrdup(con_id, GFP_KERNEL);
75 if (!ce->con_id) {
76 dev_err(dev,
77 "Not enough memory for clock connection ID.\n");
78 kfree(ce);
79 return -ENOMEM;
80 }
81 }
82
83 pm_clk_acquire(dev, ce);
84
85 spin_lock_irq(&psd->lock);
86 list_add_tail(&ce->node, &psd->clock_list);
87 spin_unlock_irq(&psd->lock);
88 return 0;
89}
90
91/**
92 * __pm_clk_remove - Destroy PM clock entry.
93 * @ce: PM clock entry to destroy.
94 */
95static void __pm_clk_remove(struct pm_clock_entry *ce)
96{
97 if (!ce)
98 return;
99
100 if (ce->status < PCE_STATUS_ERROR) {
101 if (ce->status == PCE_STATUS_ENABLED)
102 clk_disable(ce->clk);
103
104 if (ce->status >= PCE_STATUS_ACQUIRED)
105 clk_put(ce->clk);
106 }
107
108 kfree(ce->con_id);
109 kfree(ce);
110}
111
112/**
113 * pm_clk_remove - Stop using a device clock for power management.
114 * @dev: Device whose clock should not be used for PM any more.
115 * @con_id: Connection ID of the clock.
116 *
117 * Remove the clock represented by @con_id from the list of clocks used for
118 * the power management of @dev.
119 */
120void pm_clk_remove(struct device *dev, const char *con_id)
121{
122 struct pm_subsys_data *psd = dev_to_psd(dev);
123 struct pm_clock_entry *ce;
124
125 if (!psd)
126 return;
127
128 spin_lock_irq(&psd->lock);
129
130 list_for_each_entry(ce, &psd->clock_list, node) {
131 if (!con_id && !ce->con_id)
132 goto remove;
133 else if (!con_id || !ce->con_id)
134 continue;
135 else if (!strcmp(con_id, ce->con_id))
136 goto remove;
137 }
138
139 spin_unlock_irq(&psd->lock);
140 return;
141
142 remove:
143 list_del(&ce->node);
144 spin_unlock_irq(&psd->lock);
145
146 __pm_clk_remove(ce);
147}
148
149/**
150 * pm_clk_init - Initialize a device's list of power management clocks.
151 * @dev: Device to initialize the list of PM clocks for.
152 *
153 * Initialize the lock and clock_list members of the device's pm_subsys_data
154 * object.
155 */
156void pm_clk_init(struct device *dev)
157{
158 struct pm_subsys_data *psd = dev_to_psd(dev);
159 if (psd)
160 INIT_LIST_HEAD(&psd->clock_list);
161}
162
163/**
164 * pm_clk_create - Create and initialize a device's list of PM clocks.
165 * @dev: Device to create and initialize the list of PM clocks for.
166 *
167 * Allocate a struct pm_subsys_data object, initialize its lock and clock_list
168 * members and make the @dev's power.subsys_data field point to it.
169 */
170int pm_clk_create(struct device *dev)
171{
172 int ret = dev_pm_get_subsys_data(dev);
173 return ret < 0 ? ret : 0;
174}
175
176/**
177 * pm_clk_destroy - Destroy a device's list of power management clocks.
178 * @dev: Device to destroy the list of PM clocks for.
179 *
180 * Clear the @dev's power.subsys_data field, remove the list of clock entries
181 * from the struct pm_subsys_data object pointed to by it before and free
182 * that object.
183 */
184void pm_clk_destroy(struct device *dev)
185{
186 struct pm_subsys_data *psd = dev_to_psd(dev);
187 struct pm_clock_entry *ce, *c;
188 struct list_head list;
189
190 if (!psd)
191 return;
192
193 INIT_LIST_HEAD(&list);
194
195 spin_lock_irq(&psd->lock);
196
197 list_for_each_entry_safe_reverse(ce, c, &psd->clock_list, node)
198 list_move(&ce->node, &list);
199
200 spin_unlock_irq(&psd->lock);
201
202 dev_pm_put_subsys_data(dev);
203
204 list_for_each_entry_safe_reverse(ce, c, &list, node) {
205 list_del(&ce->node);
206 __pm_clk_remove(ce);
207 }
208}
209
210#endif /* CONFIG_PM */
211
212#ifdef CONFIG_PM_RUNTIME
213
214/**
215 * pm_clk_suspend - Disable clocks in a device's PM clock list.
216 * @dev: Device to disable the clocks for.
217 */
218int pm_clk_suspend(struct device *dev)
219{
220 struct pm_subsys_data *psd = dev_to_psd(dev);
221 struct pm_clock_entry *ce;
222 unsigned long flags;
223
224 dev_dbg(dev, "%s()\n", __func__);
225
226 if (!psd)
227 return 0;
228
229 spin_lock_irqsave(&psd->lock, flags);
230
231 list_for_each_entry_reverse(ce, &psd->clock_list, node) {
232 if (ce->status < PCE_STATUS_ERROR) {
233 if (ce->status == PCE_STATUS_ENABLED)
234 clk_disable(ce->clk);
235 ce->status = PCE_STATUS_ACQUIRED;
236 }
237 }
238
239 spin_unlock_irqrestore(&psd->lock, flags);
240
241 return 0;
242}
243
244/**
245 * pm_clk_resume - Enable clocks in a device's PM clock list.
246 * @dev: Device to enable the clocks for.
247 */
248int pm_clk_resume(struct device *dev)
249{
250 struct pm_subsys_data *psd = dev_to_psd(dev);
251 struct pm_clock_entry *ce;
252 unsigned long flags;
253
254 dev_dbg(dev, "%s()\n", __func__);
255
256 if (!psd)
257 return 0;
258
259 spin_lock_irqsave(&psd->lock, flags);
260
261 list_for_each_entry(ce, &psd->clock_list, node) {
262 if (ce->status < PCE_STATUS_ERROR) {
263 clk_enable(ce->clk);
264 ce->status = PCE_STATUS_ENABLED;
265 }
266 }
267
268 spin_unlock_irqrestore(&psd->lock, flags);
269
270 return 0;
271}
272
273/**
274 * pm_clk_notify - Notify routine for device addition and removal.
275 * @nb: Notifier block object this function is a member of.
276 * @action: Operation being carried out by the caller.
277 * @data: Device the routine is being run for.
278 *
279 * For this function to work, @nb must be a member of an object of type
280 * struct pm_clk_notifier_block containing all of the requisite data.
281 * Specifically, the pm_domain member of that object is copied to the device's
282 * pm_domain field and its con_ids member is used to populate the device's list
283 * of PM clocks, depending on @action.
284 *
285 * If the device's pm_domain field is already populated with a value different
286 * from the one stored in the struct pm_clk_notifier_block object, the function
287 * does nothing.
288 */
289static int pm_clk_notify(struct notifier_block *nb,
290 unsigned long action, void *data)
291{
292 struct pm_clk_notifier_block *clknb;
293 struct device *dev = data;
294 char **con_id;
295 int error;
296
297 dev_dbg(dev, "%s() %ld\n", __func__, action);
298
299 clknb = container_of(nb, struct pm_clk_notifier_block, nb);
300
301 switch (action) {
302 case BUS_NOTIFY_ADD_DEVICE:
303 if (dev->pm_domain)
304 break;
305
306 error = pm_clk_create(dev);
307 if (error)
308 break;
309
310 dev->pm_domain = clknb->pm_domain;
311 if (clknb->con_ids[0]) {
312 for (con_id = clknb->con_ids; *con_id; con_id++)
313 pm_clk_add(dev, *con_id);
314 } else {
315 pm_clk_add(dev, NULL);
316 }
317
318 break;
319 case BUS_NOTIFY_DEL_DEVICE:
320 if (dev->pm_domain != clknb->pm_domain)
321 break;
322
323 dev->pm_domain = NULL;
324 pm_clk_destroy(dev);
325 break;
326 }
327
328 return 0;
329}
330
331#else /* !CONFIG_PM_RUNTIME */
332
333#ifdef CONFIG_PM
334
335/**
336 * pm_clk_suspend - Disable clocks in a device's PM clock list.
337 * @dev: Device to disable the clocks for.
338 */
339int pm_clk_suspend(struct device *dev)
340{
341 struct pm_subsys_data *psd = dev_to_psd(dev);
342 struct pm_clock_entry *ce;
343 unsigned long flags;
344
345 dev_dbg(dev, "%s()\n", __func__);
346
347 /* If there is no driver, the clocks are already disabled. */
348 if (!psd || !dev->driver)
349 return 0;
350
351 spin_lock_irqsave(&psd->lock, flags);
352
353 list_for_each_entry_reverse(ce, &psd->clock_list, node)
354 clk_disable(ce->clk);
355
356 spin_unlock_irqrestore(&psd->lock, flags);
357
358 return 0;
359}
360
361/**
362 * pm_clk_resume - Enable clocks in a device's PM clock list.
363 * @dev: Device to enable the clocks for.
364 */
365int pm_clk_resume(struct device *dev)
366{
367 struct pm_subsys_data *psd = dev_to_psd(dev);
368 struct pm_clock_entry *ce;
369 unsigned long flags;
370
371 dev_dbg(dev, "%s()\n", __func__);
372
373 /* If there is no driver, the clocks should remain disabled. */
374 if (!psd || !dev->driver)
375 return 0;
376
377 spin_lock_irqsave(&psd->lock, flags);
378
379 list_for_each_entry(ce, &psd->clock_list, node)
380 clk_enable(ce->clk);
381
382 spin_unlock_irqrestore(&psd->lock, flags);
383
384 return 0;
385}
386
387#endif /* CONFIG_PM */
388
389/**
390 * enable_clock - Enable a device clock.
391 * @dev: Device whose clock is to be enabled.
392 * @con_id: Connection ID of the clock.
393 */
394static void enable_clock(struct device *dev, const char *con_id)
395{
396 struct clk *clk;
397
398 clk = clk_get(dev, con_id);
399 if (!IS_ERR(clk)) {
400 clk_enable(clk);
401 clk_put(clk);
402 dev_info(dev, "Runtime PM disabled, clock forced on.\n");
403 }
404}
405
406/**
407 * disable_clock - Disable a device clock.
408 * @dev: Device whose clock is to be disabled.
409 * @con_id: Connection ID of the clock.
410 */
411static void disable_clock(struct device *dev, const char *con_id)
412{
413 struct clk *clk;
414
415 clk = clk_get(dev, con_id);
416 if (!IS_ERR(clk)) {
417 clk_disable(clk);
418 clk_put(clk);
419 dev_info(dev, "Runtime PM disabled, clock forced off.\n");
420 }
421}
422
423/**
424 * pm_clk_notify - Notify routine for device addition and removal.
425 * @nb: Notifier block object this function is a member of.
426 * @action: Operation being carried out by the caller.
427 * @data: Device the routine is being run for.
428 *
429 * For this function to work, @nb must be a member of an object of type
430 * struct pm_clk_notifier_block containing all of the requisite data.
431 * Specifically, the con_ids member of that object is used to enable or disable
432 * the device's clocks, depending on @action.
433 */
434static int pm_clk_notify(struct notifier_block *nb,
435 unsigned long action, void *data)
436{
437 struct pm_clk_notifier_block *clknb;
438 struct device *dev = data;
439 char **con_id;
440
441 dev_dbg(dev, "%s() %ld\n", __func__, action);
442
443 clknb = container_of(nb, struct pm_clk_notifier_block, nb);
444
445 switch (action) {
446 case BUS_NOTIFY_BIND_DRIVER:
447 if (clknb->con_ids[0]) {
448 for (con_id = clknb->con_ids; *con_id; con_id++)
449 enable_clock(dev, *con_id);
450 } else {
451 enable_clock(dev, NULL);
452 }
453 break;
454 case BUS_NOTIFY_UNBOUND_DRIVER:
455 if (clknb->con_ids[0]) {
456 for (con_id = clknb->con_ids; *con_id; con_id++)
457 disable_clock(dev, *con_id);
458 } else {
459 disable_clock(dev, NULL);
460 }
461 break;
462 }
463
464 return 0;
465}
466
467#endif /* !CONFIG_PM_RUNTIME */
468
469/**
470 * pm_clk_add_notifier - Add bus type notifier for power management clocks.
471 * @bus: Bus type to add the notifier to.
472 * @clknb: Notifier to be added to the given bus type.
473 *
474 * The nb member of @clknb is not expected to be initialized and its
475 * notifier_call member will be replaced with pm_clk_notify(). However,
476 * the remaining members of @clknb should be populated prior to calling this
477 * routine.
478 */
479void pm_clk_add_notifier(struct bus_type *bus,
480 struct pm_clk_notifier_block *clknb)
481{
482 if (!bus || !clknb)
483 return;
484
485 clknb->nb.notifier_call = pm_clk_notify;
486 bus_register_notifier(bus, &clknb->nb);
487}