Lines Matching refs:propname
416 const char *propname, const void *propval, in of_device_has_prop_value() argument
419 struct property *prop = of_find_property(device, propname, NULL); in of_device_has_prop_value()
427 const char *propname, in of_find_node_by_prop_value() argument
433 if (of_device_has_prop_value(np, propname, propval, proplen) && in of_find_node_by_prop_value()
471 const char *propname, u32 len) in of_find_property_value_of_size() argument
473 struct property *prop = of_find_property(np, propname, NULL); in of_find_property_value_of_size()
485 int of_read_u32(const struct device_node *np, const char *propname, u32 *outp) in of_read_u32() argument
487 return of_read_u32_index(np, propname, 0, outp); in of_read_u32()
490 int of_read_u32_array(const struct device_node *np, const char *propname, in of_read_u32_array() argument
495 debug("%s: %s: ", __func__, propname); in of_read_u32_array()
496 val = of_find_property_value_of_size(np, propname, in of_read_u32_array()
509 int of_read_u32_index(const struct device_node *np, const char *propname, in of_read_u32_index() argument
514 debug("%s: %s: ", __func__, propname); in of_read_u32_index()
518 val = of_find_property_value_of_size(np, propname, in of_read_u32_index()
531 int of_read_u64(const struct device_node *np, const char *propname, u64 *outp) in of_read_u64() argument
535 debug("%s: %s: ", __func__, propname); in of_read_u64()
538 val = of_find_property_value_of_size(np, propname, sizeof(*outp)); in of_read_u64()
551 int of_property_match_string(const struct device_node *np, const char *propname, in of_property_match_string() argument
554 const struct property *prop = of_find_property(np, propname, NULL); in of_property_match_string()
590 const char *propname, const char **out_strs, in of_property_read_string_helper() argument
593 const struct property *prop = of_find_property(np, propname, NULL); in of_property_read_string_helper()