/u-boot/drivers/usb/common/ |
A D | fsl-dt-fixup.c | 37 int *node_offset, const char **node_type) in fdt_usb_get_node_type() argument 43 *node_offset = fdt_node_offset_by_compatible in fdt_usb_get_node_type() 46 if (*node_offset >= 0) { in fdt_usb_get_node_type() 62 int node_offset; in fdt_fixup_usb_mode_phy_type() local 66 &node_offset, &node_type); in fdt_fixup_usb_mode_phy_type() 71 err = fdt_setprop(blob, node_offset, prop_mode, mode, in fdt_fixup_usb_mode_phy_type() 79 err = fdt_setprop(blob, node_offset, prop_type, phy_type, in fdt_fixup_usb_mode_phy_type() 86 return node_offset; in fdt_fixup_usb_mode_phy_type() 93 int node_offset, err; in fsl_fdt_fixup_usb_erratum() local 98 &node_offset, &node_type); in fsl_fdt_fixup_usb_erratum() [all …]
|
/u-boot/common/ |
A D | splash_source.c | 309 int node_offset; in splash_load_fit() local 351 node_offset = fit_image_get_node(fit_header, splash_file); in splash_load_fit() 352 if (node_offset < 0) { in splash_load_fit() 360 if (!fit_image_get_data(fit_header, node_offset, &internal_splash_data, &internal_splash_size)) in splash_load_fit() 363 else if (!fit_image_get_data_position(fit_header, node_offset, &external_splash_addr)) in splash_load_fit() 366 else if (!fit_image_get_data_offset(fit_header, node_offset, &external_splash_addr)) { in splash_load_fit() 378 res = fit_image_get_data_size(fit_header, node_offset, &external_splash_size); in splash_load_fit()
|
A D | fdt_support.c | 1255 static u64 __of_translate_address(const void *blob, int node_offset, in __of_translate_address() argument 1265 fdt_get_name(blob, node_offset, NULL)); in __of_translate_address() 1268 parent = fdt_parent_offset(blob, node_offset); in __of_translate_address() 1277 fdt_get_name(blob, node_offset, NULL)); in __of_translate_address() 1289 node_offset = parent; in __of_translate_address() 1290 parent = fdt_parent_offset(blob, node_offset); in __of_translate_address() 1304 fdt_get_name(blob, node_offset, NULL)); in __of_translate_address() 1312 if (of_translate_one(blob, node_offset, bus, pbus, in __of_translate_address() 1328 u64 fdt_translate_address(const void *blob, int node_offset, in fdt_translate_address() argument 1331 return __of_translate_address(blob, node_offset, in_addr, "ranges"); in fdt_translate_address() [all …]
|
A D | image-fit-sig.c | 92 info->node_offset = noffset; in fit_image_setup_verify()
|
/u-boot/arch/arm/mach-k3/ |
A D | sysfw-loader.c | 73 int node_offset; in fit_get_data_by_name() local 75 node_offset = fdt_subnode_offset(fit, images, name); in fit_get_data_by_name() 76 if (node_offset < 0) in fit_get_data_by_name() 79 return fit_image_get_data(fit, node_offset, addr, size); in fit_get_data_by_name()
|
/u-boot/test/py/tests/ |
A D | vboot_evil.py | 136 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/include/ |
A D | fdt_support.h | 248 u64 fdt_translate_address(const void *blob, int node_offset, 260 u64 fdt_translate_dma_address(const void *blob, int node_offset, 274 int fdt_get_dma_range(const void *blob, int node_offset, phys_addr_t *cpu,
|
A D | image.h | 1256 int node_offset; /* Offset of signature node */ member
|
/u-boot/drivers/net/fsl-mc/ |
A D | mc.c | 130 int node_offset; in parse_mc_firmware_fit_image() local 150 node_offset = fit_image_get_node(fit_hdr, uname); in parse_mc_firmware_fit_image() 152 if (node_offset < 0) { in parse_mc_firmware_fit_image() 158 if (!(fit_image_verify(fit_hdr, node_offset))) { in parse_mc_firmware_fit_image() 164 fit_image_get_data(fit_hdr, node_offset, &data, &size); in parse_mc_firmware_fit_image()
|
/u-boot/tools/ |
A D | image-host.c | 176 info->node_offset = noffset; in fit_image_setup_sig()
|