arm-trusted-firmware/plat/nxp/common/img_loadr/load_img.h
Pankaj Gupta ed7cf3bff0 nxp: image loader for loading fip image
function load_img(), is dependent on:
- Recursively calling load_image() defined in common/bl_common.c
- for each image in the fip.

Signed-off-by: Pankaj Gupta <pankaj.gupta@nxp.com>
Change-Id: I57ca4b666cd1b0b992b7c0fc2a4260b558c0e2a9
2021-03-24 09:49:32 +05:30

14 lines
242 B
C

/*
* Copyright 2018-2020 NXP
*
* SPDX-License-Identifier: BSD-3-Clause
*
*/
#ifndef LOAD_IMAGE_H
#define LOAD_IMAGE_H
int load_img(unsigned int image_id, uintptr_t *image_base,
uint32_t *image_size);
#endif /* LOAD_IMAGE_H */