From b3453aaf3854312f6b7a9532ec36aa9d86a02920 Mon Sep 17 00:00:00 2001 From: Kasin Lee Date: Thu, 26 Sep 2013 19:06:22 +0800 Subject: [PATCH] 2G support --- mali/platform/meson8/meson_main.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mali/platform/meson8/meson_main.c b/mali/platform/meson8/meson_main.c index 3f0a3bc..cf06d33 100755 --- a/mali/platform/meson8/meson_main.c +++ b/mali/platform/meson8/meson_main.c @@ -107,8 +107,11 @@ static struct platform_device mali_gpu_device = static struct mali_gpu_device_data mali_gpu_data = { .shared_mem_size =CONFIG_MALI400_OS_MEMORY_SIZE * 1024 * 1024, -#ifdef CONFIG_MESON_LOW_PLAT_OFFSET - .fb_start = 0x04000000, + +#ifdef CONFIG_ARCH_MESON8 + .fb_start = 0x05000000, +#elif CONFIG_MESON_LOW_PLAT_OFFSET + .fb_start = 0x24000000, #else .fb_start = 0x84000000, #endif -- 2.20.1