diff options
| author | Rahul Batra <rbatra@us.ibm.com> | 2017-12-20 13:31:00 -0600 |
|---|---|---|
| committer | Joshua Hunsberger <jahunsbe@us.ibm.com> | 2018-02-01 17:16:20 -0600 |
| commit | 92a6b35a7bac84c4afeb7ee48974fa650876fe95 (patch) | |
| tree | d67a5db77e9a2ad89f5a825785654a8c33ff6714 /import/chips/p9/common/pmlib/include | |
| parent | c91fbdc36d394d9b97231e70504796cbc7584433 (diff) | |
| download | talos-hcode-92a6b35a7bac84c4afeb7ee48974fa650876fe95.tar.gz talos-hcode-92a6b35a7bac84c4afeb7ee48974fa650876fe95.zip | |
PM: VDM Prolonged Droop Fix
Key_Cronus_Test=PM_REGRESS
Change-Id: I5125ac17b96e4a4bbe08a629d3bf9a7dd7f8b098
Original-Change-Id: I73d38d6029a5b84590d1081855e12c145a535869
CQ: SW413192
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/51338
Reviewed-by: Michael S. Floyd <mfloyd@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: HWSV CI <hwsv-ci+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Gregory S. Still <stillgs@us.ibm.com>
Tested-by: Cronus HW CI <cronushw-ci+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: RANGANATHPRASAD G. BRAHMASAMUDRA <prasadbgr@in.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Diffstat (limited to 'import/chips/p9/common/pmlib/include')
| -rw-r--r-- | import/chips/p9/common/pmlib/include/wof_sgpe_pgpe_api.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/import/chips/p9/common/pmlib/include/wof_sgpe_pgpe_api.h b/import/chips/p9/common/pmlib/include/wof_sgpe_pgpe_api.h index 0b62feaa..f51db666 100644 --- a/import/chips/p9/common/pmlib/include/wof_sgpe_pgpe_api.h +++ b/import/chips/p9/common/pmlib/include/wof_sgpe_pgpe_api.h @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HCODE Project */ /* */ -/* COPYRIGHT 2016,2017 */ +/* COPYRIGHT 2016,2018 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -69,6 +69,16 @@ enum UPDATE_ACTIVE_TYPES UPDATE_ACTIVE_QUADS_ENTRY_TYPE_NOTIFY = 0x1 }; +enum SUSPEND_STOP_COMMANDS +{ + SUSPEND_STOP_UNSUSPEND_ENTRY = 0x1, + SUSPEND_STOP_UNSUSPEND_EXIT = 0x2, + SUSPEND_STOP_UNSUSPEND_ENTRY_EXIT = 0x3, + SUSPEND_STOP_SUSPEND_ENTRY = 0x5, + SUSPEND_STOP_SUSPEND_EXIT = 0x6, + SUSPEND_STOP_SUSPEND_ENTRY_EXIT = 0x7 +}; + // // Return Codes // @@ -140,7 +150,8 @@ typedef union { uint32_t msg_num : 8; uint32_t return_code : 8; - uint32_t reserved0 : 16; + uint32_t command : 8; + uint32_t reserved0 : 8; uint32_t reserved1 : 32; } fields; } ipcmsg_p2s_suspend_stop_t; |

