]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - lib_blackfin/bootm.c
54f69a92c79a9e96fb82daedc6228f9c6e575780
[karo-tx-uboot.git] / lib_blackfin / bootm.c
1 /*
2  * U-boot - bootm.c - misc boot helper functions
3  *
4  * Copyright (c) 2005-2008 Analog Devices Inc.
5  *
6  * (C) Copyright 2000-2004
7  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8  *
9  * Licensed under the GPL-2 or later.
10  */
11
12 #include <common.h>
13 #include <command.h>
14 #include <image.h>
15 #include <asm/blackfin.h>
16
17 extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
18
19 #ifdef SHARED_RESOURCES
20 extern void swap_to(int device_id);
21 #endif
22
23 static char *make_command_line(void)
24 {
25         char *dest = (char *)CMD_LINE_ADDR;
26         char *bootargs = getenv("bootargs");
27
28         if (bootargs == NULL)
29                 return NULL;
30
31         strncpy(dest, bootargs, 0x1000);
32         dest[0xfff] = 0;
33         return dest;
34 }
35
36 void do_bootm_linux(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
37                     bootm_headers_t *images)
38 {
39         int     (*appl) (char *cmdline);
40         char    *cmdline;
41         ulong   ep = 0;
42
43 #ifdef SHARED_RESOURCES
44         swap_to(FLASH);
45 #endif
46
47         /* find kernel entry point */
48         if (images->legacy_hdr_valid) {
49                 ep = image_get_ep (&images->legacy_hdr_os_copy);
50 #if defined(CONFIG_FIT)
51         } else if (images->fit_uname_os) {
52                 int ret = fit_image_get_entry (images->fit_hdr_os,
53                                 images->fit_noffset_os, &ep);
54                 if (ret) {
55                         puts ("Can't get entry point property!\n");
56                         goto error;
57                 }
58 #endif
59         } else {
60                 puts ("Could not find kernel entry point!\n");
61                 goto error;
62         }
63         appl = (int (*)(char *))ep;
64
65         printf("Starting Kernel at = %x\n", appl);
66         cmdline = make_command_line();
67         icache_disable();
68         dcache_disable();
69         (*appl) (cmdline);
70         /* does not return */
71         return;
72
73  error:
74         do_reset (cmdtp, flag, argc, argv);
75 }