#include <i2c.h>
#include <command.h>
-/* ------------------------------------------------------------------------- */
+
+extern void lxt971_no_sleep(void);
+
int board_early_init_f (void)
{
}
-/* ------------------------------------------------------------------------- */
-
int misc_init_f (void)
{
return 0; /* dummy implementation */
/*
* Check Board Identity:
*/
-
int checkboard (void)
{
unsigned char str[64];
putc ('\n');
+ /*
+ * Disable sleep mode in LXT971
+ */
+ lxt971_no_sleep();
+
return (0);
}
-/* ------------------------------------------------------------------------- */
long int initdram (int board_type)
{
return (4 * 1024 * 1024 << ((val & 0x000e0000) >> 17));
}
-/* ------------------------------------------------------------------------- */
int testdram (void)
{
return (0);
}
-
-/* ------------------------------------------------------------------------- */