12345678910111213141516171819202122232425262728293031323334 |
- /*
- * Copyright (c) 2017-2024, Arm Limited and Contributors. All rights reserved.
- *
- * SPDX-License-Identifier: BSD-3-Clause
- */
- #ifndef SVE_H
- #define SVE_H
- #include <context.h>
- #if (ENABLE_SME_FOR_NS || ENABLE_SVE_FOR_NS)
- void sve_init_el2_unused(void);
- void sve_enable_per_world(per_world_context_t *per_world_ctx);
- void sve_disable_per_world(per_world_context_t *per_world_ctx);
- #else
- static inline void sve_init_el2_unused(void)
- {
- }
- static inline void sve_enable_per_world(per_world_context_t *per_world_ctx)
- {
- }
- static inline void sve_disable_per_world(per_world_context_t *per_world_ctx)
- {
- }
- #endif /* ( ENABLE_SME_FOR_NS | ENABLE_SVE_FOR_NS ) */
- #if CTX_INCLUDE_SVE_REGS
- void sve_context_save(simd_regs_t *regs);
- void sve_context_restore(simd_regs_t *regs);
- #endif
- #endif /* SVE_H */
|