Searched refs:start_node (Results 1 – 13 of 13) sorted by relevance
/linux/drivers/acpi/acpica/ |
H A D | nsparse.c | 26 * start_node - Where to enter the table into the namespace 44 acpi_ns_execute_table(u32 table_index, struct acpi_namespace_node *start_node) in acpi_ns_execute_table() argument 101 info->node = start_node; in acpi_ns_execute_table() 150 struct acpi_namespace_node *start_node) in acpi_ns_one_complete_parse() argument 211 /* start_node is the default location to load the table */ in acpi_ns_one_complete_parse() 213 if (start_node && start_node != acpi_gbl_root_node) { in acpi_ns_one_complete_parse() 215 acpi_ds_scope_stack_push(start_node, ACPI_TYPE_METHOD, in acpi_ns_one_complete_parse() 241 * start_node - Where to enter the table into the namespace 250 acpi_ns_parse_table(u32 table_index, struct acpi_namespace_node *start_node) in acpi_ns_parse_table() argument [all...] |
H A D | nswalk.c | 121 * start_node - Handle in namespace where search begins 151 acpi_handle start_node, in acpi_ns_walk_namespace() argument 170 if (start_node == ACPI_ROOT_OBJECT) { in acpi_ns_walk_namespace() 171 start_node = acpi_gbl_root_node; in acpi_ns_walk_namespace() 172 if (!start_node) { in acpi_ns_walk_namespace() 179 parent_node = start_node; in acpi_ns_walk_namespace()
|
H A D | dswstate.c | 604 walk_state->parser_state.start_node = method_node; in acpi_ds_init_aml_walk() 640 parser_state->start_node = NULL; in acpi_ds_init_aml_walk() 642 parser_state->start_node = extra_op->common.node; in acpi_ds_init_aml_walk() 645 if (parser_state->start_node) { in acpi_ds_init_aml_walk() 650 acpi_ds_scope_stack_push(parser_state->start_node, in acpi_ds_init_aml_walk() 651 parser_state->start_node-> in acpi_ds_init_aml_walk()
|
H A D | exconfig.c | 88 struct acpi_namespace_node *start_node; in acpi_ex_load_table_op() local 124 start_node = walk_state->scope_info->scope.node; in acpi_ex_load_table_op() 134 status = acpi_ns_get_node_unlocked(start_node, in acpi_ex_load_table_op() 152 start_node = parent_node; in acpi_ex_load_table_op() 157 status = acpi_ns_get_node_unlocked(start_node, in acpi_ex_load_table_op()
|
H A D | dsinit.c | 147 * start_node - Root of subtree to be initialized. 158 struct acpi_namespace_node *start_node) in acpi_ds_initialize_objects() argument 189 acpi_ns_walk_namespace(ACPI_TYPE_ANY, start_node, ACPI_UINT32_MAX, in acpi_ds_initialize_objects()
|
H A D | acnamesp.h | 102 acpi_ns_parse_table(u32 table_index, struct acpi_namespace_node *start_node); 105 acpi_ns_execute_table(u32 table_index, struct acpi_namespace_node *start_node); 110 struct acpi_namespace_node *start_node);
|
H A D | acparser.h | 181 struct acpi_namespace_node *start_node,
|
H A D | acdispat.h | 200 struct acpi_namespace_node *start_node);
|
/linux/drivers/net/ethernet/apm/xgene/ |
H A D | xgene_enet_cle.h | 273 u32 start_node; member
|
H A D | xgene_enet_cle.c | 171 iowrite32(ptree->start_node & 0x3fff, addr + SNPTR0); in xgene_cle_enable_ptree() 576 ret = xgene_cle_dram_wr(cle, buf, 17, i + ptree->start_node, in xgene_cle_setup_node() 586 ret = xgene_cle_dram_wr(cle, buf, 17, j + ptree->start_node, in xgene_cle_setup_node()
|
H A D | xgene_enet_main.c | 1857 enet_cle->ptree.start_node = 0; in xgene_enet_init_hw()
|
/linux/drivers/net/ethernet/intel/ice/ |
H A D | ice_sched.c | 45 * @start_node: pointer to the starting ice_sched_node struct in a sub-tree 55 ice_sched_find_node_by_teid(struct ice_sched_node *start_node, u32 teid) in ice_sched_find_node_by_teid() argument 59 /* The TEID is same as that of the start_node */ in ice_sched_find_node_by_teid() 60 if (ICE_TXSCHED_GET_NODE_TEID(start_node) == teid) in ice_sched_find_node_by_teid() 61 return start_node; in ice_sched_find_node_by_teid() 64 if (!start_node->num_children || in ice_sched_find_node_by_teid() 65 start_node->tx_sched_layer >= ICE_AQC_TOPO_MAX_LEVEL_NUM || in ice_sched_find_node_by_teid() 66 start_node->info.data.elem_type == ICE_AQC_ELEM_TYPE_LEAF) in ice_sched_find_node_by_teid() 70 for (i = 0; i < start_node->num_children; i++) in ice_sched_find_node_by_teid() 71 if (ICE_TXSCHED_GET_NODE_TEID(start_node in ice_sched_find_node_by_teid() [all...] |
H A D | ice_sched.h | 117 ice_sched_find_node_by_teid(struct ice_sched_node *start_node, u32 teid);
|