[coreboot-gerrit] New patch to review for coreboot: drivers/intel/fsp2_0: Add FSP return types for reset

Andrey Petrov (andrey.petrov@intel.com) gerrit at coreboot.org
Tue Jun 14 21:07:42 CEST 2016


Andrey Petrov (andrey.petrov at intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15185

-gerrit

commit 2620581798aff0a5a4eb975a419e83bda330adad
Author: Andrey Petrov <andrey.petrov at intel.com>
Date:   Tue Jun 14 12:03:15 2016 -0700

    drivers/intel/fsp2_0: Add FSP return types for reset
    
    FSP methods may require reset under certain conditions. That is indicated
    by specific return type.
    
    Change-Id: I460353c5f835548a98255bd3e11dbfd08260ea52
    Signed-off-by: Andrey Petrov <andrey.petrov at intel.com>
---
 src/drivers/intel/fsp2_0/include/fsp/api.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/drivers/intel/fsp2_0/include/fsp/api.h b/src/drivers/intel/fsp2_0/include/fsp/api.h
index a7b9951..aa45d97 100644
--- a/src/drivers/intel/fsp2_0/include/fsp/api.h
+++ b/src/drivers/intel/fsp2_0/include/fsp/api.h
@@ -21,6 +21,11 @@
 
 enum fsp_status {
 	FSP_SUCCESS = 0x00000000,
+	FSP_STATUS_RESET_REQUIRED_COLD = 0x40000001,
+	FSP_STATUS_RESET_REQUIRED_WARM = 0x40000002,
+	FSP_STATUS_RESET_REQUIRED_SHUTDOWN = 0x40000003,
+	FSP_STATUS_RESET_REQUIRED_UNDEFINED = 0x40000004,
+	FSP_STATUS_RESET_REQUIRED_GLOBAL_RESET = 0x40000005,
 	FSP_INVALID_PARAMETER = 0x80000002,
 	FSP_UNSUPPORTED = 0x80000003,
 	FSP_NOT_READY = 0x80000006,



More information about the coreboot-gerrit mailing list