ARM: dts: aspeed: ast2600-evb: Enable video engine

Enable video engine and reserve memory for it.

Signed-off-by: Howard Chiu <howard_chiu@aspeedtech.com>
Link: https://lore.kernel.org/r/SG2PR06MB23159B914BF7EF937FEDD2B5E61E9@SG2PR06MB2315.apcprd06.prod.outlook.com
Signed-off-by: Joel Stanley <joel@jms.id.au>
This commit is contained in:
Howard Chiu 2022-03-29 03:24:03 +00:00 committed by Joel Stanley
parent 8c1ffabc5c
commit 1f7f915b33

View File

@ -34,6 +34,13 @@ gfx_memory: framebuffer {
compatible = "shared-dma-pool";
reusable;
};
video_engine_memory: video {
size = <0x04000000>;
alignment = <0x01000000>;
compatible = "shared-dma-pool";
reusable;
};
};
vcc_sdhci0: regulator-vcc-sdhci0 {
@ -326,3 +333,8 @@ &gfx {
status = "okay";
memory-region = <&gfx_memory>;
};
&video {
status = "okay";
memory-region = <&video_engine_memory>;
};