Arvind Ram Prakash | e558f9c | 2024-11-11 14:32:37 -0600 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2024, Arm Limited and Contributors. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | */ | ||||
6 | |||||
7 | #ifndef FPMR_H | ||||
8 | #define FPMR_H | ||||
9 | |||||
10 | #include <context.h> | ||||
11 | |||||
12 | #if ENABLE_FEAT_FPMR | ||||
13 | void fpmr_enable_per_world(per_world_context_t *per_world_ctx); | ||||
14 | #else | ||||
15 | static inline void fpmr_enable_per_world(per_world_context_t *per_world_ctx) | ||||
16 | { | ||||
17 | } | ||||
18 | #endif /* ENABLE_FEAT_FPMR */ | ||||
19 | |||||
20 | #endif /* FPMR_H */ |