blob: ac04da08a5c1d3494b0d2041749cbf4eff6da7f9 [file] [log] [blame]
wdenkabf7a7c2003-12-08 01:34:36 +00001/*
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
wdenke65527f2004-02-12 00:47:09 +000015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenkabf7a7c2003-12-08 01:34:36 +000016 * 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
wdenke65527f2004-02-12 00:47:09 +000020 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
wdenkabf7a7c2003-12-08 01:34:36 +000021 *
22 */
23
24#include <common.h>
25#include <command.h>
wdenkabf7a7c2003-12-08 01:34:36 +000026#include <image.h>
27#include <zlib.h>
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050028#include <bzlib.h>
TsiChungLiew890adcb2007-10-25 17:14:00 -050029#include <watchdog.h>
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050030#include <environment.h>
wdenkabf7a7c2003-12-08 01:34:36 +000031#include <asm/byteorder.h>
Marian Balakowicz2efc2642008-01-31 13:58:13 +010032#ifdef CONFIG_SHOW_BOOT_PROGRESS
33# include <status_led.h>
34#endif
wdenkabf7a7c2003-12-08 01:34:36 +000035
Wolfgang Denk6405a152006-03-31 18:32:53 +020036DECLARE_GLOBAL_DATA_PTR;
37
wdenkabf7a7c2003-12-08 01:34:36 +000038#define PHYSADDR(x) x
39
wdenke65527f2004-02-12 00:47:09 +000040#define LINUX_MAX_ENVS 256
41#define LINUX_MAX_ARGS 256
wdenkabf7a7c2003-12-08 01:34:36 +000042
Marian Balakowicz9c701e82008-01-31 13:57:17 +010043static ulong get_sp (void);
Marian Balakowicz2efc2642008-01-31 13:58:13 +010044static void set_clocks_in_mhz (bd_t *kbd);
Marian Balakowicz9c701e82008-01-31 13:57:17 +010045
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050046void do_bootm_linux(cmd_tbl_t * cmdtp, int flag,
47 int argc, char *argv[],
Marian Balakowiczb4a12a92008-01-08 18:12:17 +010048 image_header_t *hdr, int verify)
wdenkabf7a7c2003-12-08 01:34:36 +000049{
Marian Balakowicz2efc2642008-01-31 13:58:13 +010050 ulong sp, sp_limit, alloc_current;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +010051
Marian Balakowicz95418502008-01-31 13:55:39 +010052 ulong rd_data_start, rd_data_end, rd_len;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +010053 ulong initrd_start, initrd_end;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +010054
55 ulong cmd_start, cmd_end;
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050056 bd_t *kbd;
57 void (*kernel) (bd_t *, ulong, ulong, ulong, ulong);
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050058
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050059 /*
60 * Booting a (Linux) kernel image
61 *
62 * Allocate space for command line and board info - the
63 * address should be as high as possible within the reach of
64 * the kernel (see CFG_BOOTMAPSZ settings), but in unused
65 * memory, which means far enough below the current stack
66 * pointer.
67 */
Marian Balakowicz2efc2642008-01-31 13:58:13 +010068 sp = get_sp();
69 debug ("## Current stack ends at 0x%08lx ", sp);
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050070
Marian Balakowicz2efc2642008-01-31 13:58:13 +010071 alloc_current = sp_limit = get_boot_sp_limit(sp);
72 debug ("=> set upper limit to 0x%08lx\n", sp_limit);
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050073
Marian Balakowicz2efc2642008-01-31 13:58:13 +010074 /* allocate space and init command line */
75 alloc_current = get_boot_cmdline (alloc_current, &cmd_start, &cmd_end);
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050076
Marian Balakowicz2efc2642008-01-31 13:58:13 +010077 /* allocate space for kernel copy of board info */
78 alloc_current = get_boot_kbd (alloc_current, &kbd);
79 set_clocks_in_mhz(kbd);
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050080
Marian Balakowicz9c701e82008-01-31 13:57:17 +010081 /* find kernel */
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050082 kernel =
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010083 (void (*)(bd_t *, ulong, ulong, ulong, ulong))image_get_ep (hdr);
wdenkabf7a7c2003-12-08 01:34:36 +000084
Marian Balakowicz9c701e82008-01-31 13:57:17 +010085 /* find ramdisk */
Marian Balakowicz95418502008-01-31 13:55:39 +010086 get_ramdisk (cmdtp, flag, argc, argv, hdr, verify,
87 IH_ARCH_M68K, &rd_data_start, &rd_data_end);
wdenkabf7a7c2003-12-08 01:34:36 +000088
Marian Balakowicz9c701e82008-01-31 13:57:17 +010089 rd_len = rd_data_end - rd_data_start;
Marian Balakowicz2efc2642008-01-31 13:58:13 +010090 alloc_current = ramdisk_high (alloc_current, rd_data_start, rd_len,
91 kbd, sp_limit, get_sp (),
Marian Balakowicz9c701e82008-01-31 13:57:17 +010092 &initrd_start, &initrd_end);
wdenkabf7a7c2003-12-08 01:34:36 +000093
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050094 debug("## Transferring control to Linux (at address %08lx) ...\n",
95 (ulong) kernel);
wdenkabf7a7c2003-12-08 01:34:36 +000096
Marian Balakowicz2efc2642008-01-31 13:58:13 +010097 show_boot_progress (15);
wdenkabf7a7c2003-12-08 01:34:36 +000098
TsiChungLiewfc3ca3b2007-08-16 15:05:11 -050099 /*
100 * Linux Kernel Parameters (passing board info data):
101 * r3: ptr to board info data
102 * r4: initrd_start or 0 if no initrd
103 * r5: initrd_end - unused if r4 is 0
104 * r6: Start of command line string
105 * r7: End of command line string
106 */
107 (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end);
108 /* does not return */
wdenkabf7a7c2003-12-08 01:34:36 +0000109}
Marian Balakowicz9c701e82008-01-31 13:57:17 +0100110
111static ulong get_sp (void)
112{
113 ulong sp;
114
115 asm("movel %%a7, %%d0\n"
116 "movel %%d0, %0\n": "=d"(sp): :"%d0");
117
118 return sp;
119}
Marian Balakowicz2efc2642008-01-31 13:58:13 +0100120
121static void set_clocks_in_mhz (bd_t *kbd)
122{
123 char *s;
124
125 if ((s = getenv("clocks_in_mhz")) != NULL) {
126 /* convert all clock information to MHz */
127 kbd->bi_intfreq /= 1000000L;
128 kbd->bi_busfreq /= 1000000L;
129 }
130}