You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
513 B
23 lines
513 B
/*
|
|
* Copyright (c) 2020, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef PLAT_STARTUP_H
|
|
#define PLAT_STARTUP_H
|
|
|
|
/* For FSBL handover */
|
|
enum fsbl_handoff {
|
|
FSBL_HANDOFF_SUCCESS = 0,
|
|
FSBL_HANDOFF_NO_STRUCT,
|
|
FSBL_HANDOFF_INVAL_STRUCT,
|
|
FSBL_HANDOFF_TOO_MANY_PARTS
|
|
};
|
|
|
|
enum fsbl_handoff fsbl_atf_handover(entry_point_info_t *bl32_image_ep_info,
|
|
entry_point_info_t *bl33_image_ep_info,
|
|
uint64_t atf_handoff_addr);
|
|
|
|
#endif /* PLAT_STARTUP_H */
|