summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRui Miguel Silva <rui.silva@linaro.org>2018-04-02 16:48:07 +0100
committerBryan O'Donoghue <bryan.odonoghue@linaro.org>2019-05-01 11:51:32 +0100
commit3620a38bde266fea85678441f4052c6b29197b68 (patch)
treed5e552abf0b6e108006c68aaf44b13e3031fcb4d
parentca2b0991b8ed7a94914a649aece35c5f0af12ed7 (diff)
ARM: dts: imx7s: reduce cma memory reserved
We were allocating to much memory to the cma pool, the initial intention in 8211617b09a ARM: dts: imx7s: increase CMA pool size, was to reserve only 40MB but in that commit we were reserving 320MB. Fix this an really reserve the initial 40MB wanted. Signed-off-by: Rui Miguel Silva <rui.silva@linaro.org>
-rw-r--r--arch/arm/boot/dts/imx7s.dtsi2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/imx7s.dtsi b/arch/arm/boot/dts/imx7s.dtsi
index d73731668dc7..5660f50e3e85 100644
--- a/arch/arm/boot/dts/imx7s.dtsi
+++ b/arch/arm/boot/dts/imx7s.dtsi
@@ -125,7 +125,7 @@
linux,cma {
compatible = "shared-dma-pool";
reusable;
- size = <0x14000000>;
+ size = <0x2800000>;
linux,cma-default;
};
};