void mvCesaDebugStatus(void) { mvOsPrintf("\n\t CESA Status\n\n"); mvOsPrintf("pReqQ=%p, qDepth=%d, reqSize=%d bytes, qRes=%d\n", pCesaReqFirst, cesaQueueDepth, sizeof(MV_CESA_REQ), cesaReqResources); mvOsPrintf("pSAD=%p, maxSA=%d, sizeSA=%d bytes\n", pCesaSAD, cesaMaxSA, sizeof(MV_CESA_SA)); mvOsPrintf("\n"); mvCesaDebugRegs(); mvCesaDebugStats(); mvCesaDebugStatsClear(); }
void mvCesaDebugStatus(void) { mvOsPrintf("\n\t CESA Status\n\n"); mvOsPrintf("pReqQ=%p, qDepth=%d, reqSize=%ld bytes, qRes=%d, ", pCesaReqFirst, cesaQueueDepth, sizeof(MV_CESA_REQ), cesaReqResources); #if (MV_CESA_VERSION >= 3) mvOsPrintf("chainLength=%u\n",cesaChainLength); #else mvOsPrintf("\n"); #endif mvOsPrintf("pSAD=%p, maxSA=%d, sizeSA=%ld bytes\n", pCesaSAD, cesaMaxSA, sizeof(MV_CESA_SA)); mvOsPrintf("\n"); mvCesaDebugRegs(); mvCesaDebugStats(); mvCesaDebugStatsClear(); }
void mvCesaDebugStatus(void) { MV_U8 chan = 0; mvOsPrintf("\n\t CESA Status\n\n"); for (chan = 0; chan < MV_CESA_CHANNELS; chan++) { mvOsPrintf("Channel %d: pReqQ=%p, qDepth=%d, reqSize=%d bytes, qRes=%d", chan, pCesaReqFirst[chan], cesaQueueDepth[chan], (int)sizeof(MV_CESA_REQ), cesaReqResources[chan]); #ifdef MV_CESA_CHAIN_MODE mvOsPrintf(", chainLength=%u", cesaChainLength[chan]); #endif mvOsPrintf("\n"); } mvOsPrintf("pSAD=%p, maxSA=%d, sizeSA=%d bytes\n", pCesaSAD, cesaMaxSA, (int)sizeof(MV_CESA_SA)); mvOsPrintf("\n"); mvCesaDebugRegs(); mvCesaDebugStats(); mvCesaDebugStatsClear(); }