xref: /rk3399_ARM-atf/include/common/feat_detect.h (revision fa0df1bd76b176f7832031c1fa3a0044aacf4e37)
1 /*
2  * Copyright (c) 2022-2025, 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 
10 /* Function Prototypes */
11 void detect_arch_features(unsigned int core_pos);
12 
13 /* Macro Definitions */
14 #define FEAT_STATE_DISABLED		0
15 #define FEAT_STATE_ALWAYS		1
16 #define FEAT_STATE_CHECK		2
17 
18 #endif /* FEAT_DETECT_H */
19