Commit 6c64155d authored by Philipp Zabel's avatar Philipp Zabel Committed by Shawn Guo

staging: drm/imx: Use SRC to reset IPU

Request the System Reset Controller to reset the IPU if
specified via device tree phandle.
Signed-off-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
Reviewed-by: default avatarStephen Warren <swarren@nvidia.com>
Reviewed-by: default avatarMarek Vasut <marex@denx.de>
Reviewed-by: default avatarPavel Machek <pavel@ucw.cz>
Acked-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarShawn Guo <shawn.guo@linaro.org>
parent 02985b94
...@@ -8,6 +8,8 @@ Required properties: ...@@ -8,6 +8,8 @@ Required properties:
- interrupts: Should contain sync interrupt and error interrupt, - interrupts: Should contain sync interrupt and error interrupt,
in this order. in this order.
- #crtc-cells: 1, See below - #crtc-cells: 1, See below
- resets: phandle pointing to the system reset controller and
reset line index, see reset/fsl,imx-src.txt for details
example: example:
...@@ -16,6 +18,7 @@ ipu: ipu@18000000 { ...@@ -16,6 +18,7 @@ ipu: ipu@18000000 {
compatible = "fsl,imx53-ipu"; compatible = "fsl,imx53-ipu";
reg = <0x18000000 0x080000000>; reg = <0x18000000 0x080000000>;
interrupts = <11 10>; interrupts = <11 10>;
resets = <&src 2>;
}; };
Parallel display support Parallel display support
......
...@@ -16,6 +16,7 @@ ...@@ -16,6 +16,7 @@
#include <linux/export.h> #include <linux/export.h>
#include <linux/types.h> #include <linux/types.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/reset.h>
#include <linux/platform_device.h> #include <linux/platform_device.h>
#include <linux/err.h> #include <linux/err.h>
#include <linux/spinlock.h> #include <linux/spinlock.h>
...@@ -660,7 +661,7 @@ int ipu_idmac_disable_channel(struct ipuv3_channel *channel) ...@@ -660,7 +661,7 @@ int ipu_idmac_disable_channel(struct ipuv3_channel *channel)
} }
EXPORT_SYMBOL_GPL(ipu_idmac_disable_channel); EXPORT_SYMBOL_GPL(ipu_idmac_disable_channel);
static int ipu_reset(struct ipu_soc *ipu) static int ipu_memory_reset(struct ipu_soc *ipu)
{ {
unsigned long timeout; unsigned long timeout;
...@@ -1104,7 +1105,12 @@ static int ipu_probe(struct platform_device *pdev) ...@@ -1104,7 +1105,12 @@ static int ipu_probe(struct platform_device *pdev)
if (ret) if (ret)
goto out_failed_irq; goto out_failed_irq;
ret = ipu_reset(ipu); ret = device_reset(&pdev->dev);
if (ret) {
dev_err(&pdev->dev, "failed to reset: %d\n", ret);
goto out_failed_reset;
}
ret = ipu_memory_reset(ipu);
if (ret) if (ret)
goto out_failed_reset; goto out_failed_reset;
...@@ -1130,8 +1136,8 @@ static int ipu_probe(struct platform_device *pdev) ...@@ -1130,8 +1136,8 @@ static int ipu_probe(struct platform_device *pdev)
failed_add_clients: failed_add_clients:
ipu_submodules_exit(ipu); ipu_submodules_exit(ipu);
failed_submodules_init: failed_submodules_init:
ipu_irq_exit(ipu);
out_failed_reset: out_failed_reset:
ipu_irq_exit(ipu);
out_failed_irq: out_failed_irq:
clk_disable_unprepare(ipu->clk); clk_disable_unprepare(ipu->clk);
failed_clk_get: failed_clk_get:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment