mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-29 08:40:03 +00:00

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
14 lines
242 B
C
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 */
|