Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 1 | /* |
Nobuhiro Iwamatsu | c4176c4 | 2010-10-26 20:23:53 +0900 | [diff] [blame] | 2 | * Copyright (C) 2007, 2008, 2010 |
Nobuhiro Iwamatsu | 0b135cf | 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 | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 24 | #include <stdio_dev.h> |
Peter Tyser | 561858e | 2008-11-03 09:30:59 -0600 | [diff] [blame] | 25 | #include <timestamp.h> |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 26 | #include <version.h> |
Nobuhiro Iwamatsu | 4a065ab | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 27 | #include <watchdog.h> |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 28 | #include <net.h> |
| 29 | #include <environment.h> |
| 30 | |
Luigi 'Comio' Mantellini | 310cecb | 2009-10-10 12:42:21 +0200 | [diff] [blame] | 31 | #ifdef CONFIG_BITBANGMII |
| 32 | #include <miiphy.h> |
| 33 | #endif |
| 34 | |
John Rigby | 2956532 | 2010-12-20 18:27:51 -0700 | [diff] [blame] | 35 | DECLARE_GLOBAL_DATA_PTR; |
| 36 | |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 37 | extern int cpu_init(void); |
| 38 | extern int board_init(void); |
| 39 | extern int dram_init(void); |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 40 | extern int timer_init(void); |
| 41 | |
Peter Tyser | 561858e | 2008-11-03 09:30:59 -0600 | [diff] [blame] | 42 | const char version_string[] = U_BOOT_VERSION" ("U_BOOT_DATE" - "U_BOOT_TIME")"; |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 43 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 44 | unsigned long monitor_flash_len = CONFIG_SYS_MONITOR_LEN; |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 45 | |
Nobuhiro Iwamatsu | 40c4770 | 2011-03-07 11:21:40 +0900 | [diff] [blame] | 46 | #ifndef CONFIG_SYS_NO_FLASH |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 47 | static int sh_flash_init(void) |
| 48 | { |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 49 | gd->bd->bi_flashsize = flash_init(); |
Nobuhiro Iwamatsu | c4176c4 | 2010-10-26 20:23:53 +0900 | [diff] [blame] | 50 | |
| 51 | if (gd->bd->bi_flashsize >= (1024 * 1024)) |
Peter Tyser | eddf52b | 2010-12-28 18:12:05 -0600 | [diff] [blame] | 52 | printf("Flash: %ldMB\n", gd->bd->bi_flashsize / (1024*1024)); |
Nobuhiro Iwamatsu | c4176c4 | 2010-10-26 20:23:53 +0900 | [diff] [blame] | 53 | else |
Peter Tyser | eddf52b | 2010-12-28 18:12:05 -0600 | [diff] [blame] | 54 | printf("Flash: %ldKB\n", gd->bd->bi_flashsize / 1024); |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 55 | |
| 56 | return 0; |
| 57 | } |
Nobuhiro Iwamatsu | 40c4770 | 2011-03-07 11:21:40 +0900 | [diff] [blame] | 58 | #endif /* CONFIG_SYS_NO_FLASH */ |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 59 | |
| 60 | #if defined(CONFIG_CMD_NAND) |
Nobuhiro Iwamatsu | 4a065ab | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 61 | # include <nand.h> |
| 62 | # define INIT_FUNC_NAND_INIT nand_init, |
| 63 | #else |
| 64 | # define INIT_FUNC_NAND_INIT |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 65 | #endif /* CONFIG_CMD_NAND */ |
| 66 | |
Nobuhiro Iwamatsu | 4a065ab | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 67 | #if defined(CONFIG_WATCHDOG) |
| 68 | extern int watchdog_init(void); |
| 69 | extern int watchdog_disable(void); |
| 70 | # define INIT_FUNC_WATCHDOG_INIT watchdog_init, |
| 71 | # define WATCHDOG_DISABLE watchdog_disable |
| 72 | #else |
| 73 | # define INIT_FUNC_WATCHDOG_INIT |
| 74 | # define WATCHDOG_DISABLE |
| 75 | #endif /* CONFIG_WATCHDOG */ |
| 76 | |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 77 | #if defined(CONFIG_CMD_IDE) |
Nobuhiro Iwamatsu | 4a065ab | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 78 | # include <ide.h> |
| 79 | # define INIT_FUNC_IDE_INIT ide_init, |
| 80 | #else |
| 81 | # define INIT_FUNC_IDE_INIT |
| 82 | #endif /* CONFIG_CMD_IDE */ |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 83 | |
Yusuke Goda | 1a2334a | 2008-03-05 14:30:02 +0900 | [diff] [blame] | 84 | #if defined(CONFIG_PCI) |
Nobuhiro Iwamatsu | 4a065ab | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 85 | #include <pci.h> |
Yusuke Goda | 1a2334a | 2008-03-05 14:30:02 +0900 | [diff] [blame] | 86 | static int sh_pci_init(void) |
| 87 | { |
| 88 | pci_init(); |
| 89 | return 0; |
| 90 | } |
Nobuhiro Iwamatsu | 4a065ab | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 91 | # define INIT_FUNC_PCI_INIT sh_pci_init, |
| 92 | #else |
| 93 | # define INIT_FUNC_PCI_INIT |
Yusuke Goda | 1a2334a | 2008-03-05 14:30:02 +0900 | [diff] [blame] | 94 | #endif /* CONFIG_PCI */ |
| 95 | |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 96 | static int sh_mem_env_init(void) |
| 97 | { |
Wolfgang Denk | 25ddd1f | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 98 | mem_malloc_init(CONFIG_SYS_TEXT_BASE - GENERATED_GBL_DATA_SIZE - |
Peter Tyser | a483a16 | 2009-08-21 23:05:20 -0500 | [diff] [blame] | 99 | CONFIG_SYS_MALLOC_LEN, CONFIG_SYS_MALLOC_LEN - 16); |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 100 | env_relocate(); |
| 101 | jumptable_init(); |
| 102 | return 0; |
| 103 | } |
| 104 | |
Nobuhiro Iwamatsu | 9e23fe0 | 2008-07-08 12:03:24 +0900 | [diff] [blame] | 105 | #if defined(CONFIG_CMD_NET) |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 106 | static int sh_net_init(void) |
| 107 | { |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 108 | gd->bd->bi_ip_addr = getenv_IPaddr("ipaddr"); |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 109 | return 0; |
| 110 | } |
Nobuhiro Iwamatsu | 9e23fe0 | 2008-07-08 12:03:24 +0900 | [diff] [blame] | 111 | #endif |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 112 | |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 113 | typedef int (init_fnc_t) (void); |
| 114 | |
| 115 | init_fnc_t *init_sequence[] = |
| 116 | { |
| 117 | cpu_init, /* basic cpu dependent setup */ |
| 118 | board_init, /* basic board dependent setup */ |
Nobuhiro Iwamatsu | 4a065ab | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 119 | interrupt_init, /* set up exceptions */ |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 120 | env_init, /* event init */ |
Nobuhiro Iwamatsu | 4a065ab | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 121 | serial_init, /* SCIF init */ |
| 122 | INIT_FUNC_WATCHDOG_INIT /* watchdog init */ |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 123 | console_init_f, |
| 124 | display_options, |
| 125 | checkcpu, |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 126 | checkboard, /* Check support board */ |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 127 | dram_init, /* SDRAM init */ |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 128 | timer_init, /* SuperH Timer (TCNT0 only) init */ |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 129 | sh_mem_env_init, |
Nobuhiro Iwamatsu | 40c4770 | 2011-03-07 11:21:40 +0900 | [diff] [blame] | 130 | #ifndef CONFIG_SYS_NO_FLASH |
| 131 | sh_flash_init, /* Flash memory init*/ |
| 132 | #endif |
Nobuhiro Iwamatsu | 4a065ab | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 133 | INIT_FUNC_NAND_INIT/* Flash memory (NAND) init */ |
| 134 | INIT_FUNC_PCI_INIT /* PCI init */ |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 135 | stdio_init, |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 136 | console_init_r, |
| 137 | interrupt_init, |
| 138 | #ifdef BOARD_LATE_INIT |
| 139 | board_late_init, |
| 140 | #endif |
| 141 | #if defined(CONFIG_CMD_NET) |
| 142 | sh_net_init, /* SH specific eth init */ |
| 143 | #endif |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 144 | NULL /* Terminate this list */ |
| 145 | }; |
| 146 | |
Nobuhiro Iwamatsu | 4a065ab | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 147 | void sh_generic_init(void) |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 148 | { |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 149 | bd_t *bd; |
| 150 | init_fnc_t **init_fnc_ptr; |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 151 | |
Wolfgang Denk | 25ddd1f | 2010-10-26 14:34:52 +0200 | [diff] [blame] | 152 | memset(gd, 0, GENERATED_GBL_DATA_SIZE); |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 153 | |
| 154 | gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */ |
| 155 | |
Nobuhiro Iwamatsu | 4a065ab | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 156 | gd->bd = (bd_t *)(gd + 1); /* At end of global data */ |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 157 | gd->baudrate = CONFIG_BAUDRATE; |
| 158 | |
| 159 | gd->cpu_clk = CONFIG_SYS_CLK_FREQ; |
| 160 | |
| 161 | bd = gd->bd; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 162 | bd->bi_memstart = CONFIG_SYS_SDRAM_BASE; |
| 163 | bd->bi_memsize = CONFIG_SYS_SDRAM_SIZE; |
Nobuhiro Iwamatsu | 40c4770 | 2011-03-07 11:21:40 +0900 | [diff] [blame] | 164 | #ifndef CONFIG_SYS_NO_FLASH |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 165 | bd->bi_flashstart = CONFIG_SYS_FLASH_BASE; |
Nobuhiro Iwamatsu | 40c4770 | 2011-03-07 11:21:40 +0900 | [diff] [blame] | 166 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 167 | #if defined(CONFIG_SYS_SRAM_BASE) && defined(CONFIG_SYS_SRAM_SIZE) |
| 168 | bd->bi_sramstart = CONFIG_SYS_SRAM_BASE; |
| 169 | bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE; |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 170 | #endif |
| 171 | bd->bi_baudrate = CONFIG_BAUDRATE; |
| 172 | |
Nobuhiro Iwamatsu | 4a065ab | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 173 | for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) { |
| 174 | WATCHDOG_RESET(); |
| 175 | if ((*init_fnc_ptr) () != 0) |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 176 | hang(); |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 177 | } |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 178 | |
Nobuhiro Iwamatsu | 4a065ab | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 179 | #ifdef CONFIG_WATCHDOG |
| 180 | /* disable watchdog if environment is set */ |
| 181 | { |
| 182 | char *s = getenv("watchdog"); |
| 183 | if (s != NULL) |
| 184 | if (strncmp(s, "off", 3) == 0) |
| 185 | WATCHDOG_DISABLE(); |
| 186 | } |
| 187 | #endif /* CONFIG_WATCHDOG*/ |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 188 | |
Nobuhiro Iwamatsu | 4a065ab | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 189 | |
Luigi 'Comio' Mantellini | 310cecb | 2009-10-10 12:42:21 +0200 | [diff] [blame] | 190 | #ifdef CONFIG_BITBANGMII |
| 191 | bb_miiphy_init(); |
| 192 | #endif |
Nobuhiro Iwamatsu | 4a065ab | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 193 | #if defined(CONFIG_CMD_NET) |
| 194 | { |
| 195 | char *s; |
| 196 | puts("Net: "); |
| 197 | eth_initialize(gd->bd); |
| 198 | |
| 199 | s = getenv("bootfile"); |
| 200 | if (s != NULL) |
| 201 | copy_filename(BootFile, s, sizeof(BootFile)); |
Nobuhiro Iwamatsu | b02bad1 | 2007-09-23 02:12:30 +0900 | [diff] [blame] | 202 | } |
| 203 | #endif /* CONFIG_CMD_NET */ |
| 204 | |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 205 | while (1) { |
Nobuhiro Iwamatsu | 4a065ab | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 206 | WATCHDOG_RESET(); |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 207 | main_loop(); |
| 208 | } |
| 209 | } |
| 210 | |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 211 | /***********************************************************************/ |
| 212 | |
Nobuhiro Iwamatsu | 4a065ab | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 213 | void hang(void) |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 214 | { |
Nobuhiro Iwamatsu | 4a065ab | 2008-09-18 19:04:26 +0900 | [diff] [blame] | 215 | puts("Board ERROR\n"); |
| 216 | for (;;) |
| 217 | ; |
Nobuhiro Iwamatsu | 0b135cf | 2007-05-13 20:58:00 +0900 | [diff] [blame] | 218 | } |