blob: 2d71a47982153f2878782386dbf2493e993e9e76 [file] [log] [blame]
Soby Mathewec8ac1c2016-05-05 14:32:05 +01001/*
Dimitris Papastamos52323b02017-06-07 13:45:41 +01002 * Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
Soby Mathewec8ac1c2016-05-05 14:32:05 +01003 *
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 ******************************************************************************/
Soby Mathew73308d02018-01-09 14:36:14 +000013void sp_min_early_platform_setup2(u_register_t arg0, u_register_t arg1,
14 u_register_t arg2, u_register_t arg3);
Soby Mathewec8ac1c2016-05-05 14:32:05 +010015void sp_min_platform_setup(void);
Dimitris Papastamos52323b02017-06-07 13:45:41 +010016void sp_min_plat_runtime_setup(void);
17void sp_min_plat_arch_setup(void);
Soby Mathewec8ac1c2016-05-05 14:32:05 +010018entry_point_info_t *sp_min_plat_get_bl33_ep_info(void);
19
Etienne Carrieredc0fea72017-08-09 15:48:53 +020020/* Platforms that enable SP_MIN_WITH_SECURE_FIQ shall implement this api */
21void sp_min_plat_fiq_handler(uint32_t id);
22
Soby Mathewec8ac1c2016-05-05 14:32:05 +010023#endif /* __PLATFORM_SP_MIN_H__ */