blob: 26913160463387e4c9891469ff0997f53996dc46 [file] [log] [blame]
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +09001/*
Yusuke Goda1a2334a2008-03-05 14:30:02 +09002 * Copyright (C) 2007,2008
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +09003 * 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-VILLARD52cb4d42009-05-16 12:14:54 +020024#include <stdio_dev.h>
Peter Tyser561858e2008-11-03 09:30:59 -060025#include <timestamp.h>
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090026#include <version.h>
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090027#include <watchdog.h>
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090028#include <net.h>
29#include <environment.h>
30
31extern void malloc_bin_reloc (void);
32extern int cpu_init(void);
33extern int board_init(void);
34extern int dram_init(void);
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090035extern int timer_init(void);
36
Peter Tyser561858e2008-11-03 09:30:59 -060037const char version_string[] = U_BOOT_VERSION" ("U_BOOT_DATE" - "U_BOOT_TIME")";
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090038
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020039unsigned long monitor_flash_len = CONFIG_SYS_MONITOR_LEN;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090040
Peter Tyser832f4372009-08-21 23:05:20 -050041static void mem_malloc_init(ulong start, ulong size)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090042{
Peter Tyser832f4372009-08-21 23:05:20 -050043 mem_malloc_start = start;
44 mem_malloc_end = start + size;
45 mem_malloc_brk = start;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090046
Peter Tyser832f4372009-08-21 23:05:20 -050047 memset((void *)mem_malloc_start, 0, size);
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090048}
49
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090050static int sh_flash_init(void)
51{
52 DECLARE_GLOBAL_DATA_PTR;
53
54 gd->bd->bi_flashsize = flash_init();
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090055 printf("FLASH: %ldMB\n", gd->bd->bi_flashsize / (1024*1024));
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090056
57 return 0;
58}
59
60#if defined(CONFIG_CMD_NAND)
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090061# include <nand.h>
62# define INIT_FUNC_NAND_INIT nand_init,
63#else
64# define INIT_FUNC_NAND_INIT
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090065#endif /* CONFIG_CMD_NAND */
66
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090067#if defined(CONFIG_WATCHDOG)
68extern int watchdog_init(void);
69extern 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 Iwamatsub02bad12007-09-23 02:12:30 +090077#if defined(CONFIG_CMD_IDE)
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090078# 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 Iwamatsub02bad12007-09-23 02:12:30 +090083
Yusuke Goda1a2334a2008-03-05 14:30:02 +090084#if defined(CONFIG_PCI)
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090085#include <pci.h>
Yusuke Goda1a2334a2008-03-05 14:30:02 +090086static int sh_pci_init(void)
87{
88 pci_init();
89 return 0;
90}
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090091# define INIT_FUNC_PCI_INIT sh_pci_init,
92#else
93# define INIT_FUNC_PCI_INIT
Yusuke Goda1a2334a2008-03-05 14:30:02 +090094#endif /* CONFIG_PCI */
95
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090096static int sh_mem_env_init(void)
97{
Peter Tyser832f4372009-08-21 23:05:20 -050098 mem_malloc_init(TEXT_BASE - CONFIG_SYS_GBL_DATA_SIZE -
99 CONFIG_SYS_MALLOC_LEN, CONFIG_SYS_MALLOC_LEN - 16);
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900100 malloc_bin_reloc();
101 env_relocate();
102 jumptable_init();
103 return 0;
104}
105
Nobuhiro Iwamatsu9e23fe02008-07-08 12:03:24 +0900106#if defined(CONFIG_CMD_NET)
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900107static int sh_net_init(void)
108{
109 DECLARE_GLOBAL_DATA_PTR;
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900110 gd->bd->bi_ip_addr = getenv_IPaddr("ipaddr");
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900111 return 0;
112}
Nobuhiro Iwamatsu9e23fe02008-07-08 12:03:24 +0900113#endif
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900114
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900115typedef int (init_fnc_t) (void);
116
117init_fnc_t *init_sequence[] =
118{
119 cpu_init, /* basic cpu dependent setup */
120 board_init, /* basic board dependent setup */
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900121 interrupt_init, /* set up exceptions */
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900122 env_init, /* event init */
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900123 serial_init, /* SCIF init */
124 INIT_FUNC_WATCHDOG_INIT /* watchdog init */
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900125 console_init_f,
126 display_options,
127 checkcpu,
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900128 checkboard, /* Check support board */
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900129 dram_init, /* SDRAM init */
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900130 timer_init, /* SuperH Timer (TCNT0 only) init */
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900131 sh_mem_env_init,
Stefan Roesec790b042009-05-11 15:50:12 +0200132 sh_flash_init, /* Flash memory(NOR) init*/
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900133 INIT_FUNC_NAND_INIT/* Flash memory (NAND) init */
134 INIT_FUNC_PCI_INIT /* PCI init */
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200135 stdio_init,
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900136 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 Iwamatsu0b135cf2007-05-13 20:58:00 +0900144 NULL /* Terminate this list */
145};
146
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900147void sh_generic_init(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900148{
149 DECLARE_GLOBAL_DATA_PTR;
150
151 bd_t *bd;
152 init_fnc_t **init_fnc_ptr;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900153
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200154 memset(gd, 0, CONFIG_SYS_GBL_DATA_SIZE);
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900155
156 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
157
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900158 gd->bd = (bd_t *)(gd + 1); /* At end of global data */
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900159 gd->baudrate = CONFIG_BAUDRATE;
160
161 gd->cpu_clk = CONFIG_SYS_CLK_FREQ;
162
163 bd = gd->bd;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200164 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
165 bd->bi_memsize = CONFIG_SYS_SDRAM_SIZE;
166 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
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 Iwamatsu0b135cf2007-05-13 20:58:00 +0900170#endif
171 bd->bi_baudrate = CONFIG_BAUDRATE;
172
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900173 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
174 WATCHDOG_RESET();
175 if ((*init_fnc_ptr) () != 0)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900176 hang();
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900177 }
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900178
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900179#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 Iwamatsub02bad12007-09-23 02:12:30 +0900188
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900189
190#if defined(CONFIG_CMD_NET)
191 {
192 char *s;
193 puts("Net: ");
194 eth_initialize(gd->bd);
195
196 s = getenv("bootfile");
197 if (s != NULL)
198 copy_filename(BootFile, s, sizeof(BootFile));
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900199 }
200#endif /* CONFIG_CMD_NET */
201
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900202 while (1) {
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900203 WATCHDOG_RESET();
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900204 main_loop();
205 }
206}
207
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900208/***********************************************************************/
209
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900210void hang(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900211{
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900212 puts("Board ERROR\n");
213 for (;;)
214 ;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900215}