Lines Matching refs:fwnode
52 bool fwnode_device_is_available(const struct fwnode_handle *fwnode);
53 bool fwnode_property_present(const struct fwnode_handle *fwnode,
55 int fwnode_property_read_u8_array(const struct fwnode_handle *fwnode,
58 int fwnode_property_read_u16_array(const struct fwnode_handle *fwnode,
61 int fwnode_property_read_u32_array(const struct fwnode_handle *fwnode,
64 int fwnode_property_read_u64_array(const struct fwnode_handle *fwnode,
67 int fwnode_property_read_string_array(const struct fwnode_handle *fwnode,
70 int fwnode_property_read_string(const struct fwnode_handle *fwnode,
72 int fwnode_property_match_string(const struct fwnode_handle *fwnode,
74 int fwnode_property_get_reference_args(const struct fwnode_handle *fwnode,
79 struct fwnode_handle *fwnode_find_reference(const struct fwnode_handle *fwnode,
83 const char *fwnode_get_name(const struct fwnode_handle *fwnode);
84 const char *fwnode_get_name_prefix(const struct fwnode_handle *fwnode);
85 struct fwnode_handle *fwnode_get_parent(const struct fwnode_handle *fwnode);
87 struct fwnode_handle *fwnode);
92 const struct fwnode_handle *fwnode, struct fwnode_handle *child);
94 const struct fwnode_handle *fwnode, struct fwnode_handle *child);
96 #define fwnode_for_each_child_node(fwnode, child) \ argument
97 for (child = fwnode_get_next_child_node(fwnode, NULL); child; \
98 child = fwnode_get_next_child_node(fwnode, child))
100 #define fwnode_for_each_available_child_node(fwnode, child) \ argument
101 for (child = fwnode_get_next_available_child_node(fwnode, NULL); child;\
102 child = fwnode_get_next_available_child_node(fwnode, child))
112 const struct fwnode_handle *fwnode, const char *childname);
116 struct fwnode_handle *fwnode_handle_get(struct fwnode_handle *fwnode);
117 void fwnode_handle_put(struct fwnode_handle *fwnode);
119 int fwnode_irq_get(struct fwnode_handle *fwnode, unsigned int index);
179 static inline bool fwnode_property_read_bool(const struct fwnode_handle *fwnode, in fwnode_property_read_bool() argument
182 return fwnode_property_present(fwnode, propname); in fwnode_property_read_bool()
185 static inline int fwnode_property_read_u8(const struct fwnode_handle *fwnode, in fwnode_property_read_u8() argument
188 return fwnode_property_read_u8_array(fwnode, propname, val, 1); in fwnode_property_read_u8()
191 static inline int fwnode_property_read_u16(const struct fwnode_handle *fwnode, in fwnode_property_read_u16() argument
194 return fwnode_property_read_u16_array(fwnode, propname, val, 1); in fwnode_property_read_u16()
197 static inline int fwnode_property_read_u32(const struct fwnode_handle *fwnode, in fwnode_property_read_u32() argument
200 return fwnode_property_read_u32_array(fwnode, propname, val, 1); in fwnode_property_read_u32()
203 static inline int fwnode_property_read_u64(const struct fwnode_handle *fwnode, in fwnode_property_read_u64() argument
206 return fwnode_property_read_u64_array(fwnode, propname, val, 1); in fwnode_property_read_u64()
209 static inline int fwnode_property_count_u8(const struct fwnode_handle *fwnode, in fwnode_property_count_u8() argument
212 return fwnode_property_read_u8_array(fwnode, propname, NULL, 0); in fwnode_property_count_u8()
215 static inline int fwnode_property_count_u16(const struct fwnode_handle *fwnode, in fwnode_property_count_u16() argument
218 return fwnode_property_read_u16_array(fwnode, propname, NULL, 0); in fwnode_property_count_u16()
221 static inline int fwnode_property_count_u32(const struct fwnode_handle *fwnode, in fwnode_property_count_u32() argument
224 return fwnode_property_read_u32_array(fwnode, propname, NULL, 0); in fwnode_property_count_u32()
227 static inline int fwnode_property_count_u64(const struct fwnode_handle *fwnode, in fwnode_property_count_u64() argument
230 return fwnode_property_read_u64_array(fwnode, propname, NULL, 0); in fwnode_property_count_u64()
234 fwnode_property_string_array_count(const struct fwnode_handle *fwnode, in fwnode_property_string_array_count() argument
237 return fwnode_property_read_string_array(fwnode, propname, NULL, 0); in fwnode_property_string_array_count()
388 int fwnode_get_phy_mode(struct fwnode_handle *fwnode);
389 void *fwnode_get_mac_address(struct fwnode_handle *fwnode,
392 const struct fwnode_handle *fwnode, struct fwnode_handle *prev);
394 fwnode_graph_get_port_parent(const struct fwnode_handle *fwnode);
396 const struct fwnode_handle *fwnode);
398 const struct fwnode_handle *fwnode);
400 const struct fwnode_handle *fwnode);
402 fwnode_graph_get_remote_node(const struct fwnode_handle *fwnode, u32 port,
405 static inline bool fwnode_graph_is_endpoint(struct fwnode_handle *fwnode) in fwnode_graph_is_endpoint() argument
407 return fwnode_property_present(fwnode, "remote-endpoint"); in fwnode_graph_is_endpoint()
424 fwnode_graph_get_endpoint_by_id(const struct fwnode_handle *fwnode,
427 #define fwnode_graph_for_each_endpoint(fwnode, child) \ argument
429 (child = fwnode_graph_get_next_endpoint(fwnode, child)); )
431 int fwnode_graph_parse_endpoint(const struct fwnode_handle *fwnode,
434 typedef void *(*devcon_match_fn_t)(struct fwnode_handle *fwnode, const char *id,
437 void *fwnode_connection_find_match(struct fwnode_handle *fwnode,
463 bool is_software_node(const struct fwnode_handle *fwnode);
465 to_software_node(const struct fwnode_handle *fwnode);
486 void fwnode_remove_software_node(struct fwnode_handle *fwnode);