blob: 6448c62d9d1b2234a97f322d3882211389d6e7aa [file] [log] [blame]
julhal0137e1aea2021-02-09 15:22:20 +00001/*
Imre Kis06360812022-07-05 16:28:00 +02002 * Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved.
julhal0137e1aea2021-02-09 15:22:20 +00003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef SP_CONFIG_LOADER_H
8#define SP_CONFIG_LOADER_H
9
10#include <ffa_api.h>
Imre Kis06360812022-07-05 16:28:00 +020011#include <stdbool.h>
julhal0137e1aea2021-02-09 15:22:20 +000012
13/**
14 * Loads the secure partition specific configuration passed as
15 * SP initialization parameters.
16 */
Imre Kis06360812022-07-05 16:28:00 +020017bool sp_config_load(struct ffa_init_info *init_info);
julhal0137e1aea2021-02-09 15:22:20 +000018
19#endif /* SP_CONFIG_LOADER_H */