xref: /rk3399_ARM-atf/include/lib/extensions/cpa2.h (revision be3abed7cb3e84332f7fe7cf016ab9671e377cad)
1 /*
2  * Copyright (c) 2025, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef CPA2_H
8 #define CPA2_H
9 
10 #if ENABLE_FEAT_CPA2
11 void cpa2_enable_el3(void);
12 #else
13 static inline void cpa2_enable_el3(void)
14 {
15 }
16 #endif
17 
18 #endif /* CPA2_H */
19