arm64: dts: qcom: msm8992-bullhead: Fix cont_splash_mem mapping
authorPetr Vorel <petr.vorel@gmail.com>
Tue, 13 Jul 2021 18:57:34 +0000 (20:57 +0200)
committerBjorn Andersson <bjorn.andersson@linaro.org>
Mon, 19 Jul 2021 20:33:29 +0000 (15:33 -0500)
cont_splash_mem has different memory mapping than generic from msm8994.dtsi:

[    0.000000] cma: Found cont_splash_mem@0, memory base 0x0000000003400000, size 12 MiB, limit 0xffffffffffffffff
[    0.000000] cma: CMA: reserved 12 MiB at 0x0000000003400000 for cont_splash_mem

This fixes boot.

Fixes: 976d321f32dc ("arm64: dts: qcom: msm8992: Make the DT an overlay on top of 8994")
Signed-off-by: Petr Vorel <petr.vorel@gmail.com>
Link: https://lore.kernel.org/r/20210713185734.380-3-petr.vorel@gmail.com
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
arch/arm64/boot/dts/qcom/msm8992-bullhead-rev-101.dts

index 5c6e17f11ee93a6828bd3df8bb49e35a5c10b169..1ccca83292ac9ee3a4d1bcd2b5486b893b9d7d61 100644 (file)
@@ -10,6 +10,9 @@
 #include "pm8994.dtsi"
 #include "pmi8994.dtsi"
 
+/* cont_splash_mem has different memory mapping */
+/delete-node/ &cont_splash_mem;
+
 / {
        model = "LG Nexus 5X";
        compatible = "lg,bullhead", "qcom,msm8992";
                        ftrace-size = <0x10000>;
                        pmsg-size = <0x20000>;
                };
+
+               cont_splash_mem: memory@3400000 {
+                       reg = <0 0x03400000 0 0x1200000>;
+                       no-map;
+               };
        };
 };