LF-933 crypto: caam - fix iosource busy issue

The caam controller driver claims the ownership of the
whole caam register space due to which while binding the
Job Ring to fsl-jr-uio driver, it returns IOSOURCE_BUSY
error.

This patch replaces devm_request_mem_region() API with
platform_get_resource() to avoid this issue.

Fixes: eb5e94d462 ("crypto: caam - use devres to unmap memory")
Signed-off-by: Gagandeep Singh <g.singh@nxp.com>
Acked-by: Horia Geantă <horia.geanta@nxp.com>
This commit is contained in:
Gagandeep Singh 2020-02-17 16:41:01 +00:00 committed by Horia Geantă
parent 7b842d74f6
commit 5b06a496a2
1 changed files with 2 additions and 4 deletions

View File

@ -187,11 +187,9 @@ static int fsl_jr_probe(struct platform_device *dev)
goto abort;
}
jr_dev->res = devm_request_mem_region(&dev->dev, regs.start,
regs.end - regs.start + 1,
jr_dev->info.name);
jr_dev->res = platform_get_resource(dev, IORESOURCE_MEM, 0);
if (unlikely(!jr_dev->res)) {
dev_err(jr_dev->dev, "devm_request_mem_region failed\n");
dev_err(jr_dev->dev, "platform_get_resource() failed\n");
ret = -ENOMEM;
goto abort;
}