2006-03-12 01:12:27 +00:00
|
|
|
/*
|
2008-08-07 19:27:52 +00:00
|
|
|
* U-boot - boot.c - misc boot helper functions
|
2006-03-12 01:12:27 +00:00
|
|
|
*
|
2008-03-30 19:46:13 +00:00
|
|
|
* Copyright (c) 2005-2008 Analog Devices Inc.
|
2006-03-12 01:12:27 +00:00
|
|
|
*
|
|
|
|
* (C) Copyright 2000-2004
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*
|
2008-03-30 19:46:13 +00:00
|
|
|
* Licensed under the GPL-2 or later.
|
2006-03-12 01:12:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
|
|
|
#include <image.h>
|
2008-03-30 19:46:13 +00:00
|
|
|
#include <asm/blackfin.h>
|
2006-03-12 01:12:27 +00:00
|
|
|
|
|
|
|
#ifdef SHARED_RESOURCES
|
2007-03-09 05:38:44 +00:00
|
|
|
extern void swap_to(int device_id);
|
2006-03-12 01:12:27 +00:00
|
|
|
#endif
|
|
|
|
|
2008-03-30 19:46:13 +00:00
|
|
|
static char *make_command_line(void)
|
|
|
|
{
|
2008-08-07 19:24:59 +00:00
|
|
|
char *dest = (char *)CONFIG_LINUX_CMDLINE_ADDR;
|
2008-03-30 19:46:13 +00:00
|
|
|
char *bootargs = getenv("bootargs");
|
|
|
|
|
|
|
|
if (bootargs == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2008-08-07 19:24:59 +00:00
|
|
|
strncpy(dest, bootargs, CONFIG_LINUX_CMDLINE_SIZE);
|
|
|
|
dest[CONFIG_LINUX_CMDLINE_SIZE - 1] = 0;
|
2008-03-30 19:46:13 +00:00
|
|
|
return dest;
|
|
|
|
}
|
2006-03-12 01:12:27 +00:00
|
|
|
|
2008-10-12 01:44:00 +00:00
|
|
|
extern ulong bfin_poweron_retx;
|
|
|
|
|
2008-08-15 13:24:45 +00:00
|
|
|
int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
|
2006-03-12 01:12:27 +00:00
|
|
|
{
|
2008-02-04 07:28:09 +00:00
|
|
|
int (*appl) (char *cmdline);
|
|
|
|
char *cmdline;
|
2006-03-12 01:12:27 +00:00
|
|
|
|
bootm: Add subcommands
Add the ability to break the steps of the bootm command into several
subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
This allows us to do things like manipulate device trees before
they are passed to a booting kernel or setup memory for a secondary
core in multicore situations.
Not all OS types support all subcommands (currently only start, loados,
ramdisk, fdt, and go are supported).
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-10-21 22:25:45 +00:00
|
|
|
if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
|
|
|
|
return 1;
|
|
|
|
|
2006-03-12 01:12:27 +00:00
|
|
|
#ifdef SHARED_RESOURCES
|
|
|
|
swap_to(FLASH);
|
|
|
|
#endif
|
|
|
|
|
2008-08-15 13:24:36 +00:00
|
|
|
appl = (int (*)(char *))images->ep;
|
2008-02-04 07:28:09 +00:00
|
|
|
|
2008-10-12 10:02:55 +00:00
|
|
|
printf("Starting Kernel at = %p\n", appl);
|
2006-03-12 01:12:27 +00:00
|
|
|
cmdline = make_command_line();
|
2008-03-30 19:46:13 +00:00
|
|
|
icache_disable();
|
|
|
|
dcache_disable();
|
2008-10-12 01:44:00 +00:00
|
|
|
asm __volatile__(
|
|
|
|
"RETX = %[retx];"
|
|
|
|
"CALL (%0);"
|
|
|
|
:
|
|
|
|
: "p"(appl), "q0"(cmdline), [retx] "d"(bfin_poweron_retx)
|
|
|
|
);
|
2008-03-12 09:33:00 +00:00
|
|
|
/* does not return */
|
2008-09-10 20:48:09 +00:00
|
|
|
|
2008-08-15 13:24:45 +00:00
|
|
|
return 1;
|
2006-03-12 01:12:27 +00:00
|
|
|
}
|