Home
last modified time | relevance | path

Searched refs:node (Results 1451 – 1475 of 6034) sorted by relevance

1...<<51525354555657585960>>...242

/linux-6.15/Documentation/devicetree/bindings/net/
H A Dibm,emac.txt7 below, the node for the OPB bus on which the EMAC sits must have a
10 i) The EMAC node itself
23 - mal-device : phandle of the associated McMAL node
52 the ZMII device node
56 of the RGMII device node.
83 offload, phandle of the TAH device node.
165 ii) McMAL node
186 iii) ZMII node
192 For Axon, there is no ZMII node.
195 iv) RGMII node
/linux-6.15/arch/mips/include/asm/mach-loongson64/
H A Dtopology.h10 #define cpumask_of_node(node) (&__node_cpumask[node]) argument
/linux-6.15/arch/arm/boot/dts/aspeed/
H A Daspeed-bmc-ibm-rainier-1s4u.dts12 /delete-node/ fan3;
13 /delete-node/ fan5;
/linux-6.15/drivers/phy/ti/
H A Dphy-am654-serdes.c645 struct device_node *node = am654_phy->of_node; in serdes_am654_clk_register() local
663 of_parse_phandle(node, "ti,serdes-clk", 0); in serdes_am654_clk_register()
672 num_parents = of_clk_get_parent_count(node); in serdes_am654_clk_register()
681 of_clk_parent_fill(node, parent_names, num_parents); in serdes_am654_clk_register()
740 struct device_node *node = dev->of_node; in serdes_am654_probe() local
770 am654_phy->of_node = node; in serdes_am654_probe()
784 ret = of_property_read_string_index(node, "clock-output-names", in serdes_am654_probe()
802 ret = of_clk_add_provider(node, of_clk_src_onecell_get, clk_data); in serdes_am654_probe()
824 of_clk_del_provider(node); in serdes_am654_probe()
832 struct device_node *node = am654_phy->of_node; in serdes_am654_remove() local
[all …]
/linux-6.15/Documentation/devicetree/bindings/powerpc/fsl/
H A Dmpc5200.txt47 The soc node
49 This node describes the on chip SOC peripherals. Every mpc5200 based
50 board will have this node, and as such there is a common naming
105 design supports the internal wdt, then the device node for GPT0 should
124 add the following properties to the gpt node:
127 When referencing the GPIO line from another node, the first cell must always
132 controller. To do so, add the following properties to the gpt node:
135 When referencing the IRQ line from another node, the cell represents the
153 Each GPIO controller node should have the empty property gpio-controller and
160 The FEC node can specify one of the following properties to configure
[all …]
/linux-6.15/Documentation/devicetree/bindings/mailbox/
H A Dti,omap-mailbox.yaml48 A Mailbox device node is used to represent a Mailbox IP instance/cluster
50 represented as child nodes of this parent node.
58 the mailbox controller device node and an args specifier that will be the
59 phandle to the intended sub-mailbox child node to be used for communication.
89 The omap-sub-mailbox is a child node within a Mailbox controller device
90 node and represents the actual communication channel used to send and
92 child node should have a unique node name across all the different mailbox
158 in the mailbox node only if the node is not defined as a child node of
159 a corresponding sysc interconnect node.
/linux-6.15/arch/sh/kernel/
H A Ddwarf.c323 cie_tmp = rb_entry(*rb_node, struct dwarf_cie, node); in dwarf_lookup_cie()
359 fde_tmp = rb_entry(*rb_node, struct dwarf_fde, node); in dwarf_lookup_fde()
840 cie_tmp = rb_entry(*rb_node, struct dwarf_cie, node); in dwarf_parse_cie()
852 rb_link_node(&cie->node, parent, rb_node); in dwarf_parse_cie()
853 rb_insert_color(&cie->node, &cie_root); in dwarf_parse_cie()
926 fde_tmp = rb_entry(*rb_node, struct dwarf_fde, node); in dwarf_parse_fde()
944 rb_link_node(&fde->node, parent, rb_node); in dwarf_parse_fde()
945 rb_insert_color(&fde->node, &fde_root); in dwarf_parse_fde()
1004 rbtree_postorder_for_each_entry_safe(fde, next_fde, &fde_root, node) in dwarf_unwinder_cleanup()
1140 rb_erase(&cie->node, &cie_root); in module_dwarf_cleanup()
[all …]
/linux-6.15/fs/hfsplus/
H A Dinode.c65 struct hfs_bnode *node; in hfsplus_release_folio() local
90 node = hfs_bnode_findhash(tree, nidx); in hfsplus_release_folio()
91 if (!node) in hfsplus_release_folio()
93 else if (atomic_read(&node->refcnt)) in hfsplus_release_folio()
95 if (res && node) { in hfsplus_release_folio()
96 hfs_bnode_unhash(node); in hfsplus_release_folio()
97 hfs_bnode_free(node); in hfsplus_release_folio()
107 if (!node) in hfsplus_release_folio()
109 if (atomic_read(&node->refcnt)) { in hfsplus_release_folio()
113 hfs_bnode_unhash(node); in hfsplus_release_folio()
[all …]
/linux-6.15/tools/perf/util/
H A Dprobe-file.c373 BUG_ON(!list_empty(&entry->node)); in probe_cache_entry__delete()
388 INIT_LIST_HEAD(&entry->node); in probe_cache_entry__new()
409 struct str_node *node; in probe_cache_entry__get_event() local
421 strlist__for_each_entry(node, entry->tevlist) { in probe_cache_entry__get_event()
423 ret = parse_probe_trace_command(node->s, tev); in probe_cache_entry__get_event()
532 list_add_tail(&entry->node, &pcache->entries); in probe_cache__load()
566 list_del_init(&entry->node); in probe_cache__purge()
687 list_del_init(&entry->node); in probe_cache__add_entry()
711 list_add_tail(&entry->node, &pcache->entries); in probe_cache__add_entry()
941 list_del_init(&entry->node); in probe_cache__scan_sdt()
[all …]
/linux-6.15/scripts/dtc/
H A Dflattree.c241 struct node *child; in flatten_tree()
731 static struct node *unflatten_tree(struct inbuf *dtbuf, in unflatten_tree()
735 struct node *node; in unflatten_tree() local
739 node = build_node(NULL, NULL, NULL); in unflatten_tree()
747 node->name = xstrdup(flatname); in unflatten_tree()
751 struct node *child; in unflatten_tree()
756 if (node->children) in unflatten_tree()
760 add_property(node, prop); in unflatten_tree()
765 add_child(node, child); in unflatten_tree()
789 return node; in unflatten_tree()
[all …]
/linux-6.15/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_cmdbuf.c158 struct drm_mm_node node; member
187 struct drm_mm_node *node; member
267 drm_mm_remove_node(&header->node); in __vmw_cmdbuf_header_free()
770 memset(info->node, 0, sizeof(*info->node)); in vmw_cmdbuf_try_alloc()
772 ret = drm_mm_insert_node(&man->mm, info->node, info->page_size); in vmw_cmdbuf_try_alloc()
775 ret = drm_mm_insert_node(&man->mm, info->node, info->page_size); in vmw_cmdbuf_try_alloc()
797 struct drm_mm_node *node, in vmw_cmdbuf_alloc_space() argument
804 info.node = node; in vmw_cmdbuf_alloc_space()
884 header->size = header->node.size << PAGE_SHIFT; in vmw_cmdbuf_space_pool()
886 offset = header->node.start << PAGE_SHIFT; in vmw_cmdbuf_space_pool()
[all …]
/linux-6.15/drivers/net/wireless/ath/ath11k/
H A Dahb.c922 struct device_node *node; in ath11k_ahb_setup_msa_resources() local
927 if (!node) in ath11k_ahb_setup_msa_resources()
931 of_node_put(node); in ath11k_ahb_setup_msa_resources()
941 if (!node) in ath11k_ahb_setup_msa_resources()
945 of_node_put(node); in ath11k_ahb_setup_msa_resources()
994 struct device_node *node; in ath11k_ahb_fw_resources_init() local
1004 if (!node) { in ath11k_ahb_fw_resources_init()
1017 info.name = node->name; in ath11k_ahb_fw_resources_init()
1022 of_node_put(node); in ath11k_ahb_fw_resources_init()
1065 of_node_put(node); in ath11k_ahb_fw_resources_init()
[all …]
/linux-6.15/drivers/platform/chrome/
H A Dcros_ec_typec.c201 list_del(&node->list); in cros_typec_unregister_altmodes()
202 typec_unregister_altmode(node->amode); in cros_typec_unregister_altmodes()
203 devm_kfree(typec->dev, node); in cros_typec_unregister_altmodes()
470 struct cros_typec_altmode_node *node; in cros_typec_get_cable_vdo() local
474 if (node->amode->svid == svid) in cros_typec_get_cable_vdo()
475 return node->amode->vdo; in cros_typec_get_cable_vdo()
657 struct cros_typec_altmode_node *node; in cros_typec_configure_mux() local
719 node->amode, in cros_typec_configure_mux()
829 node = devm_kzalloc(typec->dev, sizeof(*node), GFP_KERNEL); in cros_typec_register_altmodes()
830 if (!node) { in cros_typec_register_altmodes()
[all …]
/linux-6.15/drivers/media/platform/samsung/exynos4-is/
H A Dmedia-dev.c504 struct device_node *node; in fimc_md_register_sensor_entities() local
524 if (!of_node_name_eq(node, "csis")) in fimc_md_register_sensor_entities()
527 port = of_get_next_child(node, NULL); in fimc_md_register_sensor_entities()
534 of_node_put(node); in fimc_md_register_sensor_entities()
544 for_each_child_of_node(ports, node) { in fimc_md_register_sensor_entities()
545 ret = fimc_md_parse_port_node(fmd, node); in fimc_md_register_sensor_entities()
547 of_node_put(node); in fimc_md_register_sensor_entities()
646 id = node ? __of_get_csis_id(node) : max(0, pdev->id); in register_csis_entity()
739 struct device_node *node; in fimc_md_register_platform_entities() local
746 pdev = of_find_device_by_node(node); in fimc_md_register_platform_entities()
[all …]
/linux-6.15/drivers/net/ethernet/cavium/thunder/
H A Dnic_main.c42 u8 node; member
173 mac = bgx_get_lmac_mac(nic->node, bgx_idx, lmac); in nic_mbx_send_ready()
178 mbx.nic_cfg.node_id = nic->node; in nic_mbx_send_ready()
268 lmac_cnt = bgx_get_lmac_count(nic->node, bgx); in nic_update_hw_frs()
319 unsigned bgx_map = bgx_get_map(nic->node); in nic_set_lmac_vf_mapping()
329 lmac_cnt = bgx_get_lmac_count(nic->node, bgx); in nic_set_lmac_vf_mapping()
873 bgx_lmac_get_pfc(nic->node, bgx, lmac, &pfc); in nic_pause_frame()
880 bgx_lmac_set_pfc(nic->node, bgx, lmac, cfg); in nic_pause_frame()
1097 bgx_reset_xcast_mode(nic->node, bgx, lmac, in nic_handle_mbx_intr()
1109 bgx_set_dmac_cam_filter(nic->node, bgx, lmac, in nic_handle_mbx_intr()
[all …]
/linux-6.15/drivers/thermal/
H A Dthermal_core.c144 list_for_each_entry(pos, &thermal_tz_list, node) { in thermal_register_governor()
184 list_for_each_entry(pos, &thermal_tz_list, node) { in thermal_unregister_governor()
698 return !list_empty(&tz->node); in thermal_zone_is_present()
1035 list_add(&cdev->node, &thermal_cdev_list); in thermal_cooling_device_init_complete()
1037 list_for_each_entry(tz, &thermal_tz_list, node) in thermal_cooling_device_init_complete()
1343 list_del(&cdev->node); in thermal_cooling_device_exit()
1345 list_for_each_entry(tz, &thermal_tz_list, node) in thermal_cooling_device_exit()
1452 list_add_tail(&tz->node, &thermal_tz_list); in thermal_zone_init_complete()
1553 INIT_LIST_HEAD(&tz->node); in thermal_zone_device_register_with_trips()
1690 if (list_empty(&tz->node)) in thermal_zone_exit()
[all …]
/linux-6.15/arch/powerpc/sysdev/
H A Dmpic.c999 return of_node == NULL || of_node == node; in mpic_host_match()
1241 if (node) { in mpic_alloc()
1242 node = of_node_get(node); in mpic_alloc()
1245 if (!node) in mpic_alloc()
1252 if (of_property_read_bool(node, "dcr-reg")) { in mpic_alloc()
1256 if (of_address_to_resource(node, 0, &r)) in mpic_alloc()
1263 if (of_property_read_bool(node, "big-endian")) in mpic_alloc()
1265 if (of_property_read_bool(node, "pic-no-reset")) in mpic_alloc()
1280 mpic->node = node; in mpic_alloc()
1529 of_node_put(node); in mpic_alloc()
[all …]
/linux-6.15/drivers/i3c/
H A Dmaster.c1583 list_del(&dev->common.node); in i3c_master_detach_i3c_dev()
1606 list_del(&dev->common.node); in i3c_master_detach_i2c_dev()
1796 common.node) { in i3c_master_detach_free_devs()
1808 common.node) { in i3c_master_detach_free_devs()
2220 of_node_get(node); in of_i3c_master_add_i2c_boardinfo()
2274 struct device_node *node) in of_i3c_master_add_dev() argument
2302 struct device_node *node; in of_populate_i3c_bus() local
2312 of_node_put(node); in of_populate_i3c_bus()
2593 struct list_head node; member
2620 list_del(&slot->node); in i3c_generic_ibi_free_pool()
[all …]
/linux-6.15/net/xfrm/
H A Dxfrm_policy.c839 node = kzalloc(sizeof(*node), GFP_ATOMIC); in xfrm_pol_inexact_node_alloc()
840 if (node) in xfrm_pol_inexact_node_alloc()
843 return node; in xfrm_pol_inexact_node_alloc()
1003 n = node; in xfrm_policy_inexact_node_reinsert()
1028 rb_erase(&node->node, &v->root); in xfrm_policy_inexact_node_merge()
1083 rb_erase(&node->node, root); in xfrm_policy_inexact_insert_node()
1106 if (!node) { in xfrm_policy_inexact_insert_node()
1108 if (!node) in xfrm_policy_inexact_insert_node()
1112 rb_link_node_rcu(&node->node, parent, p); in xfrm_policy_inexact_insert_node()
1113 rb_insert_color(&node->node, root); in xfrm_policy_inexact_insert_node()
[all …]
/linux-6.15/drivers/gpu/drm/xe/compat-i915-headers/
H A Di915_vma.h26 struct xe_ggtt_node *node; member
35 return vma->node->base.start; in i915_ggtt_offset()
/linux-6.15/drivers/fpga/
H A Ddfl-fme-pr.h32 struct list_head node; member
57 struct list_head node; member
/linux-6.15/include/linux/rpmsg/
H A Dqcom_glink.h19 struct device_node *node);
26 struct device_node *node) in qcom_glink_smem_register() argument
/linux-6.15/arch/sh/include/asm/
H A Dtopology.h9 #define cpumask_of_node(node) ((void)node, cpu_online_mask) argument
/linux-6.15/Documentation/devicetree/bindings/arm/
H A Daxis.txt7 Required root node properties:
12 Required root node properties:
/linux-6.15/arch/x86/pci/
H A Dbus_numa.h18 int node; member
24 int node, int link);

1...<<51525354555657585960>>...242