Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2022, Arm Limited and Contributors. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #ifndef FEAT_DETECT_H |
| 8 | #define FEAT_DETECT_H |
| 9 | |
Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 10 | /* Function Prototypes */ |
| 11 | void detect_arch_features(void); |
| 12 | |
| 13 | /* Macro Definitions */ |
Andre Przywara | 5b00511 | 2022-11-14 15:38:58 +0000 | [diff] [blame] | 14 | #define FEAT_STATE_DISABLED 0 |
| 15 | #define FEAT_STATE_ALWAYS 1 |
| 16 | #define FEAT_STATE_CHECK 2 |
Jayanth Dodderi Chidanand | 9461a89 | 2022-01-17 18:57:17 +0000 | [diff] [blame] | 17 | |
| 18 | #endif /* FEAT_DETECT_H */ |