blob: 07ca187fc5e441a74db060dd3c86965a0033ad30 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Stephen Rothwellf898f8d2007-05-01 16:49:51 +10002#ifndef _LINUX_OF_DEVICE_H
3#define _LINUX_OF_DEVICE_H
Stephen Rothwellf898f8d2007-05-01 16:49:51 +10004
Sudeep KarkadaNageshabd008602013-07-18 11:22:04 +01005#include <linux/cpu.h>
Grant Likelyf9f5a462010-06-09 22:22:17 -06006#include <linux/platform_device.h>
Grant Likely29596042010-06-29 11:15:54 -06007#include <linux/of_platform.h> /* temporary until merge */
Grant Likelyb505ff52010-06-18 11:09:59 -06008
Grant Likelyf9f5a462010-06-09 22:22:17 -06009#include <linux/of.h>
10#include <linux/mod_devicetable.h>
Stephen Rothwellf898f8d2007-05-01 16:49:51 +100011
Paul Gortmaker313162d2012-01-30 11:46:54 -050012struct device;
13
Rob Herringba166e92013-04-19 17:32:52 -050014#ifdef CONFIG_OF
Stephen Rothwellf898f8d2007-05-01 16:49:51 +100015extern const struct of_device_id *of_match_device(
Grant Likely44504b22010-04-13 16:13:22 -070016 const struct of_device_id *matches, const struct device *dev);
Stephen Rothwellf898f8d2007-05-01 16:49:51 +100017
Grant Likely8cec0e72010-06-08 07:48:17 -060018/**
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 Likelyb8262912011-02-17 02:37:15 -070023static inline int of_driver_match_device(struct device *dev,
Grant Likely8cec0e72010-06-08 07:48:17 -060024 const struct device_driver *drv)
25{
Grant Likelyb1608d62011-05-18 11:19:24 -060026 return of_match_device(drv->of_match_table, dev) != NULL;
Grant Likely8cec0e72010-06-08 07:48:17 -060027}
28
Grant Likely94a0cb12010-07-22 13:59:23 -060029extern struct platform_device *of_dev_get(struct platform_device *dev);
30extern void of_dev_put(struct platform_device *dev);
Stephen Rothwellf898f8d2007-05-01 16:49:51 +100031
Grant Likely7096d042010-10-20 11:45:13 -060032extern int of_device_add(struct platform_device *pdev);
Grant Likely94a0cb12010-07-22 13:59:23 -060033extern int of_device_register(struct platform_device *ofdev);
34extern void of_device_unregister(struct platform_device *ofdev);
Joachim Fenkesfec738d2007-09-26 19:44:12 +100035
Joachim Eastwood3386e0f2015-05-06 20:09:09 +020036extern const void *of_device_get_match_data(const struct device *dev);
37
Rob Herring0634c292017-03-22 09:16:27 -050038extern ssize_t of_device_modalias(struct device *dev, char *str, ssize_t len);
Stephen Boyd9c829c02016-12-28 14:56:47 -080039extern int of_device_request_module(struct device *dev);
Grant Likelydd27dcd2010-06-08 07:48:12 -060040
Grant Likely07d57a32012-02-01 11:22:22 -070041extern void of_device_uevent(struct device *dev, struct kobj_uevent_env *env);
42extern int of_device_uevent_modalias(struct device *dev, struct kobj_uevent_env *env);
Grant Likelydd27dcd2010-06-08 07:48:12 -060043
Grant Likely7096d042010-10-20 11:45:13 -060044static inline void of_device_node_put(struct device *dev)
45{
46 of_node_put(dev->of_node);
47}
Grant Likelydd27dcd2010-06-08 07:48:12 -060048
Sudeep KarkadaNageshabd008602013-07-18 11:22:04 +010049static inline struct device_node *of_cpu_device_node_get(int cpu)
50{
51 struct device *cpu_dev;
52 cpu_dev = get_cpu_device(cpu);
53 if (!cpu_dev)
Sudeep Holla7467c9d2017-07-24 14:55:13 +010054 return of_get_cpu_node(cpu, NULL);
Sudeep KarkadaNageshabd008602013-07-18 11:22:04 +010055 return of_node_get(cpu_dev->of_node);
56}
57
Lorenzo Pieralisia081bd42020-06-19 09:20:08 +010058int of_dma_configure_id(struct device *dev,
Christoph Hellwig3d6ce862018-05-03 16:25:08 +020059 struct device_node *np,
Lorenzo Pieralisia081bd42020-06-19 09:20:08 +010060 bool force_dma, const u32 *id);
61static inline int of_dma_configure(struct device *dev,
62 struct device_node *np,
63 bool force_dma)
64{
65 return of_dma_configure_id(dev, np, force_dma, NULL);
66}
Rob Herringba166e92013-04-19 17:32:52 -050067#else /* CONFIG_OF */
Grant Likely8cec0e72010-06-08 07:48:17 -060068
69static inline int of_driver_match_device(struct device *dev,
Tomeu Vizoso35068ce2015-07-01 09:10:43 +020070 const struct device_driver *drv)
Grant Likely8cec0e72010-06-08 07:48:17 -060071{
72 return 0;
73}
74
Grant Likely07d57a32012-02-01 11:22:22 -070075static inline void of_device_uevent(struct device *dev,
76 struct kobj_uevent_env *env) { }
77
Joachim Eastwood3386e0f2015-05-06 20:09:09 +020078static inline const void *of_device_get_match_data(const struct device *dev)
79{
80 return NULL;
81}
82
Rob Herring0634c292017-03-22 09:16:27 -050083static inline int of_device_modalias(struct device *dev,
84 char *str, ssize_t len)
Zhang Ruib9f73062014-01-14 16:46:38 +080085{
86 return -ENODEV;
87}
88
Stephen Boyd9c829c02016-12-28 14:56:47 -080089static inline int of_device_request_module(struct device *dev)
90{
91 return -ENODEV;
92}
93
Grant Likely07d57a32012-02-01 11:22:22 -070094static inline int of_device_uevent_modalias(struct device *dev,
Grant Likelyeca39302010-06-08 07:48:21 -060095 struct kobj_uevent_env *env)
96{
97 return -ENODEV;
98}
99
Grant Likely7096d042010-10-20 11:45:13 -0600100static inline void of_device_node_put(struct device *dev) { }
101
Geert Uytterhoeven1db73ae2014-02-03 09:27:40 +0100102static inline const struct of_device_id *__of_match_device(
Grant Likelyb1608d62011-05-18 11:19:24 -0600103 const struct of_device_id *matches, const struct device *dev)
104{
105 return NULL;
106}
Geert Uytterhoeven1db73ae2014-02-03 09:27:40 +0100107#define of_match_device(matches, dev) \
108 __of_match_device(of_match_ptr(matches), (dev))
Sudeep KarkadaNageshabd008602013-07-18 11:22:04 +0100109
110static inline struct device_node *of_cpu_device_node_get(int cpu)
111{
112 return NULL;
113}
Laurent Pinchart7b07cbe2017-04-10 16:51:02 +0530114
Lorenzo Pieralisia081bd42020-06-19 09:20:08 +0100115static inline int of_dma_configure_id(struct device *dev,
116 struct device_node *np,
117 bool force_dma)
118{
119 return 0;
120}
Christoph Hellwig3d6ce862018-05-03 16:25:08 +0200121static inline int of_dma_configure(struct device *dev,
122 struct device_node *np,
123 bool force_dma)
Laurent Pinchart7b07cbe2017-04-10 16:51:02 +0530124{
125 return 0;
126}
Rob Herringba166e92013-04-19 17:32:52 -0500127#endif /* CONFIG_OF */
Stephen Rothwell09e67ca2008-05-16 11:57:45 +1000128
Stephen Rothwellf898f8d2007-05-01 16:49:51 +1000129#endif /* _LINUX_OF_DEVICE_H */