blob: 5b4a5c3412d6b92b3db50fe8d141236d4cc8e4cd [file] [log] [blame]
Soby Mathewec8ac1c2016-05-05 14:32:05 +01001/*
2 * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
3 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soby Mathewec8ac1c2016-05-05 14:32:05 +01005 */
6
7#ifndef __PLATFORM_SP_MIN_H__
8#define __PLATFORM_SP_MIN_H__
9
10/*******************************************************************************
11 * Mandatory SP_MIN functions
12 ******************************************************************************/
Yatharth Kochar1c16a4c2016-06-30 14:50:58 +010013void sp_min_early_platform_setup(void *from_bl2,
14 void *plat_params_from_bl2);
Soby Mathewec8ac1c2016-05-05 14:32:05 +010015void sp_min_plat_arch_setup(void);
16void sp_min_platform_setup(void);
17entry_point_info_t *sp_min_plat_get_bl33_ep_info(void);
18
19#endif /* __PLATFORM_SP_MIN_H__ */