summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe McGill <jmcgill@us.ibm.com>2018-02-19 11:46:52 -0600
committerDaniel M. Crowell <dcrowell@us.ibm.com>2018-04-10 16:14:30 -0400
commit7a4cb95b51a4090a1a4c3506bf206915bb73de21 (patch)
tree0151cefe19c01eea6baaebe9a413f1c0c18a317a
parent43fcef0d5e371460dcdea1ff04bacfb731e6ee0f (diff)
downloadtalos-hostboot-7a4cb95b51a4090a1a4c3506bf206915bb73de21.tar.gz
talos-hostboot-7a4cb95b51a4090a1a4c3506bf206915bb73de21.zip
p9_xip_customize -- consume correct byte for AW keyword PLL bucket selector
initial release consumed byte 0 as the bucket selector, which is reserved for the keyword version update customization HWP to consume byte 1 as the selector Change-Id: Id7177fe7f7334d4c044e2110390f3b11477a3ae6 CQ: SW417993 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/54370 Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@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: Thi N. Tran <thi@us.ibm.com> Reviewed-by: Claus M. Olsen <cmolsen@us.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com> Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/54383 Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
-rw-r--r--src/import/chips/p9/procedures/hwp/customize/p9_xip_customize.C2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/import/chips/p9/procedures/hwp/customize/p9_xip_customize.C b/src/import/chips/p9/procedures/hwp/customize/p9_xip_customize.C
index e50bdcde0..2d401661e 100644
--- a/src/import/chips/p9/procedures/hwp/customize/p9_xip_customize.C
+++ b/src/import/chips/p9/procedures/hwp/customize/p9_xip_customize.C
@@ -2008,7 +2008,7 @@ ReturnCode p9_xip_customize (
(uint64_t)fapi2::current_err );
// extract data
- l_filterPllBucket = (uint8_t)(*l_bufMvpdField);
+ l_filterPllBucket = (uint8_t)(*(l_bufMvpdField + 1));
FAPI_ASSERT( l_filterPllBucket <= MAX_FILTER_PLL_BUCKETS,
fapi2::XIPC_MVPD_AW_FIELD_VALUE_ERR().
OpenPOWER on IntegriCloud