Commit 0fe0fbc8 authored by Paul Cercueil's avatar Paul Cercueil Committed by Thomas Bogendoerfer

MIPS: ingenic: rs90: Add dedicated VRAM memory region

Add a 1 MiB memory area dedicated to the video driver. This area will be
managed by Linux' CMA, so that the ingenic-drm driver can be sure to
always be able to allocate contiguous buffers.
Signed-off-by: default avatarPaul Cercueil <paul@crapouillou.net>
Signed-off-by: default avatarThomas Bogendoerfer <tsbogend@alpha.franken.de>
parent 5e82cf98
......@@ -16,6 +16,18 @@ memory {
reg = <0x0 0x2000000>;
};
reserved-memory {
#address-cells = <1>;
#size-cells = <1>;
ranges;
vmem: video-memory@1f00000 {
compatible = "shared-dma-pool";
reg = <0x1f00000 0x100000>;
reusable;
};
};
vcc: regulator {
compatible = "regulator-fixed";
......@@ -300,6 +312,8 @@ &tcu {
};
&lcd {
memory-region = <&vmem>;
pinctrl-names = "default";
pinctrl-0 = <&pins_lcd>;
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment