blob: 5d61f0d74fe1b7f1f425468d6158c7bc97a16448 [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
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090041static int sh_flash_init(void)
42{
43 DECLARE_GLOBAL_DATA_PTR;
44
45 gd->bd->bi_flashsize = flash_init();
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090046 printf("FLASH: %ldMB\n", gd->bd->bi_flashsize / (1024*1024));
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090047
48 return 0;
49}
50
51#if defined(CONFIG_CMD_NAND)
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090052# include <nand.h>
53# define INIT_FUNC_NAND_INIT nand_init,
54#else
55# define INIT_FUNC_NAND_INIT
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090056#endif /* CONFIG_CMD_NAND */
57
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090058#if defined(CONFIG_WATCHDOG)
59extern int watchdog_init(void);
60extern int watchdog_disable(void);
61# define INIT_FUNC_WATCHDOG_INIT watchdog_init,
62# define WATCHDOG_DISABLE watchdog_disable
63#else
64# define INIT_FUNC_WATCHDOG_INIT
65# define WATCHDOG_DISABLE
66#endif /* CONFIG_WATCHDOG */
67
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090068#if defined(CONFIG_CMD_IDE)
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090069# include <ide.h>
70# define INIT_FUNC_IDE_INIT ide_init,
71#else
72# define INIT_FUNC_IDE_INIT
73#endif /* CONFIG_CMD_IDE */
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090074
Yusuke Goda1a2334a2008-03-05 14:30:02 +090075#if defined(CONFIG_PCI)
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090076#include <pci.h>
Yusuke Goda1a2334a2008-03-05 14:30:02 +090077static int sh_pci_init(void)
78{
79 pci_init();
80 return 0;
81}
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090082# define INIT_FUNC_PCI_INIT sh_pci_init,
83#else
84# define INIT_FUNC_PCI_INIT
Yusuke Goda1a2334a2008-03-05 14:30:02 +090085#endif /* CONFIG_PCI */
86
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090087static int sh_mem_env_init(void)
88{
Peter Tyser832f4372009-08-21 23:05:20 -050089 mem_malloc_init(TEXT_BASE - CONFIG_SYS_GBL_DATA_SIZE -
90 CONFIG_SYS_MALLOC_LEN, CONFIG_SYS_MALLOC_LEN - 16);
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090091 malloc_bin_reloc();
92 env_relocate();
93 jumptable_init();
94 return 0;
95}
96
Nobuhiro Iwamatsu9e23fe02008-07-08 12:03:24 +090097#if defined(CONFIG_CMD_NET)
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090098static int sh_net_init(void)
99{
100 DECLARE_GLOBAL_DATA_PTR;
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900101 gd->bd->bi_ip_addr = getenv_IPaddr("ipaddr");
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900102 return 0;
103}
Nobuhiro Iwamatsu9e23fe02008-07-08 12:03:24 +0900104#endif
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900105
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900106typedef int (init_fnc_t) (void);
107
108init_fnc_t *init_sequence[] =
109{
110 cpu_init, /* basic cpu dependent setup */
111 board_init, /* basic board dependent setup */
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900112 interrupt_init, /* set up exceptions */
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900113 env_init, /* event init */
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900114 serial_init, /* SCIF init */
115 INIT_FUNC_WATCHDOG_INIT /* watchdog init */
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900116 console_init_f,
117 display_options,
118 checkcpu,
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900119 checkboard, /* Check support board */
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900120 dram_init, /* SDRAM init */
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900121 timer_init, /* SuperH Timer (TCNT0 only) init */
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900122 sh_mem_env_init,
Stefan Roesec790b042009-05-11 15:50:12 +0200123 sh_flash_init, /* Flash memory(NOR) init*/
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900124 INIT_FUNC_NAND_INIT/* Flash memory (NAND) init */
125 INIT_FUNC_PCI_INIT /* PCI init */
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200126 stdio_init,
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900127 console_init_r,
128 interrupt_init,
129#ifdef BOARD_LATE_INIT
130 board_late_init,
131#endif
132#if defined(CONFIG_CMD_NET)
133 sh_net_init, /* SH specific eth init */
134#endif
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900135 NULL /* Terminate this list */
136};
137
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900138void sh_generic_init(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900139{
140 DECLARE_GLOBAL_DATA_PTR;
141
142 bd_t *bd;
143 init_fnc_t **init_fnc_ptr;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900144
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200145 memset(gd, 0, CONFIG_SYS_GBL_DATA_SIZE);
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900146
147 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
148
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900149 gd->bd = (bd_t *)(gd + 1); /* At end of global data */
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900150 gd->baudrate = CONFIG_BAUDRATE;
151
152 gd->cpu_clk = CONFIG_SYS_CLK_FREQ;
153
154 bd = gd->bd;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200155 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
156 bd->bi_memsize = CONFIG_SYS_SDRAM_SIZE;
157 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
158#if defined(CONFIG_SYS_SRAM_BASE) && defined(CONFIG_SYS_SRAM_SIZE)
159 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE;
160 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900161#endif
162 bd->bi_baudrate = CONFIG_BAUDRATE;
163
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900164 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
165 WATCHDOG_RESET();
166 if ((*init_fnc_ptr) () != 0)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900167 hang();
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900168 }
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900169
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900170#ifdef CONFIG_WATCHDOG
171 /* disable watchdog if environment is set */
172 {
173 char *s = getenv("watchdog");
174 if (s != NULL)
175 if (strncmp(s, "off", 3) == 0)
176 WATCHDOG_DISABLE();
177 }
178#endif /* CONFIG_WATCHDOG*/
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900179
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900180
181#if defined(CONFIG_CMD_NET)
182 {
183 char *s;
184 puts("Net: ");
185 eth_initialize(gd->bd);
186
187 s = getenv("bootfile");
188 if (s != NULL)
189 copy_filename(BootFile, s, sizeof(BootFile));
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900190 }
191#endif /* CONFIG_CMD_NET */
192
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900193 while (1) {
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900194 WATCHDOG_RESET();
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900195 main_loop();
196 }
197}
198
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900199/***********************************************************************/
200
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900201void hang(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900202{
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900203 puts("Board ERROR\n");
204 for (;;)
205 ;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900206}