| /linux-6.15/drivers/clk/socfpga/ |
| H A D | clk-gate.c | 137 void __init socfpga_gate_init(struct device_node *node) in socfpga_gate_init() argument 144 const char *clk_name = node->name; in socfpga_gate_init() 158 rc = of_property_read_u32_array(node, "clk-gate", clk_gate, 2); in socfpga_gate_init() 170 rc = of_property_read_u32(node, "fixed-divider", &fixed_div); in socfpga_gate_init() 176 rc = of_property_read_u32_array(node, "div-reg", div_reg, 3); in socfpga_gate_init() 185 of_property_read_string(node, "clock-output-names", &clk_name); in socfpga_gate_init() 191 init.num_parents = of_clk_parent_fill(node, parent_name, SOCFPGA_MAX_PARENTS); in socfpga_gate_init() 208 rc = of_clk_add_hw_provider(node, of_clk_hw_simple_get, hw_clk); in socfpga_gate_init()
|
| /linux-6.15/drivers/clk/sunxi/ |
| H A D | clk-sun9i-cpus.c | 184 static void sun9i_a80_cpus_setup(struct device_node *node) in sun9i_a80_cpus_setup() argument 186 const char *clk_name = node->name; in sun9i_a80_cpus_setup() 198 cpus->reg = of_io_request_and_map(node, 0, of_node_full_name(node)); in sun9i_a80_cpus_setup() 202 of_property_read_string(node, "clock-output-names", &clk_name); in sun9i_a80_cpus_setup() 205 ret = of_clk_parent_fill(node, parents, SUN9I_CPUS_MAX_PARENTS); in sun9i_a80_cpus_setup() 225 ret = of_clk_add_provider(node, of_clk_src_simple_get, clk); in sun9i_a80_cpus_setup() 237 of_address_to_resource(node, 0, &res); in sun9i_a80_cpus_setup()
|
| /linux-6.15/drivers/clk/bcm/ |
| H A D | clk-bcm21664.c | 255 static void __init kona_dt_root_ccu_setup(struct device_node *node) in kona_dt_root_ccu_setup() argument 257 kona_dt_ccu_setup(&root_ccu_data, node); in kona_dt_root_ccu_setup() 260 static void __init kona_dt_aon_ccu_setup(struct device_node *node) in kona_dt_aon_ccu_setup() argument 262 kona_dt_ccu_setup(&aon_ccu_data, node); in kona_dt_aon_ccu_setup() 265 static void __init kona_dt_master_ccu_setup(struct device_node *node) in kona_dt_master_ccu_setup() argument 267 kona_dt_ccu_setup(&master_ccu_data, node); in kona_dt_master_ccu_setup() 270 static void __init kona_dt_slave_ccu_setup(struct device_node *node) in kona_dt_slave_ccu_setup() argument 272 kona_dt_ccu_setup(&slave_ccu_data, node); in kona_dt_slave_ccu_setup()
|
| H A D | clk-nsp.c | 29 static void __init nsp_armpll_init(struct device_node *node) in nsp_armpll_init() argument 31 iproc_armpll_setup(node); in nsp_armpll_init() 85 static void __init nsp_genpll_clk_init(struct device_node *node) in nsp_genpll_clk_init() argument 87 iproc_pll_clk_setup(node, &genpll, NULL, 0, genpll_clk, in nsp_genpll_clk_init() 124 static void __init nsp_lcpll0_clk_init(struct device_node *node) in nsp_lcpll0_clk_init() argument 126 iproc_pll_clk_setup(node, &lcpll0, NULL, 0, lcpll0_clk, in nsp_lcpll0_clk_init()
|
| /linux-6.15/drivers/block/zram/ |
| H A D | zcomp.c | 170 int zcomp_cpu_up_prepare(unsigned int cpu, struct hlist_node *node) in zcomp_cpu_up_prepare() argument 172 struct zcomp *comp = hlist_entry(node, struct zcomp, node); in zcomp_cpu_up_prepare() 182 int zcomp_cpu_dead(unsigned int cpu, struct hlist_node *node) in zcomp_cpu_dead() argument 184 struct zcomp *comp = hlist_entry(node, struct zcomp, node); in zcomp_cpu_dead() 209 ret = cpuhp_state_add_instance(CPUHP_ZCOMP_PREPARE, &comp->node); in zcomp_init() 223 cpuhp_state_remove_instance(CPUHP_ZCOMP_PREPARE, &comp->node); in zcomp_destroy()
|
| /linux-6.15/tools/testing/selftests/bpf/progs/ |
| H A D | local_kptr_stash.c | 17 struct bpf_rb_node node; member 46 struct bpf_rb_root r __contains(node_data, node); 52 struct node_data __kptr *node; member 83 node_a = container_of(a, struct node_data, node); in less() 84 node_b = container_of(b, struct node_data, node); in less() 118 res = bpf_kptr_xchg(&mapval->node, res); in create_and_stash() 176 bpf_rbtree_add(&res->r, &n->node, less); in stash_local_with_root() 200 res = bpf_kptr_xchg(&mapval->node, NULL); in unstash_rb_node()
|
| /linux-6.15/drivers/usb/chipidea/ |
| H A D | udc.c | 366 if (node == NULL) in add_td_to_list() 369 node->ptr = dma_pool_zalloc(hwep->td_pool, GFP_ATOMIC, &node->dma); in add_td_to_list() 371 kfree(node); in add_td_to_list() 526 if (node && (node->td_remaining_size >= sg_dma_len(s))) { in prepare_td_for_sg() 925 dma_pool_free(hwep->td_pool, node->ptr, node->dma); in _ep_nuke() 928 kfree(node); in _ep_nuke() 1672 dma_pool_free(hwep->td_pool, node->ptr, node->dma); in ep_free_request() 1674 node->ptr = NULL; in ep_free_request() 1675 kfree(node); in ep_free_request() 1730 dma_pool_free(hwep->td_pool, node->ptr, node->dma); in ep_dequeue() [all …]
|
| /linux-6.15/drivers/acpi/acpica/ |
| H A D | exdump.c | 219 {ACPI_EXD_NODE, ACPI_EXD_OFFSET(notify.node), "Node"}, 339 struct acpi_namespace_node *node; in acpi_ex_dump_object() local 545 node = in acpi_ex_dump_object() 549 acpi_os_printf("%20s : %p", name, node); in acpi_ex_dump_object() 550 if (node) { in acpi_ex_dump_object() 551 acpi_os_printf(" [%4.4s]", node->name.ascii); in acpi_ex_dump_object() 671 obj_desc->reference.node->name.ascii, in acpi_ex_dump_operand() 672 obj_desc->reference.node); in acpi_ex_dump_operand() 951 node->type, acpi_ut_get_type_name(node->type)); in acpi_ex_dump_namespace_node() 975 acpi_os_printf(" %p ", obj_desc->reference.node); in acpi_ex_dump_reference_obj() [all …]
|
| /linux-6.15/fs/ocfs2/dlm/ |
| H A D | dlmast.c | 207 BUG_ON(lock->ml.node != dlm->node_num); in dlm_do_local_ast() 227 BUG_ON(lock->ml.node == dlm->node_num); in dlm_do_remote_ast() 243 BUG_ON(lock->ml.node != dlm->node_num); in dlm_do_local_bast() 269 u8 node; in dlm_proxy_ast_handler() local 283 node = past->node_idx; in dlm_proxy_ast_handler() 311 locklen, name, node); in dlm_proxy_ast_handler() 322 locklen, name, node); in dlm_proxy_ast_handler() 371 locklen, name, node); in dlm_proxy_ast_handler() 453 lock->ml.node, &status); in dlm_send_proxy_ast_msg() 457 lock->ml.node); in dlm_send_proxy_ast_msg() [all …]
|
| /linux-6.15/kernel/power/ |
| H A D | snapshot.c | 449 if (!node) in alloc_rtree_node() 458 return node; in alloc_rtree_node() 488 if (!node) in add_rtree_block() 508 if (!node) { in add_rtree_block() 511 if (!node) in add_rtree_block() 513 *dst = node; in add_rtree_block() 519 node = *dst; in add_rtree_block() 784 node = bm->cur.node; in memory_bm_find_bit() 798 node = (struct rtree_node *)node->data[index]; in memory_bm_find_bit() 804 bm->cur.node = node; in memory_bm_find_bit() [all …]
|
| /linux-6.15/fs/btrfs/ |
| H A D | delayed-ref.c | 397 while (!done && node) { in merge_ref() 401 node = rb_next(node); in merge_ref() 439 struct rb_node *node; in btrfs_merge_delayed_refs() local 453 for (node = rb_first_cached(&head->ref_tree); node; in btrfs_merge_delayed_refs() 454 node = rb_next(node)) { in btrfs_merge_delayed_refs() 995 struct btrfs_delayed_ref_node *node; in add_delayed_ref() local 1008 if (!node) in add_delayed_ref() 1222 struct rb_node *node; in btrfs_find_delayed_tree_ref() local 1229 while (node) { in btrfs_find_delayed_tree_ref() 1236 node = node->rb_left; in btrfs_find_delayed_tree_ref() [all …]
|
| /linux-6.15/arch/sparc/kernel/ |
| H A D | mdesc.c | 291 u64 node; in mdesc_register_notifier() local 314 client->add(cur_mdesc, node, client->node_name); in mdesc_register_notifier() 351 idp = mdesc_get_property(md, node, "id", NULL); in get_vdev_port_node_info() 353 parent_cfg_hdlp = parent_cfg_handle(md, node); in get_vdev_port_node_info() 398 idp = mdesc_get_property(md, node, "id", NULL); in get_ds_port_node_info() 590 if (hp == NULL || node == MDESC_NODE_NULL || in mdesc_get_node_info() 603 rv = get_info_func(hp, node, node_info); in mdesc_get_node_info() 666 if (node == MDESC_NODE_NULL || node >= last_node) in mdesc_get_property() 669 ep = node_block(&hp->mdesc) + node; in mdesc_get_property() 746 if (node == MDESC_NODE_NULL || node >= last_node) in mdesc_node_name() [all …]
|
| /linux-6.15/Documentation/devicetree/bindings/soc/fsl/ |
| H A D | fsl,qman-fqd.yaml | 15 This memory is reserved/allocated as a node under the /reserved-memory node. 19 a node under the /reserved-memory node. 21 The QMan FQD memory node must be named "qman-fqd" 22 The QMan PFDR memory node must be named "qman-pfdr" 23 The BMan FBPR memory node must be named "bman-fbpr"
|
| /linux-6.15/include/linux/ |
| H A D | of_address.h | 12 struct device_node *node; member 50 if (!parser || !parser->node || !parser->range || parser->range == parser->end) in of_range_count() 79 struct device_node *node); 81 struct device_node *node); 118 struct device_node *node) in of_pci_range_parser_init() argument 124 struct device_node *node) in of_pci_dma_range_parser_init() argument 164 void __iomem *of_iomap(struct device_node *node, int index);
|
| /linux-6.15/tools/testing/selftests/dma/ |
| H A D | dma_map_benchmark.c | 29 int threads = 1, seconds = 20, node = -1; in main() local 46 node = atoi(optarg); in main() 109 map.node = node; in main() 121 threads, seconds, node, dir[directions], granule); in main()
|
| /linux-6.15/arch/arm/boot/dts/st/ |
| H A D | stm32mp15-scmi.dtsi | 84 /delete-node/ &clk_hse; 85 /delete-node/ &clk_hsi; 86 /delete-node/ &clk_lse; 87 /delete-node/ &clk_lsi; 88 /delete-node/ &clk_csi;
|
| /linux-6.15/Documentation/admin-guide/media/ |
| H A D | fimc.rst | 62 Memory-to-memory video node 71 Capture video node 84 node is also created per each available and enabled at the platform level 95 sensor subdev -> mipi-csi subdev -> fimc subdev -> video node 98 configuration flow must be from left to right, and the video node is 102 devices belonging to the pipeline is done at the video node driver. 103 The sysfs entry allows to instruct the capture node driver not to configure 105 when the last configuration steps at the video node is performed. 114 For V4L2 video node control only (subdevs configured internally by the host 127 hardware - video capture and mem-to-mem and additionally a subdev node for [all …]
|
| /linux-6.15/lib/ |
| H A D | objagg.c | 751 node = &graph->nodes[j]; in objagg_tmp_graph_node_weight() 752 if (node->crossed_out) in objagg_tmp_graph_node_weight() 768 node = &graph->nodes[i]; in objagg_tmp_graph_node_max_weight() 769 if (node->crossed_out) in objagg_tmp_graph_node_max_weight() 804 node = &graph->nodes[i++]; in objagg_tmp_graph_create() 816 node = &graph->nodes[j]; in objagg_tmp_graph_create() 861 node->crossed_out = true; in objagg_opt_simple_greedy_fillup_hints() 863 node->objagg_obj, in objagg_opt_simple_greedy_fillup_hints() 874 node = &graph->nodes[j]; in objagg_opt_simple_greedy_fillup_hints() 875 if (node->crossed_out) in objagg_opt_simple_greedy_fillup_hints() [all …]
|
| /linux-6.15/kernel/ |
| H A D | kthread.c | 47 int node; member 59 unsigned int node; member 505 void *data, int node, in __kthread_create_on_node() argument 518 create->node = node; in __kthread_create_on_node() 580 void *data, int node, in kthread_create_on_node() argument 1000 struct kthread_work, node); in kthread_worker_fn() 1001 list_del_init(&work->node); in kthread_worker_fn() 1047 node, namefmt, args); in __kthread_create_worker_on_node() 1228 list_del_init(&work->node); in kthread_delayed_work_timer_fn() 1335 if (!list_empty(&work->node)) in kthread_flush_work() [all …]
|
| /linux-6.15/Documentation/sphinx/ |
| H A D | automarkup.py | 75 def markup_refs(docname, app, node): argument 76 t = node.astext() 334 def text_but_not_a_reference(node): argument 338 if not isinstance(node, nodes.Text) or isinstance(node.parent, nodes.literal): 342 parent = node.parent 356 for node in para.traverse(condition=text_but_not_a_reference): 357 node.parent.replace(node, markup_refs(name, app, node))
|
| /linux-6.15/tools/perf/tests/ |
| H A D | switch-tracking.c | 225 struct event_node *node; in add_event() local 228 if (!node) { in add_event() 232 node->event = event; in add_event() 233 list_add(&node->list, events); in add_event() 245 node->event_time = sample.time; in add_event() 252 struct event_node *node; in free_event_nodes() local 256 list_del_init(&node->list); in free_event_nodes() 257 free(node); in free_event_nodes() 276 struct event_node *events_array, *node; in process_events() local 303 list_for_each_entry(node, &events, list) in process_events() [all …]
|
| /linux-6.15/drivers/clk/mediatek/ |
| H A D | clk-mt7629.c | 551 struct device_node *node = pdev->dev.of_node; in mtk_topckgen_init() local 580 struct device_node *node = pdev->dev.of_node; in mtk_infrasys_init() local 587 mtk_clk_register_gates(&pdev->dev, node, infra_clks, in mtk_infrasys_init() 590 mtk_clk_register_cpumuxes(&pdev->dev, node, infra_muxes, in mtk_infrasys_init() 593 return of_clk_add_hw_provider(node, of_clk_hw_onecell_get, in mtk_infrasys_init() 602 struct device_node *node = pdev->dev.of_node; in mtk_pericfg_init() local 612 mtk_clk_register_gates(&pdev->dev, node, peri_clks, in mtk_pericfg_init() 619 r = of_clk_add_hw_provider(node, of_clk_hw_onecell_get, clk_data); in mtk_pericfg_init() 631 struct device_node *node = pdev->dev.of_node; in mtk_apmixedsys_init() local 637 mtk_clk_register_plls(node, plls, ARRAY_SIZE(plls), in mtk_apmixedsys_init() [all …]
|
| /linux-6.15/drivers/dma/ti/ |
| H A D | dma-crossbar.c | 133 struct device_node *node = pdev->dev.of_node; in ti_am335x_xbar_probe() local 140 if (!node) in ti_am335x_xbar_probe() 147 dma_node = of_parse_phandle(node, "dma-masters", 0); in ti_am335x_xbar_probe() 169 if (of_property_read_u32(node, "dma-requests", &xbar->xbar_events)) { in ti_am335x_xbar_probe() 191 ret = of_dma_router_register(node, ti_am335x_xbar_route_allocate, in ti_am335x_xbar_probe() 325 struct device_node *node = pdev->dev.of_node; in ti_dra7_xbar_probe() local 335 if (!node) in ti_dra7_xbar_probe() 342 dma_node = of_parse_phandle(node, "dma-masters", 0); in ti_dra7_xbar_probe() 377 if (!of_property_read_u32(node, "ti,dma-safe-map", &safe_val)) in ti_dra7_xbar_probe() 395 ret = of_property_read_u32_array(node, pname, (u32 *)rsv_events, in ti_dra7_xbar_probe() [all …]
|
| /linux-6.15/arch/powerpc/boot/ |
| H A D | redboot-8xx.c | 23 void *node; in platform_fixups() local 29 node = finddevice("/soc/cpm/brg"); in platform_fixups() 30 if (node) { in platform_fixups() 33 setprop(node, "clock-frequency", &bd.bi_busfreq, 4); in platform_fixups()
|
| H A D | redboot-83xx.c | 24 void *node; in platform_fixups() local 30 node = finddevice("/soc/cpm/brg"); in platform_fixups() 31 if (node) { in platform_fixups() 34 setprop(node, "clock-frequency", &bd.bi_busfreq, 4); in platform_fixups()
|