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 | |
Sudeep KarkadaNagesha | bd00860 | 2013-07-18 11:22:04 +0100 | [diff] [blame] | 4 | #include <linux/cpu.h> |
Grant Likely | f9f5a46 | 2010-06-09 22:22:17 -0600 | [diff] [blame] | 5 | #include <linux/platform_device.h> |
Grant Likely | 2959604 | 2010-06-29 11:15:54 -0600 | [diff] [blame] | 6 | #include <linux/of_platform.h> /* temporary until merge */ |
Grant Likely | b505ff5 | 2010-06-18 11:09:59 -0600 | [diff] [blame] | 7 | |
Grant Likely | f9f5a46 | 2010-06-09 22:22:17 -0600 | [diff] [blame] | 8 | #include <linux/of.h> |
| 9 | #include <linux/mod_devicetable.h> |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 10 | |
Paul Gortmaker | 313162d | 2012-01-30 11:46:54 -0500 | [diff] [blame] | 11 | struct device; |
| 12 | |
Rob Herring | ba166e9 | 2013-04-19 17:32:52 -0500 | [diff] [blame] | 13 | #ifdef CONFIG_OF |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 14 | extern const struct of_device_id *of_match_device( |
Grant Likely | 44504b2 | 2010-04-13 16:13:22 -0700 | [diff] [blame] | 15 | const struct of_device_id *matches, const struct device *dev); |
Grant Likely | c660122 | 2010-07-23 15:04:01 -0600 | [diff] [blame] | 16 | extern void of_device_make_bus_id(struct device *dev); |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 17 | |
Grant Likely | 8cec0e7 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 18 | /** |
| 19 | * of_driver_match_device - Tell if a driver's of_match_table matches a device. |
| 20 | * @drv: the device_driver structure to test |
| 21 | * @dev: the device structure to match against |
| 22 | */ |
Grant Likely | b826291 | 2011-02-17 02:37:15 -0700 | [diff] [blame] | 23 | static inline int of_driver_match_device(struct device *dev, |
Grant Likely | 8cec0e7 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 24 | const struct device_driver *drv) |
| 25 | { |
Grant Likely | b1608d6 | 2011-05-18 11:19:24 -0600 | [diff] [blame] | 26 | return of_match_device(drv->of_match_table, dev) != NULL; |
Grant Likely | 8cec0e7 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 27 | } |
| 28 | |
Grant Likely | 94a0cb1 | 2010-07-22 13:59:23 -0600 | [diff] [blame] | 29 | extern struct platform_device *of_dev_get(struct platform_device *dev); |
| 30 | extern void of_dev_put(struct platform_device *dev); |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 31 | |
Grant Likely | 7096d04 | 2010-10-20 11:45:13 -0600 | [diff] [blame] | 32 | extern int of_device_add(struct platform_device *pdev); |
Grant Likely | 94a0cb1 | 2010-07-22 13:59:23 -0600 | [diff] [blame] | 33 | extern int of_device_register(struct platform_device *ofdev); |
| 34 | extern void of_device_unregister(struct platform_device *ofdev); |
Joachim Fenkes | fec738d | 2007-09-26 19:44:12 +1000 | [diff] [blame] | 35 | |
Grant Likely | 34a1c1e | 2010-06-08 07:48:13 -0600 | [diff] [blame] | 36 | extern ssize_t of_device_get_modalias(struct device *dev, |
Stephen Rothwell | 09e67ca | 2008-05-16 11:57:45 +1000 | [diff] [blame] | 37 | char *str, ssize_t len); |
Grant Likely | dd27dcd | 2010-06-08 07:48:12 -0600 | [diff] [blame] | 38 | |
Grant Likely | 07d57a3 | 2012-02-01 11:22:22 -0700 | [diff] [blame] | 39 | extern void of_device_uevent(struct device *dev, struct kobj_uevent_env *env); |
| 40 | extern int of_device_uevent_modalias(struct device *dev, struct kobj_uevent_env *env); |
Grant Likely | dd27dcd | 2010-06-08 07:48:12 -0600 | [diff] [blame] | 41 | |
Grant Likely | 7096d04 | 2010-10-20 11:45:13 -0600 | [diff] [blame] | 42 | static inline void of_device_node_put(struct device *dev) |
| 43 | { |
| 44 | of_node_put(dev->of_node); |
| 45 | } |
Grant Likely | dd27dcd | 2010-06-08 07:48:12 -0600 | [diff] [blame] | 46 | |
Sudeep KarkadaNagesha | bd00860 | 2013-07-18 11:22:04 +0100 | [diff] [blame] | 47 | static inline struct device_node *of_cpu_device_node_get(int cpu) |
| 48 | { |
| 49 | struct device *cpu_dev; |
| 50 | cpu_dev = get_cpu_device(cpu); |
| 51 | if (!cpu_dev) |
| 52 | return NULL; |
| 53 | return of_node_get(cpu_dev->of_node); |
| 54 | } |
| 55 | |
Rob Herring | ba166e9 | 2013-04-19 17:32:52 -0500 | [diff] [blame] | 56 | #else /* CONFIG_OF */ |
Grant Likely | 8cec0e7 | 2010-06-08 07:48:17 -0600 | [diff] [blame] | 57 | |
| 58 | static inline int of_driver_match_device(struct device *dev, |
| 59 | struct device_driver *drv) |
| 60 | { |
| 61 | return 0; |
| 62 | } |
| 63 | |
Grant Likely | 07d57a3 | 2012-02-01 11:22:22 -0700 | [diff] [blame] | 64 | static inline void of_device_uevent(struct device *dev, |
| 65 | struct kobj_uevent_env *env) { } |
| 66 | |
Zhang Rui | b9f7306 | 2014-01-14 16:46:38 +0800 | [diff] [blame] | 67 | static inline int of_device_get_modalias(struct device *dev, |
| 68 | char *str, ssize_t len) |
| 69 | { |
| 70 | return -ENODEV; |
| 71 | } |
| 72 | |
Grant Likely | 07d57a3 | 2012-02-01 11:22:22 -0700 | [diff] [blame] | 73 | static inline int of_device_uevent_modalias(struct device *dev, |
Grant Likely | eca3930 | 2010-06-08 07:48:21 -0600 | [diff] [blame] | 74 | struct kobj_uevent_env *env) |
| 75 | { |
| 76 | return -ENODEV; |
| 77 | } |
| 78 | |
Grant Likely | 7096d04 | 2010-10-20 11:45:13 -0600 | [diff] [blame] | 79 | static inline void of_device_node_put(struct device *dev) { } |
| 80 | |
Geert Uytterhoeven | 1db73ae | 2014-02-03 09:27:40 +0100 | [diff] [blame] | 81 | static inline const struct of_device_id *__of_match_device( |
Grant Likely | b1608d6 | 2011-05-18 11:19:24 -0600 | [diff] [blame] | 82 | const struct of_device_id *matches, const struct device *dev) |
| 83 | { |
| 84 | return NULL; |
| 85 | } |
Geert Uytterhoeven | 1db73ae | 2014-02-03 09:27:40 +0100 | [diff] [blame] | 86 | #define of_match_device(matches, dev) \ |
| 87 | __of_match_device(of_match_ptr(matches), (dev)) |
Sudeep KarkadaNagesha | bd00860 | 2013-07-18 11:22:04 +0100 | [diff] [blame] | 88 | |
| 89 | static inline struct device_node *of_cpu_device_node_get(int cpu) |
| 90 | { |
| 91 | return NULL; |
| 92 | } |
Rob Herring | ba166e9 | 2013-04-19 17:32:52 -0500 | [diff] [blame] | 93 | #endif /* CONFIG_OF */ |
Stephen Rothwell | 09e67ca | 2008-05-16 11:57:45 +1000 | [diff] [blame] | 94 | |
Stephen Rothwell | f898f8d | 2007-05-01 16:49:51 +1000 | [diff] [blame] | 95 | #endif /* _LINUX_OF_DEVICE_H */ |