]> git.baikalelectronics.ru Git - uboot.git/commitdiff
omap3: emif4: More clearly hard-code cs0 size
authorTom Rini <trini@konsulko.com>
Mon, 27 Jun 2022 17:35:48 +0000 (13:35 -0400)
committerTom Rini <trini@konsulko.com>
Fri, 8 Jul 2022 21:57:34 +0000 (17:57 -0400)
We have a single platform that is both in the OMAP3 family of parts, but
has an EMIF4 memory controller.  Currently we hard-code the size of
chip select 0.  Make this more clear by putting the value in the
function rather than a CONFIG option.

Signed-off-by: Tom Rini <trini@konsulko.com>
arch/arm/mach-omap2/omap3/emif4.c
include/configs/am3517_evm.h

index d7d779819bf35e26fabb64699e1d081c3bd86246..491e7c23dbc688aeaa6f1f67971a0e2fe2dc3722 100644 (file)
@@ -41,7 +41,7 @@ static u32 get_sdr_cs_size(u32 cs)
 
        /* TODO: Calculate the size based on EMIF4 configuration */
        if (cs == CS0)
-               size = CONFIG_SYS_CS0_SIZE;
+               size = 256 * 1024 * 1024;
 
        return size;
 }
index e6c9039d16643c07e1c5769190c32a72284c2809..93beed4ad7369d15a5659655e1949e75d2a4a8aa 100644 (file)
@@ -85,9 +85,6 @@
 
 /* memtest works on */
 
-/* Physical Memory Map */
-#define CONFIG_SYS_CS0_SIZE            (256 * 1024 * 1024)
-
 /* FLASH and environment organization */
 
 /* **** PISMO SUPPORT *** */