1
2
3
4
5
6
7
8#include <common.h>
9#include <command.h>
10#include <image.h>
11#include <u-boot/zlib.h>
12#include <bzlib.h>
13#include <watchdog.h>
14#include <environment.h>
15#include <asm/byteorder.h>
16#ifdef CONFIG_SHOW_BOOT_PROGRESS
17# include <status_led.h>
18#endif
19
20DECLARE_GLOBAL_DATA_PTR;
21
22#define PHYSADDR(x) x
23
24#define LINUX_MAX_ENVS 256
25#define LINUX_MAX_ARGS 256
26
27static ulong get_sp (void);
28static void set_clocks_in_mhz (bd_t *kbd);
29
30void arch_lmb_reserve(struct lmb *lmb)
31{
32 ulong sp;
33
34
35
36
37
38
39
40
41
42
43 sp = get_sp();
44 debug ("## Current stack ends at 0x%08lx ", sp);
45
46
47 sp -= 1024;
48 lmb_reserve(lmb, sp, (CONFIG_SYS_SDRAM_BASE + gd->ram_size - sp));
49}
50
51int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *images)
52{
53 int ret;
54 bd_t *kbd;
55 void (*kernel) (bd_t *, ulong, ulong, ulong, ulong);
56 struct lmb *lmb = &images->lmb;
57
58
59
60
61 if (flag & BOOTM_STATE_OS_PREP)
62 return 0;
63
64 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
65 return 1;
66
67
68 ret = boot_get_kbd (lmb, &kbd);
69 if (ret) {
70 puts("ERROR with allocation of kernel bd\n");
71 goto error;
72 }
73 set_clocks_in_mhz(kbd);
74
75 ret = image_setup_linux(images);
76 if (ret)
77 goto error;
78
79 kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong))images->ep;
80
81 debug("## Transferring control to Linux (at address %08lx) ...\n",
82 (ulong) kernel);
83
84 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
85
86
87
88
89
90
91
92
93
94
95 (*kernel)(kbd, images->initrd_start, images->initrd_end,
96 images->cmdline_start, images->cmdline_end);
97
98error:
99 return 1;
100}
101
102static ulong get_sp (void)
103{
104 ulong sp;
105
106 asm("movel %%a7, %%d0\n"
107 "movel %%d0, %0\n": "=d"(sp): :"%d0");
108
109 return sp;
110}
111
112static void set_clocks_in_mhz (bd_t *kbd)
113{
114 char *s;
115
116 if ((s = getenv("clocks_in_mhz")) != NULL) {
117
118 kbd->bi_intfreq /= 1000000L;
119 kbd->bi_busfreq /= 1000000L;
120 }
121}
122