Home
last modified time | relevance | path

Searched refs:node_offset (Results 1 – 15 of 15) sorted by relevance

/u-boot/drivers/usb/common/
A Dfsl-dt-fixup.c33 int *node_offset, const char **node_type) in fdt_usb_get_node_type() argument
39 *node_offset = fdt_node_offset_by_compatible in fdt_usb_get_node_type()
42 if (*node_offset >= 0) { in fdt_usb_get_node_type()
58 int node_offset; in fdt_fixup_usb_mode_phy_type() local
62 &node_offset, &node_type); in fdt_fixup_usb_mode_phy_type()
67 err = fdt_setprop(blob, node_offset, prop_mode, mode, in fdt_fixup_usb_mode_phy_type()
75 err = fdt_setprop(blob, node_offset, prop_type, phy_type, in fdt_fixup_usb_mode_phy_type()
82 return node_offset; in fdt_fixup_usb_mode_phy_type()
89 int node_offset, err; in fsl_fdt_fixup_usb_erratum() local
94 &node_offset, &node_type); in fsl_fdt_fixup_usb_erratum()
[all …]
/u-boot/common/
A Dsplash_source.c349 int node_offset; in splash_load_fit() local
391 node_offset = fit_image_get_node(fit_header, splash_file); in splash_load_fit()
392 if (node_offset < 0) { in splash_load_fit()
400 if (!fit_image_get_data(fit_header, node_offset, &internal_splash_data, &internal_splash_size)) in splash_load_fit()
403 else if (!fit_image_get_data_position(fit_header, node_offset, &external_splash_addr)) in splash_load_fit()
406 else if (!fit_image_get_data_offset(fit_header, node_offset, &external_splash_addr)) { in splash_load_fit()
418 res = fit_image_get_data_size(fit_header, node_offset, &external_splash_size); in splash_load_fit()
A Dfdt_support.c1330 static u64 __of_translate_address(const void *blob, int node_offset, in __of_translate_address() argument
1340 fdt_get_name(blob, node_offset, NULL)); in __of_translate_address()
1343 parent = fdt_parent_offset(blob, node_offset); in __of_translate_address()
1352 fdt_get_name(blob, node_offset, NULL)); in __of_translate_address()
1364 node_offset = parent; in __of_translate_address()
1365 parent = fdt_parent_offset(blob, node_offset); in __of_translate_address()
1379 fdt_get_name(blob, node_offset, NULL)); in __of_translate_address()
1387 if (of_translate_one(blob, node_offset, bus, pbus, in __of_translate_address()
1403 u64 fdt_translate_address(const void *blob, int node_offset, in fdt_translate_address() argument
1406 return __of_translate_address(blob, node_offset, in_addr, "ranges"); in fdt_translate_address()
[all …]
/u-boot/arch/mips/mach-octeon/include/mach/
A Docteon_fdt.h166 int octeon_fdt_node_check_compatible(const void *fdt, int node_offset, const char *const *strlist);
175 int octeon_fdt_i2c_get_bus(const void *fdt, int node_offset);
A Dcvmx-helper-cfg.h516 void cvmx_helper_set_port_fdt_node_offset(int xiface, int index, int node_offset);
536 void cvmx_helper_set_phy_fdt_node_offset(int xiface, int index, int node_offset);
/u-boot/arch/mips/mach-octeon/
A Docteon_fdt.c650 int octeon_fdt_node_check_compatible(const void *fdt, int node_offset, in octeon_fdt_node_check_compatible() argument
655 if (!fdt_node_check_compatible(fdt, node_offset, *strlist)) { in octeon_fdt_node_check_compatible()
673 int octeon_fdt_i2c_get_bus(const void *fdt, int node_offset) in octeon_fdt_i2c_get_bus() argument
687 while (node_offset > 0 && in octeon_fdt_i2c_get_bus()
688 !(found = !fdt_node_check_compatible(fdt, node_offset, compat))) { in octeon_fdt_i2c_get_bus()
689 node_offset = fdt_parent_offset(fdt, node_offset); in octeon_fdt_i2c_get_bus()
691 bus = i2c_get_bus_num_fdt(node_offset); in octeon_fdt_i2c_get_bus()
700 node_offset); in octeon_fdt_i2c_get_bus()
704 reg = fdtdec_get_addr(fdt, node_offset, "reg"); in octeon_fdt_i2c_get_bus()
A Dcvmx-helper-cfg.c1020 void cvmx_helper_set_port_fdt_node_offset(int xiface, int index, int node_offset) in cvmx_helper_set_port_fdt_node_offset() argument
1026 cvmx_cfg_port[xi.node][xi.interface][index].port_fdt_node = node_offset; in cvmx_helper_set_port_fdt_node_offset()
1054 void cvmx_helper_set_phy_fdt_node_offset(int xiface, int index, int node_offset) in cvmx_helper_set_phy_fdt_node_offset() argument
1060 cvmx_cfg_port[xi.node][xi.interface][index].phy_fdt_node = node_offset; in cvmx_helper_set_phy_fdt_node_offset()
/u-boot/test/py/tests/
A Dvboot_evil.py136 def modify_node_name(dt_struct, node_offset, replcd_name): argument
149 node_offset += 4
151 node_name = getstr(dt_struct, node_offset)
162 dt_struct = (dt_struct[:node_offset] + replcd_name +
163 dt_struct[node_offset + node_name_len:])
/u-boot/arch/arm/mach-k3/
A Dsysfw-loader.c113 int node_offset; in fit_get_data_by_name() local
115 node_offset = fdt_subnode_offset(fit, images, name); in fit_get_data_by_name()
116 if (node_offset < 0) in fit_get_data_by_name()
119 return fit_image_get_data(fit, node_offset, addr, size); in fit_get_data_by_name()
/u-boot/include/
A Dfdt_support.h270 u64 fdt_translate_address(const void *blob, int node_offset,
282 u64 fdt_translate_dma_address(const void *blob, int node_offset,
296 int fdt_get_dma_range(const void *blob, int node_offset, phys_addr_t *cpu,
A Dimage.h1425 int node_offset; /* Offset of signature node */ member
/u-boot/include/u-boot/
A Dblake2.h65 uint32_t node_offset; /* 12 */
/u-boot/lib/blake2/
A Dblake2b.c116 store32( &P->node_offset, 0 ); in blake2b_init()
140 store32( &P->node_offset, 0 ); in blake2b_init_key()
/u-boot/boot/
A Dimage-fit-sig.c90 info->node_offset = noffset; in fit_image_setup_verify()
/u-boot/tools/
A Dimage-host.c186 info->node_offset = noffset; in fit_image_setup_sig()

Completed in 35 milliseconds