diff options
| author | Dan Crowell <dcrowell@us.ibm.com> | 2016-12-15 10:42:50 -0600 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2016-12-19 17:31:51 -0500 |
| commit | db432c2f9d0d1269c8660a23b84c0552cd672b31 (patch) | |
| tree | c6d18d181ce582aaf21448d66e5ce143e80c993f | |
| parent | e148934b39f49df7416bcc326eb993f96b9be961 (diff) | |
| download | blackbird-hostboot-db432c2f9d0d1269c8660a23b84c0552cd672b31.tar.gz blackbird-hostboot-db432c2f9d0d1269c8660a23b84c0552cd672b31.zip | |
Add support for CRP0:L1-L8
Preparing for some upcoming requirements from FAPI.
Change-Id: I15dac7faef68f1e189d21fd01836391ba0de9099
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/33909
Reviewed-by: Martin Gloff <mgloff@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
| -rw-r--r-- | src/include/usr/vpd/mvpdenums.H | 10 | ||||
| -rw-r--r-- | src/usr/vpd/mvpd.H | 10 |
2 files changed, 18 insertions, 2 deletions
diff --git a/src/include/usr/vpd/mvpdenums.H b/src/include/usr/vpd/mvpdenums.H index fd6371a4b..3f524ddb4 100644 --- a/src/include/usr/vpd/mvpdenums.H +++ b/src/include/usr/vpd/mvpdenums.H @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2013,2015 */ +/* Contributors Listed Below - COPYRIGHT 2013,2016 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -115,6 +115,14 @@ enum mvpdKeyword n21 = 0x20, n30 = 0x21, n31 = 0x22, + L1 = 0x23, + L2 = 0x24, + L3 = 0x25, + L4 = 0x26, + L5 = 0x27, + L6 = 0x28, + L7 = 0x29, + L8 = 0x2A, // Last Keyword MVPD_LAST_KEYWORD, diff --git a/src/usr/vpd/mvpd.H b/src/usr/vpd/mvpd.H index fa5ce5543..f5f7b1445 100644 --- a/src/usr/vpd/mvpd.H +++ b/src/usr/vpd/mvpd.H @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2013,2015 */ +/* Contributors Listed Below - COPYRIGHT 2013,2016 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -126,6 +126,14 @@ namespace MVPD { n21, "21" }, { n30, "30" }, { n31, "31" }, + { L1, "L1" }, + { L2, "L2" }, + { L3, "L3" }, + { L4, "L4" }, + { L5, "L5" }, + { L6, "L6" }, + { L7, "L7" }, + { L8, "L8" }, // ------------------------------------------------------------------- // DO NOT USE!! This is for test purposes ONLY! |

