diff options
| author | SRICHARAN R <r.sricharan@ti.com> | 2012-05-17 00:12:09 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-07-07 14:07:22 +0200 | 
| commit | e843d0f7ee1b67500d5cbbb20320df17ecbdf32c (patch) | |
| tree | d33a797c7e4ab80338c3a5f4a420302cbae918ab /arch/arm/include/asm/arch-omap5/omap.h | |
| parent | 41321fd4d64492689bfad20c98b8970171aee7ce (diff) | |
| download | olio-uboot-2014.01-e843d0f7ee1b67500d5cbbb20320df17ecbdf32c.tar.xz olio-uboot-2014.01-e843d0f7ee1b67500d5cbbb20320df17ecbdf32c.zip | |
ARM: OMAP5: Correct the DRAM_ADDR_SPACE_END macro.
OMAP5 evm board has 2GB of memory. So correct the
macro to take in to account of the full dram size.
Signed-off-by: R Sricharan <r.sricharan@ti.com>
Diffstat (limited to 'arch/arm/include/asm/arch-omap5/omap.h')
| -rw-r--r-- | arch/arm/include/asm/arch-omap5/omap.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/arch/arm/include/asm/arch-omap5/omap.h b/arch/arm/include/asm/arch-omap5/omap.h index e3f55d202..2961c6b5f 100644 --- a/arch/arm/include/asm/arch-omap5/omap.h +++ b/arch/arm/include/asm/arch-omap5/omap.h @@ -40,7 +40,7 @@  #define OMAP54XX_L4_PER_BASE	0x48000000  #define OMAP54XX_DRAM_ADDR_SPACE_START	0x80000000 -#define OMAP54XX_DRAM_ADDR_SPACE_END	0xD0000000 +#define OMAP54XX_DRAM_ADDR_SPACE_END	0xFFFFFFFF  #define DRAM_ADDR_SPACE_START	OMAP54XX_DRAM_ADDR_SPACE_START  #define DRAM_ADDR_SPACE_END	OMAP54XX_DRAM_ADDR_SPACE_END |