2006-03-12 01:12:27 +00:00
|
|
|
/*
|
2008-03-30 19:46:13 +00:00
|
|
|
* U-boot - bootm.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)
|
|
|
|
{
|
|
|
|
char *dest = (char *)CMD_LINE_ADDR;
|
|
|
|
char *bootargs = getenv("bootargs");
|
|
|
|
|
|
|
|
if (bootargs == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
strncpy(dest, bootargs, 0x1000);
|
|
|
|
dest[0xfff] = 0;
|
|
|
|
return dest;
|
|
|
|
}
|
2006-03-12 01:12:27 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
#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
|
|
|
|
2006-03-12 01:12:27 +00:00
|
|
|
printf("Starting Kernel at = %x\n", appl);
|
|
|
|
cmdline = make_command_line();
|
2008-03-30 19:46:13 +00:00
|
|
|
icache_disable();
|
|
|
|
dcache_disable();
|
2007-03-09 05:38:44 +00:00
|
|
|
(*appl) (cmdline);
|
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
|
|
|
}
|