]> git.sur5r.net Git - u-boot/commitdiff
ppc4xx: Fix sdram init on Sequoia boards
authorStefan Roese <sr@denx.de>
Fri, 11 Jan 2008 14:53:58 +0000 (15:53 +0100)
committerStefan Roese <sr@denx.de>
Fri, 11 Jan 2008 14:53:58 +0000 (15:53 +0100)
Clear possible errors in MCSR resulting from data-eye-search.
If not done, then we could get an interrupt later on when
exceptions are enabled.

Signed-off-by: Stefan Roese <sr@denx.de>
board/amcc/sequoia/sdram.c

index 5e93f6c7a090e3880bf980112043a234c03589bd..b43ec48091f3820fb2f6815eddedaaedbd247b5c 100644 (file)
@@ -106,5 +106,12 @@ long int initdram (int board_type)
        denali_core_search_data_eye();
 #endif
 
+       /*
+        * Clear possible errors resulting from data-eye-search.
+        * If not done, then we could get an interrupt later on when
+        * exceptions are enabled.
+        */
+       set_mcsr(get_mcsr());
+
        return (CFG_MBYTES_SDRAM << 20);
 }