wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2003 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
| 23 | |
| 24 | #include <common.h> |
| 25 | #include <command.h> |
| 26 | #include <malloc.h> |
Joe Hershberger | f88e09d | 2012-12-11 17:52:50 +0000 | [diff] [blame] | 27 | #include <serial.h> |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 28 | #include <stdio_dev.h> |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 29 | #include <version.h> |
| 30 | #include <net.h> |
| 31 | #include <environment.h> |
Jason McMullan | e996bc3 | 2008-05-30 00:53:37 +0900 | [diff] [blame] | 32 | #include <nand.h> |
Stefan Roese | 9d23fc5 | 2008-11-12 13:18:19 +0100 | [diff] [blame] | 33 | #include <onenand_uboot.h> |
Jason McMullan | 89a1550 | 2008-05-30 00:53:37 +0900 | [diff] [blame] | 34 | #include <spi.h> |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 35 | |
Luigi 'Comio' Mantellini | 310cecb | 2009-10-10 12:42:21 +0200 | [diff] [blame] | 36 | #ifdef CONFIG_BITBANGMII |
| 37 | #include <miiphy.h> |
| 38 | #endif |
| 39 | |
Wolfgang Denk | c75eba3 | 2005-12-01 02:15:07 +0100 | [diff] [blame] | 40 | DECLARE_GLOBAL_DATA_PTR; |
| 41 | |
wdenk | 3b57fe0 | 2003-05-30 12:48:29 +0000 | [diff] [blame] | 42 | ulong monitor_flash_len; |
| 43 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 44 | static char *failed = "*** failed ***\n"; |
| 45 | |
| 46 | /* |
Jean-Christophe PLAGNIOL-VILLARD | 5c15010 | 2007-11-13 09:11:05 +0100 | [diff] [blame] | 47 | * mips_io_port_base is the begin of the address space to which x86 style |
| 48 | * I/O ports are mapped. |
| 49 | */ |
Daniel Schwierzeck | f0c2799 | 2012-12-12 13:13:48 +0100 | [diff] [blame] | 50 | const unsigned long mips_io_port_base = -1; |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 51 | |
Stefan Roese | db08eca | 2008-11-12 13:18:02 +0100 | [diff] [blame] | 52 | int __board_early_init_f(void) |
| 53 | { |
| 54 | /* |
| 55 | * Nothing to do in this dummy implementation |
| 56 | */ |
| 57 | return 0; |
| 58 | } |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 59 | int board_early_init_f(void) |
| 60 | __attribute__((weak, alias("__board_early_init_f"))); |
Stefan Roese | db08eca | 2008-11-12 13:18:02 +0100 | [diff] [blame] | 61 | |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 62 | static int init_func_ram(void) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 63 | { |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 64 | #ifdef CONFIG_BOARD_TYPES |
| 65 | int board_type = gd->board_type; |
| 66 | #else |
| 67 | int board_type = 0; /* use dummy arg */ |
| 68 | #endif |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 69 | puts("DRAM: "); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 70 | |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 71 | gd->ram_size = initdram(board_type); |
| 72 | if (gd->ram_size > 0) { |
| 73 | print_size(gd->ram_size, "\n"); |
| 74 | return 0; |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 75 | } |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 76 | puts(failed); |
| 77 | return 1; |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | static int display_banner(void) |
| 81 | { |
| 82 | |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 83 | printf("\n\n%s\n\n", version_string); |
| 84 | return 0; |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 85 | } |
| 86 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 87 | #ifndef CONFIG_SYS_NO_FLASH |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 88 | static void display_flash_config(ulong size) |
| 89 | { |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 90 | puts("Flash: "); |
| 91 | print_size(size, "\n"); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 92 | } |
Jean-Christophe PLAGNIOL-VILLARD | beeccf7 | 2008-02-17 16:58:04 +0100 | [diff] [blame] | 93 | #endif |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 94 | |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 95 | static int init_baudrate(void) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 96 | { |
Simon Glass | 98e4611 | 2011-10-13 14:43:11 +0000 | [diff] [blame] | 97 | gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE); |
| 98 | return 0; |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | |
| 102 | /* |
| 103 | * Breath some life into the board... |
| 104 | * |
| 105 | * The first part of initialization is running from Flash memory; |
| 106 | * its main purpose is to initialize the RAM so that we |
| 107 | * can relocate the monitor code to RAM. |
| 108 | */ |
| 109 | |
| 110 | /* |
| 111 | * All attempts to come up with a "common" initialization sequence |
| 112 | * that works for all boards and architectures failed: some of the |
| 113 | * requirements are just _too_ different. To get rid of the resulting |
| 114 | * mess of board dependend #ifdef'ed code we now make the whole |
| 115 | * initialization sequence configurable to the user. |
| 116 | * |
| 117 | * The requirements for any new initalization function is simple: it |
| 118 | * receives a pointer to the "global data" structure as it's only |
| 119 | * argument, and returns an integer return code, where 0 means |
| 120 | * "continue" and != 0 means "fatal error, hang the system". |
| 121 | */ |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 122 | typedef int (init_fnc_t)(void); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 123 | |
| 124 | init_fnc_t *init_sequence[] = { |
Stefan Roese | db08eca | 2008-11-12 13:18:02 +0100 | [diff] [blame] | 125 | board_early_init_f, |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 126 | timer_init, |
| 127 | env_init, /* initialize environment */ |
wdenk | 7cb22f9 | 2003-12-27 19:24:54 +0000 | [diff] [blame] | 128 | #ifdef CONFIG_INCA_IP |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 129 | incaip_set_cpuclk, /* set cpu clock according to env. variable */ |
wdenk | 7cb22f9 | 2003-12-27 19:24:54 +0000 | [diff] [blame] | 130 | #endif |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 131 | init_baudrate, /* initialize baudrate settings */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 132 | serial_init, /* serial communications setup */ |
| 133 | console_init_f, |
| 134 | display_banner, /* say that we are here */ |
wdenk | 85ec0bc | 2003-03-31 16:34:49 +0000 | [diff] [blame] | 135 | checkboard, |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 136 | init_func_ram, |
| 137 | NULL, |
| 138 | }; |
| 139 | |
| 140 | |
| 141 | void board_init_f(ulong bootflag) |
| 142 | { |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 143 | gd_t gd_data, *id; |
| 144 | bd_t *bd; |
| 145 | init_fnc_t **init_fnc_ptr; |
Daniel Schwierzeck | eea8a32 | 2013-02-12 22:22:12 +0100 | [diff] [blame^] | 146 | ulong addr, addr_sp, len; |
Wolfgang Denk | c75eba3 | 2005-12-01 02:15:07 +0100 | [diff] [blame] | 147 | ulong *s; |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 148 | |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 149 | /* Pointer is writable since we allocated a register for it. |
| 150 | */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 151 | gd = &gd_data; |
wdenk | 93f6a67 | 2004-07-01 20:28:03 +0000 | [diff] [blame] | 152 | /* compiler optimization barrier needed for GCC >= 3.4 */ |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 153 | __asm__ __volatile__("" : : : "memory"); |
wdenk | 93f6a67 | 2004-07-01 20:28:03 +0000 | [diff] [blame] | 154 | |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 155 | memset((void *)gd, 0, sizeof(gd_t)); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 156 | |
| 157 | for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) { |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 158 | if ((*init_fnc_ptr)() != 0) |
| 159 | hang(); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | /* |
| 163 | * Now that we have DRAM mapped and working, we can |
| 164 | * relocate the code and continue running from DRAM. |
| 165 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 166 | addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size; |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 167 | |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 168 | /* We can reserve some RAM "on top" here. |
| 169 | */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 170 | |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 171 | /* round down to next 4 kB limit. |
| 172 | */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 173 | addr &= ~(4096 - 1); |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 174 | debug("Top of RAM usable for U-Boot at: %08lx\n", addr); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 175 | |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 176 | /* Reserve memory for U-Boot code, data & bss |
| 177 | * round down to next 16 kB limit |
| 178 | */ |
Daniel Schwierzeck | eea8a32 | 2013-02-12 22:22:12 +0100 | [diff] [blame^] | 179 | len = bss_end() - CONFIG_SYS_MONITOR_BASE; |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 180 | addr -= len; |
wdenk | 3b57fe0 | 2003-05-30 12:48:29 +0000 | [diff] [blame] | 181 | addr &= ~(16 * 1024 - 1); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 182 | |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 183 | debug("Reserving %ldk for U-Boot at: %08lx\n", len >> 10, addr); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 184 | |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 185 | /* Reserve memory for malloc() arena. |
| 186 | */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 187 | addr_sp = addr - TOTAL_MALLOC_LEN; |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 188 | debug("Reserving %dk for malloc() at: %08lx\n", |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 189 | TOTAL_MALLOC_LEN >> 10, addr_sp); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 190 | |
| 191 | /* |
| 192 | * (permanently) allocate a Board Info struct |
| 193 | * and a permanent copy of the "global" data |
| 194 | */ |
| 195 | addr_sp -= sizeof(bd_t); |
| 196 | bd = (bd_t *)addr_sp; |
| 197 | gd->bd = bd; |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 198 | debug("Reserving %zu Bytes for Board Info at: %08lx\n", |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 199 | sizeof(bd_t), addr_sp); |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 200 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 201 | addr_sp -= sizeof(gd_t); |
| 202 | id = (gd_t *)addr_sp; |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 203 | debug("Reserving %zu Bytes for Global Data at: %08lx\n", |
| 204 | sizeof(gd_t), addr_sp); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 205 | |
Jean-Christophe PLAGNIOL-VILLARD | beeccf7 | 2008-02-17 16:58:04 +0100 | [diff] [blame] | 206 | /* Reserve memory for boot params. |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 207 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 208 | addr_sp -= CONFIG_SYS_BOOTPARAMS_LEN; |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 209 | bd->bi_boot_params = addr_sp; |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 210 | debug("Reserving %dk for boot params() at: %08lx\n", |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 211 | CONFIG_SYS_BOOTPARAMS_LEN >> 10, addr_sp); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 212 | |
| 213 | /* |
| 214 | * Finally, we set up a new (bigger) stack. |
| 215 | * |
| 216 | * Leave some safety gap for SP, force alignment on 16 byte boundary |
| 217 | * Clear initial stack frame |
| 218 | */ |
| 219 | addr_sp -= 16; |
| 220 | addr_sp &= ~0xF; |
Wolfgang Denk | c75eba3 | 2005-12-01 02:15:07 +0100 | [diff] [blame] | 221 | s = (ulong *)addr_sp; |
| 222 | *s-- = 0; |
| 223 | *s-- = 0; |
| 224 | addr_sp = (ulong)s; |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 225 | debug("Stack Pointer at: %08lx\n", addr_sp); |
wdenk | 6945979 | 2004-05-29 16:53:29 +0000 | [diff] [blame] | 226 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 227 | /* |
| 228 | * Save local variables to board info struct |
| 229 | */ |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 230 | bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; /* start of DRAM */ |
| 231 | bd->bi_memsize = gd->ram_size; /* size of DRAM in bytes */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 232 | bd->bi_baudrate = gd->baudrate; /* Console Baudrate */ |
| 233 | |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 234 | memcpy(id, (void *)gd, sizeof(gd_t)); |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 235 | |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 236 | relocate_code(addr_sp, id, addr); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 237 | |
| 238 | /* NOTREACHED - relocate_code() does not return */ |
| 239 | } |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 240 | |
| 241 | /* |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 242 | * This is the next part if the initialization sequence: we are now |
| 243 | * running from RAM and have a "normal" C environment, i. e. global |
| 244 | * data can be written, BSS has been cleared, the stack size in not |
| 245 | * that critical any more, etc. |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 246 | */ |
| 247 | |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 248 | void board_init_r(gd_t *id, ulong dest_addr) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 249 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 250 | #ifndef CONFIG_SYS_NO_FLASH |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 251 | ulong size; |
Jean-Christophe PLAGNIOL-VILLARD | beeccf7 | 2008-02-17 16:58:04 +0100 | [diff] [blame] | 252 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 93f6d72 | 2008-09-10 22:48:00 +0200 | [diff] [blame] | 253 | #ifndef CONFIG_ENV_IS_NOWHERE |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 254 | extern char *env_name_spec; |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 255 | #endif |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 256 | bd_t *bd; |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 257 | |
| 258 | gd = id; |
| 259 | gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */ |
| 260 | |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 261 | debug("Now running in RAM - U-Boot at: %08lx\n", dest_addr); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 262 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 263 | gd->reloc_off = dest_addr - CONFIG_SYS_MONITOR_BASE; |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 264 | |
Daniel Schwierzeck | eea8a32 | 2013-02-12 22:22:12 +0100 | [diff] [blame^] | 265 | monitor_flash_len = image_copy_end() - dest_addr; |
wdenk | 3b57fe0 | 2003-05-30 12:48:29 +0000 | [diff] [blame] | 266 | |
Joe Hershberger | f88e09d | 2012-12-11 17:52:50 +0000 | [diff] [blame] | 267 | serial_initialize(); |
| 268 | |
Wolfgang Denk | 2e5167c | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 269 | #if defined(CONFIG_NEEDS_MANUAL_RELOC) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 270 | /* |
| 271 | * We have to relocate the command table manually |
| 272 | */ |
Marek Vasut | 6c7c946 | 2012-10-12 10:27:04 +0000 | [diff] [blame] | 273 | fixup_cmdtable(ll_entry_start(cmd_tbl_t, cmd), |
| 274 | ll_entry_count(cmd_tbl_t, cmd)); |
Wolfgang Denk | 2e5167c | 2010-10-28 20:00:11 +0200 | [diff] [blame] | 275 | #endif /* defined(CONFIG_NEEDS_MANUAL_RELOC) */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 276 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 277 | /* there are some other pointer constants we must deal with */ |
Jean-Christophe PLAGNIOL-VILLARD | 93f6d72 | 2008-09-10 22:48:00 +0200 | [diff] [blame] | 278 | #ifndef CONFIG_ENV_IS_NOWHERE |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 279 | env_name_spec += gd->reloc_off; |
| 280 | #endif |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 281 | |
Jean-Christophe PLAGNIOL-VILLARD | beeccf7 | 2008-02-17 16:58:04 +0100 | [diff] [blame] | 282 | bd = gd->bd; |
| 283 | |
Peter Tyser | d4e8ada | 2009-08-21 23:05:21 -0500 | [diff] [blame] | 284 | /* The Malloc area is immediately below the monitor copy in DRAM */ |
Peter Tyser | a483a16 | 2009-08-21 23:05:20 -0500 | [diff] [blame] | 285 | mem_malloc_init(CONFIG_SYS_MONITOR_BASE + gd->reloc_off - |
| 286 | TOTAL_MALLOC_LEN, TOTAL_MALLOC_LEN); |
Stefan Roese | c790b04 | 2009-05-11 15:50:12 +0200 | [diff] [blame] | 287 | malloc_bin_reloc(); |
| 288 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 289 | #ifndef CONFIG_SYS_NO_FLASH |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 290 | /* configure available FLASH banks */ |
| 291 | size = flash_init(); |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 292 | display_flash_config(size); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 293 | bd->bi_flashstart = CONFIG_SYS_FLASH_BASE; |
Daniel Schwierzeck | 71919cf | 2012-04-02 02:57:54 +0000 | [diff] [blame] | 294 | bd->bi_flashsize = size; |
| 295 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 296 | #if CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE |
wdenk | 3b57fe0 | 2003-05-30 12:48:29 +0000 | [diff] [blame] | 297 | bd->bi_flashoffset = monitor_flash_len; /* reserved area for U-Boot */ |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 298 | #else |
| 299 | bd->bi_flashoffset = 0; |
| 300 | #endif |
Daniel Schwierzeck | 71919cf | 2012-04-02 02:57:54 +0000 | [diff] [blame] | 301 | #else |
| 302 | bd->bi_flashstart = 0; |
| 303 | bd->bi_flashsize = 0; |
| 304 | bd->bi_flashoffset = 0; |
| 305 | #endif |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 306 | |
Stefan Roese | 9d23fc5 | 2008-11-12 13:18:19 +0100 | [diff] [blame] | 307 | #ifdef CONFIG_CMD_NAND |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 308 | puts("NAND: "); |
| 309 | nand_init(); /* go init the NAND */ |
Stefan Roese | 9d23fc5 | 2008-11-12 13:18:19 +0100 | [diff] [blame] | 310 | #endif |
| 311 | |
| 312 | #if defined(CONFIG_CMD_ONENAND) |
| 313 | onenand_init(); |
| 314 | #endif |
| 315 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 316 | /* relocate environment function pointers etc. */ |
| 317 | env_relocate(); |
| 318 | |
wdenk | f4863a7 | 2004-02-07 01:27:10 +0000 | [diff] [blame] | 319 | #if defined(CONFIG_PCI) |
| 320 | /* |
| 321 | * Do pci configuration |
| 322 | */ |
| 323 | pci_init(); |
| 324 | #endif |
| 325 | |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 326 | /** leave this here (after malloc(), environment and PCI are working) **/ |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 327 | /* Initialize stdio devices */ |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 328 | stdio_init(); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 329 | |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 330 | jumptable_init(); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 331 | |
| 332 | /* Initialize the console (after the relocation and devices init) */ |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 333 | console_init_r(); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 334 | /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** **/ |
| 335 | |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 336 | /* Initialize from environment */ |
Simon Glass | 98e4611 | 2011-10-13 14:43:11 +0000 | [diff] [blame] | 337 | load_addr = getenv_ulong("loadaddr", 16, load_addr); |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 338 | |
Jason McMullan | 89a1550 | 2008-05-30 00:53:37 +0900 | [diff] [blame] | 339 | #ifdef CONFIG_CMD_SPI |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 340 | puts("SPI: "); |
| 341 | spi_init(); /* go init the SPI */ |
| 342 | puts("ready\n"); |
Jason McMullan | 89a1550 | 2008-05-30 00:53:37 +0900 | [diff] [blame] | 343 | #endif |
| 344 | |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 345 | #if defined(CONFIG_MISC_INIT_R) |
| 346 | /* miscellaneous platform dependent initialisations */ |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 347 | misc_init_r(); |
wdenk | 3e38691 | 2003-04-05 00:53:31 +0000 | [diff] [blame] | 348 | #endif |
| 349 | |
Luigi 'Comio' Mantellini | 310cecb | 2009-10-10 12:42:21 +0200 | [diff] [blame] | 350 | #ifdef CONFIG_BITBANGMII |
| 351 | bb_miiphy_init(); |
| 352 | #endif |
Jon Loeliger | 7def6b3 | 2007-07-09 18:02:11 -0500 | [diff] [blame] | 353 | #if defined(CONFIG_CMD_NET) |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 354 | puts("Net: "); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 355 | eth_initialize(gd->bd); |
| 356 | #endif |
| 357 | |
| 358 | /* main_loop() can return to retry autoboot, if so just run it again. */ |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 359 | for (;;) |
| 360 | main_loop(); |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 361 | |
| 362 | /* NOTREACHED - no way out of command loop except booting */ |
| 363 | } |
| 364 | |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 365 | void hang(void) |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 366 | { |
Wolfgang Denk | cc257e4 | 2011-12-08 02:01:49 +0000 | [diff] [blame] | 367 | puts("### ERROR ### Please RESET the board ###\n"); |
| 368 | for (;;) |
| 369 | ; |
wdenk | c021880 | 2003-03-27 12:09:35 +0000 | [diff] [blame] | 370 | } |