blob: eb021e806ce2a750c7458f74e18703fc22f11279 [file] [log] [blame]
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +09001/*
Nobuhiro Iwamatsu0db11c22010-10-26 20:23:53 +09002 * Copyright (C) 2007, 2008, 2010
Nobuhiro Iwamatsu970dc332007-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-VILLARD2a7a0312009-05-16 12:14:54 +020024#include <stdio_dev.h>
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090025#include <version.h>
Nobuhiro Iwamatsu4c9c1092008-09-18 19:04:26 +090026#include <watchdog.h>
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090027#include <net.h>
Nobuhiro Iwamatsu2ba44e12012-03-21 14:48:34 +090028#include <mmc.h>
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090029#include <environment.h>
30
Luigi 'Comio' Mantellini01db1552009-10-10 12:42:21 +020031#ifdef CONFIG_BITBANGMII
32#include <miiphy.h>
33#endif
34
John Rigby0d21ed02010-12-20 18:27:51 -070035DECLARE_GLOBAL_DATA_PTR;
36
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090037extern int cpu_init(void);
38extern int board_init(void);
39extern int dram_init(void);
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090040extern int timer_init(void);
41
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020042unsigned long monitor_flash_len = CONFIG_SYS_MONITOR_LEN;
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +090043
Nobuhiro Iwamatsue6571672011-03-07 11:21:40 +090044#ifndef CONFIG_SYS_NO_FLASH
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +090045static int sh_flash_init(void)
46{
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +090047 gd->bd->bi_flashsize = flash_init();
Nobuhiro Iwamatsu0db11c22010-10-26 20:23:53 +090048
49 if (gd->bd->bi_flashsize >= (1024 * 1024))
Peter Tyser0b5a2632010-12-28 18:12:05 -060050 printf("Flash: %ldMB\n", gd->bd->bi_flashsize / (1024*1024));
Nobuhiro Iwamatsu0db11c22010-10-26 20:23:53 +090051 else
Peter Tyser0b5a2632010-12-28 18:12:05 -060052 printf("Flash: %ldKB\n", gd->bd->bi_flashsize / 1024);
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +090053
54 return 0;
55}
Nobuhiro Iwamatsue6571672011-03-07 11:21:40 +090056#endif /* CONFIG_SYS_NO_FLASH */
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +090057
58#if defined(CONFIG_CMD_NAND)
Nobuhiro Iwamatsu4c9c1092008-09-18 19:04:26 +090059# include <nand.h>
60# define INIT_FUNC_NAND_INIT nand_init,
61#else
62# define INIT_FUNC_NAND_INIT
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +090063#endif /* CONFIG_CMD_NAND */
64
Nobuhiro Iwamatsu4c9c1092008-09-18 19:04:26 +090065#if defined(CONFIG_WATCHDOG)
66extern int watchdog_init(void);
67extern int watchdog_disable(void);
68# define INIT_FUNC_WATCHDOG_INIT watchdog_init,
69# define WATCHDOG_DISABLE watchdog_disable
70#else
71# define INIT_FUNC_WATCHDOG_INIT
72# define WATCHDOG_DISABLE
73#endif /* CONFIG_WATCHDOG */
74
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +090075#if defined(CONFIG_CMD_IDE)
Nobuhiro Iwamatsu4c9c1092008-09-18 19:04:26 +090076# include <ide.h>
77# define INIT_FUNC_IDE_INIT ide_init,
78#else
79# define INIT_FUNC_IDE_INIT
80#endif /* CONFIG_CMD_IDE */
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +090081
Yusuke Godac77aa172008-03-05 14:30:02 +090082#if defined(CONFIG_PCI)
Nobuhiro Iwamatsu4c9c1092008-09-18 19:04:26 +090083#include <pci.h>
Yusuke Godac77aa172008-03-05 14:30:02 +090084static int sh_pci_init(void)
85{
86 pci_init();
87 return 0;
88}
Nobuhiro Iwamatsu4c9c1092008-09-18 19:04:26 +090089# define INIT_FUNC_PCI_INIT sh_pci_init,
90#else
91# define INIT_FUNC_PCI_INIT
Yusuke Godac77aa172008-03-05 14:30:02 +090092#endif /* CONFIG_PCI */
93
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +090094static int sh_mem_env_init(void)
95{
Wolfgang Denk0191e472010-10-26 14:34:52 +020096 mem_malloc_init(CONFIG_SYS_TEXT_BASE - GENERATED_GBL_DATA_SIZE -
Peter Tysered527702009-08-21 23:05:20 -050097 CONFIG_SYS_MALLOC_LEN, CONFIG_SYS_MALLOC_LEN - 16);
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +090098 env_relocate();
99 jumptable_init();
100 return 0;
101}
102
Nobuhiro Iwamatsu01213252008-07-08 12:03:24 +0900103#if defined(CONFIG_CMD_NET)
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +0900104static int sh_net_init(void)
105{
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +0900106 gd->bd->bi_ip_addr = getenv_IPaddr("ipaddr");
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +0900107 return 0;
108}
Nobuhiro Iwamatsu01213252008-07-08 12:03:24 +0900109#endif
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +0900110
Yoshihiro Shimoda062fbbf2011-07-05 17:18:38 +0900111#if defined(CONFIG_CMD_MMC)
112static int sh_mmc_init(void)
113{
114 puts("MMC: ");
115 mmc_initialize(gd->bd);
116 return 0;
117}
118#endif
119
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900120typedef int (init_fnc_t) (void);
121
122init_fnc_t *init_sequence[] =
123{
124 cpu_init, /* basic cpu dependent setup */
125 board_init, /* basic board dependent setup */
Nobuhiro Iwamatsu4c9c1092008-09-18 19:04:26 +0900126 interrupt_init, /* set up exceptions */
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900127 env_init, /* event init */
Nobuhiro Iwamatsu4c9c1092008-09-18 19:04:26 +0900128 serial_init, /* SCIF init */
129 INIT_FUNC_WATCHDOG_INIT /* watchdog init */
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900130 console_init_f,
131 display_options,
132 checkcpu,
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +0900133 checkboard, /* Check support board */
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900134 dram_init, /* SDRAM init */
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +0900135 timer_init, /* SuperH Timer (TCNT0 only) init */
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +0900136 sh_mem_env_init,
Nobuhiro Iwamatsue6571672011-03-07 11:21:40 +0900137#ifndef CONFIG_SYS_NO_FLASH
138 sh_flash_init, /* Flash memory init*/
139#endif
Nobuhiro Iwamatsu4c9c1092008-09-18 19:04:26 +0900140 INIT_FUNC_NAND_INIT/* Flash memory (NAND) init */
141 INIT_FUNC_PCI_INIT /* PCI init */
Jean-Christophe PLAGNIOL-VILLARD2a7a0312009-05-16 12:14:54 +0200142 stdio_init,
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +0900143 console_init_r,
144 interrupt_init,
Helmut Raigerd5a184b2011-10-20 04:19:47 +0000145#ifdef CONFIG_BOARD_LATE_INIT
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +0900146 board_late_init,
147#endif
148#if defined(CONFIG_CMD_NET)
149 sh_net_init, /* SH specific eth init */
150#endif
Yoshihiro Shimoda062fbbf2011-07-05 17:18:38 +0900151#if defined(CONFIG_CMD_MMC)
152 sh_mmc_init,
153#endif
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900154 NULL /* Terminate this list */
155};
156
Nobuhiro Iwamatsu4c9c1092008-09-18 19:04:26 +0900157void sh_generic_init(void)
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900158{
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900159 bd_t *bd;
160 init_fnc_t **init_fnc_ptr;
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900161
Wolfgang Denk0191e472010-10-26 14:34:52 +0200162 memset(gd, 0, GENERATED_GBL_DATA_SIZE);
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900163
164 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
165
Nobuhiro Iwamatsu4c9c1092008-09-18 19:04:26 +0900166 gd->bd = (bd_t *)(gd + 1); /* At end of global data */
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900167 gd->baudrate = CONFIG_BAUDRATE;
168
169 gd->cpu_clk = CONFIG_SYS_CLK_FREQ;
170
171 bd = gd->bd;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200172 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
173 bd->bi_memsize = CONFIG_SYS_SDRAM_SIZE;
Nobuhiro Iwamatsue6571672011-03-07 11:21:40 +0900174#ifndef CONFIG_SYS_NO_FLASH
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200175 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
Nobuhiro Iwamatsue6571672011-03-07 11:21:40 +0900176#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200177#if defined(CONFIG_SYS_SRAM_BASE) && defined(CONFIG_SYS_SRAM_SIZE)
178 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE;
179 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE;
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900180#endif
181 bd->bi_baudrate = CONFIG_BAUDRATE;
182
Nobuhiro Iwamatsu4c9c1092008-09-18 19:04:26 +0900183 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
184 WATCHDOG_RESET();
185 if ((*init_fnc_ptr) () != 0)
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900186 hang();
Nobuhiro Iwamatsu4c9c1092008-09-18 19:04:26 +0900187 }
188
189#ifdef CONFIG_WATCHDOG
190 /* disable watchdog if environment is set */
191 {
192 char *s = getenv("watchdog");
193 if (s != NULL)
194 if (strncmp(s, "off", 3) == 0)
195 WATCHDOG_DISABLE();
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900196 }
Nobuhiro Iwamatsu4c9c1092008-09-18 19:04:26 +0900197#endif /* CONFIG_WATCHDOG*/
198
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900199
Luigi 'Comio' Mantellini01db1552009-10-10 12:42:21 +0200200#ifdef CONFIG_BITBANGMII
201 bb_miiphy_init();
202#endif
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +0900203#if defined(CONFIG_CMD_NET)
Nobuhiro Iwamatsu4c9c1092008-09-18 19:04:26 +0900204 {
205 char *s;
206 puts("Net: ");
207 eth_initialize(gd->bd);
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +0900208
Nobuhiro Iwamatsu4c9c1092008-09-18 19:04:26 +0900209 s = getenv("bootfile");
210 if (s != NULL)
211 copy_filename(BootFile, s, sizeof(BootFile));
Nobuhiro Iwamatsu547b67f2007-09-23 02:12:30 +0900212 }
213#endif /* CONFIG_CMD_NET */
214
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900215 while (1) {
Nobuhiro Iwamatsu4c9c1092008-09-18 19:04:26 +0900216 WATCHDOG_RESET();
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900217 main_loop();
218 }
219}
220
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900221/***********************************************************************/
222
Nobuhiro Iwamatsu4c9c1092008-09-18 19:04:26 +0900223void hang(void)
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900224{
Nobuhiro Iwamatsu4c9c1092008-09-18 19:04:26 +0900225 puts("Board ERROR\n");
226 for (;;)
227 ;
Nobuhiro Iwamatsu970dc332007-05-13 20:58:00 +0900228}