diff options
| author | Thi Tran <thi@us.ibm.com> | 2016-07-22 08:43:22 -0500 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2016-08-01 11:38:25 -0400 |
| commit | 96ed91e4b8012069aa0d67bb073756153c4dad81 (patch) | |
| tree | b91965d5c9bbb3ebc81596830dee14dc1f81f2b5 /src/usr/scom/scom.C | |
| parent | d7f28dc0c3e262c5a7a32ef9c6d970dcf93d749c (diff) | |
| download | blackbird-hostboot-96ed91e4b8012069aa0d67bb073756153c4dad81.tar.gz blackbird-hostboot-96ed91e4b8012069aa0d67bb073756153c4dad81.zip | |
Integrating initfiles: NEST cxa/int/nx/mmu
Change-Id: I5d28f984f8c654a714f2e0af7ed40ca93c975292
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/27363
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Joseph J. McGill <jmcgill@us.ibm.com>
Reviewed-by: Jenny Huynh <jhuynh@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/27364
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/scom/scom.C')
| -rw-r--r-- | src/usr/scom/scom.C | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/usr/scom/scom.C b/src/usr/scom/scom.C index 81e272d9e..51384571c 100644 --- a/src/usr/scom/scom.C +++ b/src/usr/scom/scom.C @@ -707,6 +707,32 @@ errlHndl_t doScomOp(DeviceFW::OperationType i_opType, errlHndl_t l_err = NULL; do{ + //@FIXME-RTC:158483-Get rid of this hack when Simics fix goes in + bool skipit = false; + switch( i_addr ) + { + case 0x02011103: + case 0x02011106: + case 0x02011107: + case 0x05012c03: + case 0x05012c06: + case 0x05012c07: + case 0x05012c15: + case 0x05012c43: + case 0x05012c46: + case 0x05012c47: + case 0x05012c48: + case 0x05012c49: + case 0x05013148: + case 0x05013149: + TRACFCOMP( g_trac_scom, "Skipping scom to %.8X!", i_addr ); + skipit = true; + default: + //nothing to do + break; + } + if( skipit ) { break; } + TARGETING::ScomSwitches scomSetting; scomSetting.useXscom = true; //Default to Xscom supported. if(TARGETING::MASTER_PROCESSOR_CHIP_TARGET_SENTINEL != i_target) |

