mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 14:04:54 +02:00
drm/tidss: Return error value from from softreset
[ Upstream commitaceafbb503] Return an error value from dispc_softreset() so that the caller can handle the errors. Reviewed-by: Aradhya Bhatia <a-bhatia1@ti.com> Link: https://lore.kernel.org/r/20231109-tidss-probe-v2-5-ac91b5ea35c0@ideasonboard.com Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> Stable-dep-of:bc288a9278("drm/tidss: Fix dss reset") Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
d44143cdd0
commit
4fcfe75786
|
|
@ -2702,7 +2702,7 @@ static void dispc_init_errata(struct dispc_device *dispc)
|
|||
}
|
||||
}
|
||||
|
||||
static void dispc_softreset(struct dispc_device *dispc)
|
||||
static int dispc_softreset(struct dispc_device *dispc)
|
||||
{
|
||||
u32 val;
|
||||
int ret = 0;
|
||||
|
|
@ -2712,8 +2712,12 @@ static void dispc_softreset(struct dispc_device *dispc)
|
|||
/* Wait for reset to complete */
|
||||
ret = readl_poll_timeout(dispc->base_common + DSS_SYSSTATUS,
|
||||
val, val & 1, 100, 5000);
|
||||
if (ret)
|
||||
dev_warn(dispc->dev, "failed to reset dispc\n");
|
||||
if (ret) {
|
||||
dev_err(dispc->dev, "failed to reset dispc\n");
|
||||
return ret;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int dispc_init(struct tidss_device *tidss)
|
||||
|
|
@ -2826,8 +2830,11 @@ int dispc_init(struct tidss_device *tidss)
|
|||
&dispc->memory_bandwidth_limit);
|
||||
|
||||
/* K2G display controller does not support soft reset */
|
||||
if (feat->subrev != DISPC_K2G)
|
||||
dispc_softreset(dispc);
|
||||
if (feat->subrev != DISPC_K2G) {
|
||||
r = dispc_softreset(dispc);
|
||||
if (r)
|
||||
return r;
|
||||
}
|
||||
|
||||
tidss->dispc = dispc;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user