diff options
author | Dan Crowell <dcrowell@us.ibm.com> | 2016-02-18 14:42:21 -0600 |
---|---|---|
committer | William G. Hoffa <wghoffa@us.ibm.com> | 2016-03-21 16:28:19 -0400 |
commit | 2c4c5c4490ca71ffcc8c81047b3990b5b8a4802d (patch) | |
tree | eddd387a63d12c3bb8e7ba4c2030a4f58d5aa328 /src/include/usr/util | |
parent | 9b188cdec934275ce65eab3ade91398fdec4ddb9 (diff) | |
download | blackbird-hostboot-2c4c5c4490ca71ffcc8c81047b3990b5b8a4802d.tar.gz blackbird-hostboot-2c4c5c4490ca71ffcc8c81047b3990b5b8a4802d.zip |
Release pages used by pnor vmm when lid manager is finished
Forces a release of the physical pages being used for the pnor
vmm cache once we are done reading the lid out of pnor.
Forwardport: yes
Change-Id: I35df6f2316fa9903d8283395297201bd4c87e108
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/20733
Tested-by: Jenkins Server
Reviewed-by: Prachi Gupta <pragupta@us.ibm.com>
Tested-by: Jenkins OP Build CI
Tested-by: Jenkins OP HW
Tested-by: FSP CI Jenkins
Reviewed-by: Stephen M. Cprek <smcprek@us.ibm.com>
Reviewed-by: Corey V. Swenson <cswenson@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/22304
Diffstat (limited to 'src/include/usr/util')
-rw-r--r-- | src/include/usr/util/util_reasoncodes.H | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/usr/util/util_reasoncodes.H b/src/include/usr/util/util_reasoncodes.H index 2b7ed35cb..8fd6d484c 100644 --- a/src/include/usr/util/util_reasoncodes.H +++ b/src/include/usr/util/util_reasoncodes.H @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2012,2015 */ +/* Contributors Listed Below - COPYRIGHT 2012,2016 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -38,6 +38,7 @@ namespace Util UTIL_LIDMGR_GETLIDSIZE = 0x04, // UtilLidMgr::getLidSize UTIL_LIDMGR_GETLIDPNOR = 0x05, // UtilLidMgr::getLidPnor UTIL_LIDMGR_RT = 0x06, + UTIL_LIDMGR_CLEANUP = 0x07, // UtilLidMgr::cleanup }; enum ReasonCode @@ -52,6 +53,7 @@ namespace Util UTIL_LIDMGR_INVAL_SIZE_PNOR = UTIL_COMP_ID | 0x08, UTIL_LIDMGR_UNLOAD_RC_FAIL = UTIL_COMP_ID | 0x09, UTIL_LIDMGR_NOT_FOUND = UTIL_COMP_ID | 0x0A, + UTIL_LIDMGR_MM_FAIL = UTIL_COMP_ID | 0x0B, }; }; |