blob: da83e734c0260ae83bee4108557e40209fcf7d9f [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 Likelyefb2e012010-04-13 16:12:27 -07004#ifdef CONFIG_OF_DEVICE
Stephen Rothwellf898f8d2007-05-01 16:49:51 +10005#include <linux/device.h>
Grant Likelyb505ff52010-06-18 11:09:59 -06006#include <linux/platform_device.h>
Stephen Rothwellf898f8d2007-05-01 16:49:51 +10007#include <linux/of.h>
8#include <linux/mod_devicetable.h>
9
Grant Likelyb505ff52010-06-18 11:09:59 -060010
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 Rothwellf898f8d2007-05-01 16:49:51 +100026#include <asm/of_device.h>
27
28#define to_of_device(d) container_of(d, struct of_device, dev)
29
Stephen Rothwellf898f8d2007-05-01 16:49:51 +100030extern const struct of_device_id *of_match_device(
Grant Likely44504b22010-04-13 16:13:22 -070031 const struct of_device_id *matches, const struct device *dev);
Stephen Rothwellf898f8d2007-05-01 16:49:51 +100032
33extern struct of_device *of_dev_get(struct of_device *dev);
34extern void of_dev_put(struct of_device *dev);
35
36extern int of_device_register(struct of_device *ofdev);
37extern void of_device_unregister(struct of_device *ofdev);
38extern void of_release_dev(struct device *dev);
39
Joachim Fenkesfec738d2007-09-26 19:44:12 +100040static inline void of_device_free(struct of_device *dev)
41{
42 of_release_dev(&dev->dev);
43}
44
Stephen Rothwell09e67ca2008-05-16 11:57:45 +100045extern ssize_t of_device_get_modalias(struct of_device *ofdev,
46 char *str, ssize_t len);
Grant Likelydd27dcd2010-06-08 07:48:12 -060047
48extern int of_device_uevent(struct device *dev, struct kobj_uevent_env *env);
49
50
Grant Likelyefb2e012010-04-13 16:12:27 -070051#endif /* CONFIG_OF_DEVICE */
Stephen Rothwell09e67ca2008-05-16 11:57:45 +100052
Stephen Rothwellf898f8d2007-05-01 16:49:51 +100053#endif /* _LINUX_OF_DEVICE_H */