Searched refs:hdr_addr (Results 1 – 10 of 10) sorted by relevance
/u-boot/common/ |
A D | image-android-dt.c | 19 bool android_dt_check_header(ulong hdr_addr) in android_dt_check_header() argument 24 hdr = map_sysmem(hdr_addr, sizeof(*hdr)); in android_dt_check_header() 41 bool android_dt_get_fdt_by_index(ulong hdr_addr, u32 index, ulong *addr, in android_dt_get_fdt_by_index() argument 50 hdr = map_sysmem(hdr_addr, sizeof(*hdr)); in android_dt_get_fdt_by_index() 62 e_addr = hdr_addr + entries_offset + index * entry_size; in android_dt_get_fdt_by_index() 69 *addr = hdr_addr + dt_offset; in android_dt_get_fdt_by_index() 103 void android_dt_print_contents(ulong hdr_addr) in android_dt_print_contents() argument 109 hdr = map_sysmem(hdr_addr, sizeof(*hdr)); in android_dt_print_contents() 129 const ulong e_addr = hdr_addr + entries_offset + i * entry_size; in android_dt_print_contents() 152 fdt = map_sysmem(hdr_addr + dt_offset, sizeof(*fdt)); in android_dt_print_contents()
|
A D | image-android.c | 227 bool android_image_get_dtbo(ulong hdr_addr, ulong *addr, u32 *size) in android_image_get_dtbo() argument 233 hdr = map_sysmem(hdr_addr, sizeof(*hdr)); in android_image_get_dtbo() 253 dtbo_img_addr = hdr_addr; in android_image_get_dtbo() 276 static bool android_image_get_dtb_img_addr(ulong hdr_addr, ulong *addr) in android_image_get_dtb_img_addr() argument 282 hdr = map_sysmem(hdr_addr, sizeof(*hdr)); in android_image_get_dtb_img_addr() 302 dtb_img_addr = hdr_addr; in android_image_get_dtb_img_addr() 338 res = android_image_get_dtb_img_addr(hdr_addr, &dtb_img_addr); in android_image_get_dtb_by_index() 349 hdr = map_sysmem(hdr_addr, sizeof(*hdr)); in android_image_get_dtb_by_index() 486 bool android_image_print_dtb_contents(ulong hdr_addr) in android_image_print_dtb_contents() argument 495 res = android_image_get_dtb_img_addr(hdr_addr, &dtb_img_addr); in android_image_print_dtb_contents() [all …]
|
/u-boot/include/ |
A D | image-android-dt.h | 12 bool android_dt_check_header(ulong hdr_addr); 13 bool android_dt_get_fdt_by_index(ulong hdr_addr, u32 index, ulong *addr, 17 void android_dt_print_contents(ulong hdr_addr);
|
A D | fsl_validate.h | 282 void spl_validate_uboot(uint32_t hdr_addr, uintptr_t img_addr);
|
A D | image.h | 1532 bool android_image_get_dtbo(ulong hdr_addr, ulong *addr, u32 *size); 1533 bool android_image_get_dtb_by_index(ulong hdr_addr, u32 index, ulong *addr, 1540 bool android_image_print_dtb_contents(ulong hdr_addr);
|
/u-boot/board/freescale/common/ |
A D | fsl_chain_of_trust.c | 97 void spl_validate_uboot(uint32_t hdr_addr, uintptr_t img_addr) in spl_validate_uboot() argument 132 res = fsl_secboot_validate(hdr_addr, CONFIG_SPL_UBOOT_KEY_HASH, in spl_validate_uboot() 146 uint32_t hdr_addr; in jump_to_image_no_args() local 151 hdr_addr = (spl_image->entry_point + spl_image->size - in jump_to_image_no_args() 153 spl_validate_uboot(hdr_addr, (uintptr_t)spl_image->entry_point); in jump_to_image_no_args()
|
/u-boot/drivers/net/pfe_eth/ |
A D | pfe_firmware.c | 215 void *hdr_addr = malloc(CONFIG_SYS_LS_PFE_ESBC_LENGTH); in pfe_spi_flash_init() local 217 if (!hdr_addr) { in pfe_spi_flash_init() 226 hdr_addr); in pfe_spi_flash_init() 230 free(hdr_addr); in pfe_spi_flash_init() 235 pfe_esbc_hdr_addr = hdr_addr; in pfe_spi_flash_init()
|
/u-boot/cmd/ |
A D | adtimg.c | 25 ulong hdr_addr; in do_adtimg_addr() local 30 hdr_addr = simple_strtoul(argv[1], &endp, 16); in do_adtimg_addr() 41 working_img = hdr_addr; in do_adtimg_addr()
|
/u-boot/doc/ |
A D | README.esbc_validate | 16 esbc_validate hdr_addr <hash_val> 18 $hdr_addr Address of header of the image to be validated.
|
/u-boot/drivers/fastboot/ |
A D | fb_mmc.c | 346 uintptr_t hdr_addr; /* boot image header address */ in fb_mmc_update_zimage() local 369 hdr_addr = (uintptr_t)download_buffer + ALIGN(download_bytes, PAGE_SIZE); in fb_mmc_update_zimage() 370 hdr = (struct andr_img_hdr *)hdr_addr; in fb_mmc_update_zimage()
|
Completed in 17 milliseconds