From 963736dd49443c1a27e2226d5fd274008ac3e1dd Mon Sep 17 00:00:00 2001 From: Robert Chiras Date: Tue, 7 May 2019 10:47:53 +0300 Subject: [PATCH] MLK-21598: arm64: dts: imx8dx: fix csr reg range The mipi_dsi_csr register range is wrong in the dts file, causing issues when trying to read the whole allocated region. Fix the dts nodes by correctly specifying the address range. Signed-off-by: Robert Chiras Reviewed-by: Laurentiu Palcu --- arch/arm64/boot/dts/freescale/fsl-imx8dx.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm64/boot/dts/freescale/fsl-imx8dx.dtsi b/arch/arm64/boot/dts/freescale/fsl-imx8dx.dtsi index 2706057efe53..5d20d2ddc496 100644 --- a/arch/arm64/boot/dts/freescale/fsl-imx8dx.dtsi +++ b/arch/arm64/boot/dts/freescale/fsl-imx8dx.dtsi @@ -1852,7 +1852,7 @@ mipi_dsi_csr1: csr@56221000 { compatible = "fsl,imx8qxp-mipi-dsi-csr", "syscon"; - reg = <0x0 0x56221000 0x0 0x1000>; + reg = <0x0 0x56221000 0x0 0xf0>; }; mipi_dsi_phy1: dsi_phy@56228300 { @@ -2030,7 +2030,7 @@ mipi_dsi_csr2: csr@56241000 { compatible = "fsl,imx8qxp-mipi-dsi-csr", "syscon"; - reg = <0x0 0x56241000 0x0 0x1000>; + reg = <0x0 0x56241000 0x0 0xf0>; }; mipi_dsi_phy2: dsi_phy@56248300 { -- 2.17.1