diff options
author | Zane Shelley <zshelle@us.ibm.com> | 2017-11-03 15:54:54 -0500 |
---|---|---|
committer | Martha Broyles <mbroyles@us.ibm.com> | 2017-11-08 16:31:22 -0500 |
commit | cd42091d9a39bb59bec5e62696f291afd576bdc3 (patch) | |
tree | 82f679f9e5c325e99af45f15c4109da6c620d231 /src/occ_gpe0 | |
parent | a5b5103756c8428077258306a9be85205c836a94 (diff) | |
download | talos-occ-cd42091d9a39bb59bec5e62696f291afd576bdc3.tar.gz talos-occ-cd42091d9a39bb59bec5e62696f291afd576bdc3.zip |
FIRDATA: retry getSCOMs via SBE FIFO on bad response
Change-Id: Ie1b15e8d850a8f24ed19054e4fa885944c698b1d
CQ: SW406544
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/49255
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Prachi Gupta <pragupta@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Reviewed-by: Martha Broyles <mbroyles@us.ibm.com>
Diffstat (limited to 'src/occ_gpe0')
-rw-r--r-- | src/occ_gpe0/firdata/sbe_fifo.c | 37 |
1 files changed, 28 insertions, 9 deletions
diff --git a/src/occ_gpe0/firdata/sbe_fifo.c b/src/occ_gpe0/firdata/sbe_fifo.c index dafc93b..51fdf50 100644 --- a/src/occ_gpe0/firdata/sbe_fifo.c +++ b/src/occ_gpe0/firdata/sbe_fifo.c @@ -433,18 +433,37 @@ int32_t getFifoScom(SCOM_Trgt_t* i_target, uint64_t i_addr, uint64_t* o_data) l_fifoRequest.command.s.type = SBE_FIFO_CMD_GET_SCOM; l_fifoRequest.address = i_addr; - l_rc = writeRequest( i_target, (uint32_t*)&l_fifoRequest ); - if ( SUCCESS == l_rc ) + do { + l_rc = writeRequest( i_target, (uint32_t*)&l_fifoRequest ); + if ( SUCCESS != l_rc ) break; + + // The request has been made. Now check the response. If the response + // timed out or had malformed data, retry the request. This may happen + // if the BMC issued a request at the same time as the OCC. In theory, + // this should never happen because the BMC should stop sending requests + // once a checkstop occurs. However, this is protection just in case + // there is any overlap in the timing. l_rc = readResponse( i_target, &l_fifoRequest.command, o_data ); - } + if ( RC_FIFO_TIMEOUT_DN != l_rc && + RC_RESP_DATA_OVERFLOW != l_rc && + RC_RESP_MIN_SIZE_INVALID != l_rc && + RC_RESP_DISTANCE_INVALID != l_rc && + RC_RESP_MAGIC_WORD_INVALID != l_rc && + RC_RESP_UNEXPECTED_CMD != l_rc && + RC_RESP_UNEXPECTED_DATA_SIZE != l_rc ) + { + break; + } - if ( l_rc != SUCCESS ) - { - // Reset the FIFO for subsequent SCOMs - uint32_t l_data = 0xDEAD; - putfsi( i_target, 0x2450, l_data ); - } + if ( l_rc != SUCCESS ) + { + // Reset the FIFO for subsequent SCOMs + uint32_t l_data = 0xDEAD; + putfsi( i_target, 0x2450, l_data ); + } + + } while ( TRUE ); return l_rc; } |