]> git.ipfire.org Git - people/ms/u-boot.git/blame_incremental - lib_arm/bootm.c
[new uImage] Update naming convention for bootm/uImage related code
[people/ms/u-boot.git] / lib_arm / bootm.c
... / ...
CommitLineData
1/*
2 * (C) Copyright 2002
3 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4 * Marius Groeger <mgroeger@sysgo.de>
5 *
6 * Copyright (C) 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
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 <asm/byteorder.h>
29
30DECLARE_GLOBAL_DATA_PTR;
31
32#if defined (CONFIG_SETUP_MEMORY_TAGS) || \
33 defined (CONFIG_CMDLINE_TAG) || \
34 defined (CONFIG_INITRD_TAG) || \
35 defined (CONFIG_SERIAL_TAG) || \
36 defined (CONFIG_REVISION_TAG) || \
37 defined (CONFIG_VFD) || \
38 defined (CONFIG_LCD)
39static void setup_start_tag (bd_t *bd);
40
41# ifdef CONFIG_SETUP_MEMORY_TAGS
42static void setup_memory_tags (bd_t *bd);
43# endif
44static void setup_commandline_tag (bd_t *bd, char *commandline);
45
46#if 0
47static void setup_ramdisk_tag (bd_t *bd);
48#endif
49# ifdef CONFIG_INITRD_TAG
50static void setup_initrd_tag (bd_t *bd, ulong initrd_start,
51 ulong initrd_end);
52# endif
53static void setup_end_tag (bd_t *bd);
54
55# if defined (CONFIG_VFD) || defined (CONFIG_LCD)
56static void setup_videolfb_tag (gd_t *gd);
57# endif
58
59static struct tag *params;
60#endif /* CONFIG_SETUP_MEMORY_TAGS || CONFIG_CMDLINE_TAG || CONFIG_INITRD_TAG */
61
62extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
63
64void do_bootm_linux (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
65 bootm_headers_t *images)
66{
67 ulong initrd_start, initrd_end;
68 ulong ep = 0;
69 bd_t *bd = gd->bd;
70 char *s;
71 int machid = bd->bi_arch_number;
72 void (*theKernel)(int zero, int arch, uint params);
73
74#ifdef CONFIG_CMDLINE_TAG
75 char *commandline = getenv ("bootargs");
76#endif
77
78 /* find kernel entry point */
79 if (images->legacy_hdr_valid) {
80 ep = image_get_ep (images->legacy_hdr_os);
81#if defined(CONFIG_FIT)
82 } else if (images->fit_uname_os) {
83 fit_unsupported_reset ("ARM linux bootm");
84 do_reset (cmdtp, flag, argc, argv);
85#endif
86 } else {
87 puts ("Could not find kernel entry point!\n");
88 do_reset (cmdtp, flag, argc, argv);
89 }
90 theKernel = (void (*)(int, int, uint))ep;
91
92 s = getenv ("machid");
93 if (s) {
94 machid = simple_strtoul (s, NULL, 16);
95 printf ("Using machid 0x%x from environment\n", machid);
96 }
97
98 boot_get_ramdisk (cmdtp, flag, argc, argv, images,
99 IH_ARCH_ARM, &initrd_start, &initrd_end);
100
101 show_boot_progress (15);
102
103 debug ("## Transferring control to Linux (at address %08lx) ...\n",
104 (ulong) theKernel);
105
106#if defined (CONFIG_SETUP_MEMORY_TAGS) || \
107 defined (CONFIG_CMDLINE_TAG) || \
108 defined (CONFIG_INITRD_TAG) || \
109 defined (CONFIG_SERIAL_TAG) || \
110 defined (CONFIG_REVISION_TAG) || \
111 defined (CONFIG_LCD) || \
112 defined (CONFIG_VFD)
113 setup_start_tag (bd);
114#ifdef CONFIG_SERIAL_TAG
115 setup_serial_tag (&params);
116#endif
117#ifdef CONFIG_REVISION_TAG
118 setup_revision_tag (&params);
119#endif
120#ifdef CONFIG_SETUP_MEMORY_TAGS
121 setup_memory_tags (bd);
122#endif
123#ifdef CONFIG_CMDLINE_TAG
124 setup_commandline_tag (bd, commandline);
125#endif
126#ifdef CONFIG_INITRD_TAG
127 if (initrd_start && initrd_end)
128 setup_initrd_tag (bd, initrd_start, initrd_end);
129#endif
130#if defined (CONFIG_VFD) || defined (CONFIG_LCD)
131 setup_videolfb_tag ((gd_t *) gd);
132#endif
133 setup_end_tag (bd);
134#endif
135
136 if (!images->autostart)
137 return ;
138
139 /* we assume that the kernel is in place */
140 printf ("\nStarting kernel ...\n\n");
141
142#ifdef CONFIG_USB_DEVICE
143 {
144 extern void udc_disconnect (void);
145 udc_disconnect ();
146 }
147#endif
148
149 cleanup_before_linux ();
150
151 theKernel (0, machid, bd->bi_boot_params);
152}
153
154
155#if defined (CONFIG_SETUP_MEMORY_TAGS) || \
156 defined (CONFIG_CMDLINE_TAG) || \
157 defined (CONFIG_INITRD_TAG) || \
158 defined (CONFIG_SERIAL_TAG) || \
159 defined (CONFIG_REVISION_TAG) || \
160 defined (CONFIG_LCD) || \
161 defined (CONFIG_VFD)
162static void setup_start_tag (bd_t *bd)
163{
164 params = (struct tag *) bd->bi_boot_params;
165
166 params->hdr.tag = ATAG_CORE;
167 params->hdr.size = tag_size (tag_core);
168
169 params->u.core.flags = 0;
170 params->u.core.pagesize = 0;
171 params->u.core.rootdev = 0;
172
173 params = tag_next (params);
174}
175
176
177#ifdef CONFIG_SETUP_MEMORY_TAGS
178static void setup_memory_tags (bd_t *bd)
179{
180 int i;
181
182 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
183 params->hdr.tag = ATAG_MEM;
184 params->hdr.size = tag_size (tag_mem32);
185
186 params->u.mem.start = bd->bi_dram[i].start;
187 params->u.mem.size = bd->bi_dram[i].size;
188
189 params = tag_next (params);
190 }
191}
192#endif /* CONFIG_SETUP_MEMORY_TAGS */
193
194
195static void setup_commandline_tag (bd_t *bd, char *commandline)
196{
197 char *p;
198
199 if (!commandline)
200 return;
201
202 /* eat leading white space */
203 for (p = commandline; *p == ' '; p++);
204
205 /* skip non-existent command lines so the kernel will still
206 * use its default command line.
207 */
208 if (*p == '\0')
209 return;
210
211 params->hdr.tag = ATAG_CMDLINE;
212 params->hdr.size =
213 (sizeof (struct tag_header) + strlen (p) + 1 + 4) >> 2;
214
215 strcpy (params->u.cmdline.cmdline, p);
216
217 params = tag_next (params);
218}
219
220
221#ifdef CONFIG_INITRD_TAG
222static void setup_initrd_tag (bd_t *bd, ulong initrd_start, ulong initrd_end)
223{
224 /* an ATAG_INITRD node tells the kernel where the compressed
225 * ramdisk can be found. ATAG_RDIMG is a better name, actually.
226 */
227 params->hdr.tag = ATAG_INITRD2;
228 params->hdr.size = tag_size (tag_initrd);
229
230 params->u.initrd.start = initrd_start;
231 params->u.initrd.size = initrd_end - initrd_start;
232
233 params = tag_next (params);
234}
235#endif /* CONFIG_INITRD_TAG */
236
237
238#if defined (CONFIG_VFD) || defined (CONFIG_LCD)
239extern ulong calc_fbsize (void);
240static void setup_videolfb_tag (gd_t *gd)
241{
242 /* An ATAG_VIDEOLFB node tells the kernel where and how large
243 * the framebuffer for video was allocated (among other things).
244 * Note that a _physical_ address is passed !
245 *
246 * We only use it to pass the address and size, the other entries
247 * in the tag_videolfb are not of interest.
248 */
249 params->hdr.tag = ATAG_VIDEOLFB;
250 params->hdr.size = tag_size (tag_videolfb);
251
252 params->u.videolfb.lfb_base = (u32) gd->fb_base;
253 /* Fb size is calculated according to parameters for our panel
254 */
255 params->u.videolfb.lfb_size = calc_fbsize();
256
257 params = tag_next (params);
258}
259#endif /* CONFIG_VFD || CONFIG_LCD */
260
261#ifdef CONFIG_SERIAL_TAG
262void setup_serial_tag (struct tag **tmp)
263{
264 struct tag *params = *tmp;
265 struct tag_serialnr serialnr;
266 void get_board_serial(struct tag_serialnr *serialnr);
267
268 get_board_serial(&serialnr);
269 params->hdr.tag = ATAG_SERIAL;
270 params->hdr.size = tag_size (tag_serialnr);
271 params->u.serialnr.low = serialnr.low;
272 params->u.serialnr.high= serialnr.high;
273 params = tag_next (params);
274 *tmp = params;
275}
276#endif
277
278#ifdef CONFIG_REVISION_TAG
279void setup_revision_tag(struct tag **in_params)
280{
281 u32 rev = 0;
282 u32 get_board_rev(void);
283
284 rev = get_board_rev();
285 params->hdr.tag = ATAG_REVISION;
286 params->hdr.size = tag_size (tag_revision);
287 params->u.revision.rev = rev;
288 params = tag_next (params);
289}
290#endif /* CONFIG_REVISION_TAG */
291
292
293static void setup_end_tag (bd_t *bd)
294{
295 params->hdr.tag = ATAG_NONE;
296 params->hdr.size = 0;
297}
298
299#endif /* CONFIG_SETUP_MEMORY_TAGS || CONFIG_CMDLINE_TAG || CONFIG_INITRD_TAG */