xref: /rk3399_ARM-atf/include/lib/extensions/cpa2.h (revision 0c3b84c1e2b48a14bfc1946233a61d1425f20910)
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