]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - lib_m68k/bootm.c
b45203d1706f86de4bb91c2981369cfada8b1da3
[karo-tx-uboot.git] / lib_m68k / bootm.c
1 /*
2  * (C) Copyright 2003
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  *
22  */
23
24 #include <common.h>
25 #include <command.h>
26 #include <image.h>
27 #include <zlib.h>
28 #include <bzlib.h>
29 #include <watchdog.h>
30 #include <environment.h>
31 #include <asm/byteorder.h>
32 #ifdef CONFIG_SHOW_BOOT_PROGRESS
33 # include <status_led.h>
34 #endif
35
36 DECLARE_GLOBAL_DATA_PTR;
37
38 #define PHYSADDR(x) x
39
40 #define LINUX_MAX_ENVS          256
41 #define LINUX_MAX_ARGS          256
42
43 static ulong get_sp (void);
44 static void set_clocks_in_mhz (bd_t *kbd);
45 extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
46
47 void do_bootm_linux(cmd_tbl_t * cmdtp, int flag,
48                     int argc, char *argv[],
49                     bootm_headers_t *images)
50 {
51         ulong sp;
52
53         ulong rd_data_start, rd_data_end, rd_len;
54         ulong initrd_start, initrd_end;
55         int ret;
56
57         ulong cmd_start, cmd_end;
58         ulong bootmap_base;
59         bd_t  *kbd;
60         ulong ep = 0;
61         void  (*kernel) (bd_t *, ulong, ulong, ulong, ulong);
62         struct lmb *lmb = images->lmb;
63
64         bootmap_base = getenv_bootm_low();
65
66         /*
67          * Booting a (Linux) kernel image
68          *
69          * Allocate space for command line and board info - the
70          * address should be as high as possible within the reach of
71          * the kernel (see CFG_BOOTMAPSZ settings), but in unused
72          * memory, which means far enough below the current stack
73          * pointer.
74          */
75         sp = get_sp();
76         debug ("## Current stack ends at 0x%08lx ", sp);
77
78         /* adjust sp by 1K to be safe */
79         sp -= 1024;
80         lmb_reserve(lmb, sp, (CFG_SDRAM_BASE + gd->ram_size - sp));
81
82         /* allocate space and init command line */
83         ret = boot_get_cmdline (lmb, &cmd_start, &cmd_end, bootmap_base);
84         if (ret) {
85                 puts("ERROR with allocation of cmdline\n");
86                 goto error;
87         }
88
89         /* allocate space for kernel copy of board info */
90         ret = boot_get_kbd (lmb, &kbd, bootmap_base);
91         if (ret) {
92                 puts("ERROR with allocation of kernel bd\n");
93                 goto error;
94         }
95         set_clocks_in_mhz(kbd);
96
97         /* find kernel entry point */
98         if (images->legacy_hdr_valid) {
99                 ep = image_get_ep (&images->legacy_hdr_os_copy);
100 #if defined(CONFIG_FIT)
101         } else if (images->fit_uname_os) {
102                 ret = fit_image_get_entry (images->fit_hdr_os,
103                                 images->fit_noffset_os, &ep);
104                 if (ret) {
105                         puts ("Can't get entry point property!\n");
106                         goto error;
107                 }
108 #endif
109         } else {
110                 puts ("Could not find kernel entry point!\n");
111                 goto error;
112         }
113         kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong))ep;
114
115         /* find ramdisk */
116         ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_M68K,
117                         &rd_data_start, &rd_data_end);
118         if (ret)
119                 goto error;
120
121         rd_len = rd_data_end - rd_data_start;
122         ret = boot_ramdisk_high (lmb, rd_data_start, rd_len,
123                         &initrd_start, &initrd_end);
124         if (ret)
125                 goto error;
126
127         debug("## Transferring control to Linux (at address %08lx) ...\n",
128               (ulong) kernel);
129
130         show_boot_progress (15);
131
132         /*
133          * Linux Kernel Parameters (passing board info data):
134          *   r3: ptr to board info data
135          *   r4: initrd_start or 0 if no initrd
136          *   r5: initrd_end - unused if r4 is 0
137          *   r6: Start of command line string
138          *   r7: End   of command line string
139          */
140         (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end);
141         /* does not return */
142         return ;
143
144 error:
145         do_reset (cmdtp, flag, argc, argv);
146         return ;
147 }
148
149 static ulong get_sp (void)
150 {
151         ulong sp;
152
153         asm("movel %%a7, %%d0\n"
154             "movel %%d0, %0\n": "=d"(sp): :"%d0");
155
156         return sp;
157 }
158
159 static void set_clocks_in_mhz (bd_t *kbd)
160 {
161         char *s;
162
163         if ((s = getenv("clocks_in_mhz")) != NULL) {
164                 /* convert all clock information to MHz */
165                 kbd->bi_intfreq /= 1000000L;
166                 kbd->bi_busfreq /= 1000000L;
167         }
168 }