blob: 319dca09db08e0903667f5f442b55c53580d65b8 [file] [log] [blame]
wdenkfe8c2802002-11-03 00:38:21 +00001/*
2 * ml2.c: U-Boot platform support for Xilinx ML2 board
3 *
4 * Copyright 2002 Mind NV
5 *
6 * http://www.mind.be/
7 *
8 * Author : Peter De Schrijver (p2@mind.be)
9 *
10 * Derived from : Other platform support files in this tree
11 *
12 * This software may be used and distributed according to the terms of
13 * the GNU General Public License (GPL) version 2, incorporated herein by
14 * reference. Drivers based on or derived from this code fall under the GPL
15 * and must retain the authorship, copyright and this license notice. This
16 * file is not a complete program and may only be used when the entire
17 * program is licensed under the GPL.
18 *
19 */
20
21#include <common.h>
22#include <asm/processor.h>
23
24
wdenkc837dcb2004-01-20 23:12:12 +000025int board_early_init_f (void)
wdenkfe8c2802002-11-03 00:38:21 +000026{
27 return 0;
28}
29
30
31int checkboard (void)
32{
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +000033 char buf[64];
34 int i;
35 int l = getenv_f("serial#", buf, sizeof(buf));
wdenkfe8c2802002-11-03 00:38:21 +000036
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +000037 if (l < 0 || strncmp(buf, "ML2", 9)) {
wdenkfe8c2802002-11-03 00:38:21 +000038 printf ("### No HW ID - assuming ML2");
39 } else {
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +000040 for (i = 0; i < l; i++) {
41 if (buf[i] == ' ')
wdenkfe8c2802002-11-03 00:38:21 +000042 break;
Wolfgang Denkf0c0b3a2011-05-04 10:32:28 +000043 putc(buf[i]);
wdenkfe8c2802002-11-03 00:38:21 +000044 }
45 }
wdenkfe8c2802002-11-03 00:38:21 +000046 putc ('\n');
47
48 return (0);
49}
50
51
Becky Bruce9973e3c2008-06-09 16:03:40 -050052phys_size_t initdram (int board_type)
wdenkfe8c2802002-11-03 00:38:21 +000053{
54 return 32 * 1024 * 1024;
55}
56
57int testdram (void)
58{
59 printf ("test: xxx MB - ok\n");
60
61 return (0);
62}