@@ -107,8 +107,7 @@ DSP_STATUS CFG_GetDevObject(struct CFG_DEVNODE *hDevNode, OUT u32 *pdwValue)
}
#ifdef CONFIG_BRIDGE_DEBUG
if (DSP_FAILED(status))
- GT_0trace(CFG_debugMask, GT_6CLASS,
- "CFG_GetDevObject Failed \n");
+ pr_err("%s: Failed, status 0x%x\n", __func__, status);
#endif
return status;
}
@@ -134,8 +133,7 @@ DSP_STATUS CFG_GetDSPResources(struct CFG_DEVNODE *hDevNode,
}
if (DSP_FAILED(status)) {
status = CFG_E_RESOURCENOTAVAIL;
- GT_0trace(CFG_debugMask, GT_6CLASS,
- "CFG_GetDSPResources Failed \n");
+ pr_err("%s: Failed, status 0x%x\n", __func__, status);
}
#ifdef CONFIG_BRIDGE_DEBUG
/* assert that resource values are reasonable */
@@ -174,8 +172,7 @@ DSP_STATUS CFG_GetExecFile(struct CFG_DEVNODE *hDevNode, u32 ulBufSize,
}
#ifdef CONFIG_BRIDGE_DEBUG
if (DSP_FAILED(status))
- GT_0trace(CFG_debugMask, GT_6CLASS,
- "CFG_GetExecFile Failed \n");
+ pr_err("%s: Failed, status 0x%x\n", __func__, status);
#endif
DBC_Ensure(((status == DSP_SOK) &&
(strlen(pstrExecFile) <= ulBufSize)) || (status != DSP_SOK));
@@ -242,7 +239,7 @@ DSP_STATUS CFG_GetObject(OUT u32 *pdwValue, u32 dwType)
}
if (DSP_FAILED(status)) {
*pdwValue = 0;
- GT_0trace(CFG_debugMask, GT_6CLASS, "CFG_GetObject Failed \n");
+ pr_err("%s: Failed, status 0x%x\n", __func__, status);
}
DBC_Ensure((DSP_SUCCEEDED(status) && *pdwValue != 0) ||
(DSP_FAILED(status) && *pdwValue == 0));
@@ -268,9 +265,8 @@ bool CFG_Init(void)
dspResources.aMemDesc[0].ulMax = 0;
if (DSP_FAILED(REG_SetValue(DSPRESOURCES, (u8 *)&dspResources,
sizeof(struct CFG_DSPRES))))
- GT_0trace(CFG_debugMask, GT_5CLASS,
- "Failed to Initialize DSP resources"
- " in Registry \n");
+ pr_err("Failed to initialize DSP resources in registry\n");
+
return true;
}
@@ -298,8 +294,7 @@ DSP_STATUS CFG_SetDevObject(struct CFG_DEVNODE *hDevNode, u32 dwValue)
}
#ifdef CONFIG_BRIDGE_DEBUG
if (DSP_FAILED(status))
- GT_0trace(CFG_debugMask, GT_6CLASS,
- "CFG_SetDevObject Failed \n");
+ pr_err("%s: Failed, status 0x%x\n", __func__, status);
#endif
return status;
}
@@ -327,7 +322,7 @@ DSP_STATUS CFG_SetObject(u32 dwValue, u32 dwType)
}
#ifdef CONFIG_BRIDGE_DEBUG
if (DSP_FAILED(status))
- GT_0trace(CFG_debugMask, GT_6CLASS, "CFG_SetObject Failed \n");
+ pr_err("%s: Failed, status 0x%x\n", __func__, status);
#endif
return status;
}
@@ -138,10 +138,8 @@ bool CLK_Init(void)
SERVICES_Clks[i].clk_name);
if (!clk_handle) {
- GT_2trace(CLK_debugMask, GT_7CLASS,
- "CLK_Init: failed to get Clk handle %s, "
- "CLK dev id = %d\n",
- SERVICES_Clks[i].clk_name,
+ pr_err("%s: failed to get clk handle %s, dev id = %d\n",
+ __func__, SERVICES_Clks[i].clk_name,
SERVICES_Clks[i].id);
/* should we fail here?? */
}
@@ -208,8 +206,7 @@ DSP_STATUS CLK_Set_32KHz(IN enum SERVICES_ClkId clk_id)
pClk = SERVICES_Clks[clk_id].clk_handle;
if (pClk) {
if (!(clk_set_parent(pClk, pClkParent) == 0x0)) {
- GT_2trace(CLK_debugMask, GT_7CLASS, "CLK_Set_32KHz: "
- "Failed to set to 32KHz %s, CLK dev id = %s\n",
+ pr_err("%s: failed for %s, dev id = %d\n", __func__,
SERVICES_Clks[clk_id].clk_name,
SERVICES_Clks[clk_id].id);
status = DSP_EFAIL;
@@ -282,10 +279,9 @@ DSP_STATUS CLK_GetRate(IN enum SERVICES_ClkId clk_id, u32 *speedKhz)
"CLK_GetRate: clkSpeedHz = %d , "
"speedinKhz=%d\n", clkSpeedHz, *speedKhz);
} else {
- GT_2trace(CLK_debugMask, GT_7CLASS,
- "CLK_GetRate: failed to get CLK %s, "
- "CLK dev Id = %d\n", SERVICES_Clks[clk_id].clk_name,
- SERVICES_Clks[clk_id].id);
+ pr_err("%s: failed to get %s, dev Id = %d\n", __func__,
+ SERVICES_Clks[clk_id].clk_name,
+ SERVICES_Clks[clk_id].id);
status = DSP_EFAIL;
}
return status;
@@ -304,10 +300,9 @@ s32 CLK_Get_UseCnt(IN enum SERVICES_ClkId clk_id)
/* FIXME: usecount shouldn't be used */
useCount = pClk->usecount;
} else {
- GT_2trace(CLK_debugMask, GT_7CLASS,
- "CLK_GetRate: failed to get CLK %s, "
- "CLK dev Id = %d\n", SERVICES_Clks[clk_id].clk_name,
- SERVICES_Clks[clk_id].id);
+ pr_err("%s: failed to get %s, dev Id = %d\n", __func__,
+ SERVICES_Clks[clk_id].clk_name,
+ SERVICES_Clks[clk_id].id);
status = DSP_EFAIL;
}
return useCount;
@@ -59,9 +59,7 @@ void MEM_ExtPhysPoolInit(u32 poolPhysBase, u32 poolSize)
poolVirtBase = (u32)ioremap(poolPhysBase, poolSize);
if ((void **)poolVirtBase == NULL) {
- GT_0trace(MEM_debugMask, GT_7CLASS,
- "[PHYS_POOL]Mapping External "
- "physical memory to virt failed \n");
+ pr_err("%s: external physical memory map failed\n", __func__);
extPhysMemPoolEnabled = false;
} else {
extMemPool.physMemBase = poolPhysBase;