wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 1 | /* |
| 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 | |
wdenk | c837dcb | 2004-01-20 23:12:12 +0000 | [diff] [blame] | 25 | int board_early_init_f (void) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 26 | { |
| 27 | return 0; |
| 28 | } |
| 29 | |
| 30 | |
| 31 | int checkboard (void) |
| 32 | { |
Wolfgang Denk | 77ddac9 | 2005-10-13 16:45:02 +0200 | [diff] [blame] | 33 | char *s = getenv ("serial#"); |
| 34 | char *e; |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 35 | |
| 36 | if (!s || strncmp (s, "ML2", 9)) { |
| 37 | printf ("### No HW ID - assuming ML2"); |
| 38 | } else { |
| 39 | for (e = s; *e; ++e) { |
| 40 | if (*e == ' ') |
| 41 | break; |
| 42 | } |
| 43 | |
| 44 | for (; s < e; ++s) { |
| 45 | putc (*s); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | |
| 50 | putc ('\n'); |
| 51 | |
| 52 | return (0); |
| 53 | } |
| 54 | |
| 55 | |
Becky Bruce | 9973e3c | 2008-06-09 16:03:40 -0500 | [diff] [blame] | 56 | phys_size_t initdram (int board_type) |
wdenk | fe8c280 | 2002-11-03 00:38:21 +0000 | [diff] [blame] | 57 | { |
| 58 | return 32 * 1024 * 1024; |
| 59 | } |
| 60 | |
| 61 | int testdram (void) |
| 62 | { |
| 63 | printf ("test: xxx MB - ok\n"); |
| 64 | |
| 65 | return (0); |
| 66 | } |