feat_detect.h 409 B

12345678910111213141516171819
  1. /*
  2. * Copyright (c) 2022, Arm Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef FEAT_DETECT_H
  7. #define FEAT_DETECT_H
  8. /* Function Prototypes */
  9. void detect_arch_features(void);
  10. /* Macro Definitions */
  11. #define FEAT_STATE_DISABLED 0
  12. #define FEAT_STATE_ALWAYS 1
  13. #define FEAT_STATE_CHECK 2
  14. #define FEAT_STATE_CHECK_ASYMMETRIC 3
  15. #endif /* FEAT_DETECT_H */