Lines Matching refs:node
22 struct reset_control *__of_reset_control_get(struct device_node *node,
83 struct device_node *node, in __of_reset_control_get() argument
229 struct device_node *node, const char *id) in of_reset_control_get_exclusive() argument
231 return __of_reset_control_get(node, id, 0, false, false, true); in of_reset_control_get_exclusive()
254 struct device_node *node, const char *id) in of_reset_control_get_shared() argument
256 return __of_reset_control_get(node, id, 0, true, false, false); in of_reset_control_get_shared()
271 struct device_node *node, int index) in of_reset_control_get_exclusive_by_index() argument
273 return __of_reset_control_get(node, NULL, index, false, false, true); in of_reset_control_get_exclusive_by_index()
299 struct device_node *node, int index) in of_reset_control_get_shared_by_index() argument
301 return __of_reset_control_get(node, NULL, index, true, false, false); in of_reset_control_get_shared_by_index()
412 struct device_node *node, const char *id) in of_reset_control_get() argument
414 return of_reset_control_get_exclusive(node, id); in of_reset_control_get()
418 struct device_node *node, int index) in of_reset_control_get_by_index() argument
420 return of_reset_control_get_exclusive_by_index(node, index); in of_reset_control_get_by_index()
470 of_reset_control_array_get_exclusive(struct device_node *node) in of_reset_control_array_get_exclusive() argument
472 return of_reset_control_array_get(node, false, false, true); in of_reset_control_array_get_exclusive()
476 of_reset_control_array_get_exclusive_released(struct device_node *node) in of_reset_control_array_get_exclusive_released() argument
478 return of_reset_control_array_get(node, false, false, false); in of_reset_control_array_get_exclusive_released()
482 of_reset_control_array_get_shared(struct device_node *node) in of_reset_control_array_get_shared() argument
484 return of_reset_control_array_get(node, true, false, true); in of_reset_control_array_get_shared()
488 of_reset_control_array_get_optional_exclusive(struct device_node *node) in of_reset_control_array_get_optional_exclusive() argument
490 return of_reset_control_array_get(node, false, true, true); in of_reset_control_array_get_optional_exclusive()
494 of_reset_control_array_get_optional_shared(struct device_node *node) in of_reset_control_array_get_optional_shared() argument
496 return of_reset_control_array_get(node, true, true, true); in of_reset_control_array_get_optional_shared()