wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2004 Atmark Techno, Inc. |
| 3 | * |
| 4 | * Yasushi SHOJI <yashi@atmark-techno.com> |
| 5 | * |
| 6 | * See file CREDITS for list of people who contributed to this |
| 7 | * project. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License as |
| 11 | * published by the Free Software Foundation; either version 2 of |
| 12 | * the License, or (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | * GNU General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 22 | * MA 02111-1307 USA |
| 23 | */ |
| 24 | |
| 25 | #include <common.h> |
| 26 | #include <command.h> |
| 27 | #include <malloc.h> |
| 28 | #include <version.h> |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 29 | #include <watchdog.h> |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 30 | |
| 31 | const char version_string[] = |
| 32 | U_BOOT_VERSION" (" __DATE__ " - " __TIME__ ")"; |
| 33 | |
| 34 | /* |
| 35 | * Begin and End of memory area for malloc(), and current "brk" |
| 36 | */ |
| 37 | static ulong mem_malloc_start; |
| 38 | static ulong mem_malloc_end; |
| 39 | static ulong mem_malloc_brk; |
| 40 | |
| 41 | |
| 42 | void *sbrk (ptrdiff_t increment) |
| 43 | { |
| 44 | ulong old = mem_malloc_brk; |
| 45 | ulong new = old + increment; |
| 46 | |
| 47 | if ((new < mem_malloc_start) || (new > mem_malloc_end)) { |
| 48 | return (NULL); |
| 49 | } |
| 50 | mem_malloc_brk = new; |
| 51 | return ((void *) old); |
| 52 | } |
| 53 | |
| 54 | /* |
| 55 | * All attempts to come up with a "common" initialization sequence |
| 56 | * that works for all boards and architectures failed: some of the |
| 57 | * requirements are just _too_ different. To get rid of the resulting |
| 58 | * mess of board dependend #ifdef'ed code we now make the whole |
| 59 | * initialization sequence configurable to the user. |
| 60 | * |
| 61 | * The requirements for any new initalization function is simple: it |
| 62 | * receives a pointer to the "global data" structure as it's only |
| 63 | * argument, and returns an integer return code, where 0 means |
| 64 | * "continue" and != 0 means "fatal error, hang the system". |
| 65 | */ |
| 66 | typedef int (init_fnc_t) (void); |
| 67 | |
| 68 | init_fnc_t *init_sequence[] = { |
| 69 | serial_init, /* serial communications setup */ |
| 70 | NULL, |
| 71 | }; |
| 72 | |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 73 | void board_init(void) |
| 74 | { |
wdenk | 857cad3 | 2004-07-10 23:48:41 +0000 | [diff] [blame] | 75 | DECLARE_GLOBAL_DATA_PTR; |
| 76 | |
| 77 | bd_t *bd; |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 78 | init_fnc_t **init_fnc_ptr; |
| 79 | |
wdenk | 857cad3 | 2004-07-10 23:48:41 +0000 | [diff] [blame] | 80 | /* Pointer is writable since we allocated a register for it. */ |
| 81 | gd = (gd_t *)CFG_GBL_DATA_OFFSET; |
| 82 | memset((void *)gd, 0, CFG_GBL_DATA_SIZE); |
| 83 | |
| 84 | gd->bd = (bd_t *)(gd+1); /* At end of global data */ |
| 85 | gd->baudrate = CONFIG_BAUDRATE; |
| 86 | |
| 87 | bd = gd->bd; |
| 88 | bd->bi_baudrate = CONFIG_BAUDRATE; |
| 89 | |
wdenk | 7abf0c5 | 2004-04-18 21:45:42 +0000 | [diff] [blame] | 90 | for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) { |
| 91 | WATCHDOG_RESET (); |
| 92 | if ((*init_fnc_ptr) () != 0) { |
| 93 | hang (); |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | /* main_loop */ |
| 98 | for (;;) { |
| 99 | WATCHDOG_RESET (); |
| 100 | main_loop (); |
| 101 | } |
| 102 | } |
| 103 | |
wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 104 | void hang (void) |
| 105 | { |
| 106 | puts ("### ERROR ### Please RESET the board ###\n"); |
| 107 | for (;;); |
| 108 | } |