Lines Matching refs:_FwDbgInfo
548 static DrvTSP_FW_DBG_INFO _FwDbgInfo; variable
2465 if(_FwDbgInfo.bEnable) in _TSP_Isr()
3291 _FwDbgInfo.bEnable = FALSE; in _TSP_Init()
3292 _FwDbgInfo.phyBufAddr = 0; in _TSP_Init()
3293 _FwDbgInfo.u32Size = 0x0UL; in _TSP_Init()
3294 _FwDbgInfo.phyReadPos = 0x0UL; in _TSP_Init()
3295 _FwDbgInfo.phyWritePos = 0x0UL; in _TSP_Init()
7165 MS_PHY phyWritePos = *(volatile MS_PHY*)MS_PA2KSEG1(_FwDbgInfo.phyBufAddr); in _DumpFwMsg()
7166 vptr = MS_PA2KSEG1(_FwDbgInfo.phyBufAddr) + _FwDbgInfo.phyReadPos; in _DumpFwMsg()
7171 if(phyWritePos > _FwDbgInfo.u32Size) in _DumpFwMsg()
7177 if(phyWritePos > _FwDbgInfo.phyReadPos) in _DumpFwMsg()
7181 … len = (phyWritePos - _FwDbgInfo.phyReadPos) > 255 ? 255 : (phyWritePos - _FwDbgInfo.phyReadPos); in _DumpFwMsg()
7186 _FwDbgInfo.phyReadPos += tmp; in _DumpFwMsg()
7190 else if(phyWritePos < _FwDbgInfo.phyReadPos) in _DumpFwMsg()
7194 …len = (_FwDbgInfo.u32Size - _FwDbgInfo.phyReadPos) > 255? 255 : (_FwDbgInfo.u32Size - _FwDbgInfo.p… in _DumpFwMsg()
7199 _FwDbgInfo.phyReadPos += tmp; in _DumpFwMsg()
7203 _FwDbgInfo.phyReadPos = (MS_PHY)sizeof(MS_U32); in _DumpFwMsg()
7204 vptr = MS_PA2KSEG1(_FwDbgInfo.phyBufAddr) + _FwDbgInfo.phyReadPos; in _DumpFwMsg()
7208 … len = (phyWritePos - _FwDbgInfo.phyReadPos) > 255 ? 255 : (phyWritePos - _FwDbgInfo.phyReadPos); in _DumpFwMsg()
7213 _FwDbgInfo.phyReadPos += tmp; in _DumpFwMsg()
7229 _FwDbgInfo.bEnable = TRUE; in MDrv_TSP_SetFwDBGParam()
7230 _FwDbgInfo.phyBufAddr = phyAddr; in MDrv_TSP_SetFwDBGParam()
7231 _FwDbgInfo.u32Size = u32Size; in MDrv_TSP_SetFwDBGParam()
7232 _FwDbgInfo.phyReadPos = (MS_PHY)sizeof(MS_U32); in MDrv_TSP_SetFwDBGParam()