Skip to content

Commit 55243e7

Browse files
Jenny Huynhdcrowell77
authored andcommitted
Mask early hang indicators from nmmu/vas unit
Masking nmmucqfir(1) and vasfir(15) since they are unit-level indicators of early hang. This will allow pbcentfir(9) to handle the reporting of any early hang conditions. Change-Id: I86acb2d781a6653d9d8c8622ed80da426fa66452 CQ: SW446662 Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/66492 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: Joseph J. McGill <jmcgill@us.ibm.com> Reviewed-by: Zane C. Shelley <zshelle@us.ibm.com> Reviewed-by: Daniel J. Henderson <hende@us.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com> Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/70814 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 2f222c9 commit 55243e7

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/import/chips/p9/procedures/hwp/initfiles/p9_mmu_scom.C

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/* */
66
/* OpenPOWER HostBoot Project */
77
/* */
8-
/* Contributors Listed Below - COPYRIGHT 2016,2018 */
8+
/* Contributors Listed Below - COPYRIGHT 2016,2019 */
99
/* [+] International Business Machines Corp. */
1010
/* */
1111
/* */
@@ -30,8 +30,8 @@
3030
using namespace fapi2;
3131

3232
constexpr uint64_t literal_0 = 0;
33-
constexpr uint64_t literal_0x04047C0000000000 = 0x04047C0000000000;
34-
constexpr uint64_t literal_0x04247C0000000000 = 0x04247C0000000000;
33+
constexpr uint64_t literal_0x44047C0000000000 = 0x44047C0000000000;
34+
constexpr uint64_t literal_0x44247C0000000000 = 0x44247C0000000000;
3535
constexpr uint64_t literal_0x0000000000000000 = 0x0000000000000000;
3636
constexpr uint64_t literal_0x409B000000000000 = 0x409B000000000000;
3737
constexpr uint64_t literal_0x4092000000000000 = 0x4092000000000000;
@@ -69,11 +69,11 @@ fapi2::ReturnCode p9_mmu_scom(const fapi2::Target<fapi2::TARGET_TYPE_PROC_CHIP>&
6969

7070
if ((l_TGT0_ATTR_CHIP_EC_FEATURE_NMMU_NDD1 != literal_0))
7171
{
72-
l_scom_buffer.insert<0, 22, 0, uint64_t>(literal_0x04047C0000000000 );
72+
l_scom_buffer.insert<0, 22, 0, uint64_t>(literal_0x44047C0000000000 );
7373
}
7474
else if ((l_TGT0_ATTR_CHIP_EC_FEATURE_NMMU_NDD1 == literal_0))
7575
{
76-
l_scom_buffer.insert<0, 22, 0, uint64_t>(literal_0x04247C0000000000 );
76+
l_scom_buffer.insert<0, 22, 0, uint64_t>(literal_0x44247C0000000000 );
7777
}
7878

7979
FAPI_TRY(fapi2::putScom(TGT0, 0x5012c03ull, l_scom_buffer));

src/import/chips/p9/procedures/hwp/initfiles/p9_vas_scom.C

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/* */
66
/* OpenPOWER HostBoot Project */
77
/* */
8-
/* Contributors Listed Below - COPYRIGHT 2016,2018 */
8+
/* Contributors Listed Below - COPYRIGHT 2016,2019 */
99
/* [+] International Business Machines Corp. */
1010
/* */
1111
/* */
@@ -29,7 +29,7 @@
2929

3030
using namespace fapi2;
3131

32-
constexpr uint64_t literal_0x00200102000D7FFF = 0x00200102000D7FFF;
32+
constexpr uint64_t literal_0x00210102540D7FFF = 0x00210102540D7FFF;
3333
constexpr uint64_t literal_0x0000000000000000 = 0x0000000000000000;
3434
constexpr uint64_t literal_0 = 0;
3535
constexpr uint64_t literal_0x00DD0201C0000000 = 0x00DD0201C0000000;
@@ -58,7 +58,7 @@ fapi2::ReturnCode p9_vas_scom(const fapi2::Target<fapi2::TARGET_TYPE_PROC_CHIP>&
5858
{
5959
FAPI_TRY(fapi2::getScom( TGT0, 0x3011803ull, l_scom_buffer ));
6060

61-
l_scom_buffer.insert<0, 54, 0, uint64_t>(literal_0x00200102000D7FFF );
61+
l_scom_buffer.insert<0, 54, 0, uint64_t>(literal_0x00210102540D7FFF );
6262
FAPI_TRY(fapi2::putScom(TGT0, 0x3011803ull, l_scom_buffer));
6363
}
6464
{

0 commit comments

Comments
 (0)