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