Home
last modified time | relevance | path

Searched refs:node_name (Results 1 – 18 of 18) sorted by relevance

/u-boot/arch/arm/mach-socfpga/
A Dpinmux_arria10.c12 static int do_pinctr_pin(const void *blob, int child, const char *node_name) in do_pinctr_pin() argument
41 const char *node_name; in do_pinctrl_pins() local
48 node_name = fdt_get_name(blob, child, &len); in do_pinctrl_pins()
50 while (node_name) { in do_pinctrl_pins()
51 if (!strcmp(child_name, node_name)) in do_pinctrl_pins()
52 return do_pinctr_pin(blob, child, node_name); in do_pinctrl_pins()
59 node_name = fdt_get_name(blob, child, &len); in do_pinctrl_pins()
A Dclock_manager_arria10.c193 const char *node_name; in of_get_clk_cfg() local
209 node_name = fdt_get_name(blob, child, &len); in of_get_clk_cfg()
211 while (node_name) { in of_get_clk_cfg()
212 if (!strcmp(node_name, "mainpll")) { in of_get_clk_cfg()
216 } else if (!strcmp(node_name, "perpll")) { in of_get_clk_cfg()
220 } else if (!strcmp(node_name, "alteragrp")) { in of_get_clk_cfg()
230 node_name = fdt_get_name(blob, child, &len); in of_get_clk_cfg()
/u-boot/board/alliedtelesis/common/
A Dgpio_hog.h6 int gpio_hog_list(struct gpio_desc *gpiod, int max_count, const char *node_name,
9 static inline int gpio_hog(struct gpio_desc *gpiod, const char *node_name, in gpio_hog() argument
12 return gpio_hog_list(gpiod, 1, node_name, gpio_name, value); in gpio_hog()
A Dgpio_hog.c14 const char *node_name, const char *gpio_name, int value) in gpio_hog_list() argument
20 node = fdt_node_offset_by_compatible(gd->fdt_blob, 0, node_name); in gpio_hog_list()
/u-boot/drivers/net/
A Deth-phy-uclass.c20 const char *node_name; in eth_phy_binds_nodes() local
31 node_name = ofnode_get_name(phy_node); in eth_phy_binds_nodes()
33 debug("* Found child node: '%s'\n", node_name); in eth_phy_binds_nodes()
37 node_name, phy_node, NULL); in eth_phy_binds_nodes()
43 debug(" - bound phy device: '%s'\n", node_name); in eth_phy_binds_nodes()
/u-boot/tools/
A Dimage-host.c64 const char *node_name; in fit_image_process_hash() local
73 node_name, image_name); in fit_image_process_hash()
86 node_name, image_name); in fit_image_process_hash()
159 const char *node_name; in fit_image_setup_sig() local
166 node_name, image_name); in fit_image_setup_sig()
218 const char *node_name; in fit_image_process_sig() local
264 node_name, image_name); in fit_image_process_sig()
622 const char *node_name; in fit_image_add_verification_data() local
927 const char *node_name; in fit_config_process_sig() local
950 node_name, conf_name); in fit_config_process_sig()
[all …]
/u-boot/common/
A Dimage-cipher.c74 const char *node_name; in fit_image_setup_decrypt() local
80 node_name = fit_get_name(fit, image_noffset, NULL); in fit_image_setup_decrypt()
81 if (!node_name) { in fit_image_setup_decrypt()
88 node_name, node_name); in fit_image_setup_decrypt()
A Dcommon_fit.c60 const char *node_name = fdt_get_name(fdt, node, NULL); in fit_find_config_node() local
61 if (strcmp(dflt_conf_name, node_name) == 0) { in fit_find_config_node()
/u-boot/drivers/power/pmic/
A Dpmic-uclass.c26 const char *node_name; in pmic_bind_children() local
37 node_name = ofnode_get_name(node); in pmic_bind_children()
39 debug("* Found child node: '%s'\n", node_name); in pmic_bind_children()
46 if (strncmp(info->prefix, node_name, prefix_len)) { in pmic_bind_children()
64 ret = device_bind_with_driver_data(pmic, drv, node_name, in pmic_bind_children()
73 child->driver_data = trailing_strtol(node_name); in pmic_bind_children()
/u-boot/test/py/tests/
A Dvboot_evil.py84 node_name = getstr(dt_struct, offset)
85 offset += len(node_name) + 1
91 path += str(node_name)
151 node_name = getstr(dt_struct, node_offset)
152 node_name_len = len(node_name) + 1
227 def change_node_name(dt_struct, dt_strings, node_path, node_name): argument
247 dt_struct = modify_node_name(dt_struct, rt_node_start, node_name)
/u-boot/drivers/usb/common/
A Dfsl-dt-fixup.c95 const char *node_name = NULL; in fsl_fdt_fixup_usb_erratum() local
103 node_name = CHIPIDEA_USB2; in fsl_fdt_fixup_usb_erratum()
105 node_name = node_type; in fsl_fdt_fixup_usb_erratum()
106 if (strcmp(node_name, controller_type)) in fsl_fdt_fixup_usb_erratum()
/u-boot/arch/arm/mach-k3/include/mach/
A Dsys_proto.h14 int fdt_fixup_msmc_ram(void *blob, char *parent_path, char *node_name);
/u-boot/tools/dtoc/
A Ddtb_platdata.py268 def get_phandle_argc(self, prop, node_name): argument
303 (prop.name, node_name))
437 node_name, _ = self._scan.get_normalized_compat_name(node)
446 if node_name in structs:
447 struct = structs[node_name]
457 structs[node_name] = fields
460 node_name, _ = self._scan.get_normalized_compat_name(node)
461 struct = structs[node_name]
/u-boot/tools/binman/etype/
A Dfit.py197 node_name = subnode.name[1:].replace('SEQ',
200 with fsw.add_node(node_name):
/u-boot/drivers/core/
A Droot.c233 const char *node_name = ofnode_get_name(node); in dm_scan_fdt_node() local
242 debug("%s: ret=%d\n", node_name, ret); in dm_scan_fdt_node()
/u-boot/arch/arm/mach-k3/
A Dcommon.c229 int fdt_fixup_msmc_ram(void *blob, char *parent_path, char *node_name) in fdt_fixup_msmc_ram() argument
247 node = fdt_find_or_add_subnode(blob, ret, node_name); in fdt_fixup_msmc_ram()
/u-boot/drivers/net/ti/
A Dam65-cpsw-nuss.c696 const char *node_name; in am65_cpsw_probe_cpsw() local
700 node_name = ofnode_get_name(node); in am65_cpsw_probe_cpsw()
707 node_name, ret); in am65_cpsw_probe_cpsw()
713 node_name, port_id); in am65_cpsw_probe_cpsw()
/u-boot/cmd/
A Dfdt.c393 const char *node_name; in do_fdt() local
395 node_name = fdt_get_name(working_fdt, in do_fdt()
398 env_set(var, node_name); in do_fdt()

Completed in 39 milliseconds