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