]> pilppa.com Git - linux-2.6-omap-h63xx.git/commitdiff
ARM: OMAP: Fixed OMAP1510 SRAM size again
authorTony Lindgren <tony@atomide.com>
Wed, 14 Sep 2005 14:43:50 +0000 (17:43 +0300)
committerTony Lindgren <tony@atomide.com>
Wed, 14 Sep 2005 14:43:50 +0000 (17:43 +0300)
According to spru602b.pdf TRM, 1510 has 192K of SRAM, not 512K

arch/arm/plat-omap/sram.c

index 2328449f146f8a9be0250676e16ac94885501fb9..5b2aee16a50d748fc8c124c22f104923df75fb75 100644 (file)
@@ -32,7 +32,7 @@ static unsigned long omap_sram_ceil;
 
 /*
  * The amount of SRAM depends on the core type:
- * 730 = 200K, 1510 = 512K, 5912 = 256K, 1610 = 16K, 1710 = 16K
+ * 730 = 200K, 1510 = 192K, 5912 = 256K, 1610 = 16K, 1710 = 16K
  * Note that we cannot try to test for SRAM here because writes
  * to secure SRAM will hang the system. Also the SRAM is not
  * yet mapped at this point.
@@ -46,7 +46,7 @@ void __init omap_detect_sram(void)
        else if (cpu_is_omap730())
                omap_sram_size = 0x32000;
        else if (cpu_is_omap1510())
-               omap_sram_size = 0x80000;
+               omap_sram_size = 0x30000;
        else if (cpu_is_omap1610() || cpu_is_omap1621() || cpu_is_omap1710())
                omap_sram_size = 0x4000;
        else if (cpu_is_omap1611())