Lines Matching refs:node

365 static TEE_Result alloc_elt_and_probe(const void *fdt, int node,  in alloc_elt_and_probe()  argument
376 elt->nodeoffset = node; in alloc_elt_and_probe()
385 static TEE_Result probe_device_by_compat(const void *fdt, int node, in probe_device_by_compat() argument
398 return alloc_elt_and_probe(fdt, node, drv, dm); in probe_device_by_compat()
513 static TEE_Result add_node_to_probe(const void *fdt, int node, in add_node_to_probe() argument
517 const char __maybe_unused *node_name = fdt_get_name(fdt, node, NULL); in add_node_to_probe()
523 .nodeoffset = node, in add_node_to_probe()
565 static TEE_Result add_probe_node_by_compat(const void *fdt, int node, in add_probe_node_by_compat() argument
578 res = add_node_to_probe(fdt, node, dt_drv, dm); in add_probe_node_by_compat()
602 TEE_Result dt_driver_maybe_add_probe_node(const void *fdt, int node) in dt_driver_maybe_add_probe_node() argument
610 if (_fdt_get_status(fdt, node) == DT_STATUS_DISABLED) in dt_driver_maybe_add_probe_node()
613 count = fdt_stringlist_count(fdt, node, "compatible"); in dt_driver_maybe_add_probe_node()
618 compat = fdt_stringlist_get(fdt, node, "compatible", idx, &len); in dt_driver_maybe_add_probe_node()
621 res = add_probe_node_by_compat(fdt, node, compat); in dt_driver_maybe_add_probe_node()
631 static void parse_node(const void *fdt, int node) in parse_node() argument
636 fdt_for_each_subnode(subnode, fdt, node) { in parse_node()
742 static TEE_Result simple_bus_probe(const void *fdt, int node, in simple_bus_probe() argument
748 fdt_for_each_subnode(subnode, fdt, node) { in simple_bus_probe()