2 * omap_device implementation
4 * Copyright (C) 2009-2010 Nokia Corporation
5 * Paul Walmsley, Kevin Hilman
7 * Developed in collaboration with (alphabetical order): Benoit
8 * Cousson, Thara Gopinath, Tony Lindgren, Rajendra Nayak, Vikram
9 * Pandita, Sakari Poussa, Anand Sawant, Santosh Shilimkar, Richard
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
16 * This code provides a consistent interface for OMAP device drivers
17 * to control power management and interconnect properties of their
20 * In the medium- to long-term, this code should be implemented as a
21 * proper omap_bus/omap_device in Linux, no more platform_data func
28 #include <linux/kernel.h>
29 #include <linux/platform_device.h>
30 #include <linux/slab.h>
31 #include <linux/err.h>
33 #include <linux/clk.h>
34 #include <linux/clkdev.h>
35 #include <linux/pm_domain.h>
36 #include <linux/pm_runtime.h>
38 #include <linux/notifier.h>
42 #include "omap_device.h"
43 #include "omap_hwmod.h"
45 /* Private functions */
47 static void _add_clkdev(struct omap_device
*od
, const char *clk_alias
,
53 if (!clk_alias
|| !clk_name
)
56 dev_dbg(&od
->pdev
->dev
, "Creating %s -> %s\n", clk_alias
, clk_name
);
58 r
= clk_get_sys(dev_name(&od
->pdev
->dev
), clk_alias
);
60 dev_dbg(&od
->pdev
->dev
,
61 "alias %s already exists\n", clk_alias
);
66 rc
= clk_add_alias(clk_alias
, dev_name(&od
->pdev
->dev
), clk_name
, NULL
);
68 if (rc
== -ENODEV
|| rc
== -ENOMEM
)
69 dev_err(&od
->pdev
->dev
,
70 "clkdev_alloc for %s failed\n", clk_alias
);
72 dev_err(&od
->pdev
->dev
,
73 "clk_get for %s failed\n", clk_name
);
78 * _add_hwmod_clocks_clkdev - Add clkdev entry for hwmod optional clocks
80 * @od: struct omap_device *od
81 * @oh: struct omap_hwmod *oh
83 * For the main clock and every optional clock present per hwmod per
84 * omap_device, this function adds an entry in the clkdev table of the
85 * form <dev-id=dev_name, con-id=role> if it does not exist already.
87 * The function is called from inside omap_device_build_ss(), after
88 * omap_device_register.
90 * This allows drivers to get a pointer to its optional clocks based on its role
91 * by calling clk_get(<dev*>, <role>).
92 * In the case of the main clock, a "fck" alias is used.
96 static void _add_hwmod_clocks_clkdev(struct omap_device
*od
,
97 struct omap_hwmod
*oh
)
101 _add_clkdev(od
, "fck", oh
->main_clk
);
103 for (i
= 0; i
< oh
->opt_clks_cnt
; i
++)
104 _add_clkdev(od
, oh
->opt_clks
[i
].role
, oh
->opt_clks
[i
].clk
);
109 * omap_device_build_from_dt - build an omap_device with multiple hwmods
110 * @pdev_name: name of the platform_device driver to use
111 * @pdev_id: this platform_device's connection ID
112 * @oh: ptr to the single omap_hwmod that backs this omap_device
113 * @pdata: platform_data ptr to associate with the platform_device
114 * @pdata_len: amount of memory pointed to by @pdata
116 * Function for building an omap_device already registered from device-tree
118 * Returns 0 or PTR_ERR() on error.
120 static int omap_device_build_from_dt(struct platform_device
*pdev
)
122 struct omap_hwmod
**hwmods
;
123 struct omap_device
*od
;
124 struct omap_hwmod
*oh
;
125 struct device_node
*node
= pdev
->dev
.of_node
;
127 int oh_cnt
, i
, ret
= 0;
128 bool device_active
= false;
130 oh_cnt
= of_property_count_strings(node
, "ti,hwmods");
132 dev_dbg(&pdev
->dev
, "No 'hwmods' to build omap_device\n");
136 hwmods
= kzalloc(sizeof(struct omap_hwmod
*) * oh_cnt
, GFP_KERNEL
);
142 for (i
= 0; i
< oh_cnt
; i
++) {
143 of_property_read_string_index(node
, "ti,hwmods", i
, &oh_name
);
144 oh
= omap_hwmod_lookup(oh_name
);
146 dev_err(&pdev
->dev
, "Cannot lookup hwmod '%s'\n",
152 if (oh
->flags
& HWMOD_INIT_NO_IDLE
)
153 device_active
= true;
156 od
= omap_device_alloc(pdev
, hwmods
, oh_cnt
);
158 dev_err(&pdev
->dev
, "Cannot allocate omap_device for :%s\n",
164 /* Fix up missing resource names */
165 for (i
= 0; i
< pdev
->num_resources
; i
++) {
166 struct resource
*r
= &pdev
->resource
[i
];
169 r
->name
= dev_name(&pdev
->dev
);
172 dev_pm_domain_set(&pdev
->dev
, &omap_device_pm_domain
);
175 omap_device_enable(pdev
);
176 pm_runtime_set_active(&pdev
->dev
);
182 /* if data/we are at fault.. load up a fail handler */
184 dev_pm_domain_set(&pdev
->dev
, &omap_device_fail_pm_domain
);
189 static int _omap_device_notifier_call(struct notifier_block
*nb
,
190 unsigned long event
, void *dev
)
192 struct platform_device
*pdev
= to_platform_device(dev
);
193 struct omap_device
*od
;
197 case BUS_NOTIFY_DEL_DEVICE
:
198 if (pdev
->archdata
.od
)
199 omap_device_delete(pdev
->archdata
.od
);
201 case BUS_NOTIFY_UNBOUND_DRIVER
:
202 od
= to_omap_device(pdev
);
203 if (od
&& (od
->_state
== OMAP_DEVICE_STATE_ENABLED
)) {
204 dev_info(dev
, "enabled after unload, idling\n");
205 err
= omap_device_idle(pdev
);
207 dev_err(dev
, "failed to idle\n");
210 case BUS_NOTIFY_ADD_DEVICE
:
211 if (pdev
->dev
.of_node
)
212 omap_device_build_from_dt(pdev
);
213 omap_auxdata_legacy_init(dev
);
216 od
= to_omap_device(pdev
);
218 od
->_driver_status
= event
;
225 * _omap_device_enable_hwmods - call omap_hwmod_enable() on all hwmods
226 * @od: struct omap_device *od
228 * Enable all underlying hwmods. Returns 0.
230 static int _omap_device_enable_hwmods(struct omap_device
*od
)
235 for (i
= 0; i
< od
->hwmods_cnt
; i
++)
236 ret
|= omap_hwmod_enable(od
->hwmods
[i
]);
242 * _omap_device_idle_hwmods - call omap_hwmod_idle() on all hwmods
243 * @od: struct omap_device *od
245 * Idle all underlying hwmods. Returns 0.
247 static int _omap_device_idle_hwmods(struct omap_device
*od
)
252 for (i
= 0; i
< od
->hwmods_cnt
; i
++)
253 ret
|= omap_hwmod_idle(od
->hwmods
[i
]);
258 /* Public functions for use by core code */
261 * omap_device_get_context_loss_count - get lost context count
262 * @od: struct omap_device *
264 * Using the primary hwmod, query the context loss count for this
267 * Callers should consider context for this device lost any time this
268 * function returns a value different than the value the caller got
269 * the last time it called this function.
271 * If any hwmods exist for the omap_device assoiated with @pdev,
272 * return the context loss counter for that hwmod, otherwise return
275 int omap_device_get_context_loss_count(struct platform_device
*pdev
)
277 struct omap_device
*od
;
280 od
= to_omap_device(pdev
);
283 ret
= omap_hwmod_get_context_loss_count(od
->hwmods
[0]);
289 * omap_device_count_resources - count number of struct resource entries needed
290 * @od: struct omap_device *
291 * @flags: Type of resources to include when counting (IRQ/DMA/MEM)
293 * Count the number of struct resource entries needed for this
294 * omap_device @od. Used by omap_device_build_ss() to determine how
295 * much memory to allocate before calling
296 * omap_device_fill_resources(). Returns the count.
298 static int omap_device_count_resources(struct omap_device
*od
,
304 for (i
= 0; i
< od
->hwmods_cnt
; i
++)
305 c
+= omap_hwmod_count_resources(od
->hwmods
[i
], flags
);
307 pr_debug("omap_device: %s: counted %d total resources across %d hwmods\n",
308 od
->pdev
->name
, c
, od
->hwmods_cnt
);
314 * omap_device_fill_resources - fill in array of struct resource
315 * @od: struct omap_device *
316 * @res: pointer to an array of struct resource to be filled in
318 * Populate one or more empty struct resource pointed to by @res with
319 * the resource data for this omap_device @od. Used by
320 * omap_device_build_ss() after calling omap_device_count_resources().
321 * Ideally this function would not be needed at all. If omap_device
322 * replaces platform_device, then we can specify our own
323 * get_resource()/ get_irq()/etc functions that use the underlying
324 * omap_hwmod information. Or if platform_device is extended to use
325 * subarchitecture-specific function pointers, the various
326 * platform_device functions can simply call omap_device internal
327 * functions to get device resources. Hacking around the existing
328 * platform_device code wastes memory. Returns 0.
330 static int omap_device_fill_resources(struct omap_device
*od
,
331 struct resource
*res
)
335 for (i
= 0; i
< od
->hwmods_cnt
; i
++) {
336 r
= omap_hwmod_fill_resources(od
->hwmods
[i
], res
);
344 * _od_fill_dma_resources - fill in array of struct resource with dma resources
345 * @od: struct omap_device *
346 * @res: pointer to an array of struct resource to be filled in
348 * Populate one or more empty struct resource pointed to by @res with
349 * the dma resource data for this omap_device @od. Used by
350 * omap_device_alloc() after calling omap_device_count_resources().
352 * Ideally this function would not be needed at all. If we have
353 * mechanism to get dma resources from DT.
357 static int _od_fill_dma_resources(struct omap_device
*od
,
358 struct resource
*res
)
362 for (i
= 0; i
< od
->hwmods_cnt
; i
++) {
363 r
= omap_hwmod_fill_dma_resources(od
->hwmods
[i
], res
);
371 * omap_device_alloc - allocate an omap_device
372 * @pdev: platform_device that will be included in this omap_device
373 * @oh: ptr to the single omap_hwmod that backs this omap_device
374 * @pdata: platform_data ptr to associate with the platform_device
375 * @pdata_len: amount of memory pointed to by @pdata
377 * Convenience function for allocating an omap_device structure and filling
378 * hwmods, and resources.
380 * Returns an struct omap_device pointer or ERR_PTR() on error;
382 struct omap_device
*omap_device_alloc(struct platform_device
*pdev
,
383 struct omap_hwmod
**ohs
, int oh_cnt
)
386 struct omap_device
*od
;
387 struct resource
*res
= NULL
;
389 struct omap_hwmod
**hwmods
;
391 od
= kzalloc(sizeof(struct omap_device
), GFP_KERNEL
);
396 od
->hwmods_cnt
= oh_cnt
;
398 hwmods
= kmemdup(ohs
, sizeof(struct omap_hwmod
*) * oh_cnt
, GFP_KERNEL
);
407 * Here, pdev->num_resources = 0, and we should get all the
408 * resources from hwmod.
411 * OF framework will construct the resource structure (currently
412 * does for MEM & IRQ resource) and we should respect/use these
413 * resources, killing hwmod dependency.
414 * If pdev->num_resources > 0, we assume that MEM & IRQ resources
415 * have been allocated by OF layer already (through DTB).
416 * As preparation for the future we examine the OF provided resources
417 * to see if we have DMA resources provided already. In this case
418 * there is no need to update the resources for the device, we use the
421 * TODO: Once DMA resource is available from OF layer, we should
422 * kill filling any resources from hwmod.
424 if (!pdev
->num_resources
) {
425 /* Count all resources for the device */
426 res_count
= omap_device_count_resources(od
, IORESOURCE_IRQ
|
430 /* Take a look if we already have DMA resource via DT */
431 for (i
= 0; i
< pdev
->num_resources
; i
++) {
432 struct resource
*r
= &pdev
->resource
[i
];
434 /* We have it, no need to touch the resources */
435 if (r
->flags
== IORESOURCE_DMA
)
436 goto have_everything
;
438 /* Count only DMA resources for the device */
439 res_count
= omap_device_count_resources(od
, IORESOURCE_DMA
);
440 /* The device has no DMA resource, no need for update */
442 goto have_everything
;
444 res_count
+= pdev
->num_resources
;
447 /* Allocate resources memory to account for new resources */
448 res
= kzalloc(sizeof(struct resource
) * res_count
, GFP_KERNEL
);
452 if (!pdev
->num_resources
) {
453 dev_dbg(&pdev
->dev
, "%s: using %d resources from hwmod\n",
454 __func__
, res_count
);
455 omap_device_fill_resources(od
, res
);
458 "%s: appending %d DMA resources from hwmod\n",
459 __func__
, res_count
- pdev
->num_resources
);
460 memcpy(res
, pdev
->resource
,
461 sizeof(struct resource
) * pdev
->num_resources
);
462 _od_fill_dma_resources(od
, &res
[pdev
->num_resources
]);
465 ret
= platform_device_add_resources(pdev
, res
, res_count
);
472 pdev
->archdata
.od
= od
;
474 for (i
= 0; i
< oh_cnt
; i
++) {
476 _add_hwmod_clocks_clkdev(od
, hwmods
[i
]);
486 dev_err(&pdev
->dev
, "omap_device: build failed (%d)\n", ret
);
491 void omap_device_delete(struct omap_device
*od
)
496 od
->pdev
->archdata
.od
= NULL
;
502 * omap_device_build - build and register an omap_device with one omap_hwmod
503 * @pdev_name: name of the platform_device driver to use
504 * @pdev_id: this platform_device's connection ID
505 * @oh: ptr to the single omap_hwmod that backs this omap_device
506 * @pdata: platform_data ptr to associate with the platform_device
507 * @pdata_len: amount of memory pointed to by @pdata
509 * Convenience function for building and registering a single
510 * omap_device record, which in turn builds and registers a
511 * platform_device record. See omap_device_build_ss() for more
512 * information. Returns ERR_PTR(-EINVAL) if @oh is NULL; otherwise,
513 * passes along the return value of omap_device_build_ss().
515 struct platform_device __init
*omap_device_build(const char *pdev_name
,
517 struct omap_hwmod
*oh
,
518 void *pdata
, int pdata_len
)
520 struct omap_hwmod
*ohs
[] = { oh
};
523 return ERR_PTR(-EINVAL
);
525 return omap_device_build_ss(pdev_name
, pdev_id
, ohs
, 1, pdata
,
530 * omap_device_build_ss - build and register an omap_device with multiple hwmods
531 * @pdev_name: name of the platform_device driver to use
532 * @pdev_id: this platform_device's connection ID
533 * @oh: ptr to the single omap_hwmod that backs this omap_device
534 * @pdata: platform_data ptr to associate with the platform_device
535 * @pdata_len: amount of memory pointed to by @pdata
537 * Convenience function for building and registering an omap_device
538 * subsystem record. Subsystem records consist of multiple
539 * omap_hwmods. This function in turn builds and registers a
540 * platform_device record. Returns an ERR_PTR() on error, or passes
541 * along the return value of omap_device_register().
543 struct platform_device __init
*omap_device_build_ss(const char *pdev_name
,
545 struct omap_hwmod
**ohs
,
546 int oh_cnt
, void *pdata
,
550 struct platform_device
*pdev
;
551 struct omap_device
*od
;
553 if (!ohs
|| oh_cnt
== 0 || !pdev_name
)
554 return ERR_PTR(-EINVAL
);
556 if (!pdata
&& pdata_len
> 0)
557 return ERR_PTR(-EINVAL
);
559 pdev
= platform_device_alloc(pdev_name
, pdev_id
);
565 /* Set the dev_name early to allow dev_xxx in omap_device_alloc */
567 dev_set_name(&pdev
->dev
, "%s.%d", pdev
->name
, pdev
->id
);
569 dev_set_name(&pdev
->dev
, "%s", pdev
->name
);
571 od
= omap_device_alloc(pdev
, ohs
, oh_cnt
);
575 ret
= platform_device_add_data(pdev
, pdata
, pdata_len
);
579 ret
= omap_device_register(pdev
);
586 omap_device_delete(od
);
588 platform_device_put(pdev
);
591 pr_err("omap_device: %s: build failed (%d)\n", pdev_name
, ret
);
597 static int _od_runtime_suspend(struct device
*dev
)
599 struct platform_device
*pdev
= to_platform_device(dev
);
602 ret
= pm_generic_runtime_suspend(dev
);
606 return omap_device_idle(pdev
);
609 static int _od_runtime_resume(struct device
*dev
)
611 struct platform_device
*pdev
= to_platform_device(dev
);
614 ret
= omap_device_enable(pdev
);
616 dev_err(dev
, "use pm_runtime_put_sync_suspend() in driver?\n");
620 return pm_generic_runtime_resume(dev
);
623 static int _od_fail_runtime_suspend(struct device
*dev
)
625 dev_warn(dev
, "%s: FIXME: missing hwmod/omap_dev info\n", __func__
);
629 static int _od_fail_runtime_resume(struct device
*dev
)
631 dev_warn(dev
, "%s: FIXME: missing hwmod/omap_dev info\n", __func__
);
637 #ifdef CONFIG_SUSPEND
638 static int _od_suspend_noirq(struct device
*dev
)
640 struct platform_device
*pdev
= to_platform_device(dev
);
641 struct omap_device
*od
= to_omap_device(pdev
);
644 /* Don't attempt late suspend on a driver that is not bound */
645 if (od
->_driver_status
!= BUS_NOTIFY_BOUND_DRIVER
)
648 ret
= pm_generic_suspend_noirq(dev
);
650 if (!ret
&& !pm_runtime_status_suspended(dev
)) {
651 if (pm_generic_runtime_suspend(dev
) == 0) {
652 pm_runtime_set_suspended(dev
);
653 omap_device_idle(pdev
);
654 od
->flags
|= OMAP_DEVICE_SUSPENDED
;
661 static int _od_resume_noirq(struct device
*dev
)
663 struct platform_device
*pdev
= to_platform_device(dev
);
664 struct omap_device
*od
= to_omap_device(pdev
);
666 if (od
->flags
& OMAP_DEVICE_SUSPENDED
) {
667 od
->flags
&= ~OMAP_DEVICE_SUSPENDED
;
668 omap_device_enable(pdev
);
670 * XXX: we run before core runtime pm has resumed itself. At
671 * this point in time, we just restore the runtime pm state and
672 * considering symmetric operations in resume, we donot expect
673 * to fail. If we failed, something changed in core runtime_pm
674 * framework OR some device driver messed things up, hence, WARN
676 WARN(pm_runtime_set_active(dev
),
677 "Could not set %s runtime state active\n", dev_name(dev
));
678 pm_generic_runtime_resume(dev
);
681 return pm_generic_resume_noirq(dev
);
684 #define _od_suspend_noirq NULL
685 #define _od_resume_noirq NULL
688 struct dev_pm_domain omap_device_fail_pm_domain
= {
690 SET_RUNTIME_PM_OPS(_od_fail_runtime_suspend
,
691 _od_fail_runtime_resume
, NULL
)
695 struct dev_pm_domain omap_device_pm_domain
= {
697 SET_RUNTIME_PM_OPS(_od_runtime_suspend
, _od_runtime_resume
,
699 USE_PLATFORM_PM_SLEEP_OPS
700 SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(_od_suspend_noirq
,
706 * omap_device_register - register an omap_device with one omap_hwmod
707 * @od: struct omap_device * to register
709 * Register the omap_device structure. This currently just calls
710 * platform_device_register() on the underlying platform_device.
711 * Returns the return value of platform_device_register().
713 int omap_device_register(struct platform_device
*pdev
)
715 pr_debug("omap_device: %s: registering\n", pdev
->name
);
717 dev_pm_domain_set(&pdev
->dev
, &omap_device_pm_domain
);
718 return platform_device_add(pdev
);
722 /* Public functions for use by device drivers through struct platform_data */
725 * omap_device_enable - fully activate an omap_device
726 * @od: struct omap_device * to activate
728 * Do whatever is necessary for the hwmods underlying omap_device @od
729 * to be accessible and ready to operate. This generally involves
730 * enabling clocks, setting SYSCONFIG registers; and in the future may
731 * involve remuxing pins. Device drivers should call this function
732 * indirectly via pm_runtime_get*(). Returns -EINVAL if called when
733 * the omap_device is already enabled, or passes along the return
734 * value of _omap_device_enable_hwmods().
736 int omap_device_enable(struct platform_device
*pdev
)
739 struct omap_device
*od
;
741 od
= to_omap_device(pdev
);
743 if (od
->_state
== OMAP_DEVICE_STATE_ENABLED
) {
745 "omap_device: %s() called from invalid state %d\n",
746 __func__
, od
->_state
);
750 ret
= _omap_device_enable_hwmods(od
);
753 od
->_state
= OMAP_DEVICE_STATE_ENABLED
;
759 * omap_device_idle - idle an omap_device
760 * @od: struct omap_device * to idle
762 * Idle omap_device @od. Device drivers call this function indirectly
763 * via pm_runtime_put*(). Returns -EINVAL if the omap_device is not
764 * currently enabled, or passes along the return value of
765 * _omap_device_idle_hwmods().
767 int omap_device_idle(struct platform_device
*pdev
)
770 struct omap_device
*od
;
772 od
= to_omap_device(pdev
);
774 if (od
->_state
!= OMAP_DEVICE_STATE_ENABLED
) {
776 "omap_device: %s() called from invalid state %d\n",
777 __func__
, od
->_state
);
781 ret
= _omap_device_idle_hwmods(od
);
784 od
->_state
= OMAP_DEVICE_STATE_IDLE
;
790 * omap_device_assert_hardreset - set a device's hardreset line
791 * @pdev: struct platform_device * to reset
792 * @name: const char * name of the reset line
794 * Set the hardreset line identified by @name on the IP blocks
795 * associated with the hwmods backing the platform_device @pdev. All
796 * of the hwmods associated with @pdev must have the same hardreset
797 * line linked to them for this to work. Passes along the return value
798 * of omap_hwmod_assert_hardreset() in the event of any failure, or
799 * returns 0 upon success.
801 int omap_device_assert_hardreset(struct platform_device
*pdev
, const char *name
)
803 struct omap_device
*od
= to_omap_device(pdev
);
807 for (i
= 0; i
< od
->hwmods_cnt
; i
++) {
808 ret
= omap_hwmod_assert_hardreset(od
->hwmods
[i
], name
);
817 * omap_device_deassert_hardreset - release a device's hardreset line
818 * @pdev: struct platform_device * to reset
819 * @name: const char * name of the reset line
821 * Release the hardreset line identified by @name on the IP blocks
822 * associated with the hwmods backing the platform_device @pdev. All
823 * of the hwmods associated with @pdev must have the same hardreset
824 * line linked to them for this to work. Passes along the return
825 * value of omap_hwmod_deassert_hardreset() in the event of any
826 * failure, or returns 0 upon success.
828 int omap_device_deassert_hardreset(struct platform_device
*pdev
,
831 struct omap_device
*od
= to_omap_device(pdev
);
835 for (i
= 0; i
< od
->hwmods_cnt
; i
++) {
836 ret
= omap_hwmod_deassert_hardreset(od
->hwmods
[i
], name
);
845 * omap_device_get_by_hwmod_name() - convert a hwmod name to
847 * @oh_name: name of the hwmod device
849 * Returns back a struct device * pointer associated with a hwmod
850 * device represented by a hwmod_name
852 struct device
*omap_device_get_by_hwmod_name(const char *oh_name
)
854 struct omap_hwmod
*oh
;
857 WARN(1, "%s: no hwmod name!\n", __func__
);
858 return ERR_PTR(-EINVAL
);
861 oh
= omap_hwmod_lookup(oh_name
);
863 WARN(1, "%s: no hwmod for %s\n", __func__
,
865 return ERR_PTR(-ENODEV
);
868 WARN(1, "%s: no omap_device for %s\n", __func__
,
870 return ERR_PTR(-ENODEV
);
873 return &oh
->od
->pdev
->dev
;
876 static struct notifier_block platform_nb
= {
877 .notifier_call
= _omap_device_notifier_call
,
880 static int __init
omap_device_init(void)
882 bus_register_notifier(&platform_bus_type
, &platform_nb
);
885 omap_postcore_initcall(omap_device_init
);
888 * omap_device_late_idle - idle devices without drivers
889 * @dev: struct device * associated with omap_device
892 * Check the driver bound status of this device, and idle it
893 * if there is no driver attached.
895 static int __init
omap_device_late_idle(struct device
*dev
, void *data
)
897 struct platform_device
*pdev
= to_platform_device(dev
);
898 struct omap_device
*od
= to_omap_device(pdev
);
905 * If omap_device state is enabled, but has no driver bound,
910 * Some devices (like memory controllers) are always kept
911 * enabled, and should not be idled even with no drivers.
913 for (i
= 0; i
< od
->hwmods_cnt
; i
++)
914 if (od
->hwmods
[i
]->flags
& HWMOD_INIT_NO_IDLE
)
917 if (od
->_driver_status
!= BUS_NOTIFY_BOUND_DRIVER
&&
918 od
->_driver_status
!= BUS_NOTIFY_BIND_DRIVER
) {
919 if (od
->_state
== OMAP_DEVICE_STATE_ENABLED
) {
920 dev_warn(dev
, "%s: enabled but no driver. Idling\n",
922 omap_device_idle(pdev
);
929 static int __init
omap_device_late_init(void)
931 bus_for_each_dev(&platform_bus_type
, NULL
, NULL
, omap_device_late_idle
);
933 WARN(!of_have_populated_dt(),
934 "legacy booting deprecated, please update to boot with .dts\n");
938 omap_late_initcall_sync(omap_device_late_init
);