Lines Matching refs:propname

313 				const char *propname, int elem_size);
315 const char *propname,
318 const char *propname,
321 const char *propname, u8 *out_values,
324 const char *propname, u16 *out_values,
327 const char *propname,
332 const char *propname, u64 *out_value);
334 const char *propname,
340 const char *propname,
343 const char *propname,
346 const char *propname,
428 * of_property_for_each_u32(np, "propname", prop, p, u)
437 * of_property_for_each_string(np, "propname", prop, s)
608 const char *propname, int elem_size)
614 const char *propname, u32 index, u32 *out_value)
620 const char *propname, u32 index, u64 *out_value)
670 const char *propname, u8 *out_values,
677 const char *propname, u16 *out_values,
684 const char *propname,
693 const char *propname, u64 *out_value)
699 const char *propname,
708 const char *propname,
715 const char *propname,
722 const char *propname,
1072 * @propname: name of the property to be searched.
1082 const char *propname)
1084 return of_property_count_elems_of_size(np, propname, sizeof(u8));
1091 * @propname: name of the property to be searched.
1101 const char *propname)
1103 return of_property_count_elems_of_size(np, propname, sizeof(u16));
1110 * @propname: name of the property to be searched.
1120 const char *propname)
1122 return of_property_count_elems_of_size(np, propname, sizeof(u32));
1129 * @propname: name of the property to be searched.
1139 const char *propname)
1141 return of_property_count_elems_of_size(np, propname, sizeof(u64));
1148 * @propname: name of the property to be searched.
1158 const char *propname, const char **out_strs,
1161 return of_property_read_string_helper(np, propname, out_strs, sz, 0);
1168 * @propname: name of the property to be searched.
1178 const char *propname)
1180 return of_property_read_string_helper(np, propname, NULL, 0, 0);
1187 * @propname: name of the property to be searched.
1203 const char *propname,
1206 int rc = of_property_read_string_helper(np, propname, output, 1, index);
1213 * @propname: name of the property to be searched.
1221 const char *propname)
1223 struct property *prop = of_find_property(np, propname, NULL);
1231 * @propname: name of the property to be searched.
1237 static inline bool of_property_present(const struct device_node *np, const char *propname)
1239 return of_property_read_bool(np, propname);
1246 * @propname: name of the property to be searched.
1263 const char *propname,
1266 int ret = of_property_read_variable_u8_array(np, propname, out_values,
1278 * @propname: name of the property to be searched.
1295 const char *propname,
1298 int ret = of_property_read_variable_u16_array(np, propname, out_values,
1311 * @propname: name of the property to be searched.
1325 const char *propname,
1328 int ret = of_property_read_variable_u32_array(np, propname, out_values,
1341 * @propname: name of the property to be searched.
1355 const char *propname,
1358 int ret = of_property_read_variable_u64_array(np, propname, out_values,
1367 const char *propname,
1370 return of_property_read_u8_array(np, propname, out_value, 1);
1374 const char *propname,
1377 return of_property_read_u16_array(np, propname, out_value, 1);
1381 const char *propname,
1384 return of_property_read_u32_array(np, propname, out_value, 1);
1388 const char *propname,
1391 return of_property_read_u32(np, propname, (u32*) out_value);
1400 #define of_property_for_each_u32(np, propname, prop, p, u) \
1401 for (prop = of_find_property(np, propname, NULL), \
1406 #define of_property_for_each_string(np, propname, prop, s) \
1407 for (prop = of_find_property(np, propname, NULL), \