xref: /aosp_15_r20/external/coreboot/src/soc/intel/common/block/include/intelblocks/me.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef _SOC_INTEL_COMMON_ME_SPEC_H_
4 #define _SOC_INTEL_COMMON_ME_SPEC_H_
5 
6 #include <stdint.h>
7 #if CONFIG(SOC_INTEL_CSE_HAVE_SPEC_SUPPORT)
8 
9 #if CONFIG_ME_SPEC == 12
10 #include "me_12.h"
11 #elif CONFIG_ME_SPEC == 13
12 #include "me_13.h"
13 #elif CONFIG_ME_SPEC == 15
14 #include "me_15.h"
15 #elif CONFIG_ME_SPEC == 16
16 #include "me_16.h"
17 #elif CONFIG_ME_SPEC == 18
18 #include "me_18.h"
19 #endif
20 
21 #else
22 #include <soc/me.h>
23 #endif /* SOC_INTEL_CSE_HAVE_SPEC_SUPPORT */
24 
25 #endif /* _SOC_INTEL_COMMON_ME_SPEC_H_ */
26