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 const struct of_device_id
*matches
= drv
->of_match_table
;
29 return of_match_device(matches
, dev
) != NULL
;
32 static int of_platform_device_probe(struct device
*dev
)
35 struct of_platform_driver
*drv
;
36 struct of_device
*of_dev
;
37 const struct of_device_id
*match
;
39 drv
= to_of_platform_driver(dev
->driver
);
40 of_dev
= to_of_device(dev
);
47 match
= of_match_device(drv
->driver
.of_match_table
, dev
);
49 error
= drv
->probe(of_dev
, match
);
56 static int of_platform_device_remove(struct device
*dev
)
58 struct of_device
*of_dev
= to_of_device(dev
);
59 struct of_platform_driver
*drv
= to_of_platform_driver(dev
->driver
);
61 if (dev
->driver
&& drv
->remove
)
66 static void of_platform_device_shutdown(struct device
*dev
)
68 struct of_device
*of_dev
= to_of_device(dev
);
69 struct of_platform_driver
*drv
= to_of_platform_driver(dev
->driver
);
71 if (dev
->driver
&& drv
->shutdown
)
72 drv
->shutdown(of_dev
);
75 #ifdef CONFIG_PM_SLEEP
77 static int of_platform_legacy_suspend(struct device
*dev
, pm_message_t mesg
)
79 struct of_device
*of_dev
= to_of_device(dev
);
80 struct of_platform_driver
*drv
= to_of_platform_driver(dev
->driver
);
83 if (dev
->driver
&& drv
->suspend
)
84 ret
= drv
->suspend(of_dev
, mesg
);
88 static int of_platform_legacy_resume(struct device
*dev
)
90 struct of_device
*of_dev
= to_of_device(dev
);
91 struct of_platform_driver
*drv
= to_of_platform_driver(dev
->driver
);
94 if (dev
->driver
&& drv
->resume
)
95 ret
= drv
->resume(of_dev
);
99 static int of_platform_pm_prepare(struct device
*dev
)
101 struct device_driver
*drv
= dev
->driver
;
104 if (drv
&& drv
->pm
&& drv
->pm
->prepare
)
105 ret
= drv
->pm
->prepare(dev
);
110 static void of_platform_pm_complete(struct device
*dev
)
112 struct device_driver
*drv
= dev
->driver
;
114 if (drv
&& drv
->pm
&& drv
->pm
->complete
)
115 drv
->pm
->complete(dev
);
118 #ifdef CONFIG_SUSPEND
120 static int of_platform_pm_suspend(struct device
*dev
)
122 struct device_driver
*drv
= dev
->driver
;
129 if (drv
->pm
->suspend
)
130 ret
= drv
->pm
->suspend(dev
);
132 ret
= of_platform_legacy_suspend(dev
, PMSG_SUSPEND
);
138 static int of_platform_pm_suspend_noirq(struct device
*dev
)
140 struct device_driver
*drv
= dev
->driver
;
147 if (drv
->pm
->suspend_noirq
)
148 ret
= drv
->pm
->suspend_noirq(dev
);
154 static int of_platform_pm_resume(struct device
*dev
)
156 struct device_driver
*drv
= dev
->driver
;
164 ret
= drv
->pm
->resume(dev
);
166 ret
= of_platform_legacy_resume(dev
);
172 static int of_platform_pm_resume_noirq(struct device
*dev
)
174 struct device_driver
*drv
= dev
->driver
;
181 if (drv
->pm
->resume_noirq
)
182 ret
= drv
->pm
->resume_noirq(dev
);
188 #else /* !CONFIG_SUSPEND */
190 #define of_platform_pm_suspend NULL
191 #define of_platform_pm_resume NULL
192 #define of_platform_pm_suspend_noirq NULL
193 #define of_platform_pm_resume_noirq NULL
195 #endif /* !CONFIG_SUSPEND */
197 #ifdef CONFIG_HIBERNATION
199 static int of_platform_pm_freeze(struct device
*dev
)
201 struct device_driver
*drv
= dev
->driver
;
209 ret
= drv
->pm
->freeze(dev
);
211 ret
= of_platform_legacy_suspend(dev
, PMSG_FREEZE
);
217 static int of_platform_pm_freeze_noirq(struct device
*dev
)
219 struct device_driver
*drv
= dev
->driver
;
226 if (drv
->pm
->freeze_noirq
)
227 ret
= drv
->pm
->freeze_noirq(dev
);
233 static int of_platform_pm_thaw(struct device
*dev
)
235 struct device_driver
*drv
= dev
->driver
;
243 ret
= drv
->pm
->thaw(dev
);
245 ret
= of_platform_legacy_resume(dev
);
251 static int of_platform_pm_thaw_noirq(struct device
*dev
)
253 struct device_driver
*drv
= dev
->driver
;
260 if (drv
->pm
->thaw_noirq
)
261 ret
= drv
->pm
->thaw_noirq(dev
);
267 static int of_platform_pm_poweroff(struct device
*dev
)
269 struct device_driver
*drv
= dev
->driver
;
276 if (drv
->pm
->poweroff
)
277 ret
= drv
->pm
->poweroff(dev
);
279 ret
= of_platform_legacy_suspend(dev
, PMSG_HIBERNATE
);
285 static int of_platform_pm_poweroff_noirq(struct device
*dev
)
287 struct device_driver
*drv
= dev
->driver
;
294 if (drv
->pm
->poweroff_noirq
)
295 ret
= drv
->pm
->poweroff_noirq(dev
);
301 static int of_platform_pm_restore(struct device
*dev
)
303 struct device_driver
*drv
= dev
->driver
;
310 if (drv
->pm
->restore
)
311 ret
= drv
->pm
->restore(dev
);
313 ret
= of_platform_legacy_resume(dev
);
319 static int of_platform_pm_restore_noirq(struct device
*dev
)
321 struct device_driver
*drv
= dev
->driver
;
328 if (drv
->pm
->restore_noirq
)
329 ret
= drv
->pm
->restore_noirq(dev
);
335 #else /* !CONFIG_HIBERNATION */
337 #define of_platform_pm_freeze NULL
338 #define of_platform_pm_thaw NULL
339 #define of_platform_pm_poweroff NULL
340 #define of_platform_pm_restore NULL
341 #define of_platform_pm_freeze_noirq NULL
342 #define of_platform_pm_thaw_noirq NULL
343 #define of_platform_pm_poweroff_noirq NULL
344 #define of_platform_pm_restore_noirq NULL
346 #endif /* !CONFIG_HIBERNATION */
348 static struct dev_pm_ops of_platform_dev_pm_ops
= {
349 .prepare
= of_platform_pm_prepare
,
350 .complete
= of_platform_pm_complete
,
351 .suspend
= of_platform_pm_suspend
,
352 .resume
= of_platform_pm_resume
,
353 .freeze
= of_platform_pm_freeze
,
354 .thaw
= of_platform_pm_thaw
,
355 .poweroff
= of_platform_pm_poweroff
,
356 .restore
= of_platform_pm_restore
,
357 .suspend_noirq
= of_platform_pm_suspend_noirq
,
358 .resume_noirq
= of_platform_pm_resume_noirq
,
359 .freeze_noirq
= of_platform_pm_freeze_noirq
,
360 .thaw_noirq
= of_platform_pm_thaw_noirq
,
361 .poweroff_noirq
= of_platform_pm_poweroff_noirq
,
362 .restore_noirq
= of_platform_pm_restore_noirq
,
365 #define OF_PLATFORM_PM_OPS_PTR (&of_platform_dev_pm_ops)
367 #else /* !CONFIG_PM_SLEEP */
369 #define OF_PLATFORM_PM_OPS_PTR NULL
371 #endif /* !CONFIG_PM_SLEEP */
373 int of_bus_type_init(struct bus_type
*bus
, const char *name
)
376 bus
->match
= of_platform_bus_match
;
377 bus
->probe
= of_platform_device_probe
;
378 bus
->remove
= of_platform_device_remove
;
379 bus
->shutdown
= of_platform_device_shutdown
;
380 bus
->dev_attrs
= of_platform_device_attrs
;
381 bus
->pm
= OF_PLATFORM_PM_OPS_PTR
;
382 return bus_register(bus
);
385 int of_register_driver(struct of_platform_driver
*drv
, struct bus_type
*bus
)
387 drv
->driver
.bus
= bus
;
389 /* register with core */
390 return driver_register(&drv
->driver
);
392 EXPORT_SYMBOL(of_register_driver
);
394 void of_unregister_driver(struct of_platform_driver
*drv
)
396 driver_unregister(&drv
->driver
);
398 EXPORT_SYMBOL(of_unregister_driver
);