pauth.h 495 B

123456789101112131415161718
  1. /*
  2. * Copyright (c) 2019, Arm Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef PAUTH_H
  7. #define PAUTH_H
  8. /*******************************************************************************
  9. * ARMv8.3-PAuth support functions
  10. ******************************************************************************/
  11. /* Disable ARMv8.3 pointer authentication in EL1/EL3 */
  12. void pauth_disable_el1(void);
  13. void pauth_disable_el3(void);
  14. #endif /* PAUTH_H */