2 * fwnode.h - Firmware device node object handle type definition.
4 * Copyright (C) 2015, Intel Corporation
5 * Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #ifndef _LINUX_FWNODE_H_
13 #define _LINUX_FWNODE_H_
15 #include <linux/types.h>
27 struct fwnode_operations
;
29 struct fwnode_handle
{
30 enum fwnode_type type
;
31 struct fwnode_handle
*secondary
;
32 const struct fwnode_operations
*ops
;
36 * struct fwnode_endpoint - Fwnode graph endpoint
39 * @local_fwnode: reference to the related fwnode
41 struct fwnode_endpoint
{
44 const struct fwnode_handle
*local_fwnode
;
48 * struct fwnode_operations - Operations for fwnode interface
49 * @get: Get a reference to an fwnode.
50 * @put: Put a reference to an fwnode.
51 * @property_present: Return true if a property is present.
52 * @property_read_integer_array: Read an array of integer properties. Return
53 * zero on success, a negative error code
55 * @property_read_string_array: Read an array of string properties. Return zero
56 * on success, a negative error code otherwise.
57 * @get_parent: Return the parent of an fwnode.
58 * @get_next_child_node: Return the next child node in an iteration.
59 * @get_named_child_node: Return a child node with a given name.
60 * @graph_get_next_endpoint: Return an endpoint node in an iteration.
61 * @graph_get_remote_endpoint: Return the remote endpoint node of a local
63 * @graph_get_port_parent: Return the parent node of a port node.
64 * @graph_parse_endpoint: Parse endpoint for port and endpoint id.
66 struct fwnode_operations
{
67 void (*get
)(struct fwnode_handle
*fwnode
);
68 void (*put
)(struct fwnode_handle
*fwnode
);
69 bool (*device_is_available
)(struct fwnode_handle
*fwnode
);
70 bool (*property_present
)(struct fwnode_handle
*fwnode
,
71 const char *propname
);
72 int (*property_read_int_array
)(struct fwnode_handle
*fwnode
,
74 unsigned int elem_size
, void *val
,
76 int (*property_read_string_array
)(struct fwnode_handle
*fwnode_handle
,
78 const char **val
, size_t nval
);
79 struct fwnode_handle
*(*get_parent
)(struct fwnode_handle
*fwnode
);
80 struct fwnode_handle
*
81 (*get_next_child_node
)(struct fwnode_handle
*fwnode
,
82 struct fwnode_handle
*child
);
83 struct fwnode_handle
*
84 (*get_named_child_node
)(struct fwnode_handle
*fwnode
, const char *name
);
85 struct fwnode_handle
*
86 (*graph_get_next_endpoint
)(struct fwnode_handle
*fwnode
,
87 struct fwnode_handle
*prev
);
88 struct fwnode_handle
*
89 (*graph_get_remote_endpoint
)(struct fwnode_handle
*fwnode
);
90 struct fwnode_handle
*
91 (*graph_get_port_parent
)(struct fwnode_handle
*fwnode
);
92 int (*graph_parse_endpoint
)(struct fwnode_handle
*fwnode
,
93 struct fwnode_endpoint
*endpoint
);
96 #define fwnode_has_op(fwnode, op) \
97 ((fwnode) && (fwnode)->ops && (fwnode)->ops->op)
98 #define fwnode_call_int_op(fwnode, op, ...) \
99 (fwnode ? (fwnode_has_op(fwnode, op) ? \
100 (fwnode)->ops->op(fwnode, ## __VA_ARGS__) : -ENXIO) : \
102 #define fwnode_call_bool_op(fwnode, op, ...) \
103 (fwnode ? (fwnode_has_op(fwnode, op) ? \
104 (fwnode)->ops->op(fwnode, ## __VA_ARGS__) : false) : \
106 #define fwnode_call_ptr_op(fwnode, op, ...) \
107 (fwnode_has_op(fwnode, op) ? \
108 (fwnode)->ops->op(fwnode, ## __VA_ARGS__) : NULL)
109 #define fwnode_call_void_op(fwnode, op, ...) \
111 if (fwnode_has_op(fwnode, op)) \
112 (fwnode)->ops->op(fwnode, ## __VA_ARGS__); \