/kernel/linux/linux-5.10/arch/arm/mach-omap2/ |
H A D | display.c | 172 struct device_node *node; in omapdss_init_fbdev() local 211 node = of_find_node_by_name(NULL, "omap4_padconf_global"); in omapdss_init_fbdev() 212 if (node) in omapdss_init_fbdev() 213 omap4_dsi_mux_syscon = syscon_node_to_regmap(node); in omapdss_init_fbdev() 214 of_node_put(node); in omapdss_init_fbdev() 229 struct device_node *node; in omapdss_find_dss_of_node() local 233 node = of_find_compatible_node(NULL, NULL, in omapdss_find_dss_of_node() 235 if (node) in omapdss_find_dss_of_node() 236 return node; in omapdss_find_dss_of_node() 245 struct device_node *node; in omapdss_init_of() local [all...] |
/kernel/linux/linux-6.6/arch/powerpc/boot/ |
H A D | devtree.c | 137 void dt_get_reg_format(void *node, u32 *naddr, u32 *nsize) in dt_get_reg_format() argument 139 if (getprop(node, "#address-cells", naddr, 4) != 4) in dt_get_reg_format() 143 if (getprop(node, "#size-cells", nsize, 4) != 4) in dt_get_reg_format() 237 static int dt_xlate(void *node, int res, int reglen, unsigned long *addr, in dt_xlate() argument 247 parent = get_parent(node); in dt_xlate() 272 node = parent; in dt_xlate() 274 parent = get_parent(node); in dt_xlate() 280 buflen = getprop(node, "ranges", prop_buf, in dt_xlate() 319 int dt_xlate_reg(void *node, int res, unsigned long *addr, unsigned long *size) in dt_xlate_reg() argument 323 reglen = getprop(node, "re in dt_xlate_reg() 327 dt_xlate_addr(void *node, u32 *buf, int buflen, unsigned long *xlated_addr) dt_xlate_addr() argument 337 dt_is_compatible(void *node, const char *compat) dt_is_compatible() argument 356 dt_get_virtual_reg(void *node, void **addr, int nres) dt_get_virtual_reg() argument [all...] |
/kernel/linux/linux-6.6/arch/arm/mach-omap2/ |
H A D | display.c | 164 struct device_node *node; in omapdss_init_fbdev() local 203 node = of_find_node_by_name(NULL, "omap4_padconf_global"); in omapdss_init_fbdev() 204 if (node) in omapdss_init_fbdev() 205 omap4_dsi_mux_syscon = syscon_node_to_regmap(node); in omapdss_init_fbdev() 206 of_node_put(node); in omapdss_init_fbdev() 221 struct device_node *node; in omapdss_find_dss_of_node() local 225 node = of_find_compatible_node(NULL, NULL, in omapdss_find_dss_of_node() 227 if (node) in omapdss_find_dss_of_node() 228 return node; in omapdss_find_dss_of_node() 237 struct device_node *node; in omapdss_init_of() local [all...] |
/kernel/linux/linux-5.10/drivers/irqchip/ |
H A D | irq-omap-intc.c | 243 static int __init omap_init_irq_of(struct device_node *node) in omap_init_irq_of() argument 247 omap_irq_base = of_iomap(node, 0); in omap_init_irq_of() 251 domain = irq_domain_add_linear(node, omap_nr_irqs, in omap_init_irq_of() 263 static int __init omap_init_irq_legacy(u32 base, struct device_node *node) in omap_init_irq_legacy() argument 277 domain = irq_domain_add_legacy(node, omap_nr_irqs, irq_base, 0, in omap_init_irq_legacy() 297 static int __init omap_init_irq(u32 base, struct device_node *node) in omap_init_irq() argument 307 if (of_device_is_compatible(node, "ti,omap2-intc") || in omap_init_irq() 308 of_device_is_compatible(node, "ti,omap3-intc")) { in omap_init_irq() 311 if (of_address_to_resource(node, 0, &res)) in omap_init_irq() 315 ret = omap_init_irq_legacy(base, node); in omap_init_irq() 363 intc_of_init(struct device_node *node, struct device_node *parent) intc_of_init() argument [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/mellanox/mlx5/core/ |
H A D | fs_core.h | 140 /* lock the node for writing and traversing */ 150 struct fs_node node; member 167 struct fs_node node; member 211 struct fs_node node; member 226 struct fs_node node; member 236 struct fs_node node; member 247 struct fs_node node; member 290 #define fs_get_obj(v, _node) {v = container_of((_node), typeof(*v), node); } 293 list_for_each_entry(pos, root, node.list) 296 list_for_each_entry_safe(pos, tmp, root, node [all...] |
/kernel/linux/linux-5.10/net/core/ |
H A D | lowpower_protocol.c | 69 struct dpa_node *node = NULL; in dpa_uid_show() local 74 list_for_each_entry_safe(node, tmp_node, &g_dpa_uid_list, list_node) in dpa_uid_show() 75 seq_printf(seq, "%u\n", node->uid); in dpa_uid_show() 123 struct dpa_node *node = NULL; in dpa_uid_add() local 132 list_for_each_entry_safe(node, tmp_node, &g_dpa_uid_list, list_node) { in dpa_uid_add() 133 if (node->uid == uid) { in dpa_uid_add() 140 node = kzalloc(sizeof(*node), GFP_ATOMIC); in dpa_uid_add() 141 if (node) { in dpa_uid_add() 142 node in dpa_uid_add() 153 struct dpa_node *node = NULL; dpa_uid_del() local 273 struct dpa_node *node = NULL; dpa_uid_match() local [all...] |
/kernel/linux/linux-6.6/drivers/acpi/acpica/ |
H A D | dbmethod.c | 24 static acpi_status acpi_db_evaluate_object(struct acpi_namespace_node *node); 117 struct acpi_namespace_node *node; in acpi_db_set_method_data() local 131 node = acpi_db_convert_to_node(index_arg); in acpi_db_set_method_data() 132 if (!node) { in acpi_db_set_method_data() 136 if (node->type != ACPI_TYPE_INTEGER) { in acpi_db_set_method_data() 140 obj_desc = node->object; in acpi_db_set_method_data() 353 * PARAMETERS: node - Namespace node for the object 362 static acpi_status acpi_db_evaluate_object(struct acpi_namespace_node *node) in acpi_db_evaluate_object() argument 372 pathname = acpi_ns_get_external_pathname(node); in acpi_db_evaluate_object() 451 struct acpi_namespace_node *node = acpi_db_walk_for_execute() local 501 struct acpi_namespace_node *node = acpi_db_walk_for_execute_all() local [all...] |
/kernel/linux/linux-6.6/drivers/irqchip/ |
H A D | irq-omap-intc.c | 243 static int __init omap_init_irq_of(struct device_node *node) in omap_init_irq_of() argument 247 omap_irq_base = of_iomap(node, 0); in omap_init_irq_of() 251 domain = irq_domain_add_linear(node, omap_nr_irqs, in omap_init_irq_of() 263 static int __init omap_init_irq_legacy(u32 base, struct device_node *node) in omap_init_irq_legacy() argument 277 domain = irq_domain_add_legacy(node, omap_nr_irqs, irq_base, 0, in omap_init_irq_legacy() 297 static int __init omap_init_irq(u32 base, struct device_node *node) in omap_init_irq() argument 307 if (of_device_is_compatible(node, "ti,omap2-intc") || in omap_init_irq() 308 of_device_is_compatible(node, "ti,omap3-intc")) { in omap_init_irq() 311 if (of_address_to_resource(node, 0, &res)) in omap_init_irq() 315 ret = omap_init_irq_legacy(base, node); in omap_init_irq() 363 intc_of_init(struct device_node *node, struct device_node *parent) intc_of_init() argument [all...] |
/kernel/linux/linux-6.6/drivers/infiniband/sw/rxe/ |
H A D | rxe_mcast.c | 58 * @mcg: mcg object with an embedded red-black tree node 67 struct rb_node *node = NULL; in __rxe_insert_mcg() local 72 node = *link; in __rxe_insert_mcg() 73 tmp = rb_entry(node, struct rxe_mcg, node); in __rxe_insert_mcg() 82 rb_link_node(&mcg->node, node, link); in __rxe_insert_mcg() 83 rb_insert_color(&mcg->node, tree); in __rxe_insert_mcg() 88 * @mcg: mcast group object with an embedded red-black tree node 94 rb_erase(&mcg->node, in __rxe_remove_mcg() 110 struct rb_node *node; __rxe_lookup_mcg() local [all...] |
/kernel/linux/linux-6.6/sound/soc/meson/ |
H A D | meson-card-utils.c | 76 struct device_node *node, in meson_card_parse_dai() 81 if (!dlc || !node) in meson_card_parse_dai() 84 ret = snd_soc_of_get_dlc(node, NULL, dlc, 0); in meson_card_parse_dai() 94 struct device_node *node, in meson_card_set_link_name() 98 prefix, node->full_name); in meson_card_set_link_name() 108 unsigned int meson_card_parse_daifmt(struct device_node *node, in meson_card_parse_daifmt() argument 115 daifmt = snd_soc_daifmt_parse_format(node, NULL); in meson_card_parse_daifmt() 117 snd_soc_daifmt_parse_clock_provider_as_phandle(node, NULL, &bitclkmaster, &framemaster); in meson_card_parse_daifmt() 137 struct device_node *node) in meson_card_set_be_link() 143 num_codecs = of_get_child_count(node); in meson_card_set_be_link() 75 meson_card_parse_dai(struct snd_soc_card *card, struct device_node *node, struct snd_soc_dai_link_component *dlc) meson_card_parse_dai() argument 92 meson_card_set_link_name(struct snd_soc_card *card, struct snd_soc_dai_link *link, struct device_node *node, const char *prefix) meson_card_set_link_name() argument 135 meson_card_set_be_link(struct snd_soc_card *card, struct snd_soc_dai_link *link, struct device_node *node) meson_card_set_be_link() argument 175 meson_card_set_fe_link(struct snd_soc_card *card, struct snd_soc_dai_link *link, struct device_node *node, bool is_playback) meson_card_set_fe_link() argument 200 struct device_node *node = card->dev->of_node; meson_card_add_links() local [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/util/ |
H A D | ilist.h | 34 // // Add whatever data is needed in the node 53 "The type from the node must be derived from IntrusiveNodeBase, with " 138 inline iterator_template(T* node) { node_ = node; } in iterator_template() argument 167 // Appends |node| to the end of the list. If |node| is already in a list, it 169 void push_back(NodeType* node); 197 // This function will assert if it finds the list containing |node| is not in 199 static void Check(NodeType* node); 201 // A special node use 272 push_back(NodeType* node) push_back() argument 290 NodeType* node = sentinel_.NextNode(); front() local 297 NodeType* node = sentinel_.PreviousNode(); back() local 304 NodeType* node = sentinel_.NextNode(); front() local 311 NodeType* node = sentinel_.PreviousNode(); back() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/util/ |
H A D | ilist.h | 34 // // Add whatever data is needed in the node 53 "The type from the node must be derived from IntrusiveNodeBase, with " 138 inline iterator_template(T* node) { node_ = node; } in iterator_template() argument 167 // Appends |node| to the end of the list. If |node| is already in a list, it 169 void push_back(NodeType* node); 197 // This function will assert if it finds the list containing |node| is not in 199 static void Check(NodeType* node); 201 // A special node use 272 push_back(NodeType* node) push_back() argument 290 NodeType* node = sentinel_.NextNode(); front() local 297 NodeType* node = sentinel_.PreviousNode(); back() local 304 NodeType* node = sentinel_.NextNode(); front() local 311 NodeType* node = sentinel_.PreviousNode(); back() local [all...] |
/third_party/spirv-tools/source/util/ |
H A D | ilist.h | 34 // // Add whatever data is needed in the node 53 "The type from the node must be derived from IntrusiveNodeBase, with " 138 inline iterator_template(T* node) { node_ = node; } in iterator_template() argument 167 // Appends |node| to the end of the list. If |node| is already in a list, it 169 void push_back(NodeType* node); 197 // This function will assert if it finds the list containing |node| is not in 199 static void Check(NodeType* node); 201 // A special node use 272 push_back(NodeType* node) push_back() argument 290 NodeType* node = sentinel_.NextNode(); front() local 297 NodeType* node = sentinel_.PreviousNode(); back() local 304 NodeType* node = sentinel_.NextNode(); front() local 311 NodeType* node = sentinel_.PreviousNode(); back() local [all...] |
/kernel/linux/linux-5.10/net/netfilter/ |
H A D | nf_conncount.c | 42 struct list_head node; member 50 struct rb_node node; member 91 list_del(&conn->node); in conn_free() 136 list_for_each_entry_safe(conn, conn_n, &list->head, node) { in __nf_conncount_add() 191 list_add_tail(&conn->node, &list->head); in __nf_conncount_add() 234 list_for_each_entry_safe(conn, conn_n, &list->head, node) { in nf_conncount_gc_list() 286 rb_erase(&rbconn->node, root); in tree_nodes_free() 322 rbconn = rb_entry(*rbnode, struct nf_conncount_rb, node); in insert_tree() 357 /* expected case: match, insert new node */ in insert_tree() 373 list_add(&conn->node, in insert_tree() 449 struct rb_node *node; tree_gc_worker() local 562 struct rb_node *node; destroy_tree() local [all...] |
/kernel/linux/linux-6.6/net/netfilter/ |
H A D | nf_conncount.c | 42 struct list_head node; member 50 struct rb_node node; member 91 list_del(&conn->node); in conn_free() 139 list_for_each_entry_safe(conn, conn_n, &list->head, node) { in __nf_conncount_add() 195 list_add_tail(&conn->node, &list->head); in __nf_conncount_add() 244 list_for_each_entry_safe(conn, conn_n, &list->head, node) { in nf_conncount_gc_list() 297 rb_erase(&rbconn->node, root); in tree_nodes_free() 333 rbconn = rb_entry(*rbnode, struct nf_conncount_rb, node); in insert_tree() 368 /* expected case: match, insert new node */ in insert_tree() 384 list_add(&conn->node, in insert_tree() 460 struct rb_node *node; tree_gc_worker() local 573 struct rb_node *node; destroy_tree() local [all...] |
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_postsched.c | 96 struct ir3_postsched_node *node = instr->data; in has_sy_src() local 97 return node->has_sy_src; in has_sy_src() 103 struct ir3_postsched_node *node = instr->data; in has_ss_src() local 104 return node->has_ss_src; in has_ss_src() 114 list_delinit(&instr->node); in schedule() 136 list_addtail(&instr->node, &instr->block->instr_list); in schedule() 350 /* Track the mapping between sched node (instruction) that last 394 struct ir3_postsched_node *node, unsigned num, int src_n, in add_single_reg_dep() 403 unsigned d_soft = ir3_delayslots(dep->instr, node->instr, src_n, true); in add_single_reg_dep() 404 d = ir3_delayslots_with_repeat(dep->instr, node in add_single_reg_dep() 393 add_single_reg_dep(struct ir3_postsched_deps_state *state, struct ir3_postsched_node *node, unsigned num, int src_n, int dst_n) add_single_reg_dep() argument 429 add_reg_dep(struct ir3_postsched_deps_state *state, struct ir3_postsched_node *node, const struct ir3_register *reg, unsigned num, int src_n, int dst_n) add_reg_dep() argument 454 calculate_deps(struct ir3_postsched_deps_state *state, struct ir3_postsched_node *node) calculate_deps() argument 538 sched_dag_max_delay_cb(struct dag_node *node, void *state) sched_dag_max_delay_cb() argument [all...] |
/third_party/node/deps/v8/src/maglev/ |
H A D | maglev-graph-printer.cc | 26 NodeBase* node, std::string padding = " ", in PrintPaddedId() 28 int id = graph_labeller->NodeId(node); in PrintPaddedId() 36 os << graph_labeller->NodeId(node) << ": "; in PrintPaddedId() 238 ControlNode* node = block->control_node(); in PreProcessGraph() local 239 if (node->Is<JumpLoop>()) { in PreProcessGraph() 240 BasicBlock* target = node->Cast<JumpLoop>()->target(); in PreProcessGraph() 243 } else if (node->Is<UnconditionalControlNode>()) { in PreProcessGraph() 245 node->Cast<UnconditionalControlNode>()->target(), in PreProcessGraph() 247 } else if (node->Is<ConditionalControlNode>()) { in PreProcessGraph() 249 node in PreProcessGraph() 25 PrintPaddedId(std::ostream& os, MaglevGraphLabeller* graph_labeller, NodeBase* node, std::string padding = �, int padding_adjustement = 0) PrintPaddedId() argument 307 PrintEagerDeopt(std::ostream& os, std::vector<BasicBlock*> targets, NodeT* node, const ProcessingState& state) PrintEagerDeopt() argument 332 MaybePrintEagerDeopt(std::ostream& os, std::vector<BasicBlock*> targets, NodeBase* node, const ProcessingState& state) MaybePrintEagerDeopt() argument 347 PrintLazyDeopt(std::ostream& os, std::vector<BasicBlock*> targets, NodeT* node, const ProcessingState& state) PrintLazyDeopt() argument 377 MaybePrintLazyDeopt(std::ostream& os, std::vector<BasicBlock*> targets, NodeBase* node, const ProcessingState& state) MaybePrintLazyDeopt() argument 416 Process(Node* node, const ProcessingState& state) Process() argument [all...] |
/kernel/linux/common_modules/xpm/validator/ |
H A D | exec_signature_info.c | 295 struct rb_node *node = root->rb_node; in rb_search_node() local 298 while (node != NULL) { in rb_search_node() 299 file_node = rb_entry(node, struct exec_file_signature_info, rb_node); in rb_search_node() 301 node = file_node->rb_node.rb_left; in rb_search_node() 303 node = file_node->rb_node.rb_right; in rb_search_node() 313 struct exec_file_signature_info *node) in rb_add_node() 322 if (node->inode < file->inode) { in rb_add_node() 324 } else if (node->inode > file->inode) { in rb_add_node() 332 rb_link_node(&node->rb_node, parent, p); in rb_add_node() 333 rb_insert_color(&node in rb_add_node() 312 rb_add_node(struct rb_root *root, int *node_count, struct exec_file_signature_info *node) rb_add_node() argument 339 rb_erase_node(struct rb_root *root, int *node_count, struct exec_file_signature_info *node) rb_erase_node() argument 350 struct rb_node *node; find_idle_nodes() local 388 struct rb_node *node; test_elf_code_segment_info_size() local [all...] |
/kernel/linux/linux-5.10/net/tipc/ |
H A D | group.c | 43 #include "node.h" 68 u32 node; member 232 u32 node, u32 port) in tipc_group_find_member() 235 u64 nkey, key = (u64)node << 32 | port; in tipc_group_find_member() 240 nkey = (u64)m->node << 32 | m->port; in tipc_group_find_member() 252 u32 node, u32 port) in tipc_group_find_dest() 256 m = tipc_group_find_member(grp, node, port); in tipc_group_find_dest() 263 u32 node) in tipc_group_find_node() 270 if (m->node == node) in tipc_group_find_node() 231 tipc_group_find_member(struct tipc_group *grp, u32 node, u32 port) tipc_group_find_member() argument 251 tipc_group_find_dest(struct tipc_group *grp, u32 node, u32 port) tipc_group_find_dest() argument 262 tipc_group_find_node(struct tipc_group *grp, u32 node) tipc_group_find_node() argument 301 tipc_group_create_member(struct tipc_group *grp, u32 node, u32 port, u32 instance, int state) tipc_group_create_member() argument 330 tipc_group_add_member(struct tipc_group *grp, u32 node, u32 port, u32 instance) tipc_group_add_member() argument 503 u32 node, port; tipc_group_filter_msg() local 587 tipc_group_update_rcv_win(struct tipc_group *grp, int blks, u32 node, u32 port, struct sk_buff_head *xmitq) tipc_group_update_rcv_win() argument 744 u32 node = msg_orignode(hdr); tipc_group_proto_rcv() local 863 u32 node = evt->port.node; tipc_group_member_evt() local [all...] |
/kernel/linux/linux-6.6/fs/btrfs/ |
H A D | tree-mod-log.c | 16 struct rb_node node; member 78 struct rb_node *node; in btrfs_put_tree_mod_seq() local 114 for (node = rb_first(tm_root); node; node = next) { in btrfs_put_tree_mod_seq() 115 next = rb_next(node); in btrfs_put_tree_mod_seq() 116 tm = rb_entry(node, struct tree_mod_elem, node); in btrfs_put_tree_mod_seq() 119 rb_erase(node, tm_root); in btrfs_put_tree_mod_seq() 127 * node/lea 479 struct rb_node *node; __tree_mod_log_search() local [all...] |
/kernel/linux/linux-6.6/net/tipc/ |
H A D | group.c | 44 #include "node.h" 69 u32 node; member 233 u32 node, u32 port) in tipc_group_find_member() 236 u64 nkey, key = (u64)node << 32 | port; in tipc_group_find_member() 241 nkey = (u64)m->node << 32 | m->port; in tipc_group_find_member() 253 u32 node, u32 port) in tipc_group_find_dest() 257 m = tipc_group_find_member(grp, node, port); in tipc_group_find_dest() 264 u32 node) in tipc_group_find_node() 271 if (m->node == node) in tipc_group_find_node() 232 tipc_group_find_member(struct tipc_group *grp, u32 node, u32 port) tipc_group_find_member() argument 252 tipc_group_find_dest(struct tipc_group *grp, u32 node, u32 port) tipc_group_find_dest() argument 263 tipc_group_find_node(struct tipc_group *grp, u32 node) tipc_group_find_node() argument 302 tipc_group_create_member(struct tipc_group *grp, u32 node, u32 port, u32 instance, int state) tipc_group_create_member() argument 331 tipc_group_add_member(struct tipc_group *grp, u32 node, u32 port, u32 instance) tipc_group_add_member() argument 504 u32 node, port; tipc_group_filter_msg() local 588 tipc_group_update_rcv_win(struct tipc_group *grp, int blks, u32 node, u32 port, struct sk_buff_head *xmitq) tipc_group_update_rcv_win() argument 745 u32 node = msg_orignode(hdr); tipc_group_proto_rcv() local 864 u32 node = evt->port.node; tipc_group_member_evt() local [all...] |
/kernel/linux/linux-5.10/drivers/clk/sunxi/ |
H A D | clk-sun4i-display.c | 101 static void __init sun4i_a10_display_init(struct device_node *node, in sun4i_a10_display_init() argument 105 const char *clk_name = node->name; in sun4i_a10_display_init() 115 of_property_read_string(node, "clock-output-names", &clk_name); in sun4i_a10_display_init() 117 reg = of_io_request_and_map(node, 0, of_node_full_name(node)); in sun4i_a10_display_init() 123 ret = of_clk_parent_fill(node, parents, data->parents); in sun4i_a10_display_init() 169 ret = of_clk_add_provider(node, of_clk_src_simple_get, clk); in sun4i_a10_display_init() 187 reset_data->rcdev.of_node = node; in sun4i_a10_display_init() 207 of_clk_del_provider(node); in sun4i_a10_display_init() 218 of_address_to_resource(node, in sun4i_a10_display_init() 232 sun4i_a10_tcon_ch0_setup(struct device_node *node) sun4i_a10_tcon_ch0_setup() argument 251 sun4i_a10_display_setup(struct device_node *node) sun4i_a10_display_setup() argument [all...] |
/kernel/linux/linux-5.10/drivers/acpi/acpica/ |
H A D | exstore.c | 28 struct acpi_namespace_node *node, 36 * *dest_desc - Where to store it. Must be an NS node 68 /* dest_desc can be either a namespace node or an ACPI object */ in acpi_ex_store() 72 * Dest is a namespace node, in acpi_ex_store() 73 * Storing an object into a Named node. in acpi_ex_store() 335 * node - Named object to receive the value 362 struct acpi_namespace_node *node, in acpi_ex_store_object_to_node() 373 /* Get current type of the node, and object attached to Node */ in acpi_ex_store_object_to_node() 375 target_type = acpi_ns_get_type(node); in acpi_ex_store_object_to_node() 376 target_desc = acpi_ns_get_attached_object(node); in acpi_ex_store_object_to_node() 361 acpi_ex_store_object_to_node(union acpi_operand_object *source_desc, struct acpi_namespace_node *node, struct acpi_walk_state *walk_state, u8 implicit_conversion) acpi_ex_store_object_to_node() argument 560 acpi_ex_store_direct_to_node(union acpi_operand_object *source_desc, struct acpi_namespace_node *node, struct acpi_walk_state *walk_state) acpi_ex_store_direct_to_node() argument [all...] |
/kernel/linux/linux-5.10/arch/mips/include/asm/netlogic/xlp-hal/ |
H A D | sys.h | 196 #define nlm_get_sys_pcibase(node) nlm_pcicfg_base(cpu_is_xlp9xx() ? \ 197 XLP9XX_IO_SYS_OFFSET(node) : XLP_IO_SYS_OFFSET(node)) 198 #define nlm_get_sys_regbase(node) (nlm_get_sys_pcibase(node) + XLP_IO_PCI_HDRSZ) 201 #define nlm_get_fuse_pcibase(node) \ 202 nlm_pcicfg_base(XLP9XX_IO_FUSE_OFFSET(node)) 203 #define nlm_get_fuse_regbase(node) \ 204 (nlm_get_fuse_pcibase(node) + XLP_IO_PCI_HDRSZ) 206 #define nlm_get_clock_pcibase(node) \ [all...] |
/kernel/linux/linux-5.10/arch/powerpc/kexec/ |
H A D | core_64.c | 40 struct device_node *node; in default_machine_kexec_prepare() local 54 for_each_node_by_type(node, "pci") { in default_machine_kexec_prepare() 55 basep = of_get_property(node, "linux,tce-base", NULL); in default_machine_kexec_prepare() 56 sizep = of_get_property(node, "linux,tce-size", NULL); in default_machine_kexec_prepare() 396 struct device_node *node; in export_htab_values() local 402 node = of_find_node_by_path("/chosen"); in export_htab_values() 403 if (!node) in export_htab_values() 407 of_remove_property(node, of_find_property(node, htab_base_prop.name, NULL)); in export_htab_values() 408 of_remove_property(node, of_find_propert in export_htab_values() [all...] |