@@ -497,9 +497,9 @@ DSP_STATUS WMD_IO_OnLoaded(struct IO_MGR *hIOMgr)
if ((ulSegSize + ulSeg1Size + ulPadSize) >
hostRes.dwMemLength[1]) {
- DBG_Trace(DBG_LEVEL7, "Insufficient SHM Reserved 0x%x. "
- "Required 0x%x\n", hostRes.dwMemLength[1],
- ulSegSize + ulSeg1Size + ulPadSize);
+ pr_err("%s: SHM Error, reserved 0x%x required 0x%x\n",
+ __func__, hostRes.dwMemLength[1],
+ ulSegSize + ulSeg1Size + ulPadSize);
status = DSP_EMEMORY;
}
}
@@ -905,10 +905,9 @@ static void IO_DispatchPM(struct work_struct *work)
"command\n");
status = pIOMgr->pIntfFxns->pfnDevCntrl(pIOMgr->
hWmdContext, WMDIOCTL_PWR_HIBERNATE, pArg);
- if (DSP_FAILED(status)) {
- DBG_Trace(DBG_LEVEL7, "IO_DispatchPM : "
- "Hibernation command failed\n");
- }
+ if (DSP_FAILED(status))
+ pr_err("%s: hibernate cmd failed 0x%x\n",
+ __func__, status);
} else if (pArg[0] == MBX_PM_OPP_REQ) {
pArg[1] = pIOMgr->pSharedMem->oppRequest.rqstOppPt;
DBG_Trace(DBG_LEVEL7, "IO_DispatchPM : Value of OPP "
@@ -1355,9 +1354,9 @@ static void InputMsg(struct IO_MGR *pIOMgr, struct MSG_MGR *hMsgMgr)
* No free frame to copy the
* message into.
*/
- DBG_Trace(DBG_LEVEL7, "NO FREE "
- "MSG FRAMES, DISCARDING"
- " MESSAGE\n");
+ pr_err("%s: no free msg frames,"
+ " discarding msg\n",
+ __func__);
}
}
break;
@@ -458,7 +458,7 @@ static DSP_STATUS WMD_BRD_Start(struct WMD_DEV_CONTEXT *hDevContext,
/* Write a signature into the SHM base + offset; this will
* get cleared when the DSP program starts. */
if ((ulShmBaseVirt == 0) || (ulShmBase == 0)) {
- DBG_Trace(DBG_LEVEL6, "WMD_BRD_Start: Illegal SM base\n");
+ pr_err("%s: Illegal SM base\n", __func__);
status = DSP_EFAIL;
} else
*((volatile u32 *)dwSyncAddr) = 0xffffffff;
@@ -1338,8 +1338,8 @@ static DSP_STATUS WMD_BRD_MemMap(struct WMD_DEV_CONTEXT *hDevContext,
vma->vm_end, vma->vm_flags);
}
if (!vma) {
- DBG_Trace(DBG_LEVEL7, "Failed to get the VMA region for "
- "MPU Buffer !!! \n");
+ pr_err("%s: Failed to get VMA region for 0x%x (%d)\n",
+ __func__, ulMpuAddr, ulNumBytes);
status = DSP_EINVALIDARG;
up_read(&mm->mmap_sem);
goto func_cont;
@@ -1923,7 +1923,7 @@ bool WaitForStart(struct WMD_DEV_CONTEXT *pDevContext, u32 dwSyncAddr)
/* If timed out: return FALSE */
if (!timeout) {
- DBG_Trace(DBG_LEVEL7, "Timed out Waiting for DSP to Start\n");
+ pr_err("%s: Timed out waiting DSP to Start\n", __func__);
return FALSE;
}
return TRUE;
@@ -117,7 +117,7 @@ DSP_STATUS handle_hibernation_fromDSP(struct WMD_DEV_CONTEXT *pDevContext)
&pwrState);
}
if (timeout == 0) {
- DBG_Trace(DBG_LEVEL7, "Timed out Waiting for DSP Off mode \n");
+ pr_err("%s: Timed out waiting for DSP off mode\n", __func__);
status = WMD_E_TIMEOUT;
return status;
} else {
@@ -232,8 +232,8 @@ DSP_STATUS SleepDSP(struct WMD_DEV_CONTEXT *pDevContext, IN u32 dwCmd,
}
if (!timeout) {
- DBG_Trace(DBG_LEVEL7, "SleepDSP: Timed out Waiting for DSP"
- " STANDBY %x \n", pwrState);
+ pr_err("%s: Timed out waiting for DSP off mode, state %x\n",
+ __func__, pwrState);
#ifdef CONFIG_BRIDGE_NTFY_PWRERR
DEV_GetDehMgr(pDevContext->hDevObject, &hDehMgr);
WMD_DEH_Notify(hDehMgr, DSP_PWRERROR, 0);