Skip to content

Commit

Permalink
media: imx-pxp: Check for pxp_soft_reset() error
Browse files Browse the repository at this point in the history
pxp_soft_reset() may fail with a timeout, so it is better to propagate
the error in this case.

Signed-off-by: Fabio Estevam <festevam@gmail.com>
Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Hans Verkuil <hansverk@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
  • Loading branch information
Fabio Estevam authored and Mauro Carvalho Chehab committed Nov 23, 2018
1 parent efceb76 commit e03eb36
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions drivers/media/platform/imx-pxp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1607,7 +1607,7 @@ static const struct v4l2_m2m_ops m2m_ops = {
.job_abort = pxp_job_abort,
};

static void pxp_soft_reset(struct pxp_dev *dev)
static int pxp_soft_reset(struct pxp_dev *dev)
{
int ret;
u32 val;
Expand All @@ -1619,11 +1619,15 @@ static void pxp_soft_reset(struct pxp_dev *dev)

ret = readl_poll_timeout(dev->mmio + HW_PXP_CTRL, val,
val & BM_PXP_CTRL_CLKGATE, 0, 100);
if (ret < 0)
if (ret < 0) {
pr_err("PXP reset timeout\n");
return ret;
}

writel(BM_PXP_CTRL_SFTRST, dev->mmio + HW_PXP_CTRL_CLR);
writel(BM_PXP_CTRL_CLKGATE, dev->mmio + HW_PXP_CTRL_CLR);

return 0;
}

static int pxp_probe(struct platform_device *pdev)
Expand Down Expand Up @@ -1670,7 +1674,9 @@ static int pxp_probe(struct platform_device *pdev)
if (ret < 0)
return ret;

pxp_soft_reset(dev);
ret = pxp_soft_reset(dev);
if (ret < 0)
goto err_clk;

spin_lock_init(&dev->irqlock);

Expand Down

0 comments on commit e03eb36

Please sign in to comment.