OSDN Git Service

184acd95c216bf4e56a4659b04941254dfd68f59
[uclinux-h8/linux.git] / arch / arm / mach-omap2 / omap_device.c
1 /*
2  * omap_device implementation
3  *
4  * Copyright (C) 2009-2010 Nokia Corporation
5  * Paul Walmsley, Kevin Hilman
6  *
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
11  *
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.
15  *
16  * This code provides a consistent interface for OMAP device drivers
17  * to control power management and interconnect properties of their
18  * devices.
19  *
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
23  *
24  *
25  */
26 #undef DEBUG
27
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/of_address.h>
39 #include <linux/of_irq.h>
40 #include <linux/notifier.h>
41
42 #include "common.h"
43 #include "soc.h"
44 #include "omap_device.h"
45 #include "omap_hwmod.h"
46
47 /* Private functions */
48
49 static void _add_clkdev(struct omap_device *od, const char *clk_alias,
50                        const char *clk_name)
51 {
52         struct clk *r;
53         int rc;
54
55         if (!clk_alias || !clk_name)
56                 return;
57
58         dev_dbg(&od->pdev->dev, "Creating %s -> %s\n", clk_alias, clk_name);
59
60         r = clk_get_sys(dev_name(&od->pdev->dev), clk_alias);
61         if (!IS_ERR(r)) {
62                 dev_dbg(&od->pdev->dev,
63                          "alias %s already exists\n", clk_alias);
64                 clk_put(r);
65                 return;
66         }
67
68         r = clk_get_sys(NULL, clk_name);
69
70         if (IS_ERR(r)) {
71                 struct of_phandle_args clkspec;
72
73                 clkspec.np = of_find_node_by_name(NULL, clk_name);
74
75                 r = of_clk_get_from_provider(&clkspec);
76
77                 rc = clk_register_clkdev(r, clk_alias,
78                                          dev_name(&od->pdev->dev));
79         } else {
80                 rc = clk_add_alias(clk_alias, dev_name(&od->pdev->dev),
81                                    clk_name, NULL);
82         }
83
84         if (rc) {
85                 if (rc == -ENODEV || rc == -ENOMEM)
86                         dev_err(&od->pdev->dev,
87                                 "clkdev_alloc for %s failed\n", clk_alias);
88                 else
89                         dev_err(&od->pdev->dev,
90                                 "clk_get for %s failed\n", clk_name);
91         }
92 }
93
94 /**
95  * _add_hwmod_clocks_clkdev - Add clkdev entry for hwmod optional clocks
96  * and main clock
97  * @od: struct omap_device *od
98  * @oh: struct omap_hwmod *oh
99  *
100  * For the main clock and every optional clock present per hwmod per
101  * omap_device, this function adds an entry in the clkdev table of the
102  * form <dev-id=dev_name, con-id=role> if it does not exist already.
103  *
104  * The function is called from inside omap_device_build_ss(), after
105  * omap_device_register.
106  *
107  * This allows drivers to get a pointer to its optional clocks based on its role
108  * by calling clk_get(<dev*>, <role>).
109  * In the case of the main clock, a "fck" alias is used.
110  *
111  * No return value.
112  */
113 static void _add_hwmod_clocks_clkdev(struct omap_device *od,
114                                      struct omap_hwmod *oh)
115 {
116         int i;
117
118         _add_clkdev(od, "fck", oh->main_clk);
119
120         for (i = 0; i < oh->opt_clks_cnt; i++)
121                 _add_clkdev(od, oh->opt_clks[i].role, oh->opt_clks[i].clk);
122 }
123
124
125 /**
126  * omap_device_build_from_dt - build an omap_device with multiple hwmods
127  * @pdev_name: name of the platform_device driver to use
128  * @pdev_id: this platform_device's connection ID
129  * @oh: ptr to the single omap_hwmod that backs this omap_device
130  * @pdata: platform_data ptr to associate with the platform_device
131  * @pdata_len: amount of memory pointed to by @pdata
132  *
133  * Function for building an omap_device already registered from device-tree
134  *
135  * Returns 0 or PTR_ERR() on error.
136  */
137 static int omap_device_build_from_dt(struct platform_device *pdev)
138 {
139         struct omap_hwmod **hwmods;
140         struct omap_device *od;
141         struct omap_hwmod *oh;
142         struct device_node *node = pdev->dev.of_node;
143         const char *oh_name;
144         int oh_cnt, i, ret = 0;
145         bool device_active = false;
146
147         oh_cnt = of_property_count_strings(node, "ti,hwmods");
148         if (oh_cnt <= 0) {
149                 dev_dbg(&pdev->dev, "No 'hwmods' to build omap_device\n");
150                 return -ENODEV;
151         }
152
153         hwmods = kzalloc(sizeof(struct omap_hwmod *) * oh_cnt, GFP_KERNEL);
154         if (!hwmods) {
155                 ret = -ENOMEM;
156                 goto odbfd_exit;
157         }
158
159         for (i = 0; i < oh_cnt; i++) {
160                 of_property_read_string_index(node, "ti,hwmods", i, &oh_name);
161                 oh = omap_hwmod_lookup(oh_name);
162                 if (!oh) {
163                         dev_err(&pdev->dev, "Cannot lookup hwmod '%s'\n",
164                                 oh_name);
165                         ret = -EINVAL;
166                         goto odbfd_exit1;
167                 }
168                 hwmods[i] = oh;
169                 if (oh->flags & HWMOD_INIT_NO_IDLE)
170                         device_active = true;
171         }
172
173         od = omap_device_alloc(pdev, hwmods, oh_cnt);
174         if (IS_ERR(od)) {
175                 dev_err(&pdev->dev, "Cannot allocate omap_device for :%s\n",
176                         oh_name);
177                 ret = PTR_ERR(od);
178                 goto odbfd_exit1;
179         }
180
181         /* Fix up missing resource names */
182         for (i = 0; i < pdev->num_resources; i++) {
183                 struct resource *r = &pdev->resource[i];
184
185                 if (r->name == NULL)
186                         r->name = dev_name(&pdev->dev);
187         }
188
189         dev_pm_domain_set(&pdev->dev, &omap_device_pm_domain);
190
191         if (device_active) {
192                 omap_device_enable(pdev);
193                 pm_runtime_set_active(&pdev->dev);
194         }
195
196 odbfd_exit1:
197         kfree(hwmods);
198 odbfd_exit:
199         /* if data/we are at fault.. load up a fail handler */
200         if (ret)
201                 dev_pm_domain_set(&pdev->dev, &omap_device_fail_pm_domain);
202
203         return ret;
204 }
205
206 static int _omap_device_notifier_call(struct notifier_block *nb,
207                                       unsigned long event, void *dev)
208 {
209         struct platform_device *pdev = to_platform_device(dev);
210         struct omap_device *od;
211         int err;
212
213         switch (event) {
214         case BUS_NOTIFY_REMOVED_DEVICE:
215                 if (pdev->archdata.od)
216                         omap_device_delete(pdev->archdata.od);
217                 break;
218         case BUS_NOTIFY_UNBOUND_DRIVER:
219                 od = to_omap_device(pdev);
220                 if (od && (od->_state == OMAP_DEVICE_STATE_ENABLED)) {
221                         dev_info(dev, "enabled after unload, idling\n");
222                         err = omap_device_idle(pdev);
223                         if (err)
224                                 dev_err(dev, "failed to idle\n");
225                 }
226                 break;
227         case BUS_NOTIFY_BIND_DRIVER:
228                 od = to_omap_device(pdev);
229                 if (od && (od->_state == OMAP_DEVICE_STATE_ENABLED) &&
230                     pm_runtime_status_suspended(dev)) {
231                         od->_driver_status = BUS_NOTIFY_BIND_DRIVER;
232                         pm_runtime_set_active(dev);
233                 }
234                 break;
235         case BUS_NOTIFY_ADD_DEVICE:
236                 if (pdev->dev.of_node)
237                         omap_device_build_from_dt(pdev);
238                 omap_auxdata_legacy_init(dev);
239                 /* fall through */
240         default:
241                 od = to_omap_device(pdev);
242                 if (od)
243                         od->_driver_status = event;
244         }
245
246         return NOTIFY_DONE;
247 }
248
249 /**
250  * _omap_device_enable_hwmods - call omap_hwmod_enable() on all hwmods
251  * @od: struct omap_device *od
252  *
253  * Enable all underlying hwmods.  Returns 0.
254  */
255 static int _omap_device_enable_hwmods(struct omap_device *od)
256 {
257         int ret = 0;
258         int i;
259
260         for (i = 0; i < od->hwmods_cnt; i++)
261                 ret |= omap_hwmod_enable(od->hwmods[i]);
262
263         return ret;
264 }
265
266 /**
267  * _omap_device_idle_hwmods - call omap_hwmod_idle() on all hwmods
268  * @od: struct omap_device *od
269  *
270  * Idle all underlying hwmods.  Returns 0.
271  */
272 static int _omap_device_idle_hwmods(struct omap_device *od)
273 {
274         int ret = 0;
275         int i;
276
277         for (i = 0; i < od->hwmods_cnt; i++)
278                 ret |= omap_hwmod_idle(od->hwmods[i]);
279
280         return ret;
281 }
282
283 /* Public functions for use by core code */
284
285 /**
286  * omap_device_get_context_loss_count - get lost context count
287  * @od: struct omap_device *
288  *
289  * Using the primary hwmod, query the context loss count for this
290  * device.
291  *
292  * Callers should consider context for this device lost any time this
293  * function returns a value different than the value the caller got
294  * the last time it called this function.
295  *
296  * If any hwmods exist for the omap_device associated with @pdev,
297  * return the context loss counter for that hwmod, otherwise return
298  * zero.
299  */
300 int omap_device_get_context_loss_count(struct platform_device *pdev)
301 {
302         struct omap_device *od;
303         u32 ret = 0;
304
305         od = to_omap_device(pdev);
306
307         if (od->hwmods_cnt)
308                 ret = omap_hwmod_get_context_loss_count(od->hwmods[0]);
309
310         return ret;
311 }
312
313 /**
314  * omap_device_alloc - allocate an omap_device
315  * @pdev: platform_device that will be included in this omap_device
316  * @oh: ptr to the single omap_hwmod that backs this omap_device
317  * @pdata: platform_data ptr to associate with the platform_device
318  * @pdata_len: amount of memory pointed to by @pdata
319  *
320  * Convenience function for allocating an omap_device structure and filling
321  * hwmods, and resources.
322  *
323  * Returns an struct omap_device pointer or ERR_PTR() on error;
324  */
325 struct omap_device *omap_device_alloc(struct platform_device *pdev,
326                                         struct omap_hwmod **ohs, int oh_cnt)
327 {
328         int ret = -ENOMEM;
329         struct omap_device *od;
330         int i;
331         struct omap_hwmod **hwmods;
332
333         od = kzalloc(sizeof(struct omap_device), GFP_KERNEL);
334         if (!od) {
335                 ret = -ENOMEM;
336                 goto oda_exit1;
337         }
338         od->hwmods_cnt = oh_cnt;
339
340         hwmods = kmemdup(ohs, sizeof(struct omap_hwmod *) * oh_cnt, GFP_KERNEL);
341         if (!hwmods)
342                 goto oda_exit2;
343
344         od->hwmods = hwmods;
345         od->pdev = pdev;
346         pdev->archdata.od = od;
347
348         for (i = 0; i < oh_cnt; i++) {
349                 hwmods[i]->od = od;
350                 _add_hwmod_clocks_clkdev(od, hwmods[i]);
351         }
352
353         return od;
354
355 oda_exit2:
356         kfree(od);
357 oda_exit1:
358         dev_err(&pdev->dev, "omap_device: build failed (%d)\n", ret);
359
360         return ERR_PTR(ret);
361 }
362
363 void omap_device_delete(struct omap_device *od)
364 {
365         if (!od)
366                 return;
367
368         od->pdev->archdata.od = NULL;
369         kfree(od->hwmods);
370         kfree(od);
371 }
372
373 /**
374  * omap_device_copy_resources - Add legacy IO and IRQ resources
375  * @oh: interconnect target module
376  * @pdev: platform device to copy resources to
377  *
378  * We still have legacy DMA and smartreflex needing resources.
379  * Let's populate what they need until we can eventually just
380  * remove this function. Note that there should be no need to
381  * call this from omap_device_build_from_dt(), nor should there
382  * be any need to call it for other devices.
383  */
384 static int
385 omap_device_copy_resources(struct omap_hwmod *oh,
386                            struct platform_device *pdev)
387 {
388         struct device_node *np, *child;
389         struct property *prop;
390         struct resource *res;
391         const char *name;
392         int error, irq = 0;
393
394         if (!oh || !oh->od || !oh->od->pdev)
395                 return -EINVAL;
396
397         np = oh->od->pdev->dev.of_node;
398         if (!np) {
399                 error = -ENODEV;
400                 goto error;
401         }
402
403         res = kzalloc(sizeof(*res) * 2, GFP_KERNEL);
404         if (!res)
405                 return -ENOMEM;
406
407         /* Do we have a dts range for the interconnect target module? */
408         error = omap_hwmod_parse_module_range(oh, np, res);
409
410         /* No ranges, rely on device reg entry */
411         if (error)
412                 error = of_address_to_resource(np, 0, res);
413         if (error)
414                 goto free;
415
416         /* SmartReflex needs first IO resource name to be "mpu" */
417         res[0].name = "mpu";
418
419         /*
420          * We may have a configured "ti,sysc" interconnect target with a
421          * dts child with the interrupt. If so use the first child's
422          * first interrupt for "ti-hwmods" legacy support.
423          */
424         of_property_for_each_string(np, "compatible", prop, name)
425                 if (!strncmp("ti,sysc-", name, 8))
426                         break;
427
428         child = of_get_next_available_child(np, NULL);
429
430         if (name)
431                 irq = irq_of_parse_and_map(child, 0);
432         if (!irq)
433                 irq = irq_of_parse_and_map(np, 0);
434         if (!irq) {
435                 error = -EINVAL;
436                 goto free;
437         }
438
439         /* Legacy DMA code needs interrupt name to be "0" */
440         res[1].start = irq;
441         res[1].end = irq;
442         res[1].flags = IORESOURCE_IRQ;
443         res[1].name = "0";
444
445         error = platform_device_add_resources(pdev, res, 2);
446
447 free:
448         kfree(res);
449
450 error:
451         WARN(error, "%s: %s device %s failed: %i\n",
452              __func__, oh->name, dev_name(&pdev->dev),
453              error);
454
455         return error;
456 }
457
458 /**
459  * omap_device_build - build and register an omap_device with one omap_hwmod
460  * @pdev_name: name of the platform_device driver to use
461  * @pdev_id: this platform_device's connection ID
462  * @oh: ptr to the single omap_hwmod that backs this omap_device
463  * @pdata: platform_data ptr to associate with the platform_device
464  * @pdata_len: amount of memory pointed to by @pdata
465  *
466  * Convenience function for building and registering a single
467  * omap_device record, which in turn builds and registers a
468  * platform_device record.  See omap_device_build_ss() for more
469  * information.  Returns ERR_PTR(-EINVAL) if @oh is NULL; otherwise,
470  * passes along the return value of omap_device_build_ss().
471  */
472 struct platform_device __init *omap_device_build(const char *pdev_name,
473                                                  int pdev_id,
474                                                  struct omap_hwmod *oh,
475                                                  void *pdata, int pdata_len)
476 {
477         int ret = -ENOMEM;
478         struct platform_device *pdev;
479         struct omap_device *od;
480
481         if (!oh || !pdev_name)
482                 return ERR_PTR(-EINVAL);
483
484         if (!pdata && pdata_len > 0)
485                 return ERR_PTR(-EINVAL);
486
487         if (strncmp(oh->name, "smartreflex", 11) &&
488             strncmp(oh->name, "dma", 3)) {
489                 pr_warn("%s need to update %s to probe with dt\na",
490                         __func__, pdev_name);
491                 ret = -ENODEV;
492                 goto odbs_exit;
493         }
494
495         pdev = platform_device_alloc(pdev_name, pdev_id);
496         if (!pdev) {
497                 ret = -ENOMEM;
498                 goto odbs_exit;
499         }
500
501         /* Set the dev_name early to allow dev_xxx in omap_device_alloc */
502         if (pdev->id != -1)
503                 dev_set_name(&pdev->dev, "%s.%d", pdev->name,  pdev->id);
504         else
505                 dev_set_name(&pdev->dev, "%s", pdev->name);
506
507         /*
508          * Must be called before omap_device_alloc() as oh->od
509          * only contains the currently registered omap_device
510          * and will get overwritten by omap_device_alloc().
511          */
512         ret = omap_device_copy_resources(oh, pdev);
513         if (ret)
514                 goto odbs_exit1;
515
516         od = omap_device_alloc(pdev, &oh, 1);
517         if (IS_ERR(od))
518                 goto odbs_exit1;
519
520         ret = platform_device_add_data(pdev, pdata, pdata_len);
521         if (ret)
522                 goto odbs_exit2;
523
524         ret = omap_device_register(pdev);
525         if (ret)
526                 goto odbs_exit2;
527
528         return pdev;
529
530 odbs_exit2:
531         omap_device_delete(od);
532 odbs_exit1:
533         platform_device_put(pdev);
534 odbs_exit:
535
536         pr_err("omap_device: %s: build failed (%d)\n", pdev_name, ret);
537
538         return ERR_PTR(ret);
539 }
540
541 #ifdef CONFIG_PM
542 static int _od_runtime_suspend(struct device *dev)
543 {
544         struct platform_device *pdev = to_platform_device(dev);
545         int ret;
546
547         ret = pm_generic_runtime_suspend(dev);
548         if (ret)
549                 return ret;
550
551         return omap_device_idle(pdev);
552 }
553
554 static int _od_runtime_resume(struct device *dev)
555 {
556         struct platform_device *pdev = to_platform_device(dev);
557         int ret;
558
559         ret = omap_device_enable(pdev);
560         if (ret) {
561                 dev_err(dev, "use pm_runtime_put_sync_suspend() in driver?\n");
562                 return ret;
563         }
564
565         return pm_generic_runtime_resume(dev);
566 }
567
568 static int _od_fail_runtime_suspend(struct device *dev)
569 {
570         dev_warn(dev, "%s: FIXME: missing hwmod/omap_dev info\n", __func__);
571         return -ENODEV;
572 }
573
574 static int _od_fail_runtime_resume(struct device *dev)
575 {
576         dev_warn(dev, "%s: FIXME: missing hwmod/omap_dev info\n", __func__);
577         return -ENODEV;
578 }
579
580 #endif
581
582 #ifdef CONFIG_SUSPEND
583 static int _od_suspend_noirq(struct device *dev)
584 {
585         struct platform_device *pdev = to_platform_device(dev);
586         struct omap_device *od = to_omap_device(pdev);
587         int ret;
588
589         /* Don't attempt late suspend on a driver that is not bound */
590         if (od->_driver_status != BUS_NOTIFY_BOUND_DRIVER)
591                 return 0;
592
593         ret = pm_generic_suspend_noirq(dev);
594
595         if (!ret && !pm_runtime_status_suspended(dev)) {
596                 if (pm_generic_runtime_suspend(dev) == 0) {
597                         omap_device_idle(pdev);
598                         od->flags |= OMAP_DEVICE_SUSPENDED;
599                 }
600         }
601
602         return ret;
603 }
604
605 static int _od_resume_noirq(struct device *dev)
606 {
607         struct platform_device *pdev = to_platform_device(dev);
608         struct omap_device *od = to_omap_device(pdev);
609
610         if (od->flags & OMAP_DEVICE_SUSPENDED) {
611                 od->flags &= ~OMAP_DEVICE_SUSPENDED;
612                 omap_device_enable(pdev);
613                 pm_generic_runtime_resume(dev);
614         }
615
616         return pm_generic_resume_noirq(dev);
617 }
618 #else
619 #define _od_suspend_noirq NULL
620 #define _od_resume_noirq NULL
621 #endif
622
623 struct dev_pm_domain omap_device_fail_pm_domain = {
624         .ops = {
625                 SET_RUNTIME_PM_OPS(_od_fail_runtime_suspend,
626                                    _od_fail_runtime_resume, NULL)
627         }
628 };
629
630 struct dev_pm_domain omap_device_pm_domain = {
631         .ops = {
632                 SET_RUNTIME_PM_OPS(_od_runtime_suspend, _od_runtime_resume,
633                                    NULL)
634                 USE_PLATFORM_PM_SLEEP_OPS
635                 SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(_od_suspend_noirq,
636                                               _od_resume_noirq)
637         }
638 };
639
640 /**
641  * omap_device_register - register an omap_device with one omap_hwmod
642  * @od: struct omap_device * to register
643  *
644  * Register the omap_device structure.  This currently just calls
645  * platform_device_register() on the underlying platform_device.
646  * Returns the return value of platform_device_register().
647  */
648 int omap_device_register(struct platform_device *pdev)
649 {
650         pr_debug("omap_device: %s: registering\n", pdev->name);
651
652         dev_pm_domain_set(&pdev->dev, &omap_device_pm_domain);
653         return platform_device_add(pdev);
654 }
655
656
657 /* Public functions for use by device drivers through struct platform_data */
658
659 /**
660  * omap_device_enable - fully activate an omap_device
661  * @od: struct omap_device * to activate
662  *
663  * Do whatever is necessary for the hwmods underlying omap_device @od
664  * to be accessible and ready to operate.  This generally involves
665  * enabling clocks, setting SYSCONFIG registers; and in the future may
666  * involve remuxing pins.  Device drivers should call this function
667  * indirectly via pm_runtime_get*().  Returns -EINVAL if called when
668  * the omap_device is already enabled, or passes along the return
669  * value of _omap_device_enable_hwmods().
670  */
671 int omap_device_enable(struct platform_device *pdev)
672 {
673         int ret;
674         struct omap_device *od;
675
676         od = to_omap_device(pdev);
677
678         if (od->_state == OMAP_DEVICE_STATE_ENABLED) {
679                 dev_warn(&pdev->dev,
680                          "omap_device: %s() called from invalid state %d\n",
681                          __func__, od->_state);
682                 return -EINVAL;
683         }
684
685         ret = _omap_device_enable_hwmods(od);
686
687         if (ret == 0)
688                 od->_state = OMAP_DEVICE_STATE_ENABLED;
689
690         return ret;
691 }
692
693 /**
694  * omap_device_idle - idle an omap_device
695  * @od: struct omap_device * to idle
696  *
697  * Idle omap_device @od.  Device drivers call this function indirectly
698  * via pm_runtime_put*().  Returns -EINVAL if the omap_device is not
699  * currently enabled, or passes along the return value of
700  * _omap_device_idle_hwmods().
701  */
702 int omap_device_idle(struct platform_device *pdev)
703 {
704         int ret;
705         struct omap_device *od;
706
707         od = to_omap_device(pdev);
708
709         if (od->_state != OMAP_DEVICE_STATE_ENABLED) {
710                 dev_warn(&pdev->dev,
711                          "omap_device: %s() called from invalid state %d\n",
712                          __func__, od->_state);
713                 return -EINVAL;
714         }
715
716         ret = _omap_device_idle_hwmods(od);
717
718         if (ret == 0)
719                 od->_state = OMAP_DEVICE_STATE_IDLE;
720
721         return ret;
722 }
723
724 /**
725  * omap_device_assert_hardreset - set a device's hardreset line
726  * @pdev: struct platform_device * to reset
727  * @name: const char * name of the reset line
728  *
729  * Set the hardreset line identified by @name on the IP blocks
730  * associated with the hwmods backing the platform_device @pdev.  All
731  * of the hwmods associated with @pdev must have the same hardreset
732  * line linked to them for this to work.  Passes along the return value
733  * of omap_hwmod_assert_hardreset() in the event of any failure, or
734  * returns 0 upon success.
735  */
736 int omap_device_assert_hardreset(struct platform_device *pdev, const char *name)
737 {
738         struct omap_device *od = to_omap_device(pdev);
739         int ret = 0;
740         int i;
741
742         for (i = 0; i < od->hwmods_cnt; i++) {
743                 ret = omap_hwmod_assert_hardreset(od->hwmods[i], name);
744                 if (ret)
745                         break;
746         }
747
748         return ret;
749 }
750
751 /**
752  * omap_device_deassert_hardreset - release a device's hardreset line
753  * @pdev: struct platform_device * to reset
754  * @name: const char * name of the reset line
755  *
756  * Release the hardreset line identified by @name on the IP blocks
757  * associated with the hwmods backing the platform_device @pdev.  All
758  * of the hwmods associated with @pdev must have the same hardreset
759  * line linked to them for this to work.  Passes along the return
760  * value of omap_hwmod_deassert_hardreset() in the event of any
761  * failure, or returns 0 upon success.
762  */
763 int omap_device_deassert_hardreset(struct platform_device *pdev,
764                                    const char *name)
765 {
766         struct omap_device *od = to_omap_device(pdev);
767         int ret = 0;
768         int i;
769
770         for (i = 0; i < od->hwmods_cnt; i++) {
771                 ret = omap_hwmod_deassert_hardreset(od->hwmods[i], name);
772                 if (ret)
773                         break;
774         }
775
776         return ret;
777 }
778
779 /**
780  * omap_device_get_by_hwmod_name() - convert a hwmod name to
781  * device pointer.
782  * @oh_name: name of the hwmod device
783  *
784  * Returns back a struct device * pointer associated with a hwmod
785  * device represented by a hwmod_name
786  */
787 struct device *omap_device_get_by_hwmod_name(const char *oh_name)
788 {
789         struct omap_hwmod *oh;
790
791         if (!oh_name) {
792                 WARN(1, "%s: no hwmod name!\n", __func__);
793                 return ERR_PTR(-EINVAL);
794         }
795
796         oh = omap_hwmod_lookup(oh_name);
797         if (!oh) {
798                 WARN(1, "%s: no hwmod for %s\n", __func__,
799                         oh_name);
800                 return ERR_PTR(-ENODEV);
801         }
802         if (!oh->od) {
803                 WARN(1, "%s: no omap_device for %s\n", __func__,
804                         oh_name);
805                 return ERR_PTR(-ENODEV);
806         }
807
808         return &oh->od->pdev->dev;
809 }
810
811 static struct notifier_block platform_nb = {
812         .notifier_call = _omap_device_notifier_call,
813 };
814
815 static int __init omap_device_init(void)
816 {
817         bus_register_notifier(&platform_bus_type, &platform_nb);
818         return 0;
819 }
820 omap_postcore_initcall(omap_device_init);
821
822 /**
823  * omap_device_late_idle - idle devices without drivers
824  * @dev: struct device * associated with omap_device
825  * @data: unused
826  *
827  * Check the driver bound status of this device, and idle it
828  * if there is no driver attached.
829  */
830 static int __init omap_device_late_idle(struct device *dev, void *data)
831 {
832         struct platform_device *pdev = to_platform_device(dev);
833         struct omap_device *od = to_omap_device(pdev);
834         int i;
835
836         if (!od)
837                 return 0;
838
839         /*
840          * If omap_device state is enabled, but has no driver bound,
841          * idle it.
842          */
843
844         /*
845          * Some devices (like memory controllers) are always kept
846          * enabled, and should not be idled even with no drivers.
847          */
848         for (i = 0; i < od->hwmods_cnt; i++)
849                 if (od->hwmods[i]->flags & HWMOD_INIT_NO_IDLE)
850                         return 0;
851
852         if (od->_driver_status != BUS_NOTIFY_BOUND_DRIVER &&
853             od->_driver_status != BUS_NOTIFY_BIND_DRIVER) {
854                 if (od->_state == OMAP_DEVICE_STATE_ENABLED) {
855                         dev_warn(dev, "%s: enabled but no driver.  Idling\n",
856                                  __func__);
857                         omap_device_idle(pdev);
858                 }
859         }
860
861         return 0;
862 }
863
864 static int __init omap_device_late_init(void)
865 {
866         bus_for_each_dev(&platform_bus_type, NULL, NULL, omap_device_late_idle);
867
868         return 0;
869 }
870 omap_late_initcall_sync(omap_device_late_init);