xref: /aosp_15_r20/external/coreboot/src/soc/intel/common/block/include/intelblocks/sgx.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef SOC_INTEL_COMMON_BLOCK_SGX_H
4 #define SOC_INTEL_COMMON_BLOCK_SGX_H
5 
6 #include <soc/nvs.h>
7 
8 /*
9  * Configure core PRMRR.
10  * PRMRR needs to configured first on all cores and then
11  * call sgx_configure() for all cores to init SGX.
12  */
13 void prmrr_core_configure(void);
14 
15 /*
16  * Configure SGX.
17  */
18 void sgx_configure(void *unused);
19 
20 #endif	/* SOC_INTEL_COMMON_BLOCK_SGX_H */
21