blob: 195eb9c009782500cd542ddcc9ea833d2205ba6a [file] [log] [blame]
Wolfgang Denk6cb142f2006-03-12 02:12:27 +01001/*
Mike Frysinger9171fc82008-03-30 15:46:13 -04002 * U-boot - bootm.c - misc boot helper functions
Wolfgang Denk6cb142f2006-03-12 02:12:27 +01003 *
Mike Frysinger9171fc82008-03-30 15:46:13 -04004 * Copyright (c) 2005-2008 Analog Devices Inc.
Wolfgang Denk6cb142f2006-03-12 02:12:27 +01005 *
6 * (C) Copyright 2000-2004
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 *
Mike Frysinger9171fc82008-03-30 15:46:13 -04009 * Licensed under the GPL-2 or later.
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010010 */
11
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010012#include <common.h>
13#include <command.h>
14#include <image.h>
Mike Frysinger9171fc82008-03-30 15:46:13 -040015#include <asm/blackfin.h>
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010016
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010017#ifdef SHARED_RESOURCES
Aubrey.Li3f0606a2007-03-09 13:38:44 +080018extern void swap_to(int device_id);
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010019#endif
20
Mike Frysinger9171fc82008-03-30 15:46:13 -040021static char *make_command_line(void)
22{
23 char *dest = (char *)CMD_LINE_ADDR;
24 char *bootargs = getenv("bootargs");
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010025
Mike Frysinger9171fc82008-03-30 15:46:13 -040026 if (bootargs == NULL)
27 return NULL;
28
29 strncpy(dest, bootargs, 0x1000);
30 dest[0xfff] = 0;
31 return dest;
32}
33
Kumar Gala40d7e992008-08-15 08:24:45 -050034int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010035{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010036 int (*appl) (char *cmdline);
37 char *cmdline;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010038
Kumar Gala49c3a862008-10-21 17:25:45 -050039 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
40 return 1;
41
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010042#ifdef SHARED_RESOURCES
43 swap_to(FLASH);
44#endif
45
Kumar Galac160a952008-08-15 08:24:36 -050046 appl = (int (*)(char *))images->ep;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010047
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010048 printf("Starting Kernel at = %x\n", appl);
49 cmdline = make_command_line();
Mike Frysinger9171fc82008-03-30 15:46:13 -040050 icache_disable();
51 dcache_disable();
Aubrey.Li3f0606a2007-03-09 13:38:44 +080052 (*appl) (cmdline);
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010053 /* does not return */
Jean-Christophe PLAGNIOL-VILLARDa3a08c02008-09-10 22:48:09 +020054
Kumar Gala40d7e992008-08-15 08:24:45 -050055 return 1;
Wolfgang Denk6cb142f2006-03-12 02:12:27 +010056}