Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 1 | #ifndef _LINUX_OF_DEVICE_H |
| 2 | #define _LINUX_OF_DEVICE_H |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 3 | |
Grant Likely | f9f5a46 | 2010-06-09 22:22:17 -0600 | [diff] [blame] | 4 | #include <linux/platform_device.h> |
Grant Likely | 2959604 | 2010-06-29 11:15:54 -0600 | [diff] [blame] | 5 | #include <linux/of_platform.h> /* temporary until merge */ |
Grant Likely | b505ff5 | 2010-06-18 11:09:59 -0600 | [diff] [blame] | 6 | |
Grant Likely | f9f5a46 | 2010-06-09 22:22:17 -0600 | [diff] [blame] | 7 | #ifdef CONFIG_OF_DEVICE |
| 8 | #include <linux/device.h> |
| 9 | #include <linux/of.h> |
| 10 | #include <linux/mod_devicetable.h> |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 11 | |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 12 | extern const struct of_device_id *of_match_device( |
Grant Likely | 44504b2 | 2010-04-13 16:13:22 -0700 | [diff] [blame] | 13 | const struct of_device_id *matches, const struct device *dev); |
Grant Likely | c660122 | 2010-07-23 15:04:01 -0600 | [diff] [blame] | 14 | extern void of_device_make_bus_id(struct device *dev); |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 15 | |
Grant Likely | 8cec0e7 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 16 | /** |
| 17 | * of_driver_match_device - Tell if a driver's of_match_table matches a device. |
| 18 | * @drv: the device_driver structure to test |
| 19 | * @dev: the device structure to match against |
| 20 | */ |
Grant Likely | b826291 | 2011-02-17 02:37:15 -0700 | [diff] [blame] | 21 | static inline int of_driver_match_device(struct device *dev, |
Grant Likely | 8cec0e7 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 22 | const struct device_driver *drv) |
| 23 | { |
Grant Likely | b826291 | 2011-02-17 02:37:15 -0700 | [diff] [blame] | 24 | dev->of_match = of_match_device(drv->of_match_table, dev); |
| 25 | return dev->of_match != NULL; |
Grant Likely | 8cec0e7 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 26 | } |
| 27 | |
Grant Likely | 94a0cb1 | 2010-07-22 13:59:23 -0600 | [diff] [blame] | 28 | extern struct platform_device *of_dev_get(struct platform_device *dev); |
| 29 | extern void of_dev_put(struct platform_device *dev); |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 30 | |
Grant Likely | 7096d04 | 2010-10-20 11:45:13 -0600 | [diff] [blame] | 31 | extern int of_device_add(struct platform_device *pdev); |
Grant Likely | 94a0cb1 | 2010-07-22 13:59:23 -0600 | [diff] [blame] | 32 | extern int of_device_register(struct platform_device *ofdev); |
| 33 | extern void of_device_unregister(struct platform_device *ofdev); |
Joachim Fenkes | fec738d | 2007-09-26 19:44:12 +1000 | [diff] [blame] | 34 | |
Grant Likely | 34a1c1e | 2010-06-08 07:48:13 -0600 | [diff] [blame] | 35 | extern ssize_t of_device_get_modalias(struct device *dev, |
Stephen Rothwell | 09e67ca | 2008-05-16 11:57:45 +1000 | [diff] [blame] | 36 | char *str, ssize_t len); |
Grant Likely | dd27dcd | 2010-06-08 07:48:12 -0600 | [diff] [blame] | 37 | |
| 38 | extern int of_device_uevent(struct device *dev, struct kobj_uevent_env *env); |
| 39 | |
Grant Likely | 7096d04 | 2010-10-20 11:45:13 -0600 | [diff] [blame] | 40 | static inline void of_device_node_put(struct device *dev) |
| 41 | { |
| 42 | of_node_put(dev->of_node); |
| 43 | } |
Grant Likely | dd27dcd | 2010-06-08 07:48:12 -0600 | [diff] [blame] | 44 | |
Grant Likely | 8cec0e7 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 45 | #else /* CONFIG_OF_DEVICE */ |
| 46 | |
| 47 | static inline int of_driver_match_device(struct device *dev, |
| 48 | struct device_driver *drv) |
| 49 | { |
| 50 | return 0; |
| 51 | } |
| 52 | |
Grant Likely | eca3930 | 2010-06-08 07:48:21 -0600 | [diff] [blame] | 53 | static inline int of_device_uevent(struct device *dev, |
| 54 | struct kobj_uevent_env *env) |
| 55 | { |
| 56 | return -ENODEV; |
| 57 | } |
| 58 | |
Grant Likely | 7096d04 | 2010-10-20 11:45:13 -0600 | [diff] [blame] | 59 | static inline void of_device_node_put(struct device *dev) { } |
| 60 | |
Grant Likely | efb2e01 | 2010-04-13 16:12:27 -0700 | [diff] [blame] | 61 | #endif /* CONFIG_OF_DEVICE */ |
Stephen Rothwell | 09e67ca | 2008-05-16 11:57:45 +1000 | [diff] [blame] | 62 | |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 63 | #endif /* _LINUX_OF_DEVICE_H */ |