#include <asm/processor.h>
+extern void lxt971_no_sleep(void);
+
+
long int fixed_sdram( void );
int board_early_init_f (void)
printf("\tPLB: %lu MHz\n", sysinfo.freqPLB/1000000);
printf("\tOPB: %lu MHz\n", sysinfo.freqOPB/1000000);
printf("\tEPB: %lu MHz\n", sysinfo.freqEPB/1000000);
+
+ /*
+ * Disable sleep mode in LXT971
+ */
+ lxt971_no_sleep();
+
return (0);
}
{
uint reg;
+#if 1 /* test-only */
/*--------------------------------------------------------------------
* Setup some default
*------------------------------------------------------------------*/
}
return( 64 * 1024 * 1024 ); /* 64 MB */
+#else
+ return( 32 * 1024 * 1024 ); /* 64 MB */
+#endif
}