diff options
| author | Corey Swenson <cswenson@us.ibm.com> | 2018-09-06 13:31:35 -0500 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2018-11-09 09:30:00 -0600 |
| commit | 40039bb5fddf5efd1b01429ef011b68be999dce3 (patch) | |
| tree | d509be93e473fc292bd51658b377954785d1117a /src/include/usr | |
| parent | fffa79ecb0c701ee029eae8ffb33483701e4c117 (diff) | |
| download | talos-hostboot-40039bb5fddf5efd1b01429ef011b68be999dce3.tar.gz talos-hostboot-40039bb5fddf5efd1b01429ef011b68be999dce3.zip | |
Extend multicast workaround and add tests
- Add support for multicast OR op type
- Add xscom and scom multicast tests
- Avoid false fails by not setting multicast bit in bad address tests
Change-Id: I32ea5b1b68a1a2f0d92c2b82b5ab1b932ddb54af
RTC:198114
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/65778
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
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: Matt Derksen <mderkse1@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/include/usr')
| -rw-r--r-- | src/include/usr/scom/scomreasoncodes.H | 2 | ||||
| -rw-r--r-- | src/include/usr/xscom/xscomreasoncodes.H | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/include/usr/scom/scomreasoncodes.H b/src/include/usr/scom/scomreasoncodes.H index 5c39abdeb..6b87dbec2 100644 --- a/src/include/usr/scom/scomreasoncodes.H +++ b/src/include/usr/scom/scomreasoncodes.H @@ -47,6 +47,7 @@ namespace SCOM SCOM_READ_CENTAUR_CACHE = 0x0D, SCOM_CALL_WAKEUP_HYP = 0x0E, SCOM_CALL_WAKEUP_HWP = 0x0F, + SCOM_DO_MULTICAST_WORKAROUND = 0x10, }; enum scomReasonCode @@ -81,6 +82,7 @@ namespace SCOM SCOM_CACHE_SEQ_ERROR = SCOM_COMP_ID | 0x1C, SCOM_INVALID_WAKEUP_PARM = SCOM_COMP_ID | 0x1D, SCOM_UNEXPECTED_FORCE_WAKEUP = SCOM_COMP_ID | 0x1E, + SCOM_UNSUPPORTED_MULTICAST_OP = SCOM_COMP_ID | 0x1F, }; enum UserDetailsTypes diff --git a/src/include/usr/xscom/xscomreasoncodes.H b/src/include/usr/xscom/xscomreasoncodes.H index 33fe9a712..7e1784e36 100644 --- a/src/include/usr/xscom/xscomreasoncodes.H +++ b/src/include/usr/xscom/xscomreasoncodes.H @@ -5,7 +5,9 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* COPYRIGHT International Business Machines Corp. 2011,2014 */ +/* Contributors Listed Below - COPYRIGHT 2011,2018 */ +/* [+] International Business Machines Corp. */ +/* */ /* */ /* Licensed under the Apache License, Version 2.0 (the "License"); */ /* you may not use this file except in compliance with the License. */ @@ -39,6 +41,7 @@ namespace XSCOM XSCOM_DO_OP = 0x07, XSCOM_RT_DO_OP = 0x08, XSCOM_RT_SANITY_CHECK = 0x09, + XSCOM_TEST_XSCOM4 = 0x0A, }; enum xscomReasonCode |

