3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
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.
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.
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
30 #include <environment.h>
31 #include <asm/byteorder.h>
32 #ifdef CONFIG_SHOW_BOOT_PROGRESS
33 # include <status_led.h>
36 DECLARE_GLOBAL_DATA_PTR;
40 #define LINUX_MAX_ENVS 256
41 #define LINUX_MAX_ARGS 256
43 static ulong get_sp (void);
44 static void set_clocks_in_mhz (bd_t *kbd);
46 int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
51 ulong initrd_start, initrd_end;
54 ulong cmd_start, cmd_end;
57 void (*kernel) (bd_t *, ulong, ulong, ulong, ulong);
58 struct lmb *lmb = &images->lmb;
60 bootmap_base = getenv_bootm_low();
63 * Booting a (Linux) kernel image
65 * Allocate space for command line and board info - the
66 * address should be as high as possible within the reach of
67 * the kernel (see CFG_BOOTMAPSZ settings), but in unused
68 * memory, which means far enough below the current stack
72 debug ("## Current stack ends at 0x%08lx ", sp);
74 /* adjust sp by 1K to be safe */
76 lmb_reserve(lmb, sp, (CFG_SDRAM_BASE + gd->ram_size - sp));
78 /* allocate space and init command line */
79 ret = boot_get_cmdline (lmb, &cmd_start, &cmd_end, bootmap_base);
81 puts("ERROR with allocation of cmdline\n");
85 /* allocate space for kernel copy of board info */
86 ret = boot_get_kbd (lmb, &kbd, bootmap_base);
88 puts("ERROR with allocation of kernel bd\n");
91 set_clocks_in_mhz(kbd);
93 kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong))images->ep;
95 rd_len = images->rd_end - images->rd_start;
96 ret = boot_ramdisk_high (lmb, images->rd_start, rd_len,
97 &initrd_start, &initrd_end);
101 debug("## Transferring control to Linux (at address %08lx) ...\n",
104 show_boot_progress (15);
107 * Linux Kernel Parameters (passing board info data):
108 * r3: ptr to board info data
109 * r4: initrd_start or 0 if no initrd
110 * r5: initrd_end - unused if r4 is 0
111 * r6: Start of command line string
112 * r7: End of command line string
114 (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end);
115 /* does not return */
120 static ulong get_sp (void)
124 asm("movel %%a7, %%d0\n"
125 "movel %%d0, %0\n": "=d"(sp): :"%d0");
130 static void set_clocks_in_mhz (bd_t *kbd)
134 if ((s = getenv("clocks_in_mhz")) != NULL) {
135 /* convert all clock information to MHz */
136 kbd->bi_intfreq /= 1000000L;
137 kbd->bi_busfreq /= 1000000L;