diff options
author | Pratik Prajapati <pratikkumar.v.prajapati@intel.com> | 2017-10-11 11:52:16 -0700 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2017-10-20 20:06:26 +0000 |
commit | d06c7646ac0a191b4320e764bf626982e5facd3e (patch) | |
tree | bb30789c90db5f008b643218fa77f40cf1c15b57 | |
parent | 0e5eb46bb79d9737594eb296043c3e2d65a609fb (diff) | |
download | coreboot-d06c7646ac0a191b4320e764bf626982e5facd3e.tar.xz |
soc/intel/apollolake: update GNVS with SGX data
Call sgx_fill_gnvs to update GNVS data, if
CONFIG_SOC_INTEL_COMMON_BLOCK_SGX is set.
Change-Id: I692f466d2c6f537d44aa042c4890ee8055c982c8
Signed-off-by: Pratik Prajapati <pratikkumar.v.prajapati@intel.com>
Reviewed-on: https://review.coreboot.org/21967
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
-rw-r--r-- | src/soc/intel/apollolake/acpi.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/soc/intel/apollolake/acpi.c b/src/soc/intel/apollolake/acpi.c index df4e630c7c..5fdb22d6df 100644 --- a/src/soc/intel/apollolake/acpi.c +++ b/src/soc/intel/apollolake/acpi.c @@ -27,6 +27,7 @@ #include <gpio.h> #include <intelblocks/acpi.h> #include <intelblocks/pmclib.h> +#include <intelblocks/sgx.h> #include <soc/iomap.h> #include <soc/pm.h> #include <soc/nvs.h> @@ -125,6 +126,9 @@ void acpi_create_gnvs(struct global_nvs_t *gnvs) gnvs->scdp = gpio_get_pad_portid(cfg->sdcard_cd_gpio); gnvs->scdo = gpio_acpi_pin(cfg->sdcard_cd_gpio); } + + if (IS_ENABLED(CONFIG_SOC_INTEL_COMMON_BLOCK_SGX)) + sgx_fill_gnvs(gnvs); } uint32_t acpi_fill_soc_wake(uint32_t generic_pm1_en, |