mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-26 14:55:16 +00:00

On versal2 platform, unlike current static DT address passing mechanism, DT address is retrieved from transfer list dynamically. Change-Id: I44b9a0753809652f26bc1b7e061f5364229ba352 Signed-off-by: Maheedhar Bollapalli <maheedharsai.bollapalli@amd.com>
18 lines
436 B
C
18 lines
436 B
C
/*
|
|
* Copyright (c) 2023-2025, Advanced Micro Devices, Inc. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef PLAT_XFER_LIST_H
|
|
#define PLAT_XFER_LIST_H
|
|
|
|
#include <lib/transfer_list.h>
|
|
|
|
int32_t transfer_list_populate_ep_info(entry_point_info_t *bl32,
|
|
entry_point_info_t *bl33);
|
|
|
|
void *transfer_list_retrieve_dt_address(void);
|
|
bool populate_data_from_xfer_list(void);
|
|
|
|
#endif /* PLAT_XFER_LIST_H */
|