blob: 9c6b5fb29ce45bbd13bd6ae0c48e6bf2f79099fc [file] [log] [blame]
Soby Mathewc11ba852016-05-05 14:32:05 +01001/*
Yann Gautiera1255c72024-01-18 18:20:43 +01002 * Copyright (c) 2016-2024, Arm Limited and Contributors. All rights reserved.
Soby Mathewc11ba852016-05-05 14:32:05 +01003 *
dp-arm82cb2c12017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soby Mathewc11ba852016-05-05 14:32:05 +01005 */
6
Antonio Nino Diazc3cf06f2018-11-08 10:20:19 +00007#ifndef SP_MIN_PRIVATE_H
8#define SP_MIN_PRIVATE_H
Soby Mathewc11ba852016-05-05 14:32:05 +01009
Yann Gautiera1255c72024-01-18 18:20:43 +010010#include <stdint.h>
11
12void sp_min_setup(u_register_t arg0, u_register_t arg1, u_register_t arg2,
13 u_register_t arg3);
Soby Mathewc11ba852016-05-05 14:32:05 +010014void sp_min_main(void);
15void sp_min_warm_boot(void);
Etienne Carriere71816092017-08-09 15:48:53 +020016void sp_min_fiq(void);
Soby Mathewc11ba852016-05-05 14:32:05 +010017
Antonio Nino Diazc3cf06f2018-11-08 10:20:19 +000018#endif /* SP_MIN_PRIVATE_H */