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