]> git.ipfire.org Git - people/ms/u-boot.git/blame - lib_m68k/bootm.c
davinci: cpu-specific build uses conditional make syntax
[people/ms/u-boot.git] / lib_m68k / bootm.c
CommitLineData
4e5ca3eb
WD
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
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 26#include <image.h>
a31e091a 27#include <u-boot/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);
ceaed2b1 45
76da19df 46void arch_lmb_reserve(struct lmb *lmb)
4e5ca3eb 47{
e822d7fc 48 ulong sp;
f13e7b2e 49
8ae158cd
TL
50 /*
51 * Booting a (Linux) kernel image
52 *
53 * Allocate space for command line and board info - the
54 * address should be as high as possible within the reach of
6d0f6bcf 55 * the kernel (see CONFIG_SYS_BOOTMAPSZ settings), but in unused
8ae158cd
TL
56 * memory, which means far enough below the current stack
57 * pointer.
58 */
b6b0fe64
MB
59 sp = get_sp();
60 debug ("## Current stack ends at 0x%08lx ", sp);
8ae158cd 61
e822d7fc
KG
62 /* adjust sp by 1K to be safe */
63 sp -= 1024;
6d0f6bcf 64 lmb_reserve(lmb, sp, (CONFIG_SYS_SDRAM_BASE + gd->ram_size - sp));
76da19df
KG
65}
66
67int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
68{
69 ulong rd_len;
70 ulong initrd_start, initrd_end;
71 int ret;
72
73 ulong cmd_start, cmd_end;
74 ulong bootmap_base;
75 bd_t *kbd;
76 void (*kernel) (bd_t *, ulong, ulong, ulong, ulong);
77 struct lmb *lmb = &images->lmb;
78
49c3a861
KG
79 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
80 return 1;
81
76da19df 82 bootmap_base = getenv_bootm_low();
8ae158cd 83
b6b0fe64 84 /* allocate space and init command line */
9a4daad0 85 ret = boot_get_cmdline (lmb, &cmd_start, &cmd_end, bootmap_base);
e822d7fc
KG
86 if (ret) {
87 puts("ERROR with allocation of cmdline\n");
88 goto error;
89 }
8ae158cd 90
b6b0fe64 91 /* allocate space for kernel copy of board info */
9a4daad0 92 ret = boot_get_kbd (lmb, &kbd, bootmap_base);
e822d7fc
KG
93 if (ret) {
94 puts("ERROR with allocation of kernel bd\n");
95 goto error;
96 }
b6b0fe64 97 set_clocks_in_mhz(kbd);
8ae158cd 98
c160a954 99 kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong))images->ep;
4e5ca3eb 100
c4f9419c
KG
101 rd_len = images->rd_end - images->rd_start;
102 ret = boot_ramdisk_high (lmb, images->rd_start, rd_len,
9a4daad0 103 &initrd_start, &initrd_end);
e822d7fc
KG
104 if (ret)
105 goto error;
4e5ca3eb 106
8ae158cd
TL
107 debug("## Transferring control to Linux (at address %08lx) ...\n",
108 (ulong) kernel);
4e5ca3eb 109
b6b0fe64 110 show_boot_progress (15);
4e5ca3eb 111
8ae158cd
TL
112 /*
113 * Linux Kernel Parameters (passing board info data):
edff7bcc
RR
114 * sp+00: Ignore, side effect of using jsr to jump to kernel
115 * sp+04: ptr to board info data
116 * sp+08: initrd_start or 0 if no initrd
117 * sp+12: initrd_end - unused if initrd_start is 0
118 * sp+16: Start of command line string
119 * sp+20: End of command line string
8ae158cd
TL
120 */
121 (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end);
122 /* does not return */
274cea2b 123error:
40d7e99d 124 return 1;
4e5ca3eb 125}
ceaed2b1
MB
126
127static ulong get_sp (void)
128{
129 ulong sp;
130
131 asm("movel %%a7, %%d0\n"
132 "movel %%d0, %0\n": "=d"(sp): :"%d0");
133
134 return sp;
135}
b6b0fe64
MB
136
137static void set_clocks_in_mhz (bd_t *kbd)
138{
139 char *s;
140
141 if ((s = getenv("clocks_in_mhz")) != NULL) {
142 /* convert all clock information to MHz */
143 kbd->bi_intfreq /= 1000000L;
144 kbd->bi_busfreq /= 1000000L;
145 }
146}