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 static int of_platform_bus_match(struct device
*dev
, struct device_driver
*drv
)
22 struct of_device
*of_dev
= to_of_device(dev
);
23 struct of_platform_driver
*of_drv
= to_of_platform_driver(drv
);
24 const struct of_device_id
*matches
= of_drv
->match_table
;
29 return of_match_device(matches
, of_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
->match_table
, of_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 int of_platform_device_suspend(struct device
*dev
, pm_message_t state
)
68 struct of_device
*of_dev
= to_of_device(dev
);
69 struct of_platform_driver
*drv
= to_of_platform_driver(dev
->driver
);
72 if (dev
->driver
&& drv
->suspend
)
73 error
= drv
->suspend(of_dev
, state
);
77 static int of_platform_device_resume(struct device
* dev
)
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
->resume
)
84 error
= drv
->resume(of_dev
);
88 int of_bus_type_init(struct bus_type
*bus
, const char *name
)
91 bus
->match
= of_platform_bus_match
;
92 bus
->probe
= of_platform_device_probe
;
93 bus
->remove
= of_platform_device_remove
;
94 bus
->suspend
= of_platform_device_suspend
;
95 bus
->resume
= of_platform_device_resume
;
96 return bus_register(bus
);
99 int of_register_driver(struct of_platform_driver
*drv
, struct bus_type
*bus
)
101 /* initialize common driver fields */
102 if (!drv
->driver
.name
)
103 drv
->driver
.name
= drv
->name
;
104 if (!drv
->driver
.owner
)
105 drv
->driver
.owner
= drv
->owner
;
106 drv
->driver
.bus
= bus
;
108 /* register with core */
109 return driver_register(&drv
->driver
);
111 EXPORT_SYMBOL(of_register_driver
);
113 void of_unregister_driver(struct of_platform_driver
*drv
)
115 driver_unregister(&drv
->driver
);
117 EXPORT_SYMBOL(of_unregister_driver
);