diff options
author | Corey Swenson <cswenson@us.ibm.com> | 2019-11-20 16:26:49 -0600 |
---|---|---|
committer | Daniel M Crowell <dcrowell@us.ibm.com> | 2019-12-12 15:13:53 -0600 |
commit | 5eaa67a665bf3c6d4809718f8f98838c2af80d6b (patch) | |
tree | aa7cde0a48830db2a95fdde05953a53a05c8368b /src/include/runtime/interface.h | |
parent | ea01d258c6f7493c3c33f8404ce4af3eaf61ef22 (diff) | |
download | talos-hostboot-5eaa67a665bf3c6d4809718f8f98838c2af80d6b.tar.gz talos-hostboot-5eaa67a665bf3c6d4809718f8f98838c2af80d6b.zip |
Always send NV_STATUS to Opal when opal-prd starts
Opal does not persist NVDIMM status state so HBRT
must send this info to Opal when opal-prd starts.
Change-Id: I0771c63ff2857f9b70fbfad5760267e3da463009
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/87541
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Roland Veloz <rveloz@us.ibm.com>
Reviewed-by: Matt Derksen <mderkse1@us.ibm.com>
Reviewed-by: Daniel M Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/include/runtime/interface.h')
-rw-r--r-- | src/include/runtime/interface.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/runtime/interface.h b/src/include/runtime/interface.h index 638bf8b89..2d54dd1f3 100644 --- a/src/include/runtime/interface.h +++ b/src/include/runtime/interface.h @@ -1124,6 +1124,11 @@ struct postInitCalls_t */ void (*callCommitRsvdTraceBufErrl)(); + /** + * @brief Sends current NV_STATUS to host + * + */ + void (*callSendNvStatus)(); }; extern hostInterfaces_t* g_hostInterfaces; |