From mboxrd@z Thu Jan 1 00:00:00 1970 From: Gray Remlin Date: Fri, 15 Oct 2010 19:54:18 +0100 Subject: [U-Boot] [PATCH v2] Ensure gd->ram_size end stays on 4k page boundary when 'hiding' RAM Message-ID: <4CB8A35A.7020500@rocketmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Signed-off-by: Gray Remlin --- arch/arm/lib/board.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c index 22bd2c9..2f0d5c4 100644 --- a/arch/arm/lib/board.c +++ b/arch/arm/lib/board.c @@ -532,7 +532,7 @@ void board_init_f (ulong bootflag) * memory size from the SDRAM controller setup will have to * get fixed. */ - gd->ram_size -= CONFIG_SYS_MEM_TOP_HIDE; + gd->ram_size -= roundup(CONFIG_SYS_MEM_TOP_HIDE, 4096); #endif addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size; --