From be96d08d81f83161be6d2e7250445244f7575daf Mon Sep 17 00:00:00 2001 From: Peng Fan Date: Fri, 7 Sep 2018 16:49:45 +0800 Subject: [PATCH] MLK-19494 configs: imx8qm mek android audo: correct xen physical memory XEN tool has changed GUEST_RAM0_BASE to 2GB, since we assigned 3584M RAM to DomU, so reflect the change in configuration file. Signed-off-by: Peng Fan (cherry picked from commit 9486251ced24e3bf3ecbff68a8f9476e694e5bf7) (cherry picked from commit 0278b14507731b465652aa41c4a95dafa66da5d1) (cherry picked from commit 7041ded231da64df7799c0f74b14f33e2534c723) --- include/configs/imx8qm_mek_android_auto_xen.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/configs/imx8qm_mek_android_auto_xen.h b/include/configs/imx8qm_mek_android_auto_xen.h index 62d94ce..8524f15 100644 --- a/include/configs/imx8qm_mek_android_auto_xen.h +++ b/include/configs/imx8qm_mek_android_auto_xen.h @@ -16,10 +16,10 @@ #define CONFIG_SYS_SDRAM_BASE 0x40000000 #define CONFIG_NR_DRAM_BANKS 2 -#define PHYS_SDRAM_1 0x40000000 +#define PHYS_SDRAM_1 0x80000000 #define PHYS_SDRAM_2 0x200000000 -#define PHYS_SDRAM_1_SIZE 0xC0000000 /* 3 GB */ -#define PHYS_SDRAM_2_SIZE 0x20000000 /* 512 MB */ +#define PHYS_SDRAM_1_SIZE 0x40000000 /* 2 GB */ +#define PHYS_SDRAM_2_SIZE 0x60000000 /* 1536 MB */ #undef CONFIG_LOADADDR #define CONFIG_LOADADDR 0x40280000 -- 1.9.1