2 * Copyright (C) 2006 Benjamin Herrenschmidt, IBM Corp.
3 * <benh@kernel.crashing.org>
4 * and Arnd Bergmann, IBM Corp.
5 * Merged from powerpc/kernel/of_platform.c and
6 * sparc{,64}/kernel/of_device.c by Stephen Rothwell
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
14 #include <linux/errno.h>
15 #include <linux/module.h>
16 #include <linux/device.h>
17 #include <linux/of_device.h>
18 #include <linux/of_platform.h>
20 extern struct device_attribute of_platform_device_attrs[];
22 static int of_platform_bus_match(struct device *dev, struct device_driver *drv)
24 struct of_device *of_dev = to_of_device(dev);
25 struct of_platform_driver *of_drv = to_of_platform_driver(drv);
26 const struct of_device_id *matches = of_drv->match_table;
31 return of_match_device(matches, of_dev) != NULL;
34 static int of_platform_device_probe(struct device *dev)
37 struct of_platform_driver *drv;
38 struct of_device *of_dev;
39 const struct of_device_id *match;
41 drv = to_of_platform_driver(dev->driver);
42 of_dev = to_of_device(dev);
49 match = of_match_device(drv->match_table, of_dev);
51 error = drv->probe(of_dev, match);
58 static int of_platform_device_remove(struct device *dev)
60 struct of_device *of_dev = to_of_device(dev);
61 struct of_platform_driver *drv = to_of_platform_driver(dev->driver);
63 if (dev->driver && drv->remove)
68 static void of_platform_device_shutdown(struct device *dev)
70 struct of_device *of_dev = to_of_device(dev);
71 struct of_platform_driver *drv = to_of_platform_driver(dev->driver);
73 if (dev->driver && drv->shutdown)
74 drv->shutdown(of_dev);
77 #ifdef CONFIG_PM_SLEEP
79 static int of_platform_legacy_suspend(struct device *dev, pm_message_t mesg)
81 struct of_device *of_dev = to_of_device(dev);
82 struct of_platform_driver *drv = to_of_platform_driver(dev->driver);
85 if (dev->driver && drv->suspend)
86 ret = drv->suspend(of_dev, mesg);
90 static int of_platform_legacy_resume(struct device *dev)
92 struct of_device *of_dev = to_of_device(dev);
93 struct of_platform_driver *drv = to_of_platform_driver(dev->driver);
96 if (dev->driver && drv->resume)
97 ret = drv->resume(of_dev);
101 static int of_platform_pm_prepare(struct device *dev)
103 struct device_driver *drv = dev->driver;
106 if (drv && drv->pm && drv->pm->prepare)
107 ret = drv->pm->prepare(dev);
112 static void of_platform_pm_complete(struct device *dev)
114 struct device_driver *drv = dev->driver;
116 if (drv && drv->pm && drv->pm->complete)
117 drv->pm->complete(dev);
120 #ifdef CONFIG_SUSPEND
122 static int of_platform_pm_suspend(struct device *dev)
124 struct device_driver *drv = dev->driver;
131 if (drv->pm->suspend)
132 ret = drv->pm->suspend(dev);
134 ret = of_platform_legacy_suspend(dev, PMSG_SUSPEND);
140 static int of_platform_pm_suspend_noirq(struct device *dev)
142 struct device_driver *drv = dev->driver;
149 if (drv->pm->suspend_noirq)
150 ret = drv->pm->suspend_noirq(dev);
156 static int of_platform_pm_resume(struct device *dev)
158 struct device_driver *drv = dev->driver;
166 ret = drv->pm->resume(dev);
168 ret = of_platform_legacy_resume(dev);
174 static int of_platform_pm_resume_noirq(struct device *dev)
176 struct device_driver *drv = dev->driver;
183 if (drv->pm->resume_noirq)
184 ret = drv->pm->resume_noirq(dev);
190 #else /* !CONFIG_SUSPEND */
192 #define of_platform_pm_suspend NULL
193 #define of_platform_pm_resume NULL
194 #define of_platform_pm_suspend_noirq NULL
195 #define of_platform_pm_resume_noirq NULL
197 #endif /* !CONFIG_SUSPEND */
199 #ifdef CONFIG_HIBERNATION
201 static int of_platform_pm_freeze(struct device *dev)
203 struct device_driver *drv = dev->driver;
211 ret = drv->pm->freeze(dev);
213 ret = of_platform_legacy_suspend(dev, PMSG_FREEZE);
219 static int of_platform_pm_freeze_noirq(struct device *dev)
221 struct device_driver *drv = dev->driver;
228 if (drv->pm->freeze_noirq)
229 ret = drv->pm->freeze_noirq(dev);
235 static int of_platform_pm_thaw(struct device *dev)
237 struct device_driver *drv = dev->driver;
245 ret = drv->pm->thaw(dev);
247 ret = of_platform_legacy_resume(dev);
253 static int of_platform_pm_thaw_noirq(struct device *dev)
255 struct device_driver *drv = dev->driver;
262 if (drv->pm->thaw_noirq)
263 ret = drv->pm->thaw_noirq(dev);
269 static int of_platform_pm_poweroff(struct device *dev)
271 struct device_driver *drv = dev->driver;
278 if (drv->pm->poweroff)
279 ret = drv->pm->poweroff(dev);
281 ret = of_platform_legacy_suspend(dev, PMSG_HIBERNATE);
287 static int of_platform_pm_poweroff_noirq(struct device *dev)
289 struct device_driver *drv = dev->driver;
296 if (drv->pm->poweroff_noirq)
297 ret = drv->pm->poweroff_noirq(dev);
303 static int of_platform_pm_restore(struct device *dev)
305 struct device_driver *drv = dev->driver;
312 if (drv->pm->restore)
313 ret = drv->pm->restore(dev);
315 ret = of_platform_legacy_resume(dev);
321 static int of_platform_pm_restore_noirq(struct device *dev)
323 struct device_driver *drv = dev->driver;
330 if (drv->pm->restore_noirq)
331 ret = drv->pm->restore_noirq(dev);
337 #else /* !CONFIG_HIBERNATION */
339 #define of_platform_pm_freeze NULL
340 #define of_platform_pm_thaw NULL
341 #define of_platform_pm_poweroff NULL
342 #define of_platform_pm_restore NULL
343 #define of_platform_pm_freeze_noirq NULL
344 #define of_platform_pm_thaw_noirq NULL
345 #define of_platform_pm_poweroff_noirq NULL
346 #define of_platform_pm_restore_noirq NULL
348 #endif /* !CONFIG_HIBERNATION */
350 static struct dev_pm_ops of_platform_dev_pm_ops = {
351 .prepare = of_platform_pm_prepare,
352 .complete = of_platform_pm_complete,
353 .suspend = of_platform_pm_suspend,
354 .resume = of_platform_pm_resume,
355 .freeze = of_platform_pm_freeze,
356 .thaw = of_platform_pm_thaw,
357 .poweroff = of_platform_pm_poweroff,
358 .restore = of_platform_pm_restore,
359 .suspend_noirq = of_platform_pm_suspend_noirq,
360 .resume_noirq = of_platform_pm_resume_noirq,
361 .freeze_noirq = of_platform_pm_freeze_noirq,
362 .thaw_noirq = of_platform_pm_thaw_noirq,
363 .poweroff_noirq = of_platform_pm_poweroff_noirq,
364 .restore_noirq = of_platform_pm_restore_noirq,
367 #define OF_PLATFORM_PM_OPS_PTR (&of_platform_dev_pm_ops)
369 #else /* !CONFIG_PM_SLEEP */
371 #define OF_PLATFORM_PM_OPS_PTR NULL
373 #endif /* !CONFIG_PM_SLEEP */
375 int of_bus_type_init(struct bus_type *bus, const char *name)
378 bus->match = of_platform_bus_match;
379 bus->probe = of_platform_device_probe;
380 bus->remove = of_platform_device_remove;
381 bus->shutdown = of_platform_device_shutdown;
382 bus->dev_attrs = of_platform_device_attrs;
383 bus->pm = OF_PLATFORM_PM_OPS_PTR;
384 return bus_register(bus);
387 int of_register_driver(struct of_platform_driver *drv, struct bus_type *bus)
389 /* initialize common driver fields */
390 if (!drv->driver.name)
391 drv->driver.name = drv->name;
392 if (!drv->driver.owner)
393 drv->driver.owner = drv->owner;
394 drv->driver.bus = bus;
396 /* register with core */
397 return driver_register(&drv->driver);
399 EXPORT_SYMBOL(of_register_driver);
401 void of_unregister_driver(struct of_platform_driver *drv)
403 driver_unregister(&drv->driver);
405 EXPORT_SYMBOL(of_unregister_driver);