blob: c97e20c3e1cfc3f3a7cc2506835c59e3071c5562 [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
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020031#ifdef CONFIG_BITBANGMII
32#include <miiphy.h>
33#endif
34
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090035extern int cpu_init(void);
36extern int board_init(void);
37extern int dram_init(void);
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090038extern int timer_init(void);
39
Peter Tyser561858e2008-11-03 09:30:59 -060040const char version_string[] = U_BOOT_VERSION" ("U_BOOT_DATE" - "U_BOOT_TIME")";
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090041
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020042unsigned long monitor_flash_len = CONFIG_SYS_MONITOR_LEN;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +090043
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090044static int sh_flash_init(void)
45{
46 DECLARE_GLOBAL_DATA_PTR;
47
48 gd->bd->bi_flashsize = flash_init();
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090049 printf("FLASH: %ldMB\n", gd->bd->bi_flashsize / (1024*1024));
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090050
51 return 0;
52}
53
54#if defined(CONFIG_CMD_NAND)
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090055# include <nand.h>
56# define INIT_FUNC_NAND_INIT nand_init,
57#else
58# define INIT_FUNC_NAND_INIT
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090059#endif /* CONFIG_CMD_NAND */
60
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090061#if defined(CONFIG_WATCHDOG)
62extern int watchdog_init(void);
63extern int watchdog_disable(void);
64# define INIT_FUNC_WATCHDOG_INIT watchdog_init,
65# define WATCHDOG_DISABLE watchdog_disable
66#else
67# define INIT_FUNC_WATCHDOG_INIT
68# define WATCHDOG_DISABLE
69#endif /* CONFIG_WATCHDOG */
70
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090071#if defined(CONFIG_CMD_IDE)
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090072# include <ide.h>
73# define INIT_FUNC_IDE_INIT ide_init,
74#else
75# define INIT_FUNC_IDE_INIT
76#endif /* CONFIG_CMD_IDE */
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090077
Yusuke Goda1a2334a2008-03-05 14:30:02 +090078#if defined(CONFIG_PCI)
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090079#include <pci.h>
Yusuke Goda1a2334a2008-03-05 14:30:02 +090080static int sh_pci_init(void)
81{
82 pci_init();
83 return 0;
84}
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +090085# define INIT_FUNC_PCI_INIT sh_pci_init,
86#else
87# define INIT_FUNC_PCI_INIT
Yusuke Goda1a2334a2008-03-05 14:30:02 +090088#endif /* CONFIG_PCI */
89
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090090static int sh_mem_env_init(void)
91{
Peter Tysera483a162009-08-21 23:05:20 -050092 mem_malloc_init(TEXT_BASE - CONFIG_SYS_GBL_DATA_SIZE -
93 CONFIG_SYS_MALLOC_LEN, CONFIG_SYS_MALLOC_LEN - 16);
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +090094 env_relocate();
95 jumptable_init();
96 return 0;
97}
98
Nobuhiro Iwamatsu9e23fe02008-07-08 12:03:24 +090099#if defined(CONFIG_CMD_NET)
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900100static int sh_net_init(void)
101{
102 DECLARE_GLOBAL_DATA_PTR;
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900103 gd->bd->bi_ip_addr = getenv_IPaddr("ipaddr");
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900104 return 0;
105}
Nobuhiro Iwamatsu9e23fe02008-07-08 12:03:24 +0900106#endif
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900107
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900108typedef int (init_fnc_t) (void);
109
110init_fnc_t *init_sequence[] =
111{
112 cpu_init, /* basic cpu dependent setup */
113 board_init, /* basic board dependent setup */
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900114 interrupt_init, /* set up exceptions */
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900115 env_init, /* event init */
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900116 serial_init, /* SCIF init */
117 INIT_FUNC_WATCHDOG_INIT /* watchdog init */
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900118 console_init_f,
119 display_options,
120 checkcpu,
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900121 checkboard, /* Check support board */
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900122 dram_init, /* SDRAM init */
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900123 timer_init, /* SuperH Timer (TCNT0 only) init */
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900124 sh_mem_env_init,
Stefan Roesec790b042009-05-11 15:50:12 +0200125 sh_flash_init, /* Flash memory(NOR) init*/
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900126 INIT_FUNC_NAND_INIT/* Flash memory (NAND) init */
127 INIT_FUNC_PCI_INIT /* PCI init */
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200128 stdio_init,
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900129 console_init_r,
130 interrupt_init,
131#ifdef BOARD_LATE_INIT
132 board_late_init,
133#endif
134#if defined(CONFIG_CMD_NET)
135 sh_net_init, /* SH specific eth init */
136#endif
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900137 NULL /* Terminate this list */
138};
139
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900140void sh_generic_init(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900141{
142 DECLARE_GLOBAL_DATA_PTR;
143
144 bd_t *bd;
145 init_fnc_t **init_fnc_ptr;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900146
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200147 memset(gd, 0, CONFIG_SYS_GBL_DATA_SIZE);
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900148
149 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
150
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900151 gd->bd = (bd_t *)(gd + 1); /* At end of global data */
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900152 gd->baudrate = CONFIG_BAUDRATE;
153
154 gd->cpu_clk = CONFIG_SYS_CLK_FREQ;
155
156 bd = gd->bd;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200157 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
158 bd->bi_memsize = CONFIG_SYS_SDRAM_SIZE;
159 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
160#if defined(CONFIG_SYS_SRAM_BASE) && defined(CONFIG_SYS_SRAM_SIZE)
161 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE;
162 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900163#endif
164 bd->bi_baudrate = CONFIG_BAUDRATE;
165
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900166 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
167 WATCHDOG_RESET();
168 if ((*init_fnc_ptr) () != 0)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900169 hang();
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900170 }
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900171
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900172#ifdef CONFIG_WATCHDOG
173 /* disable watchdog if environment is set */
174 {
175 char *s = getenv("watchdog");
176 if (s != NULL)
177 if (strncmp(s, "off", 3) == 0)
178 WATCHDOG_DISABLE();
179 }
180#endif /* CONFIG_WATCHDOG*/
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900181
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900182
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +0200183#ifdef CONFIG_BITBANGMII
184 bb_miiphy_init();
185#endif
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900186#if defined(CONFIG_CMD_NET)
187 {
188 char *s;
189 puts("Net: ");
190 eth_initialize(gd->bd);
191
192 s = getenv("bootfile");
193 if (s != NULL)
194 copy_filename(BootFile, s, sizeof(BootFile));
Nobuhiro Iwamatsub02bad12007-09-23 02:12:30 +0900195 }
196#endif /* CONFIG_CMD_NET */
197
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900198 while (1) {
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900199 WATCHDOG_RESET();
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900200 main_loop();
201 }
202}
203
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900204/***********************************************************************/
205
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900206void hang(void)
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900207{
Nobuhiro Iwamatsu4a065ab2008-09-18 19:04:26 +0900208 puts("Board ERROR\n");
209 for (;;)
210 ;
Nobuhiro Iwamatsu0b135cf2007-05-13 20:58:00 +0900211}