gpu: ipu-v3: Fix CSI offsets for imx53
authorSteve Longerbeam <slongerbeam@gmail.com>
Wed, 17 Oct 2018 00:31:40 +0000 (17:31 -0700)
committerPhilipp Zabel <p.zabel@pengutronix.de>
Thu, 17 Jan 2019 13:59:02 +0000 (14:59 +0100)
The CSI offsets are wrong for both CSI0 and CSI1. They are at
physical address 0x1e030000 and 0x1e038000 respectively.

Fixes: 2ffd48f2e7 ("gpu: ipu-v3: Add Camera Sensor Interface unit")

Signed-off-by: Steve Longerbeam <slongerbeam@gmail.com>
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
drivers/gpu/ipu-v3/ipu-common.c

index 5b7cdbfe062f3cb515dca5e8068b1fffb5a0c980..0a7d4395d427bacf0e27cb5251ab74bb6e816ac1 100644 (file)
@@ -914,8 +914,8 @@ static struct ipu_devtype ipu_type_imx53 = {
        .cpmem_ofs = 0x07000000,
        .srm_ofs = 0x07040000,
        .tpm_ofs = 0x07060000,
-       .csi0_ofs = 0x07030000,
-       .csi1_ofs = 0x07038000,
+       .csi0_ofs = 0x06030000,
+       .csi1_ofs = 0x06038000,
        .ic_ofs = 0x06020000,
        .disp0_ofs = 0x06040000,
        .disp1_ofs = 0x06048000,