Skip to content

Commit 7a4cb95

Browse files
jjmcgilldcrowell77
authored andcommitted
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>
1 parent 43fcef0 commit 7a4cb95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/import/chips/p9/procedures/hwp/customize/p9_xip_customize.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2008,7 +2008,7 @@ ReturnCode p9_xip_customize (
20082008
(uint64_t)fapi2::current_err );
20092009

20102010
// extract data
2011-
l_filterPllBucket = (uint8_t)(*l_bufMvpdField);
2011+
l_filterPllBucket = (uint8_t)(*(l_bufMvpdField + 1));
20122012

20132013
FAPI_ASSERT( l_filterPllBucket <= MAX_FILTER_PLL_BUCKETS,
20142014
fapi2::XIPC_MVPD_AW_FIELD_VALUE_ERR().

0 commit comments

Comments
 (0)