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 | b505ff5 | 2010-06-18 11:09:59 -0600 | [diff] [blame] | 4 | /* |
| 5 | * The of_device *was* a kind of "base class" that was a superset of |
| 6 | * struct device for use by devices attached to an OF node and probed |
| 7 | * using OF properties. However, the important bit of OF-style |
| 8 | * probing, namely the device node pointer, has been moved into the |
| 9 | * common struct device when CONFIG_OF is set to make OF-style probing |
| 10 | * available to all bus types. So now, just make of_device and |
| 11 | * platform_device equivalent so that current of_platform bus users |
| 12 | * can be transparently migrated over to using the platform bus. |
| 13 | * |
| 14 | * This line will go away once all references to of_device are removed |
| 15 | * from the kernel. |
| 16 | */ |
| 17 | #define of_device platform_device |
Grant Likely | f9f5a46 | 2010-06-09 22:22:17 -0600 | [diff] [blame] | 18 | #include <linux/platform_device.h> |
Grant Likely | 2959604 | 2010-06-29 11:15:54 -0600 | [diff] [blame] | 19 | #include <linux/of_platform.h> /* temporary until merge */ |
Grant Likely | b505ff5 | 2010-06-18 11:09:59 -0600 | [diff] [blame] | 20 | |
Grant Likely | f9f5a46 | 2010-06-09 22:22:17 -0600 | [diff] [blame] | 21 | #ifdef CONFIG_OF_DEVICE |
| 22 | #include <linux/device.h> |
| 23 | #include <linux/of.h> |
| 24 | #include <linux/mod_devicetable.h> |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 25 | |
| 26 | #define to_of_device(d) container_of(d, struct of_device, dev) |
| 27 | |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 28 | extern const struct of_device_id *of_match_device( |
Grant Likely | 44504b2 | 2010-04-13 16:13:22 -0700 | [diff] [blame] | 29 | const struct of_device_id *matches, const struct device *dev); |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 30 | |
Grant Likely | 8cec0e7 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 31 | /** |
| 32 | * of_driver_match_device - Tell if a driver's of_match_table matches a device. |
| 33 | * @drv: the device_driver structure to test |
| 34 | * @dev: the device structure to match against |
| 35 | */ |
| 36 | static inline int of_driver_match_device(const struct device *dev, |
| 37 | const struct device_driver *drv) |
| 38 | { |
| 39 | return of_match_device(drv->of_match_table, dev) != NULL; |
| 40 | } |
| 41 | |
Grant Likely | 94a0cb1 | 2010-07-22 13:59:23 -0600 | [diff] [blame^] | 42 | extern struct platform_device *of_dev_get(struct platform_device *dev); |
| 43 | extern void of_dev_put(struct platform_device *dev); |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 44 | |
Grant Likely | 94a0cb1 | 2010-07-22 13:59:23 -0600 | [diff] [blame^] | 45 | extern int of_device_register(struct platform_device *ofdev); |
| 46 | extern void of_device_unregister(struct platform_device *ofdev); |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 47 | extern void of_release_dev(struct device *dev); |
| 48 | |
Grant Likely | 94a0cb1 | 2010-07-22 13:59:23 -0600 | [diff] [blame^] | 49 | static inline void of_device_free(struct platform_device *dev) |
Joachim Fenkes | fec738d | 2007-09-26 19:44:12 +1000 | [diff] [blame] | 50 | { |
| 51 | of_release_dev(&dev->dev); |
| 52 | } |
| 53 | |
Grant Likely | 34a1c1e | 2010-06-08 07:48:13 -0600 | [diff] [blame] | 54 | extern ssize_t of_device_get_modalias(struct device *dev, |
Stephen Rothwell | 09e67ca | 2008-05-16 11:57:45 +1000 | [diff] [blame] | 55 | char *str, ssize_t len); |
Grant Likely | dd27dcd | 2010-06-08 07:48:12 -0600 | [diff] [blame] | 56 | |
| 57 | extern int of_device_uevent(struct device *dev, struct kobj_uevent_env *env); |
| 58 | |
| 59 | |
Grant Likely | 8cec0e7 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 60 | #else /* CONFIG_OF_DEVICE */ |
| 61 | |
| 62 | static inline int of_driver_match_device(struct device *dev, |
| 63 | struct device_driver *drv) |
| 64 | { |
| 65 | return 0; |
| 66 | } |
| 67 | |
Grant Likely | eca3930 | 2010-06-08 07:48:21 -0600 | [diff] [blame] | 68 | static inline int of_device_uevent(struct device *dev, |
| 69 | struct kobj_uevent_env *env) |
| 70 | { |
| 71 | return -ENODEV; |
| 72 | } |
| 73 | |
Grant Likely | efb2e01 | 2010-04-13 16:12:27 -0700 | [diff] [blame] | 74 | #endif /* CONFIG_OF_DEVICE */ |
Stephen Rothwell | 09e67ca | 2008-05-16 11:57:45 +1000 | [diff] [blame] | 75 | |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 76 | #endif /* _LINUX_OF_DEVICE_H */ |