iwlagn: add define for MODULE_FIRMWARE
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / of / platform.c
blob7dacc1ebe91e013cadbc77ca57cf729f34585ef5
1 /*
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;
26 if (!matches)
27 return 0;
29 return of_match_device(matches, dev) != NULL;
32 static int of_platform_device_probe(struct device *dev)
34 int error = -ENODEV;
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);
42 if (!drv->probe)
43 return error;
45 of_dev_get(of_dev);
47 match = of_match_device(drv->driver.of_match_table, dev);
48 if (match)
49 error = drv->probe(of_dev, match);
50 if (error)
51 of_dev_put(of_dev);
53 return error;
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)
62 drv->remove(of_dev);
63 return 0;
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);
81 int ret = 0;
83 if (dev->driver && drv->suspend)
84 ret = drv->suspend(of_dev, mesg);
85 return ret;
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);
92 int ret = 0;
94 if (dev->driver && drv->resume)
95 ret = drv->resume(of_dev);
96 return ret;
99 static int of_platform_pm_prepare(struct device *dev)
101 struct device_driver *drv = dev->driver;
102 int ret = 0;
104 if (drv && drv->pm && drv->pm->prepare)
105 ret = drv->pm->prepare(dev);
107 return ret;
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;
123 int ret = 0;
125 if (!drv)
126 return 0;
128 if (drv->pm) {
129 if (drv->pm->suspend)
130 ret = drv->pm->suspend(dev);
131 } else {
132 ret = of_platform_legacy_suspend(dev, PMSG_SUSPEND);
135 return ret;
138 static int of_platform_pm_suspend_noirq(struct device *dev)
140 struct device_driver *drv = dev->driver;
141 int ret = 0;
143 if (!drv)
144 return 0;
146 if (drv->pm) {
147 if (drv->pm->suspend_noirq)
148 ret = drv->pm->suspend_noirq(dev);
151 return ret;
154 static int of_platform_pm_resume(struct device *dev)
156 struct device_driver *drv = dev->driver;
157 int ret = 0;
159 if (!drv)
160 return 0;
162 if (drv->pm) {
163 if (drv->pm->resume)
164 ret = drv->pm->resume(dev);
165 } else {
166 ret = of_platform_legacy_resume(dev);
169 return ret;
172 static int of_platform_pm_resume_noirq(struct device *dev)
174 struct device_driver *drv = dev->driver;
175 int ret = 0;
177 if (!drv)
178 return 0;
180 if (drv->pm) {
181 if (drv->pm->resume_noirq)
182 ret = drv->pm->resume_noirq(dev);
185 return ret;
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;
202 int ret = 0;
204 if (!drv)
205 return 0;
207 if (drv->pm) {
208 if (drv->pm->freeze)
209 ret = drv->pm->freeze(dev);
210 } else {
211 ret = of_platform_legacy_suspend(dev, PMSG_FREEZE);
214 return ret;
217 static int of_platform_pm_freeze_noirq(struct device *dev)
219 struct device_driver *drv = dev->driver;
220 int ret = 0;
222 if (!drv)
223 return 0;
225 if (drv->pm) {
226 if (drv->pm->freeze_noirq)
227 ret = drv->pm->freeze_noirq(dev);
230 return ret;
233 static int of_platform_pm_thaw(struct device *dev)
235 struct device_driver *drv = dev->driver;
236 int ret = 0;
238 if (!drv)
239 return 0;
241 if (drv->pm) {
242 if (drv->pm->thaw)
243 ret = drv->pm->thaw(dev);
244 } else {
245 ret = of_platform_legacy_resume(dev);
248 return ret;
251 static int of_platform_pm_thaw_noirq(struct device *dev)
253 struct device_driver *drv = dev->driver;
254 int ret = 0;
256 if (!drv)
257 return 0;
259 if (drv->pm) {
260 if (drv->pm->thaw_noirq)
261 ret = drv->pm->thaw_noirq(dev);
264 return ret;
267 static int of_platform_pm_poweroff(struct device *dev)
269 struct device_driver *drv = dev->driver;
270 int ret = 0;
272 if (!drv)
273 return 0;
275 if (drv->pm) {
276 if (drv->pm->poweroff)
277 ret = drv->pm->poweroff(dev);
278 } else {
279 ret = of_platform_legacy_suspend(dev, PMSG_HIBERNATE);
282 return ret;
285 static int of_platform_pm_poweroff_noirq(struct device *dev)
287 struct device_driver *drv = dev->driver;
288 int ret = 0;
290 if (!drv)
291 return 0;
293 if (drv->pm) {
294 if (drv->pm->poweroff_noirq)
295 ret = drv->pm->poweroff_noirq(dev);
298 return ret;
301 static int of_platform_pm_restore(struct device *dev)
303 struct device_driver *drv = dev->driver;
304 int ret = 0;
306 if (!drv)
307 return 0;
309 if (drv->pm) {
310 if (drv->pm->restore)
311 ret = drv->pm->restore(dev);
312 } else {
313 ret = of_platform_legacy_resume(dev);
316 return ret;
319 static int of_platform_pm_restore_noirq(struct device *dev)
321 struct device_driver *drv = dev->driver;
322 int ret = 0;
324 if (!drv)
325 return 0;
327 if (drv->pm) {
328 if (drv->pm->restore_noirq)
329 ret = drv->pm->restore_noirq(dev);
332 return ret;
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)
375 bus->name = 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);