diff options
author | Markus Niebel <[email protected]> | 2024-07-24 14:58:48 +0200 |
---|---|---|
committer | Shawn Guo <[email protected]> | 2024-08-13 09:45:25 +0800 |
commit | cd0c6872aab4d2c556a5e953e6926a1b4485e543 (patch) | |
tree | 7c662a98bb6f0ef8efb29f23bc18f0ef34e26d1c | |
parent | 8512fbb64b0e599412da661412d10d4ba1cb003c (diff) |
arm64: dts: freescale: imx93-tqma9352: fix CMA alloc-ranges
DRAM starts at 0x80000000.
Fixes: c982ecfa7992 ("arm64: dts: freescale: add initial device tree for MBa93xxLA SBC board")
Signed-off-by: Markus Niebel <[email protected]>
Signed-off-by: Alexander Stein <[email protected]>
Reviewed-by: Peng Fan <[email protected]>
Signed-off-by: Shawn Guo <[email protected]>
-rw-r--r-- | arch/arm64/boot/dts/freescale/imx93-tqma9352.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/boot/dts/freescale/imx93-tqma9352.dtsi b/arch/arm64/boot/dts/freescale/imx93-tqma9352.dtsi index d3a0e1244aae..72a9a5d4e27a 100644 --- a/arch/arm64/boot/dts/freescale/imx93-tqma9352.dtsi +++ b/arch/arm64/boot/dts/freescale/imx93-tqma9352.dtsi @@ -19,7 +19,7 @@ linux,cma { compatible = "shared-dma-pool"; reusable; - alloc-ranges = <0 0x60000000 0 0x40000000>; + alloc-ranges = <0 0x80000000 0 0x40000000>; size = <0 0x10000000>; linux,cma-default; }; |