arm64: dts: qcom: ipq5018: add few more reserved memory regions
authorKathiravan Thirumoorthy <quic_kathirav@quicinc.com>
Wed, 25 Oct 2023 16:42:12 +0000 (22:12 +0530)
committerBjorn Andersson <andersson@kernel.org>
Thu, 7 Dec 2023 15:52:24 +0000 (07:52 -0800)
Like all other IPQ SoCs, bootloader will collect the system RAM contents
upon crash for the post morterm analysis. If we don't reserve the memory
region used by bootloader, obviously linux will consume it and upon next
boot on crash, bootloader will be loaded in the same region, which will
lead to loose some of the data, sometimes we may miss out critical
information. So lets reserve the region used by the bootloader.

Similarly SBL copies some data into the reserved region and it will be
used in the crash scenario. So reserve 1MB for SBL as well.

While at it, enable the SMEM support along with TCSR mutex.

Signed-off-by: Kathiravan Thirumoorthy <quic_kathirav@quicinc.com>
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>
Link: https://lore.kernel.org/r/20231025-ipq5018-misc-v1-1-7d14fde97fe7@quicinc.com
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
arch/arm64/boot/dts/qcom/ipq5018.dtsi

index ae31bd72f0b739e5e204031e8ba0264f911fdf8f..32b178b639f0cc722e4fda37ca5c3ec63488bfd7 100644 (file)
                #size-cells = <2>;
                ranges;
 
+               bootloader@4a800000 {
+                       reg = <0x0 0x4a800000 0x0 0x200000>;
+                       no-map;
+               };
+
+               sbl@4aa00000 {
+                       reg = <0x0 0x4aa00000 0x0 0x100000>;
+                       no-map;
+               };
+
+               smem@4ab00000 {
+                       compatible = "qcom,smem";
+                       reg = <0x0 0x4ab00000 0x0 0x100000>;
+                       no-map;
+
+                       hwlocks = <&tcsr_mutex 3>;
+               };
+
                tz_region: tz@4ac00000 {
                        reg = <0x0 0x4ac00000 0x0 0x200000>;
                        no-map;
                        #power-domain-cells = <1>;
                };
 
+               tcsr_mutex: hwlock@1905000 {
+                       compatible = "qcom,tcsr-mutex";
+                       reg = <0x01905000 0x20000>;
+                       #hwlock-cells = <1>;
+               };
+
                sdhc_1: mmc@7804000 {
                        compatible = "qcom,ipq5018-sdhci", "qcom,sdhci-msm-v5";
                        reg = <0x7804000 0x1000>;