9
0
Fork 0
barebox/common/startup.c

158 lines
3.9 KiB
C
Raw Normal View History

/*
* (C) Copyright 2002-2006
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*
* (C) Copyright 2002
* Sysgo Real-Time Solutions, GmbH <www.elinos.com>
* Marius Groeger <mgroeger@sysgo.de>
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*/
#include <common.h>
2007-07-05 16:01:24 +00:00
#include <init.h>
#include <command.h>
#include <malloc.h>
2007-07-05 16:02:14 +00:00
#include <linux/utsrelease.h>
2007-07-05 16:01:29 +00:00
#include <mem_malloc.h>
#include <debug_ll.h>
#include <fs.h>
#include <linux/stat.h>
2007-09-13 13:22:23 +00:00
#include <environment.h>
2007-07-12 07:54:34 +00:00
#include <reloc.h>
2007-07-05 16:01:23 +00:00
#ifndef CONFIG_IDENT_STRING
#define CONFIG_IDENT_STRING ""
#endif
extern initcall_t __u_boot_initcalls_start[], __u_boot_early_initcalls_end[], __u_boot_initcalls_end[];
2007-07-25 10:25:01 +00:00
const char version_string[] =
2007-07-16 08:30:40 +00:00
"U-Boot " UTS_RELEASE " (" __DATE__ " - " __TIME__ ")"CONFIG_IDENT_STRING;
static int display_banner (void)
{
2007-07-25 10:25:01 +00:00
printf (RELOC("\n\n%s\n\n"), RELOC_VAR(version_string));
debug (RELOC("U-Boot code: %08lX -> %08lX BSS: -> %08lX\n"),
2007-07-25 10:25:01 +00:00
RELOC_VAR(_u_boot_start), RELOC_VAR(_bss_start), RELOC_VAR(_bss_end));
printf(RELOC("Board: " CONFIG_BOARDINFO "\n"));
return 0;
}
2007-07-12 07:54:34 +00:00
#ifdef CONFIG_HAS_EARLY_INIT
2007-07-12 07:54:34 +00:00
#define EARLY_INITDATA (CFG_INIT_RAM_ADDR + CFG_INIT_RAM_SIZE \
- CONFIG_EARLY_INITDATA_SIZE)
void *init_data_ptr = (void *)EARLY_INITDATA;
void early_init (void)
{
/* copy the early initdata segment to early init RAM */
memcpy((void *)EARLY_INITDATA, RELOC(&__early_init_data_begin),
2007-07-25 10:25:01 +00:00
(ulong)&__early_init_data_end - (ulong)&__early_init_data_begin);
2007-07-12 07:54:34 +00:00
early_console_start(RELOC("psc3"), 115200);
display_banner();
}
#endif /* CONFIG_HAS_EARLY_INIT */
2007-07-05 16:01:24 +00:00
2007-09-13 13:22:23 +00:00
#ifdef CONFIG_DEFAULT_ENVIRONMENT
#include <uboot_default_env.h>
static struct device_d default_env_dev = {
.name = "rom",
.id = "defaultenv",
};
static void register_default_env(void)
{
default_env_dev.map_base = (unsigned long)default_environment;
default_env_dev.size = sizeof(default_environment);
register_device(&default_env_dev);
}
#else
static void register_default_env(void)
{
}
#endif
2007-07-05 16:01:29 +00:00
void start_uboot (void)
{
2007-09-13 14:06:02 +00:00
initcall_t *initcall;
int result;
struct stat s;
2007-07-05 16:01:39 +00:00
#ifdef CONFIG_HAS_EARLY_INIT
2007-07-12 07:54:34 +00:00
/* We are running from RAM now, copy early initdata from
* early RAM to RAM
*/
memcpy(&__early_init_data_begin, init_data_ptr,
2007-07-25 10:25:01 +00:00
(ulong)&__early_init_data_end - (ulong)&__early_init_data_begin);
2007-07-12 07:54:34 +00:00
init_data_ptr = &__early_init_data_begin;
#endif /* CONFIG_HAS_EARLY_INIT */
2007-07-12 07:54:34 +00:00
for (initcall = __u_boot_initcalls_start;
initcall < __u_boot_initcalls_end; initcall++) {
PUTHEX_LL(*initcall);
PUTC_LL('\n');
2007-09-13 14:06:02 +00:00
result = (*initcall)();
if (result)
hang();
}
2007-07-05 16:01:24 +00:00
#ifndef CONFIG_HAS_EARLY_INIT
display_banner();
#endif
2007-09-13 13:22:23 +00:00
register_default_env();
mount("none", "ramfs", "/");
mkdir("/dev");
mkdir("/env");
mount("none", "devfs", "/dev");
2007-09-13 13:22:23 +00:00
#ifdef CONFIG_CMD_ENVIRONMENT
2007-09-13 13:22:23 +00:00
if (envfs_load("/dev/env0", "/env")) {
#ifdef CONFIG_DEFAULT_ENVIRONMENT
printf("using default environment\n");
envfs_load("/dev/defaultenv", "/env");
#endif
}
#endif
if (!stat("/env/init", &s)) {
printf("running /env/init\n");
run_command("sh /env/init", 0);
}
2007-09-13 14:06:02 +00:00
/* main_loop() can return to retry autoboot, if so just run it again. */
2007-09-13 13:22:23 +00:00
for (;;)
run_shell();
/* NOTREACHED - no way out of command loop except booting */
}
void hang (void)
{
puts ("### ERROR ### Please RESET the board ###\n");
for (;;);
}