mm: fix exec activate_mm vs TLB shootdown and lazy tlb switching race
[linux/fpc-iii.git] / arch / arm / mach-omap2 / omap_device.c
blobacbede082b5b54f29a36e2cfd08f9bd23d1d7246
1 /*
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
10 * Woodruff
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
18 * devices.
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
22 * pointers
26 #undef DEBUG
28 #include <linux/kernel.h>
29 #include <linux/platform_device.h>
30 #include <linux/slab.h>
31 #include <linux/err.h>
32 #include <linux/io.h>
33 #include <linux/clk.h>
34 #include <linux/clkdev.h>
35 #include <linux/pm_domain.h>
36 #include <linux/pm_runtime.h>
37 #include <linux/of.h>
38 #include <linux/notifier.h>
40 #include "common.h"
41 #include "soc.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,
48 const char *clk_name)
50 struct clk *r;
51 int rc;
53 if (!clk_alias || !clk_name)
54 return;
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);
59 if (!IS_ERR(r)) {
60 dev_dbg(&od->pdev->dev,
61 "alias %s already exists\n", clk_alias);
62 clk_put(r);
63 return;
66 r = clk_get_sys(NULL, clk_name);
68 if (IS_ERR(r)) {
69 struct of_phandle_args clkspec;
71 clkspec.np = of_find_node_by_name(NULL, clk_name);
73 r = of_clk_get_from_provider(&clkspec);
75 rc = clk_register_clkdev(r, clk_alias,
76 dev_name(&od->pdev->dev));
77 } else {
78 rc = clk_add_alias(clk_alias, dev_name(&od->pdev->dev),
79 clk_name, NULL);
82 if (rc) {
83 if (rc == -ENODEV || rc == -ENOMEM)
84 dev_err(&od->pdev->dev,
85 "clkdev_alloc for %s failed\n", clk_alias);
86 else
87 dev_err(&od->pdev->dev,
88 "clk_get for %s failed\n", clk_name);
92 /**
93 * _add_hwmod_clocks_clkdev - Add clkdev entry for hwmod optional clocks
94 * and main clock
95 * @od: struct omap_device *od
96 * @oh: struct omap_hwmod *oh
98 * For the main clock and every optional clock present per hwmod per
99 * omap_device, this function adds an entry in the clkdev table of the
100 * form <dev-id=dev_name, con-id=role> if it does not exist already.
102 * The function is called from inside omap_device_build_ss(), after
103 * omap_device_register.
105 * This allows drivers to get a pointer to its optional clocks based on its role
106 * by calling clk_get(<dev*>, <role>).
107 * In the case of the main clock, a "fck" alias is used.
109 * No return value.
111 static void _add_hwmod_clocks_clkdev(struct omap_device *od,
112 struct omap_hwmod *oh)
114 int i;
116 _add_clkdev(od, "fck", oh->main_clk);
118 for (i = 0; i < oh->opt_clks_cnt; i++)
119 _add_clkdev(od, oh->opt_clks[i].role, oh->opt_clks[i].clk);
124 * omap_device_build_from_dt - build an omap_device with multiple hwmods
125 * @pdev_name: name of the platform_device driver to use
126 * @pdev_id: this platform_device's connection ID
127 * @oh: ptr to the single omap_hwmod that backs this omap_device
128 * @pdata: platform_data ptr to associate with the platform_device
129 * @pdata_len: amount of memory pointed to by @pdata
131 * Function for building an omap_device already registered from device-tree
133 * Returns 0 or PTR_ERR() on error.
135 static int omap_device_build_from_dt(struct platform_device *pdev)
137 struct omap_hwmod **hwmods;
138 struct omap_device *od;
139 struct omap_hwmod *oh;
140 struct device_node *node = pdev->dev.of_node;
141 const char *oh_name;
142 int oh_cnt, i, ret = 0;
143 bool device_active = false;
145 oh_cnt = of_property_count_strings(node, "ti,hwmods");
146 if (oh_cnt <= 0) {
147 dev_dbg(&pdev->dev, "No 'hwmods' to build omap_device\n");
148 return -ENODEV;
151 hwmods = kzalloc(sizeof(struct omap_hwmod *) * oh_cnt, GFP_KERNEL);
152 if (!hwmods) {
153 ret = -ENOMEM;
154 goto odbfd_exit;
157 for (i = 0; i < oh_cnt; i++) {
158 of_property_read_string_index(node, "ti,hwmods", i, &oh_name);
159 oh = omap_hwmod_lookup(oh_name);
160 if (!oh) {
161 dev_err(&pdev->dev, "Cannot lookup hwmod '%s'\n",
162 oh_name);
163 ret = -EINVAL;
164 goto odbfd_exit1;
166 hwmods[i] = oh;
167 if (oh->flags & HWMOD_INIT_NO_IDLE)
168 device_active = true;
171 od = omap_device_alloc(pdev, hwmods, oh_cnt);
172 if (IS_ERR(od)) {
173 dev_err(&pdev->dev, "Cannot allocate omap_device for :%s\n",
174 oh_name);
175 ret = PTR_ERR(od);
176 goto odbfd_exit1;
179 /* Fix up missing resource names */
180 for (i = 0; i < pdev->num_resources; i++) {
181 struct resource *r = &pdev->resource[i];
183 if (r->name == NULL)
184 r->name = dev_name(&pdev->dev);
187 dev_pm_domain_set(&pdev->dev, &omap_device_pm_domain);
189 if (device_active) {
190 omap_device_enable(pdev);
191 pm_runtime_set_active(&pdev->dev);
194 odbfd_exit1:
195 kfree(hwmods);
196 odbfd_exit:
197 /* if data/we are at fault.. load up a fail handler */
198 if (ret)
199 dev_pm_domain_set(&pdev->dev, &omap_device_fail_pm_domain);
201 return ret;
204 static int _omap_device_notifier_call(struct notifier_block *nb,
205 unsigned long event, void *dev)
207 struct platform_device *pdev = to_platform_device(dev);
208 struct omap_device *od;
209 int err;
211 switch (event) {
212 case BUS_NOTIFY_REMOVED_DEVICE:
213 if (pdev->archdata.od)
214 omap_device_delete(pdev->archdata.od);
215 break;
216 case BUS_NOTIFY_UNBOUND_DRIVER:
217 od = to_omap_device(pdev);
218 if (od && (od->_state == OMAP_DEVICE_STATE_ENABLED)) {
219 dev_info(dev, "enabled after unload, idling\n");
220 err = omap_device_idle(pdev);
221 if (err)
222 dev_err(dev, "failed to idle\n");
224 break;
225 case BUS_NOTIFY_BIND_DRIVER:
226 od = to_omap_device(pdev);
227 if (od && (od->_state == OMAP_DEVICE_STATE_ENABLED) &&
228 pm_runtime_status_suspended(dev)) {
229 od->_driver_status = BUS_NOTIFY_BIND_DRIVER;
230 pm_runtime_set_active(dev);
232 break;
233 case BUS_NOTIFY_ADD_DEVICE:
234 if (pdev->dev.of_node)
235 omap_device_build_from_dt(pdev);
236 omap_auxdata_legacy_init(dev);
237 /* fall through */
238 default:
239 od = to_omap_device(pdev);
240 if (od)
241 od->_driver_status = event;
244 return NOTIFY_DONE;
248 * _omap_device_enable_hwmods - call omap_hwmod_enable() on all hwmods
249 * @od: struct omap_device *od
251 * Enable all underlying hwmods. Returns 0.
253 static int _omap_device_enable_hwmods(struct omap_device *od)
255 int ret = 0;
256 int i;
258 for (i = 0; i < od->hwmods_cnt; i++)
259 ret |= omap_hwmod_enable(od->hwmods[i]);
261 return ret;
265 * _omap_device_idle_hwmods - call omap_hwmod_idle() on all hwmods
266 * @od: struct omap_device *od
268 * Idle all underlying hwmods. Returns 0.
270 static int _omap_device_idle_hwmods(struct omap_device *od)
272 int ret = 0;
273 int i;
275 for (i = 0; i < od->hwmods_cnt; i++)
276 ret |= omap_hwmod_idle(od->hwmods[i]);
278 return ret;
281 /* Public functions for use by core code */
284 * omap_device_get_context_loss_count - get lost context count
285 * @od: struct omap_device *
287 * Using the primary hwmod, query the context loss count for this
288 * device.
290 * Callers should consider context for this device lost any time this
291 * function returns a value different than the value the caller got
292 * the last time it called this function.
294 * If any hwmods exist for the omap_device associated with @pdev,
295 * return the context loss counter for that hwmod, otherwise return
296 * zero.
298 int omap_device_get_context_loss_count(struct platform_device *pdev)
300 struct omap_device *od;
301 u32 ret = 0;
303 od = to_omap_device(pdev);
305 if (od->hwmods_cnt)
306 ret = omap_hwmod_get_context_loss_count(od->hwmods[0]);
308 return ret;
312 * omap_device_count_resources - count number of struct resource entries needed
313 * @od: struct omap_device *
314 * @flags: Type of resources to include when counting (IRQ/DMA/MEM)
316 * Count the number of struct resource entries needed for this
317 * omap_device @od. Used by omap_device_build_ss() to determine how
318 * much memory to allocate before calling
319 * omap_device_fill_resources(). Returns the count.
321 static int omap_device_count_resources(struct omap_device *od,
322 unsigned long flags)
324 int c = 0;
325 int i;
327 for (i = 0; i < od->hwmods_cnt; i++)
328 c += omap_hwmod_count_resources(od->hwmods[i], flags);
330 pr_debug("omap_device: %s: counted %d total resources across %d hwmods\n",
331 od->pdev->name, c, od->hwmods_cnt);
333 return c;
337 * omap_device_fill_resources - fill in array of struct resource
338 * @od: struct omap_device *
339 * @res: pointer to an array of struct resource to be filled in
341 * Populate one or more empty struct resource pointed to by @res with
342 * the resource data for this omap_device @od. Used by
343 * omap_device_build_ss() after calling omap_device_count_resources().
344 * Ideally this function would not be needed at all. If omap_device
345 * replaces platform_device, then we can specify our own
346 * get_resource()/ get_irq()/etc functions that use the underlying
347 * omap_hwmod information. Or if platform_device is extended to use
348 * subarchitecture-specific function pointers, the various
349 * platform_device functions can simply call omap_device internal
350 * functions to get device resources. Hacking around the existing
351 * platform_device code wastes memory. Returns 0.
353 static int omap_device_fill_resources(struct omap_device *od,
354 struct resource *res)
356 int i, r;
358 for (i = 0; i < od->hwmods_cnt; i++) {
359 r = omap_hwmod_fill_resources(od->hwmods[i], res);
360 res += r;
363 return 0;
367 * _od_fill_dma_resources - fill in array of struct resource with dma resources
368 * @od: struct omap_device *
369 * @res: pointer to an array of struct resource to be filled in
371 * Populate one or more empty struct resource pointed to by @res with
372 * the dma resource data for this omap_device @od. Used by
373 * omap_device_alloc() after calling omap_device_count_resources().
375 * Ideally this function would not be needed at all. If we have
376 * mechanism to get dma resources from DT.
378 * Returns 0.
380 static int _od_fill_dma_resources(struct omap_device *od,
381 struct resource *res)
383 int i, r;
385 for (i = 0; i < od->hwmods_cnt; i++) {
386 r = omap_hwmod_fill_dma_resources(od->hwmods[i], res);
387 res += r;
390 return 0;
394 * omap_device_alloc - allocate an omap_device
395 * @pdev: platform_device that will be included in this omap_device
396 * @oh: ptr to the single omap_hwmod that backs this omap_device
397 * @pdata: platform_data ptr to associate with the platform_device
398 * @pdata_len: amount of memory pointed to by @pdata
400 * Convenience function for allocating an omap_device structure and filling
401 * hwmods, and resources.
403 * Returns an struct omap_device pointer or ERR_PTR() on error;
405 struct omap_device *omap_device_alloc(struct platform_device *pdev,
406 struct omap_hwmod **ohs, int oh_cnt)
408 int ret = -ENOMEM;
409 struct omap_device *od;
410 struct resource *res = NULL;
411 int i, res_count;
412 struct omap_hwmod **hwmods;
414 od = kzalloc(sizeof(struct omap_device), GFP_KERNEL);
415 if (!od) {
416 ret = -ENOMEM;
417 goto oda_exit1;
419 od->hwmods_cnt = oh_cnt;
421 hwmods = kmemdup(ohs, sizeof(struct omap_hwmod *) * oh_cnt, GFP_KERNEL);
422 if (!hwmods)
423 goto oda_exit2;
425 od->hwmods = hwmods;
426 od->pdev = pdev;
429 * Non-DT Boot:
430 * Here, pdev->num_resources = 0, and we should get all the
431 * resources from hwmod.
433 * DT Boot:
434 * OF framework will construct the resource structure (currently
435 * does for MEM & IRQ resource) and we should respect/use these
436 * resources, killing hwmod dependency.
437 * If pdev->num_resources > 0, we assume that MEM & IRQ resources
438 * have been allocated by OF layer already (through DTB).
439 * As preparation for the future we examine the OF provided resources
440 * to see if we have DMA resources provided already. In this case
441 * there is no need to update the resources for the device, we use the
442 * OF provided ones.
444 * TODO: Once DMA resource is available from OF layer, we should
445 * kill filling any resources from hwmod.
447 if (!pdev->num_resources) {
448 /* Count all resources for the device */
449 res_count = omap_device_count_resources(od, IORESOURCE_IRQ |
450 IORESOURCE_DMA |
451 IORESOURCE_MEM);
452 } else {
453 /* Take a look if we already have DMA resource via DT */
454 for (i = 0; i < pdev->num_resources; i++) {
455 struct resource *r = &pdev->resource[i];
457 /* We have it, no need to touch the resources */
458 if (r->flags == IORESOURCE_DMA)
459 goto have_everything;
461 /* Count only DMA resources for the device */
462 res_count = omap_device_count_resources(od, IORESOURCE_DMA);
463 /* The device has no DMA resource, no need for update */
464 if (!res_count)
465 goto have_everything;
467 res_count += pdev->num_resources;
470 /* Allocate resources memory to account for new resources */
471 res = kzalloc(sizeof(struct resource) * res_count, GFP_KERNEL);
472 if (!res)
473 goto oda_exit3;
475 if (!pdev->num_resources) {
476 dev_dbg(&pdev->dev, "%s: using %d resources from hwmod\n",
477 __func__, res_count);
478 omap_device_fill_resources(od, res);
479 } else {
480 dev_dbg(&pdev->dev,
481 "%s: appending %d DMA resources from hwmod\n",
482 __func__, res_count - pdev->num_resources);
483 memcpy(res, pdev->resource,
484 sizeof(struct resource) * pdev->num_resources);
485 _od_fill_dma_resources(od, &res[pdev->num_resources]);
488 ret = platform_device_add_resources(pdev, res, res_count);
489 kfree(res);
491 if (ret)
492 goto oda_exit3;
494 have_everything:
495 pdev->archdata.od = od;
497 for (i = 0; i < oh_cnt; i++) {
498 hwmods[i]->od = od;
499 _add_hwmod_clocks_clkdev(od, hwmods[i]);
502 return od;
504 oda_exit3:
505 kfree(hwmods);
506 oda_exit2:
507 kfree(od);
508 oda_exit1:
509 dev_err(&pdev->dev, "omap_device: build failed (%d)\n", ret);
511 return ERR_PTR(ret);
514 void omap_device_delete(struct omap_device *od)
516 if (!od)
517 return;
519 od->pdev->archdata.od = NULL;
520 kfree(od->hwmods);
521 kfree(od);
525 * omap_device_build - build and register an omap_device with one omap_hwmod
526 * @pdev_name: name of the platform_device driver to use
527 * @pdev_id: this platform_device's connection ID
528 * @oh: ptr to the single omap_hwmod that backs this omap_device
529 * @pdata: platform_data ptr to associate with the platform_device
530 * @pdata_len: amount of memory pointed to by @pdata
532 * Convenience function for building and registering a single
533 * omap_device record, which in turn builds and registers a
534 * platform_device record. See omap_device_build_ss() for more
535 * information. Returns ERR_PTR(-EINVAL) if @oh is NULL; otherwise,
536 * passes along the return value of omap_device_build_ss().
538 struct platform_device __init *omap_device_build(const char *pdev_name,
539 int pdev_id,
540 struct omap_hwmod *oh,
541 void *pdata, int pdata_len)
543 struct omap_hwmod *ohs[] = { oh };
545 if (!oh)
546 return ERR_PTR(-EINVAL);
548 return omap_device_build_ss(pdev_name, pdev_id, ohs, 1, pdata,
549 pdata_len);
553 * omap_device_build_ss - build and register an omap_device with multiple hwmods
554 * @pdev_name: name of the platform_device driver to use
555 * @pdev_id: this platform_device's connection ID
556 * @oh: ptr to the single omap_hwmod that backs this omap_device
557 * @pdata: platform_data ptr to associate with the platform_device
558 * @pdata_len: amount of memory pointed to by @pdata
560 * Convenience function for building and registering an omap_device
561 * subsystem record. Subsystem records consist of multiple
562 * omap_hwmods. This function in turn builds and registers a
563 * platform_device record. Returns an ERR_PTR() on error, or passes
564 * along the return value of omap_device_register().
566 struct platform_device __init *omap_device_build_ss(const char *pdev_name,
567 int pdev_id,
568 struct omap_hwmod **ohs,
569 int oh_cnt, void *pdata,
570 int pdata_len)
572 int ret = -ENOMEM;
573 struct platform_device *pdev;
574 struct omap_device *od;
576 if (!ohs || oh_cnt == 0 || !pdev_name)
577 return ERR_PTR(-EINVAL);
579 if (!pdata && pdata_len > 0)
580 return ERR_PTR(-EINVAL);
582 pdev = platform_device_alloc(pdev_name, pdev_id);
583 if (!pdev) {
584 ret = -ENOMEM;
585 goto odbs_exit;
588 /* Set the dev_name early to allow dev_xxx in omap_device_alloc */
589 if (pdev->id != -1)
590 dev_set_name(&pdev->dev, "%s.%d", pdev->name, pdev->id);
591 else
592 dev_set_name(&pdev->dev, "%s", pdev->name);
594 od = omap_device_alloc(pdev, ohs, oh_cnt);
595 if (IS_ERR(od))
596 goto odbs_exit1;
598 ret = platform_device_add_data(pdev, pdata, pdata_len);
599 if (ret)
600 goto odbs_exit2;
602 ret = omap_device_register(pdev);
603 if (ret)
604 goto odbs_exit2;
606 return pdev;
608 odbs_exit2:
609 omap_device_delete(od);
610 odbs_exit1:
611 platform_device_put(pdev);
612 odbs_exit:
614 pr_err("omap_device: %s: build failed (%d)\n", pdev_name, ret);
616 return ERR_PTR(ret);
619 #ifdef CONFIG_PM
620 static int _od_runtime_suspend(struct device *dev)
622 struct platform_device *pdev = to_platform_device(dev);
623 int ret;
625 ret = pm_generic_runtime_suspend(dev);
626 if (ret)
627 return ret;
629 return omap_device_idle(pdev);
632 static int _od_runtime_resume(struct device *dev)
634 struct platform_device *pdev = to_platform_device(dev);
635 int ret;
637 ret = omap_device_enable(pdev);
638 if (ret) {
639 dev_err(dev, "use pm_runtime_put_sync_suspend() in driver?\n");
640 return ret;
643 return pm_generic_runtime_resume(dev);
646 static int _od_fail_runtime_suspend(struct device *dev)
648 dev_warn(dev, "%s: FIXME: missing hwmod/omap_dev info\n", __func__);
649 return -ENODEV;
652 static int _od_fail_runtime_resume(struct device *dev)
654 dev_warn(dev, "%s: FIXME: missing hwmod/omap_dev info\n", __func__);
655 return -ENODEV;
658 #endif
660 #ifdef CONFIG_SUSPEND
661 static int _od_suspend_noirq(struct device *dev)
663 struct platform_device *pdev = to_platform_device(dev);
664 struct omap_device *od = to_omap_device(pdev);
665 int ret;
667 /* Don't attempt late suspend on a driver that is not bound */
668 if (od->_driver_status != BUS_NOTIFY_BOUND_DRIVER)
669 return 0;
671 ret = pm_generic_suspend_noirq(dev);
673 if (!ret && !pm_runtime_status_suspended(dev)) {
674 if (pm_generic_runtime_suspend(dev) == 0) {
675 omap_device_idle(pdev);
676 od->flags |= OMAP_DEVICE_SUSPENDED;
680 return ret;
683 static int _od_resume_noirq(struct device *dev)
685 struct platform_device *pdev = to_platform_device(dev);
686 struct omap_device *od = to_omap_device(pdev);
688 if (od->flags & OMAP_DEVICE_SUSPENDED) {
689 od->flags &= ~OMAP_DEVICE_SUSPENDED;
690 omap_device_enable(pdev);
691 pm_generic_runtime_resume(dev);
694 return pm_generic_resume_noirq(dev);
696 #else
697 #define _od_suspend_noirq NULL
698 #define _od_resume_noirq NULL
699 #endif
701 struct dev_pm_domain omap_device_fail_pm_domain = {
702 .ops = {
703 SET_RUNTIME_PM_OPS(_od_fail_runtime_suspend,
704 _od_fail_runtime_resume, NULL)
708 struct dev_pm_domain omap_device_pm_domain = {
709 .ops = {
710 SET_RUNTIME_PM_OPS(_od_runtime_suspend, _od_runtime_resume,
711 NULL)
712 USE_PLATFORM_PM_SLEEP_OPS
713 SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(_od_suspend_noirq,
714 _od_resume_noirq)
719 * omap_device_register - register an omap_device with one omap_hwmod
720 * @od: struct omap_device * to register
722 * Register the omap_device structure. This currently just calls
723 * platform_device_register() on the underlying platform_device.
724 * Returns the return value of platform_device_register().
726 int omap_device_register(struct platform_device *pdev)
728 pr_debug("omap_device: %s: registering\n", pdev->name);
730 dev_pm_domain_set(&pdev->dev, &omap_device_pm_domain);
731 return platform_device_add(pdev);
735 /* Public functions for use by device drivers through struct platform_data */
738 * omap_device_enable - fully activate an omap_device
739 * @od: struct omap_device * to activate
741 * Do whatever is necessary for the hwmods underlying omap_device @od
742 * to be accessible and ready to operate. This generally involves
743 * enabling clocks, setting SYSCONFIG registers; and in the future may
744 * involve remuxing pins. Device drivers should call this function
745 * indirectly via pm_runtime_get*(). Returns -EINVAL if called when
746 * the omap_device is already enabled, or passes along the return
747 * value of _omap_device_enable_hwmods().
749 int omap_device_enable(struct platform_device *pdev)
751 int ret;
752 struct omap_device *od;
754 od = to_omap_device(pdev);
756 if (od->_state == OMAP_DEVICE_STATE_ENABLED) {
757 dev_warn(&pdev->dev,
758 "omap_device: %s() called from invalid state %d\n",
759 __func__, od->_state);
760 return -EINVAL;
763 ret = _omap_device_enable_hwmods(od);
765 if (ret == 0)
766 od->_state = OMAP_DEVICE_STATE_ENABLED;
768 return ret;
772 * omap_device_idle - idle an omap_device
773 * @od: struct omap_device * to idle
775 * Idle omap_device @od. Device drivers call this function indirectly
776 * via pm_runtime_put*(). Returns -EINVAL if the omap_device is not
777 * currently enabled, or passes along the return value of
778 * _omap_device_idle_hwmods().
780 int omap_device_idle(struct platform_device *pdev)
782 int ret;
783 struct omap_device *od;
785 od = to_omap_device(pdev);
787 if (od->_state != OMAP_DEVICE_STATE_ENABLED) {
788 dev_warn(&pdev->dev,
789 "omap_device: %s() called from invalid state %d\n",
790 __func__, od->_state);
791 return -EINVAL;
794 ret = _omap_device_idle_hwmods(od);
796 if (ret == 0)
797 od->_state = OMAP_DEVICE_STATE_IDLE;
799 return ret;
803 * omap_device_assert_hardreset - set a device's hardreset line
804 * @pdev: struct platform_device * to reset
805 * @name: const char * name of the reset line
807 * Set the hardreset line identified by @name on the IP blocks
808 * associated with the hwmods backing the platform_device @pdev. All
809 * of the hwmods associated with @pdev must have the same hardreset
810 * line linked to them for this to work. Passes along the return value
811 * of omap_hwmod_assert_hardreset() in the event of any failure, or
812 * returns 0 upon success.
814 int omap_device_assert_hardreset(struct platform_device *pdev, const char *name)
816 struct omap_device *od = to_omap_device(pdev);
817 int ret = 0;
818 int i;
820 for (i = 0; i < od->hwmods_cnt; i++) {
821 ret = omap_hwmod_assert_hardreset(od->hwmods[i], name);
822 if (ret)
823 break;
826 return ret;
830 * omap_device_deassert_hardreset - release a device's hardreset line
831 * @pdev: struct platform_device * to reset
832 * @name: const char * name of the reset line
834 * Release the hardreset line identified by @name on the IP blocks
835 * associated with the hwmods backing the platform_device @pdev. All
836 * of the hwmods associated with @pdev must have the same hardreset
837 * line linked to them for this to work. Passes along the return
838 * value of omap_hwmod_deassert_hardreset() in the event of any
839 * failure, or returns 0 upon success.
841 int omap_device_deassert_hardreset(struct platform_device *pdev,
842 const char *name)
844 struct omap_device *od = to_omap_device(pdev);
845 int ret = 0;
846 int i;
848 for (i = 0; i < od->hwmods_cnt; i++) {
849 ret = omap_hwmod_deassert_hardreset(od->hwmods[i], name);
850 if (ret)
851 break;
854 return ret;
858 * omap_device_get_by_hwmod_name() - convert a hwmod name to
859 * device pointer.
860 * @oh_name: name of the hwmod device
862 * Returns back a struct device * pointer associated with a hwmod
863 * device represented by a hwmod_name
865 struct device *omap_device_get_by_hwmod_name(const char *oh_name)
867 struct omap_hwmod *oh;
869 if (!oh_name) {
870 WARN(1, "%s: no hwmod name!\n", __func__);
871 return ERR_PTR(-EINVAL);
874 oh = omap_hwmod_lookup(oh_name);
875 if (!oh) {
876 WARN(1, "%s: no hwmod for %s\n", __func__,
877 oh_name);
878 return ERR_PTR(-ENODEV);
880 if (!oh->od) {
881 WARN(1, "%s: no omap_device for %s\n", __func__,
882 oh_name);
883 return ERR_PTR(-ENODEV);
886 return &oh->od->pdev->dev;
889 static struct notifier_block platform_nb = {
890 .notifier_call = _omap_device_notifier_call,
893 static int __init omap_device_init(void)
895 bus_register_notifier(&platform_bus_type, &platform_nb);
896 return 0;
898 omap_postcore_initcall(omap_device_init);
901 * omap_device_late_idle - idle devices without drivers
902 * @dev: struct device * associated with omap_device
903 * @data: unused
905 * Check the driver bound status of this device, and idle it
906 * if there is no driver attached.
908 static int __init omap_device_late_idle(struct device *dev, void *data)
910 struct platform_device *pdev = to_platform_device(dev);
911 struct omap_device *od = to_omap_device(pdev);
912 int i;
914 if (!od)
915 return 0;
918 * If omap_device state is enabled, but has no driver bound,
919 * idle it.
923 * Some devices (like memory controllers) are always kept
924 * enabled, and should not be idled even with no drivers.
926 for (i = 0; i < od->hwmods_cnt; i++)
927 if (od->hwmods[i]->flags & HWMOD_INIT_NO_IDLE)
928 return 0;
930 if (od->_driver_status != BUS_NOTIFY_BOUND_DRIVER &&
931 od->_driver_status != BUS_NOTIFY_BIND_DRIVER) {
932 if (od->_state == OMAP_DEVICE_STATE_ENABLED) {
933 dev_warn(dev, "%s: enabled but no driver. Idling\n",
934 __func__);
935 omap_device_idle(pdev);
939 return 0;
942 static int __init omap_device_late_init(void)
944 bus_for_each_dev(&platform_bus_type, NULL, NULL, omap_device_late_idle);
946 return 0;
948 omap_late_initcall_sync(omap_device_late_init);