2002-11-03 00:38:21 +00:00
|
|
|
/*
|
|
|
|
* ml2.c: U-Boot platform support for Xilinx ML2 board
|
|
|
|
*
|
|
|
|
* Copyright 2002 Mind NV
|
|
|
|
*
|
|
|
|
* http://www.mind.be/
|
|
|
|
*
|
|
|
|
* Author : Peter De Schrijver (p2@mind.be)
|
|
|
|
*
|
|
|
|
* Derived from : Other platform support files in this tree
|
|
|
|
*
|
|
|
|
* This software may be used and distributed according to the terms of
|
|
|
|
* the GNU General Public License (GPL) version 2, incorporated herein by
|
|
|
|
* reference. Drivers based on or derived from this code fall under the GPL
|
|
|
|
* and must retain the authorship, copyright and this license notice. This
|
|
|
|
* file is not a complete program and may only be used when the entire
|
|
|
|
* program is licensed under the GPL.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <asm/processor.h>
|
|
|
|
|
|
|
|
|
2004-01-20 23:12:12 +00:00
|
|
|
int board_early_init_f (void)
|
2002-11-03 00:38:21 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int checkboard (void)
|
|
|
|
{
|
2011-05-04 10:32:28 +00:00
|
|
|
char buf[64];
|
|
|
|
int i;
|
|
|
|
int l = getenv_f("serial#", buf, sizeof(buf));
|
2002-11-03 00:38:21 +00:00
|
|
|
|
2011-05-04 10:32:28 +00:00
|
|
|
if (l < 0 || strncmp(buf, "ML2", 9)) {
|
2002-11-03 00:38:21 +00:00
|
|
|
printf ("### No HW ID - assuming ML2");
|
|
|
|
} else {
|
2011-05-04 10:32:28 +00:00
|
|
|
for (i = 0; i < l; i++) {
|
|
|
|
if (buf[i] == ' ')
|
2002-11-03 00:38:21 +00:00
|
|
|
break;
|
2011-05-04 10:32:28 +00:00
|
|
|
putc(buf[i]);
|
2002-11-03 00:38:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
putc ('\n');
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-09 21:03:40 +00:00
|
|
|
phys_size_t initdram (int board_type)
|
2002-11-03 00:38:21 +00:00
|
|
|
{
|
|
|
|
return 32 * 1024 * 1024;
|
|
|
|
}
|
|
|
|
|
|
|
|
int testdram (void)
|
|
|
|
{
|
|
|
|
printf ("test: xxx MB - ok\n");
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|