blob: 835f85ecd2de3eb1331a82a4de24222d5dd98fe1 [file] [log] [blame]
Stephen Rothwellf898f8d2007-05-01 16:49:51 +10001#ifndef _LINUX_OF_DEVICE_H
2#define _LINUX_OF_DEVICE_H
Stephen Rothwellf898f8d2007-05-01 16:49:51 +10003
Grant Likelyf9f5a462010-06-09 22:22:17 -06004#include <linux/platform_device.h>
Grant Likely29596042010-06-29 11:15:54 -06005#include <linux/of_platform.h> /* temporary until merge */
Grant Likelyb505ff52010-06-18 11:09:59 -06006
Grant Likelyf9f5a462010-06-09 22:22:17 -06007#ifdef CONFIG_OF_DEVICE
8#include <linux/device.h>
9#include <linux/of.h>
10#include <linux/mod_devicetable.h>
Stephen Rothwellf898f8d2007-05-01 16:49:51 +100011
Stephen Rothwellf898f8d2007-05-01 16:49:51 +100012extern const struct of_device_id *of_match_device(
Grant Likely44504b22010-04-13 16:13:22 -070013 const struct of_device_id *matches, const struct device *dev);
Grant Likelyc6601222010-07-23 15:04:01 -060014extern void of_device_make_bus_id(struct device *dev);
Stephen Rothwellf898f8d2007-05-01 16:49:51 +100015
Grant Likely8cec0e72010-06-08 07:48:17 -060016/**
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 */
21static inline int of_driver_match_device(const struct device *dev,
22 const struct device_driver *drv)
23{
24 return of_match_device(drv->of_match_table, dev) != NULL;
25}
26
Grant Likely94a0cb12010-07-22 13:59:23 -060027extern struct platform_device *of_dev_get(struct platform_device *dev);
28extern void of_dev_put(struct platform_device *dev);
Stephen Rothwellf898f8d2007-05-01 16:49:51 +100029
Grant Likely94a0cb12010-07-22 13:59:23 -060030extern int of_device_register(struct platform_device *ofdev);
31extern void of_device_unregister(struct platform_device *ofdev);
Stephen Rothwellf898f8d2007-05-01 16:49:51 +100032extern void of_release_dev(struct device *dev);
33
Grant Likely94a0cb12010-07-22 13:59:23 -060034static inline void of_device_free(struct platform_device *dev)
Joachim Fenkesfec738d2007-09-26 19:44:12 +100035{
36 of_release_dev(&dev->dev);
37}
38
Grant Likely34a1c1e2010-06-08 07:48:13 -060039extern ssize_t of_device_get_modalias(struct device *dev,
Stephen Rothwell09e67ca2008-05-16 11:57:45 +100040 char *str, ssize_t len);
Grant Likelydd27dcd2010-06-08 07:48:12 -060041
42extern int of_device_uevent(struct device *dev, struct kobj_uevent_env *env);
43
44
Grant Likely8cec0e72010-06-08 07:48:17 -060045#else /* CONFIG_OF_DEVICE */
46
47static inline int of_driver_match_device(struct device *dev,
48 struct device_driver *drv)
49{
50 return 0;
51}
52
Grant Likelyeca39302010-06-08 07:48:21 -060053static inline int of_device_uevent(struct device *dev,
54 struct kobj_uevent_env *env)
55{
56 return -ENODEV;
57}
58
Grant Likelyefb2e012010-04-13 16:12:27 -070059#endif /* CONFIG_OF_DEVICE */
Stephen Rothwell09e67ca2008-05-16 11:57:45 +100060
Stephen Rothwellf898f8d2007-05-01 16:49:51 +100061#endif /* _LINUX_OF_DEVICE_H */