diff options
| author | Prem Shanker Jha <premjha2@in.ibm.com> | 2016-09-19 05:28:51 -0500 |
|---|---|---|
| committer | Joshua Hunsberger <jahunsbe@us.ibm.com> | 2017-10-23 16:57:01 -0500 |
| commit | 04fd444ea70819c9eb8557024f03a1264ae044d5 (patch) | |
| tree | 686ed53d389af061e9f7292ba3ace07f2e3a3ebd | |
| parent | bd0d69266c309f09a075003066e598b5237facdb (diff) | |
| download | talos-hcode-04fd444ea70819c9eb8557024f03a1264ae044d5.tar.gz talos-hcode-04fd444ea70819c9eb8557024f03a1264ae044d5.zip | |
PM: Added support for CME/SGPE flags in respective image header.
Change-Id: I0c49a550eb3afb85e88afa930b36e59ba338cfd2
RTC:160829
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/29927
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: PPE CI <ppe-ci+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Gregory S. Still <stillgs@us.ibm.com>
Reviewed-by: ADAM S. HALE <ashale@us.ibm.com>
Dev-Ready: ADAM S. HALE <ashale@us.ibm.com>
Reviewed-by: RANGANATHPRASAD G. BRAHMASAMUDRA <prasadbgr@in.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
| -rw-r--r-- | import/chips/p9/procedures/hwp/lib/p9_hcode_image_defines.H | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/import/chips/p9/procedures/hwp/lib/p9_hcode_image_defines.H b/import/chips/p9/procedures/hwp/lib/p9_hcode_image_defines.H index 61e883ad..83d2ce67 100644 --- a/import/chips/p9/procedures/hwp/lib/p9_hcode_image_defines.H +++ b/import/chips/p9/procedures/hwp/lib/p9_hcode_image_defines.H @@ -389,6 +389,20 @@ enum CME_BLOCK_READ_LEN = 32, CME_BLK_SIZE_SHIFT = 0x05, + //CME Image Flags + CME_STOP_3_TO_2_BIT_POS = 0x80000000, + CME_STOP_4_TO_2_BIT_POS = 0x40000000, + CME_STOP_5_TO_4_BIT_POS = 0x20000000, + CME_STOP_8_TO_5_BIT_POS = 0x10000000, + CME_STOP_11_TO_8_BIT_POS = 0x08000000, + CME_SKIP_CORE_POWEROFF_BIT_POS = 0x00000001, + + //SGPE Image Flags + SGPE_STOP_4_TO_2_BIT_POS = 0x80000000, + SGPE_STOP_5_TO_4_BIT_POS = 0x40000000, + SGPE_STOP_8_TO_5_BIT_POS = 0x20000000, + SGPE_STOP_11_TO_8_BIT_POS = 0x10000000, + // PPMR //** Boot Loaders |

