Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 1 | /* |
Yusuke Goda | c77aa17 | 2008-03-05 14:30:02 +0900 | [diff] [blame] | 2 | * Copyright (C) 2007,2008 |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 3 | * Nobuhiro Iwamatsu <iwamatsu@nigauri.org> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License as |
| 7 | * published by the Free Software Foundation; either version 2 of |
| 8 | * the License, or (at your option) any later version. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 18 | * MA 02111-1307 USA |
| 19 | */ |
| 20 | |
| 21 | #include <common.h> |
| 22 | #include <command.h> |
| 23 | #include <malloc.h> |
Jean-Christophe PLAGNIOL-VILLARD | 2a7a031 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 24 | #include <stdio_dev.h> |
Peter Tyser | 6294850 | 2008-11-03 09:30:59 -0600 | [diff] [blame] | 25 | #include <timestamp.h> |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 26 | #include <version.h> |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 27 | #include <watchdog.h> |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 28 | #include <net.h> |
| 29 | #include <environment.h> |
| 30 | |
Luigi 'Comio' Mantellini | 01db155 | 2009-10-10 12:42:21 +0200 | [diff] [blame] | 31 | #ifdef CONFIG_BITBANGMII |
| 32 | #include <miiphy.h> |
| 33 | #endif |
| 34 | |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 35 | extern void malloc_bin_reloc (void); |
| 36 | extern int cpu_init(void); |
| 37 | extern int board_init(void); |
| 38 | extern int dram_init(void); |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 39 | extern int timer_init(void); |
| 40 | |
Peter Tyser | 6294850 | 2008-11-03 09:30:59 -0600 | [diff] [blame] | 41 | const char version_string[] = U_BOOT_VERSION" ("U_BOOT_DATE" - "U_BOOT_TIME")"; |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 42 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 43 | unsigned long monitor_flash_len = CONFIG_SYS_MONITOR_LEN; |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 44 | |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 45 | static int sh_flash_init(void) |
| 46 | { |
| 47 | DECLARE_GLOBAL_DATA_PTR; |
| 48 | |
| 49 | gd->bd->bi_flashsize = flash_init(); |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 50 | printf("FLASH: %ldMB\n", gd->bd->bi_flashsize / (1024*1024)); |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 51 | |
| 52 | return 0; |
| 53 | } |
| 54 | |
| 55 | #if defined(CONFIG_CMD_NAND) |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 56 | # include <nand.h> |
| 57 | # define INIT_FUNC_NAND_INIT nand_init, |
| 58 | #else |
| 59 | # define INIT_FUNC_NAND_INIT |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 60 | #endif /* CONFIG_CMD_NAND */ |
| 61 | |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 62 | #if defined(CONFIG_WATCHDOG) |
| 63 | extern int watchdog_init(void); |
| 64 | extern int watchdog_disable(void); |
| 65 | # define INIT_FUNC_WATCHDOG_INIT watchdog_init, |
| 66 | # define WATCHDOG_DISABLE watchdog_disable |
| 67 | #else |
| 68 | # define INIT_FUNC_WATCHDOG_INIT |
| 69 | # define WATCHDOG_DISABLE |
| 70 | #endif /* CONFIG_WATCHDOG */ |
| 71 | |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 72 | #if defined(CONFIG_CMD_IDE) |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 73 | # include <ide.h> |
| 74 | # define INIT_FUNC_IDE_INIT ide_init, |
| 75 | #else |
| 76 | # define INIT_FUNC_IDE_INIT |
| 77 | #endif /* CONFIG_CMD_IDE */ |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 78 | |
Yusuke Goda | c77aa17 | 2008-03-05 14:30:02 +0900 | [diff] [blame] | 79 | #if defined(CONFIG_PCI) |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 80 | #include <pci.h> |
Yusuke Goda | c77aa17 | 2008-03-05 14:30:02 +0900 | [diff] [blame] | 81 | static int sh_pci_init(void) |
| 82 | { |
| 83 | pci_init(); |
| 84 | return 0; |
| 85 | } |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 86 | # define INIT_FUNC_PCI_INIT sh_pci_init, |
| 87 | #else |
| 88 | # define INIT_FUNC_PCI_INIT |
Yusuke Goda | c77aa17 | 2008-03-05 14:30:02 +0900 | [diff] [blame] | 89 | #endif /* CONFIG_PCI */ |
| 90 | |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 91 | static int sh_mem_env_init(void) |
| 92 | { |
Peter Tyser | ed52770 | 2009-08-21 23:05:20 -0500 | [diff] [blame] | 93 | mem_malloc_init(TEXT_BASE - CONFIG_SYS_GBL_DATA_SIZE - |
| 94 | CONFIG_SYS_MALLOC_LEN, CONFIG_SYS_MALLOC_LEN - 16); |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 95 | malloc_bin_reloc(); |
| 96 | env_relocate(); |
| 97 | jumptable_init(); |
| 98 | return 0; |
| 99 | } |
| 100 | |
Nobuhiro Iwamatsu | 0121325 | 2008-07-08 12:03:24 +0900 | [diff] [blame] | 101 | #if defined(CONFIG_CMD_NET) |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 102 | static int sh_net_init(void) |
| 103 | { |
| 104 | DECLARE_GLOBAL_DATA_PTR; |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 105 | gd->bd->bi_ip_addr = getenv_IPaddr("ipaddr"); |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 106 | return 0; |
| 107 | } |
Nobuhiro Iwamatsu | 0121325 | 2008-07-08 12:03:24 +0900 | [diff] [blame] | 108 | #endif |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 109 | |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 110 | typedef int (init_fnc_t) (void); |
| 111 | |
| 112 | init_fnc_t *init_sequence[] = |
| 113 | { |
| 114 | cpu_init, /* basic cpu dependent setup */ |
| 115 | board_init, /* basic board dependent setup */ |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 116 | interrupt_init, /* set up exceptions */ |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 117 | env_init, /* event init */ |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 118 | serial_init, /* SCIF init */ |
| 119 | INIT_FUNC_WATCHDOG_INIT /* watchdog init */ |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 120 | console_init_f, |
| 121 | display_options, |
| 122 | checkcpu, |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 123 | checkboard, /* Check support board */ |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 124 | dram_init, /* SDRAM init */ |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 125 | timer_init, /* SuperH Timer (TCNT0 only) init */ |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 126 | sh_mem_env_init, |
Stefan Roese | b81464e | 2009-05-11 15:50:12 +0200 | [diff] [blame] | 127 | sh_flash_init, /* Flash memory(NOR) init*/ |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 128 | INIT_FUNC_NAND_INIT/* Flash memory (NAND) init */ |
| 129 | INIT_FUNC_PCI_INIT /* PCI init */ |
Jean-Christophe PLAGNIOL-VILLARD | 2a7a031 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 130 | stdio_init, |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 131 | console_init_r, |
| 132 | interrupt_init, |
| 133 | #ifdef BOARD_LATE_INIT |
| 134 | board_late_init, |
| 135 | #endif |
| 136 | #if defined(CONFIG_CMD_NET) |
| 137 | sh_net_init, /* SH specific eth init */ |
| 138 | #endif |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 139 | NULL /* Terminate this list */ |
| 140 | }; |
| 141 | |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 142 | void sh_generic_init(void) |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 143 | { |
| 144 | DECLARE_GLOBAL_DATA_PTR; |
| 145 | |
| 146 | bd_t *bd; |
| 147 | init_fnc_t **init_fnc_ptr; |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 148 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 149 | memset(gd, 0, CONFIG_SYS_GBL_DATA_SIZE); |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 150 | |
| 151 | gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */ |
| 152 | |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 153 | gd->bd = (bd_t *)(gd + 1); /* At end of global data */ |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 154 | gd->baudrate = CONFIG_BAUDRATE; |
| 155 | |
| 156 | gd->cpu_clk = CONFIG_SYS_CLK_FREQ; |
| 157 | |
| 158 | bd = gd->bd; |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 159 | bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; |
| 160 | bd->bi_memsize = CONFIG_SYS_SDRAM_SIZE; |
| 161 | bd->bi_flashstart = CONFIG_SYS_FLASH_BASE; |
| 162 | #if defined(CONFIG_SYS_SRAM_BASE) && defined(CONFIG_SYS_SRAM_SIZE) |
| 163 | bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; |
| 164 | bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 165 | #endif |
| 166 | bd->bi_baudrate = CONFIG_BAUDRATE; |
| 167 | |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 168 | for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) { |
| 169 | WATCHDOG_RESET(); |
| 170 | if ((*init_fnc_ptr) () != 0) |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 171 | hang(); |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | #ifdef CONFIG_WATCHDOG |
| 175 | /* disable watchdog if environment is set */ |
| 176 | { |
| 177 | char *s = getenv("watchdog"); |
| 178 | if (s != NULL) |
| 179 | if (strncmp(s, "off", 3) == 0) |
| 180 | WATCHDOG_DISABLE(); |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 181 | } |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 182 | #endif /* CONFIG_WATCHDOG*/ |
| 183 | |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 184 | |
Luigi 'Comio' Mantellini | 01db155 | 2009-10-10 12:42:21 +0200 | [diff] [blame] | 185 | #ifdef CONFIG_BITBANGMII |
| 186 | bb_miiphy_init(); |
| 187 | #endif |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 188 | #if defined(CONFIG_CMD_NET) |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 189 | { |
| 190 | char *s; |
| 191 | puts("Net: "); |
| 192 | eth_initialize(gd->bd); |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 193 | |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 194 | s = getenv("bootfile"); |
| 195 | if (s != NULL) |
| 196 | copy_filename(BootFile, s, sizeof(BootFile)); |
Nobuhiro Iwamatsu | 547b67f | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 197 | } |
| 198 | #endif /* CONFIG_CMD_NET */ |
| 199 | |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 200 | while (1) { |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 201 | WATCHDOG_RESET(); |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 202 | main_loop(); |
| 203 | } |
| 204 | } |
| 205 | |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 206 | /***********************************************************************/ |
| 207 | |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 208 | void hang(void) |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 209 | { |
Nobuhiro Iwamatsu | 4c9c109 | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 210 | puts("Board ERROR\n"); |
| 211 | for (;;) |
| 212 | ; |
Nobuhiro Iwamatsu | 970dc33 | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 213 | } |