xref: /rk3399_ARM-atf/include/lib/extensions/pauth.h (revision 0e8def996e73673d3e2c3d755a84e2b759ab3052)
1 /*
2  * Copyright (c) 2019, Arm Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef PAUTH_H
8 #define PAUTH_H
9 
10 /*******************************************************************************
11  * ARMv8.3-PAuth support functions
12  ******************************************************************************/
13 
14 /* Disable ARMv8.3 pointer authentication in EL1/EL3 */
15 void pauth_disable_el1(void);
16 void pauth_disable_el3(void);
17 
18 #endif /* PAUTH_H */
19