]> Git Repo - J-u-boot.git/blame - lib_m68k/bootm.c
Prepare v1.3.4-rc2: update CHANGELOG
[J-u-boot.git] / lib_m68k / bootm.c
CommitLineData
4e5ca3eb
WD
1/*
2 * (C) Copyright 2003
3 * Wolfgang Denk, DENX Software Engineering, [email protected].
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
bf9e3b38 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4e5ca3eb
WD
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
bf9e3b38 20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
4e5ca3eb
WD
21 *
22 */
23
24#include <common.h>
25#include <command.h>
4e5ca3eb
WD
26#include <image.h>
27#include <zlib.h>
8ae158cd 28#include <bzlib.h>
688e8eb4 29#include <watchdog.h>
8ae158cd 30#include <environment.h>
4e5ca3eb 31#include <asm/byteorder.h>
b6b0fe64
MB
32#ifdef CONFIG_SHOW_BOOT_PROGRESS
33# include <status_led.h>
34#endif
4e5ca3eb 35
d87080b7
WD
36DECLARE_GLOBAL_DATA_PTR;
37
4e5ca3eb
WD
38#define PHYSADDR(x) x
39
bf9e3b38
WD
40#define LINUX_MAX_ENVS 256
41#define LINUX_MAX_ARGS 256
4e5ca3eb 42
ceaed2b1 43static ulong get_sp (void);
b6b0fe64 44static void set_clocks_in_mhz (bd_t *kbd);
d5934ad7 45extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
ceaed2b1 46
8ae158cd
TL
47void do_bootm_linux(cmd_tbl_t * cmdtp, int flag,
48 int argc, char *argv[],
8a5ea3e6 49 bootm_headers_t *images)
4e5ca3eb 50{
e822d7fc 51 ulong sp;
f13e7b2e 52
5ad03eb3 53 ulong rd_data_start, rd_data_end, rd_len;
f13e7b2e 54 ulong initrd_start, initrd_end;
274cea2b 55 int ret;
f13e7b2e
MB
56
57 ulong cmd_start, cmd_end;
d3f2fa0d 58 ulong bootmap_base;
d5934ad7
MB
59 bd_t *kbd;
60 ulong ep = 0;
61 void (*kernel) (bd_t *, ulong, ulong, ulong, ulong);
e822d7fc 62 struct lmb *lmb = images->lmb;
4e5ca3eb 63
d3f2fa0d
KG
64 bootmap_base = getenv_bootm_low();
65
8ae158cd
TL
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 */
b6b0fe64
MB
75 sp = get_sp();
76 debug ("## Current stack ends at 0x%08lx ", sp);
8ae158cd 77
e822d7fc
KG
78 /* adjust sp by 1K to be safe */
79 sp -= 1024;
80 lmb_reserve(lmb, sp, (CFG_SDRAM_BASE + gd->ram_size - sp));
8ae158cd 81
b6b0fe64 82 /* allocate space and init command line */
9a4daad0 83 ret = boot_get_cmdline (lmb, &cmd_start, &cmd_end, bootmap_base);
e822d7fc
KG
84 if (ret) {
85 puts("ERROR with allocation of cmdline\n");
86 goto error;
87 }
8ae158cd 88
b6b0fe64 89 /* allocate space for kernel copy of board info */
9a4daad0 90 ret = boot_get_kbd (lmb, &kbd, bootmap_base);
e822d7fc
KG
91 if (ret) {
92 puts("ERROR with allocation of kernel bd\n");
93 goto error;
94 }
b6b0fe64 95 set_clocks_in_mhz(kbd);
8ae158cd 96
d5934ad7
MB
97 /* find kernel entry point */
98 if (images->legacy_hdr_valid) {
cb1c4896 99 ep = image_get_ep (&images->legacy_hdr_os_copy);
d5934ad7
MB
100#if defined(CONFIG_FIT)
101 } else if (images->fit_uname_os) {
cd7c596e
MB
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 }
d5934ad7
MB
108#endif
109 } else {
110 puts ("Could not find kernel entry point!\n");
cd7c596e 111 goto error;
d5934ad7
MB
112 }
113 kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong))ep;
4e5ca3eb 114
ceaed2b1 115 /* find ramdisk */
d985c849
MB
116 ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_M68K,
117 &rd_data_start, &rd_data_end);
274cea2b
KG
118 if (ret)
119 goto error;
120
ceaed2b1 121 rd_len = rd_data_end - rd_data_start;
9a4daad0
MB
122 ret = boot_ramdisk_high (lmb, rd_data_start, rd_len,
123 &initrd_start, &initrd_end);
e822d7fc
KG
124 if (ret)
125 goto error;
4e5ca3eb 126
8ae158cd
TL
127 debug("## Transferring control to Linux (at address %08lx) ...\n",
128 (ulong) kernel);
4e5ca3eb 129
b6b0fe64 130 show_boot_progress (15);
4e5ca3eb 131
75fa002c
KG
132 if (!images->autostart)
133 return;
8ae158cd
TL
134 /*
135 * Linux Kernel Parameters (passing board info data):
136 * r3: ptr to board info data
137 * r4: initrd_start or 0 if no initrd
138 * r5: initrd_end - unused if r4 is 0
139 * r6: Start of command line string
140 * r7: End of command line string
141 */
142 (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end);
143 /* does not return */
274cea2b
KG
144 return ;
145
146error:
75fa002c
KG
147 if (images->autostart)
148 do_reset (cmdtp, flag, argc, argv);
274cea2b 149 return ;
4e5ca3eb 150}
ceaed2b1
MB
151
152static ulong get_sp (void)
153{
154 ulong sp;
155
156 asm("movel %%a7, %%d0\n"
157 "movel %%d0, %0\n": "=d"(sp): :"%d0");
158
159 return sp;
160}
b6b0fe64
MB
161
162static void set_clocks_in_mhz (bd_t *kbd)
163{
164 char *s;
165
166 if ((s = getenv("clocks_in_mhz")) != NULL) {
167 /* convert all clock information to MHz */
168 kbd->bi_intfreq /= 1000000L;
169 kbd->bi_busfreq /= 1000000L;
170 }
171}
This page took 0.128133 seconds and 4 git commands to generate.