blob: 6799e2181ed25cb3ab60df7875fbc0bf32fded97 [file] [log] [blame]
Venkatesh Yadav Abbarapu1463dd52020-01-07 03:25:16 -07001/*
2 * Copyright (c) 2020, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef PLAT_STARTUP_H
8#define PLAT_STARTUP_H
9
10/* For FSBL handover */
11enum fsbl_handoff {
12 FSBL_HANDOFF_SUCCESS = 0,
13 FSBL_HANDOFF_NO_STRUCT,
14 FSBL_HANDOFF_INVAL_STRUCT,
15 FSBL_HANDOFF_TOO_MANY_PARTS
16};
17
Venkatesh Yadav Abbarapuc70726f2022-05-16 17:44:33 +053018enum fsbl_handoff fsbl_atf_handover(entry_point_info_t *bl32,
19 entry_point_info_t *bl33,
Venkatesh Yadav Abbarapu1463dd52020-01-07 03:25:16 -070020 uint64_t atf_handoff_addr);
21
22#endif /* PLAT_STARTUP_H */