/* IBM_PROLOG_BEGIN_TAG */ /* This is an automatically generated prolog. */ /* */ /* $Source: src/usr/ibscom/ibscom.C $ */ /* */ /* OpenPOWER HostBoot Project */ /* */ /* COPYRIGHT International Business Machines Corp. 2012,2014 */ /* */ /* Licensed under the Apache License, Version 2.0 (the "License"); */ /* you may not use this file except in compliance with the License. */ /* You may obtain a copy of the License at */ /* */ /* http://www.apache.org/licenses/LICENSE-2.0 */ /* */ /* Unless required by applicable law or agreed to in writing, software */ /* distributed under the License is distributed on an "AS IS" BASIS, */ /* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */ /* implied. See the License for the specific language governing */ /* permissions and limitations under the License. */ /* */ /* IBM_PROLOG_END_TAG */ /*****************************************************************************/ // I n c l u d e s /*****************************************************************************/ #include #include #include #include #include #include #include #include #include #include #include #include #include "ibscom.H" #include #include #include #include #include #include #include // Easy macro replace for unit testing //#define TRACUCOMP(args...) TRACFCOMP(args) #define TRACUCOMP(args...) // Trace definition trace_desc_t* g_trac_ibscom = NULL; TRAC_INIT(&g_trac_ibscom, IBSCOM_COMP_NAME, KILOBYTE); using namespace ERRORLOG; using namespace TARGETING; namespace IBSCOM { // SCOM Register addresses const uint32_t MBS_FIR = 0x02011400; const uint32_t MBSIBERR0 = 0x0201141B; // Register XSCcom access functions to DD framework DEVICE_REGISTER_ROUTE(DeviceFW::WILDCARD, DeviceFW::IBSCOM, TYPE_MEMBUF, ibscomPerformOp); /** * @brief Internal routine that verifies the validity of input parameters * for an inband scom access. * * @param[in] i_opType Operation type, see DeviceFW::OperationType * in driverif.H * @param[in] i_target inband scom target * @param[in] i_buffer Read: Pointer to output data storage * Write: Pointer to input data storage * @param[in] i_buflen Input: size of io_buffer (in bytes) * @param[in] i_addr Address being accessed (Used for FFDC) * @return errlHndl_t */ errlHndl_t ibscomOpSanityCheck(const DeviceFW::OperationType i_opType, const Target* i_target, const void* i_buffer, const size_t& i_buflen, const uint64_t i_addr) { errlHndl_t l_err = NULL; TRACDCOMP(g_trac_ibscom, INFO_MRK ">>ibscomOpSanityCheck: Entering Function"); do { // Verify address is somewhat valid (not over 32-bits long) if(0 != (i_addr & 0xFFFFFFFF00000000)) { TRACFCOMP(g_trac_ibscom, ERR_MRK"ibscomOpSanityCheck: Impossible address. i_addr=0x%.16X", i_buflen); /*@ * @errortype * @moduleid IBSCOM_SANITY_CHECK * @reasoncode IBSCOM_INVALID_ADDRESS * @userdata1 Inband Scom address * @userdata2 * @devdesc The provided address is over 32 bits long * which makes it invalid. */ l_err = new ErrlEntry(ERRL_SEV_UNRECOVERABLE, IBSCOM_SANITY_CHECK, IBSCOM_INVALID_ADDRESS, i_addr, 0); l_err->addProcedureCallout(HWAS::EPUB_PRC_HB_CODE, HWAS::SRCI_PRIORITY_HIGH); break; } // Verify data buffer if ( (i_buflen < IBSCOM_BUFFER_SIZE) || (i_buffer == NULL) ) { TRACFCOMP(g_trac_ibscom, ERR_MRK "ibscomOpSanityCheck: Invalid buffer. i_buflen=0x%X", i_buflen); /*@ * @errortype * @moduleid IBSCOM_SANITY_CHECK * @reasoncode IBSCOM_INVALID_DATA_BUFFER * @userdata1 Buffer size * @userdata2 Inband Scom address * @devdesc Inband buffer size < 8 bytes or NULL * data buffer */ l_err = new ErrlEntry(ERRL_SEV_UNRECOVERABLE, IBSCOM_SANITY_CHECK, IBSCOM_INVALID_DATA_BUFFER, i_buflen, i_addr); l_err->addProcedureCallout(HWAS::EPUB_PRC_HB_CODE, HWAS::SRCI_PRIORITY_HIGH); break; } // Verify OP type if ( (i_opType != DeviceFW::READ) && (i_opType != DeviceFW::WRITE) ) { TRACFCOMP(g_trac_ibscom, ERR_MRK "ibscomOpSanityCheck: Invalid opType. i_opType=0x%X", i_opType); /*@ * @errortype * @moduleid IBSCOM_SANITY_CHECK * @reasoncode IBSCOM_INVALID_OP_TYPE * @userdata1 Operation type * @userdata2 inband scom address * @devdesc inband scom invalid operation type */ l_err = new ErrlEntry(ERRL_SEV_UNRECOVERABLE, IBSCOM_SANITY_CHECK, IBSCOM_INVALID_OP_TYPE, i_opType, i_addr); l_err->addProcedureCallout(HWAS::EPUB_PRC_HB_CODE, HWAS::SRCI_PRIORITY_HIGH); break; } } while(0); return l_err; } /** * @brief Get the virtual address of the input target * for an inband scom access. * * Logic: * If never inband scom to this chip: * Call mmio_dev_map() to get virtual addr for this slave proc * Save virtual addr used to this chip's attribute * Else * Use virtual address stored in this chip's attributes. * End if * * @param[in] i_target inband scom target * @param[out] o_virtAddr Target's virtual address * * @return errlHndl_t */ errlHndl_t getTargetVirtualAddress(Target* i_target, uint64_t*& o_virtAddr) { errlHndl_t l_err = NULL; o_virtAddr = NULL; IBScomBase_t l_IBScomBaseAddr = 0; mutex_t* l_mutex = NULL; bool need_unlock = false; do { // Get the virtual addr value of the chip from attribute o_virtAddr = reinterpret_cast (i_target->getAttr()); // If the virtual address equals NULL(default) then this is the // first IBSCOM to this target so we need to allocate // the virtual address and save it in the xscom address attribute. if (o_virtAddr == NULL) { //lock around setting the attribute l_mutex = i_target->getHbMutexAttr(); mutex_lock(l_mutex); need_unlock = true; //double-check that another thread didn't slip in before we locked o_virtAddr = reinterpret_cast (i_target->getAttr()); if( o_virtAddr != 0 ) { mutex_unlock(l_mutex); need_unlock = false; break; } TRACDCOMP(g_trac_ibscom, INFO_MRK "getTargetVirtualAddress: Need to compute virtual address for Centaur"); //Get MMIO Offset from parent MCS attribute. //Get the parent MCS Target* parentMCS = NULL; PredicateCTM l_mcs(CLASS_UNIT, TYPE_MCS, MODEL_NA); TargetHandleList mcs_list; targetService(). getAssociated(mcs_list, i_target, TargetService::PARENT_BY_AFFINITY, TargetService::ALL, &l_mcs); if( mcs_list.size() != 1 ) { TRACFCOMP(g_trac_ibscom, ERR_MRK "getTargetVirtualAddress: mcs_list size is zero"); /*@ * @errortype * @moduleid IBSCOM_GET_TARG_VIRT_ADDR * @reasoncode IBSCOM_INVALID_CONFIG * @userdata1[0:31] HUID of Centaur Target * @userdata2 Not Used * @devdesc System configuration does not have a Parent MCS * for the current centaur. */ l_err = new ErrlEntry(ERRL_SEV_UNRECOVERABLE, IBSCOM_GET_TARG_VIRT_ADDR, IBSCOM_INVALID_CONFIG, TWO_UINT32_TO_UINT64( get_huid(i_target), 0), 0); l_err->addProcedureCallout(HWAS::EPUB_PRC_HB_CODE, HWAS::SRCI_PRIORITY_HIGH); break; } parentMCS = *(mcs_list.begin()); l_IBScomBaseAddr = parentMCS->getAttr(); TRACUCOMP(g_trac_ibscom, INFO_MRK "getTargetVirtualAddress: From Attribute query l_IBScomBaseAddr=0x%llX, i_target=0x%.8x", l_IBScomBaseAddr, i_target->getAttr()); // Map target's virtual address //NOTE: mmio_dev_map only supports 32 GB Allocation. Technically, //hostboot IBSCOM MMIO allocated 64GB, but the SCOM address space //is small enough that 32 GB is sufficient. o_virtAddr = static_cast (mmio_dev_map(reinterpret_cast(l_IBScomBaseAddr), THIRTYTWO_GB)); // Save the virtual address attribute. i_target->setAttr (reinterpret_cast(o_virtAddr)); mutex_unlock(l_mutex); need_unlock = false; } } while (0); if( need_unlock && l_mutex ) { mutex_unlock(l_mutex); } TRACDCOMP(g_trac_ibscom, EXIT_MRK "getTargetVirtualAddress: o_Virtual Base Address = 0x%llX", o_virtAddr); return l_err; } /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// void err_cleanup(Target* i_target, uint64_t i_addr) { //Going to commit at most 1 informational error here errlHndl_t l_err = NULL; errlHndl_t tmp_err = NULL; ERRORLOG::ErrlUserDetailsLogRegister l_logReg(i_target); uint64_t zeroData = 0x0; size_t op_size = sizeof(uint64_t); // Clear our the status reg op_size = sizeof(uint64_t); tmp_err = deviceOp( DeviceFW::WRITE, i_target, &zeroData, op_size, DEVICE_FSISCOM_ADDRESS(MBSIBERR0) ); if(tmp_err) { if( l_err ) { delete tmp_err; } else { l_err = tmp_err; } //Really just want to save the address, so stick in some //obvious dummy data uint64_t dummyData = 0x00000000DEADBEEF; l_logReg.addDataBuffer(&dummyData, sizeof(dummyData), DEVICE_IBSCOM_ADDRESS(MBSIBERR0)); } // Clear out the FIR bits we might trigger uint64_t mbs_fir = 0; op_size = sizeof(uint64_t); tmp_err = deviceOp( DeviceFW::READ, i_target, &mbs_fir, op_size, DEVICE_FSISCOM_ADDRESS(MBS_FIR) ); if(tmp_err) { if( l_err ) { delete tmp_err; } else { l_err = tmp_err; } //Really just want to save the address, so stick in some //obvious dummy data uint64_t dummyData = 0x10000000DEADBEEF; l_logReg.addDataBuffer(&dummyData, sizeof(dummyData), DEVICE_IBSCOM_ADDRESS(MBS_FIR)); } //22=MBS_FIR_MASK_REG_HOST_INBAND_READ_ERROR //23=MBS_FIR_MASK_REG_HOST_INBAND_WRITE_ERROR mbs_fir &= 0xFFFFFCFFFFFFFFFF; op_size = sizeof(uint64_t); tmp_err = deviceOp( DeviceFW::WRITE, i_target, &mbs_fir, op_size, DEVICE_FSISCOM_ADDRESS(MBS_FIR) ); if(tmp_err) { if( l_err ) { delete tmp_err; } else { l_err = tmp_err; } //Really just want to save the address, so stick in some //obvious dummy data uint64_t dummyData = 0x20000000DEADBEEF; l_logReg.addDataBuffer(&dummyData, sizeof(dummyData), DEVICE_IBSCOM_ADDRESS(MBS_FIR)); } if( l_err ) { l_logReg.addToLog(l_err); //force to informational so we don't log extra errors //inside of possible error collection paths l_err->setSev(ERRORLOG::ERRL_SEV_INFORMATIONAL); errlCommit(l_err,IBSCOM_COMP_ID); l_err = NULL; } } /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// errlHndl_t doIBScom(DeviceFW::OperationType i_opType, Target* i_target, void* io_buffer, size_t& io_buflen, uint64_t i_addr, bool i_errDataPath) { errlHndl_t l_err = NULL; mutex_t* l_mutex = NULL; bool need_unlock = false; do { TRACUCOMP(g_trac_ibscom, INFO_MRK ">>doIBScom: Perform op to SCOM Address 0x%X", i_addr); // inband scom operation sanity check l_err = ibscomOpSanityCheck(i_opType, i_target, io_buffer, io_buflen, i_addr); if (l_err) { break; } // Set to buffer len to 0 until successfully access io_buflen = 0; // Get the target chip's virtual address uint64_t* l_virtAddr = NULL; l_err = getTargetVirtualAddress(i_target, l_virtAddr); if (l_err) { break; } TRACDCOMP(g_trac_ibscom, "doIBScom: Base Virt Addr: 0x%.16X, Read addr: 0x%.16X", l_virtAddr, &(l_virtAddr[i_addr])); // The dereferencing should handle Cache inhibited internally // Use local variable and memcpy to avoid unaligned memory access uint64_t l_data = 0; bool rw_error = false; //Device already locked when re-entering function for error collection.. if(!i_errDataPath) { l_mutex = i_target->getHbMutexAttr(); mutex_lock(l_mutex); need_unlock = true; //Need to check if ibscom is still enabled before moving on in //case we flipped the switch due to an error ScomSwitches l_switches = i_target->getAttr(); if( !l_switches.useInbandScom ) { TRACFCOMP(g_trac_ibscom, ERR_MRK"doIBScom> IBSCOM longer enabled on %.8X, error must have occurred", get_huid(i_target)); /*@ * @errortype * @moduleid IBSCOM_DO_IBSCOM * @reasoncode IBSCOM_RETRY_DUE_TO_ERROR * @userdata1[0:31] HUID of Centaur Target * @userdata1[32:64] SCOM Address * @userdata2 Not Used * @devdesc Previous error disabled ibscom, so forcing * a retry via FSI */ l_err = new ErrlEntry(ERRL_SEV_UNRECOVERABLE, IBSCOM_DO_IBSCOM, IBSCOM_RETRY_DUE_TO_ERROR, get_huid(i_target), i_addr); //This error should NEVER get returned to caller, so it's a //FW bug if it actually gets comitted. l_err->addProcedureCallout(HWAS::EPUB_PRC_HB_CODE, HWAS::SRCI_PRIORITY_HIGH); break; } } if (i_opType == DeviceFW::READ) { //This is the actual MMIO Read l_data = l_virtAddr[i_addr]; eieio(); TRACUCOMP(g_trac_ibscom, "doIBScom: Read address: 0x%.8X data: %.16X", i_addr, l_data); // Check for error or done if(l_data == MMIO_IBSCOM_UE_DETECTED) { if(i_errDataPath) { TRACFCOMP(g_trac_ibscom, ERR_MRK"doIBScom: SUE Occurred during IBSCOM Error path"); /*@ * @errortype * @moduleid IBSCOM_DO_IBSCOM * @reasoncode IBSCOM_SUE_IN_ERR_PATH * @userdata1[0:31] HUID of Centaur Target * @userdata1[32:64] SCOM Address * @userdata2 Not Used * @devdesc SUE Encountered when collecting IBSCOM * Error Data */ l_err = new ErrlEntry(ERRL_SEV_UNRECOVERABLE, IBSCOM_DO_IBSCOM, IBSCOM_SUE_IN_ERR_PATH, TWO_UINT32_TO_UINT64( get_huid(i_target), i_addr), 0); //This error should NEVER get returned to caller, so it's a //FW bug if it actually gets comitted. l_err->addProcedureCallout(HWAS::EPUB_PRC_HB_CODE, HWAS::SRCI_PRIORITY_HIGH); ERRORLOG::ErrlUserDetailsTarget(i_target,"IBSCOM Target") .addToLog(l_err); break; } else { TRACFCOMP(g_trac_ibscom, "doIBScom: Error code found in read data"); rw_error = true; } } else { //Copy data to user buffer memcpy(io_buffer, &l_data, sizeof(l_data)); } } else //i_opType == DeviceFW::WRITE { memcpy(&l_data, io_buffer, sizeof(l_data)); TRACUCOMP(g_trac_ibscom, "doIBScom: Write addr: 0x%.8X data: %.16X", i_addr, l_data); //This is the actual MMIO Write l_virtAddr[i_addr] = l_data; eieio(); //Workaround for HW264203 //A read of MBSIBWRSTAT will not trigger a SUE so we need to //read the MBS_FIR instead. TRACDCOMP(g_trac_ibscom, "doIBScom: Read MBS_FIR to check for error"); uint64_t fir_data = 0; size_t readSize = sizeof(uint64_t); l_err = doIBScom(DeviceFW::READ, i_target, &fir_data, readSize, MBS_FIR, true); if(l_err != NULL) { if( IBSCOM_SUE_IN_ERR_PATH == l_err->reasonCode() ) { TRACFCOMP(g_trac_ibscom, ERR_MRK "doIBScom: SUE on write detected"); delete l_err; l_err = NULL; rw_error = true; } else { TRACFCOMP(g_trac_ibscom, ERR_MRK"doIBScom: Unexpected error when checking for SUE"); break; } } else { TRACUCOMP(g_trac_ibscom, "doIBScom: MBS_FIR=%.16X",fir_data); //check the FIR bits specifically //23 = MBS_FIR_MASK_REG_HOST_INBAND_WRITE_ERROR: A PIB error // or inband buffer error was detected on a host inband // write operation. if( fir_data & 0x0000010000000000 ) { TRACFCOMP(g_trac_ibscom, ERR_MRK" doIBScom: MBS_FIR[23] detected after write : %.16X", fir_data); rw_error = true; } } } // Common error checking for both read and write if(rw_error) { bool busDown = false; TRACUCOMP(g_trac_ibscom, "doIBScom: Get Error data, read MBSIBERR0"); size_t op_size = sizeof(uint64_t); // Note: Using FSISCOM path to read the errors even though // we could use IBSCOM in DD2 because it makes code simpler MBSIBERRO_Reg_t mbsiberr0; op_size = sizeof(uint64_t); l_err = deviceOp( DeviceFW::READ, i_target, &(mbsiberr0.data), op_size, DEVICE_FSISCOM_ADDRESS(MBSIBERR0) ); if(l_err) { TRACFCOMP(g_trac_ibscom, ERR_MRK "doIBScom: Error reading MBSIBERR0 over FSI"); //Save away the IBSCOM address ERRORLOG::ErrlUserDetailsLogRegister l_logReg(i_target); //Really just want to save the address, so stick in some //obvious dummy data uint64_t dummyData = 0x30000000DEADBEEF; l_logReg.addDataBuffer(&dummyData, sizeof(dummyData), DEVICE_IBSCOM_ADDRESS(i_addr)); l_logReg.addToLog(l_err); //force to informational so we don't log extra errors //inside of possible error collection paths l_err->setSev(ERRORLOG::ERRL_SEV_INFORMATIONAL); errlCommit(l_err,IBSCOM_COMP_ID); l_err = NULL; //fabricate some error data mbsiberr0.addr = i_addr; mbsiberr0.errvalid = 1; mbsiberr0.piberr = 0; mbsiberr0.iswrite = (i_opType == DeviceFW::READ) ? 0 : 1; mbsiberr0.reserved = 0xBADBAD; } TRACUCOMP(g_trac_ibscom, "doIBScom: MBSIBERR0(0x%.16x) = 0x%.16X", MBSIBERR0, mbsiberr0.data); //if the MBSIBERR0Q_IB_HOST_ERROR_VALID bit is not set // then we have a bus failure if( !(mbsiberr0.errvalid) ) { //Bus is down busDown = true; } //confirm that we are looking at error data for the scom we did //0:31 = MBSIBERR0Q_IB_HOST_ADDRESS: This is the 32 bit scom // address that was being accessed when the error was detected. else if( mbsiberr0.addr != i_addr ) { TRACFCOMP( g_trac_ibscom, "doIBScom> The address in MBSIBERR0 (0x%.8X) doesn't match what we were scomming (0x%.8X)", mbsiberr0.addr, i_addr ); /*@ * @errortype * @moduleid IBSCOM_DO_IBSCOM * @reasoncode IBSCOM_WRONG_ERROR * @userdata1[0:31] HUID of Centaur Target * @userdata1[32:64] SCOM Address * @userdata2 Contents of MBSIBERR0 register * @devdesc Detected error doesn't match the address * we failed on */ l_err = new ErrlEntry(ERRL_SEV_UNRECOVERABLE, IBSCOM_DO_IBSCOM, IBSCOM_WRONG_ERROR, TWO_UINT32_TO_UINT64( get_huid(i_target), i_addr), mbsiberr0.data); // this would be a code bug because we got out of sync somehow l_err->addProcedureCallout( HWAS::EPUB_PRC_HB_CODE, HWAS::SRCI_PRIORITY_HIGH ); ERRORLOG::ErrlUserDetailsTarget(i_target,"IBSCOM Target") .addToLog(l_err); ERRORLOG::ErrlUserDetailsLogRegister ffdc(i_target); ffdc.addData(DEVICE_FSISCOM_ADDRESS(MBS_FIR)); ffdc.addData(DEVICE_FSISCOM_ADDRESS(MBSIBERR0)); ffdc.addToLog(l_err); l_err->collectTrace(IBSCOM_COMP_NAME); //attempt to clear the error register so future accesses //will work err_cleanup(i_target,i_addr); break; } if(busDown) { /*@ * @errortype * @moduleid IBSCOM_DO_IBSCOM * @reasoncode IBSCOM_BUS_FAILURE * @userdata1[0:31] HUID of Centaur Target * @userdata1[32:64] SCOM Address * @userdata2 Contents of MBSIBERR0 register * @devdesc Bus failure when attempting to perform * IBSCOM operation. IBSCOM disabled. */ errlHndl_t ib_err = new ErrlEntry(ERRL_SEV_UNRECOVERABLE, IBSCOM_DO_IBSCOM, IBSCOM_BUS_FAILURE, TWO_UINT32_TO_UINT64( get_huid(i_target), i_addr), mbsiberr0.data); ib_err->addHwCallout(i_target, HWAS::SRCI_PRIORITY_HIGH, HWAS::NO_DECONFIG, HWAS::GARD_NULL); //grab some HW regs via FSISCOM ERRORLOG::ErrlUserDetailsLogRegister ffdc(i_target); ffdc.addData(DEVICE_FSISCOM_ADDRESS(MBS_FIR)); ffdc.addData(DEVICE_FSISCOM_ADDRESS(MBSIBERR0)); ffdc.addToLog(l_err); //disable IBSCOM ScomSwitches l_switches = i_target->getAttr(); // If IBSCOM is not already disabled. if ((l_switches.useFsiScom != 1) || (l_switches.useInbandScom != 0)) { l_switches.useFsiScom = 1; l_switches.useInbandScom = 0; // Turn off IBSCOM and turn on FSI SCOM. i_target->setAttr(l_switches); } //@todo: RTC:92971 //There is a potential deadlock if we call PRD here //Look for a better PRD error //errlHndl_t prd_err = ATTN::checkForIplAttentions(); errlHndl_t prd_err = NULL; if( prd_err ) { TRACFCOMP( g_trac_ibscom, ERR_MRK"Error from checkForIplAttentions : PLID=%X", prd_err->plid() ); //connect up the plids ib_err->plid(prd_err->plid()); //commit my log as info because PRD's log is better ib_err->setSev(ERRORLOG::ERRL_SEV_INFORMATIONAL); errlCommit(ib_err,IBSCOM_COMP_ID); l_err = prd_err; } else { //my log is the only one l_err = ib_err; } l_err->collectTrace(IBSCOM_COMP_NAME); //Note-not cleaning up the error status here since // we will not be using IBSCOM again break; } else // bus isn't down, some other kind of error { /*@ * @errortype * @moduleid IBSCOM_DO_IBSCOM * @reasoncode IBSCOM_PIB_FAILURE * @userdata1[0:31] HUID of Centaur Target * @userdata1[32:64] SCOM Address * @userdata2 Contents of MBSIBERR0 register * @devdesc PIB error when attempting to perform * IBSCOM operation. */ l_err = new ErrlEntry(ERRL_SEV_UNRECOVERABLE, IBSCOM_DO_IBSCOM, IBSCOM_PIB_FAILURE, TWO_UINT32_TO_UINT64( get_huid(i_target), i_addr), mbsiberr0.data); //Add this target to the FFDC ERRORLOG::ErrlUserDetailsTarget(i_target,"IBSCOM Target") .addToLog(l_err); //add callouts based on the PIB error PIB::addFruCallouts( i_target, mbsiberr0.piberr, l_err ); //grab some HW regs via FSISCOM ERRORLOG::ErrlUserDetailsLogRegister ffdc(i_target); ffdc.addData(DEVICE_FSISCOM_ADDRESS(0x000F0011)); ffdc.addData(DEVICE_FSISCOM_ADDRESS(0x000F001E)); ffdc.addData(DEVICE_FSISCOM_ADDRESS(0x000F001F)); ffdc.addData(DEVICE_FSISCOM_ADDRESS(0x0104000A)); ffdc.addData(DEVICE_FSISCOM_ADDRESS(MBS_FIR)); ffdc.addData(DEVICE_FSISCOM_ADDRESS(MBSIBERR0)); ffdc.addToLog(l_err); l_err->collectTrace(IBSCOM_COMP_NAME); //attempt to clear the error register so future accesses //will work err_cleanup(i_target,i_addr); break; } } else { //Operation was a success, set buffer length io_buflen = sizeof(uint64_t); } TRACDCOMP(g_trac_ibscom,"doIBScom: OpType 0x%.16llX, SCOM Address 0x%llX, Virtual Address 0x%llX", static_cast(i_opType), i_addr, &(l_virtAddr[i_addr])); } while (0); if( need_unlock && l_mutex ) { mutex_unlock(l_mutex); } return l_err; } /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// errlHndl_t ibscomPerformOp(DeviceFW::OperationType i_opType, Target* i_target, void* io_buffer, size_t& io_buflen, int64_t i_accessType, va_list i_args) { errlHndl_t l_err = NULL; uint64_t l_addr = va_arg(i_args,uint64_t); l_err = doIBScom(i_opType, i_target, io_buffer, io_buflen, l_addr, false); return l_err; } /** * @brief Enable or disable Inband SCOMs on all capable chips */ void enableInbandScoms( bool i_disable ) { TARGETING::TargetHandleList membufChips; //In the enable path, only modify function chips, but in the // disable path we want to touch everybody bool func_only = true; if( IBSCOM_DISABLE == i_disable ) { func_only = false; } TARGETING::getAllChips(membufChips, TYPE_MEMBUF, func_only); mutex_t* l_mutex = NULL; TARGETING::Target * sys = NULL; TARGETING::targetService().getTopLevelTarget(sys); uint8_t l_override = sys->getAttr(); TRACFCOMP(g_trac_ibscom,"IBSCOM_ENABLE_OVERRIDE=%d",l_override); for(uint32_t i=0; i=DD20 OR IBSCOM Override is set) if( (mb->getAttr().supportsInbandScom) && ( (mb->getAttr() >= 0x20) || (l_override != 0) ) ) { //don't mess with attributes without the mutex (just to be safe) l_mutex = mb->getHbMutexAttr(); mutex_lock(l_mutex); ScomSwitches l_switches = mb->getAttr(); uint8_t ib_new = 1; uint8_t fsi_new = 0; if( i_disable == IBSCOM_DISABLE ) { ib_new = 0; fsi_new = 1; } // If Inband Scom enablement changed if ((l_switches.useInbandScom != ib_new) || (l_switches.useFsiScom != fsi_new)) { l_switches.useFsiScom = fsi_new; l_switches.useInbandScom = ib_new; // Modify attribute membufChips[i]->setAttr(l_switches); TRACFCOMP(g_trac_ibscom, "IBSCOM=%d on target HUID %.8X", ib_new, TARGETING::get_huid(mb)); } mutex_unlock(l_mutex); } } } } // end namespace