Lines Matching refs:node
44 struct reset_control *__of_reset_control_get(struct device_node *node,
118 struct device_node *node, in __of_reset_control_get() argument
452 struct device_node *node, const char *id) in of_reset_control_get_exclusive() argument
454 return __of_reset_control_get(node, id, 0, false, false, true); in of_reset_control_get_exclusive()
472 struct device_node *node, const char *id) in of_reset_control_get_optional_exclusive() argument
474 return __of_reset_control_get(node, id, 0, false, true, true); in of_reset_control_get_optional_exclusive()
497 struct device_node *node, const char *id) in of_reset_control_get_shared() argument
499 return __of_reset_control_get(node, id, 0, true, false, false); in of_reset_control_get_shared()
514 struct device_node *node, int index) in of_reset_control_get_exclusive_by_index() argument
516 return __of_reset_control_get(node, NULL, index, false, false, true); in of_reset_control_get_exclusive_by_index()
542 struct device_node *node, int index) in of_reset_control_get_shared_by_index() argument
544 return __of_reset_control_get(node, NULL, index, true, false, false); in of_reset_control_get_shared_by_index()
818 struct device_node *node, const char *id) in of_reset_control_get() argument
820 return of_reset_control_get_exclusive(node, id); in of_reset_control_get()
824 struct device_node *node, int index) in of_reset_control_get_by_index() argument
826 return of_reset_control_get_exclusive_by_index(node, index); in of_reset_control_get_by_index()
876 of_reset_control_array_get_exclusive(struct device_node *node) in of_reset_control_array_get_exclusive() argument
878 return of_reset_control_array_get(node, false, false, true); in of_reset_control_array_get_exclusive()
882 of_reset_control_array_get_exclusive_released(struct device_node *node) in of_reset_control_array_get_exclusive_released() argument
884 return of_reset_control_array_get(node, false, false, false); in of_reset_control_array_get_exclusive_released()
888 of_reset_control_array_get_shared(struct device_node *node) in of_reset_control_array_get_shared() argument
890 return of_reset_control_array_get(node, true, false, true); in of_reset_control_array_get_shared()
894 of_reset_control_array_get_optional_exclusive(struct device_node *node) in of_reset_control_array_get_optional_exclusive() argument
896 return of_reset_control_array_get(node, false, true, true); in of_reset_control_array_get_optional_exclusive()
900 of_reset_control_array_get_optional_shared(struct device_node *node) in of_reset_control_array_get_optional_shared() argument
902 return of_reset_control_array_get(node, true, true, true); in of_reset_control_array_get_optional_shared()