julhal01 | 37e1aea | 2021-02-09 15:22:20 +0000 | [diff] [blame] | 1 | /* |
Imre Kis | 0636081 | 2022-07-05 16:28:00 +0200 | [diff] [blame^] | 2 | * Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved. |
julhal01 | 37e1aea | 2021-02-09 15:22:20 +0000 | [diff] [blame] | 3 | * |
| 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 Kis | 0636081 | 2022-07-05 16:28:00 +0200 | [diff] [blame^] | 11 | #include <stdbool.h> |
julhal01 | 37e1aea | 2021-02-09 15:22:20 +0000 | [diff] [blame] | 12 | |
| 13 | /** |
| 14 | * Loads the secure partition specific configuration passed as |
| 15 | * SP initialization parameters. |
| 16 | */ |
Imre Kis | 0636081 | 2022-07-05 16:28:00 +0200 | [diff] [blame^] | 17 | bool sp_config_load(struct ffa_init_info *init_info); |
julhal01 | 37e1aea | 2021-02-09 15:22:20 +0000 | [diff] [blame] | 18 | |
| 19 | #endif /* SP_CONFIG_LOADER_H */ |