2 * Copyright (C) 2007,2008
3 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
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.
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.
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,
24 #include <stdio_dev.h>
25 #include <timestamp.h>
29 #include <environment.h>
31 #ifdef CONFIG_BITBANGMII
35 extern void malloc_bin_reloc (void);
36 extern int cpu_init(void);
37 extern int board_init(void);
38 extern int dram_init(void);
39 extern int timer_init(void);
41 const char version_string[] = U_BOOT_VERSION" ("U_BOOT_DATE" - "U_BOOT_TIME")";
43 unsigned long monitor_flash_len = CONFIG_SYS_MONITOR_LEN;
45 static int sh_flash_init(void)
47 DECLARE_GLOBAL_DATA_PTR;
49 gd->bd->bi_flashsize = flash_init();
50 printf("FLASH: %ldMB\n", gd->bd->bi_flashsize / (1024*1024));
55 #if defined(CONFIG_CMD_NAND)
57 # define INIT_FUNC_NAND_INIT nand_init,
59 # define INIT_FUNC_NAND_INIT
60 #endif /* CONFIG_CMD_NAND */
62 #if defined(CONFIG_WATCHDOG)
63 extern int watchdog_init(void);
64 extern int watchdog_disable(void);
65 # define INIT_FUNC_WATCHDOG_INIT watchdog_init,
66 # define WATCHDOG_DISABLE watchdog_disable
68 # define INIT_FUNC_WATCHDOG_INIT
69 # define WATCHDOG_DISABLE
70 #endif /* CONFIG_WATCHDOG */
72 #if defined(CONFIG_CMD_IDE)
74 # define INIT_FUNC_IDE_INIT ide_init,
76 # define INIT_FUNC_IDE_INIT
77 #endif /* CONFIG_CMD_IDE */
79 #if defined(CONFIG_PCI)
81 static int sh_pci_init(void)
86 # define INIT_FUNC_PCI_INIT sh_pci_init,
88 # define INIT_FUNC_PCI_INIT
89 #endif /* CONFIG_PCI */
91 static int sh_mem_env_init(void)
93 mem_malloc_init(TEXT_BASE - CONFIG_SYS_GBL_DATA_SIZE -
94 CONFIG_SYS_MALLOC_LEN, CONFIG_SYS_MALLOC_LEN - 16);
101 #if defined(CONFIG_CMD_NET)
102 static int sh_net_init(void)
104 DECLARE_GLOBAL_DATA_PTR;
105 gd->bd->bi_ip_addr = getenv_IPaddr("ipaddr");
110 typedef int (init_fnc_t) (void);
112 init_fnc_t *init_sequence[] =
114 cpu_init, /* basic cpu dependent setup */
115 board_init, /* basic board dependent setup */
116 interrupt_init, /* set up exceptions */
117 env_init, /* event init */
118 serial_init, /* SCIF init */
119 INIT_FUNC_WATCHDOG_INIT /* watchdog init */
123 checkboard, /* Check support board */
124 dram_init, /* SDRAM init */
125 timer_init, /* SuperH Timer (TCNT0 only) init */
127 sh_flash_init, /* Flash memory(NOR) init*/
128 INIT_FUNC_NAND_INIT/* Flash memory (NAND) init */
129 INIT_FUNC_PCI_INIT /* PCI init */
133 #ifdef BOARD_LATE_INIT
136 #if defined(CONFIG_CMD_NET)
137 sh_net_init, /* SH specific eth init */
139 NULL /* Terminate this list */
142 void sh_generic_init(void)
144 DECLARE_GLOBAL_DATA_PTR;
147 init_fnc_t **init_fnc_ptr;
149 memset(gd, 0, CONFIG_SYS_GBL_DATA_SIZE);
151 gd->flags |= GD_FLG_RELOC; /* tell others: relocation done */
153 gd->bd = (bd_t *)(gd + 1); /* At end of global data */
154 gd->baudrate = CONFIG_BAUDRATE;
156 gd->cpu_clk = CONFIG_SYS_CLK_FREQ;
159 bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
160 bd->bi_memsize = CONFIG_SYS_SDRAM_SIZE;
161 bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
162 #if defined(CONFIG_SYS_SRAM_BASE) && defined(CONFIG_SYS_SRAM_SIZE)
163 bd->bi_sramstart = CONFIG_SYS_SRAM_BASE;
164 bd->bi_sramsize = CONFIG_SYS_SRAM_SIZE;
166 bd->bi_baudrate = CONFIG_BAUDRATE;
168 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
170 if ((*init_fnc_ptr) () != 0)
174 #ifdef CONFIG_WATCHDOG
175 /* disable watchdog if environment is set */
177 char *s = getenv("watchdog");
179 if (strncmp(s, "off", 3) == 0)
182 #endif /* CONFIG_WATCHDOG*/
185 #ifdef CONFIG_BITBANGMII
188 #if defined(CONFIG_CMD_NET)
192 eth_initialize(gd->bd);
194 s = getenv("bootfile");
196 copy_filename(BootFile, s, sizeof(BootFile));
198 #endif /* CONFIG_CMD_NET */
206 /***********************************************************************/
210 puts("Board ERROR\n");