diff options
author | Maxime Jourdan | 2018-12-11 12:52:04 +0100 |
---|---|---|
committer | Neil Armstrong | 2019-01-31 09:35:01 +0100 |
commit | 0cc53faf59bcf5e2f4640adfef562c04d2cb4d57 (patch) | |
tree | 800a7875202267ea7fb1fd70c343925cda3be3e3 | |
parent | 2ebade0d57f7d24b40869f30604bd2cbea6fd6b5 (diff) |
arm: meson: board-gx: Setup VPU in fdt
If VIDEO_MESON is enabled, we need to setup the fdt for the framebuffer.
Call meson_vpu_rsv_fb() which reserves the framebuffer memory region for
EFI, and sets up simple-framebuffer nodes if simplefb support is
enabled.
Signed-off-by: Maxime Jourdan <mjourdan@baylibre.com>
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Reviewed-by: Anatolij Gustschin <agust@denx.de>
-rw-r--r-- | arch/arm/mach-meson/board-gx.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/mach-meson/board-gx.c b/arch/arm/mach-meson/board-gx.c index e41552db523..5b0126a72ea 100644 --- a/arch/arm/mach-meson/board-gx.c +++ b/arch/arm/mach-meson/board-gx.c @@ -9,6 +9,7 @@ #include <asm/arch/eth.h> #include <asm/arch/gx.h> #include <asm/arch/mem.h> +#include <asm/arch/meson-vpu.h> #include <asm/io.h> #include <asm/armv8/mmu.h> #include <linux/sizes.h> @@ -65,6 +66,10 @@ void meson_init_reserved_memory(void *fdt) /* Add BL32 reserved zone */ if (bl32_start && bl32_size) meson_board_add_reserved_memory(fdt, bl32_start, bl32_size); + +#if defined(CONFIG_VIDEO_MESON) + meson_vpu_rsv_fb(fdt); +#endif } phys_size_t get_effective_memsize(void) |