blob: b4a52fa21d73f021c38ec2d9d5fd1e216aefa0fd [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
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>
wdenk2262cfe2002-11-18 00:14:45 +000026#include <image.h>
27#include <zlib.h>
28#include <asm/byteorder.h>
29#include <asm/zimage.h>
30
wdenk8bde7f72003-06-27 21:31:46 +000031/*cmd_boot.c*/
32extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
wdenk2262cfe2002-11-18 00:14:45 +000033
wdenk2262cfe2002-11-18 00:14:45 +000034void do_bootm_linux(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010035 bootm_headers_t *images)
wdenk2262cfe2002-11-18 00:14:45 +000036{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010037 void *base_ptr;
38 ulong os_data, os_len;
39 ulong initrd_start, initrd_end;
40 ulong ep;
41 image_header_t *hdr;
Marian Balakowiczd985c842008-03-12 10:14:38 +010042 int ret;
wdenk8bde7f72003-06-27 21:31:46 +000043
Marian Balakowiczd985c842008-03-12 10:14:38 +010044 ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_I386,
45 &initrd_start, &initrd_end);
46 if (ret)
47 do_reset (cmdtp, flag, argc, argv);
wdenk8bde7f72003-06-27 21:31:46 +000048
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010049 if (images->legacy_hdr_valid) {
50 hdr = images->legacy_hdr_os;
51 if (image_check_type (hdr, IH_TYPE_MULTI)) {
52 /* if multi-part image, we need to get first subimage */
53 image_multi_getimg (hdr, 0, &os_data, &os_len);
54 } else {
55 /* otherwise get image data */
56 os_data = image_get_data (hdr);
57 os_len = image_get_data_size (hdr);
58 }
59#if defined(CONFIG_FIT)
60 } else if (images->fit_uname_os) {
61 fit_unsupported_reset ("I386 linux bootm");
62 do_reset (cmdtp, flag, argc, argv);
63#endif
Marian Balakowiczf13e7b22008-01-08 18:12:17 +010064 } else {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010065 puts ("Could not find kernel image!\n");
66 do_reset (cmdtp, flag, argc, argv);
Wolfgang Denke6446702006-07-21 11:30:18 +020067 }
68
Marian Balakowiczf13e7b22008-01-08 18:12:17 +010069 base_ptr = load_zimage ((void*)os_data, os_len,
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010070 initrd_start, initrd_end - initrd_start, 0);
wdenk2262cfe2002-11-18 00:14:45 +000071
72 if (NULL == base_ptr) {
73 printf ("## Kernel loading failed ...\n");
74 do_reset(cmdtp, flag, argc, argv);
wdenk8bde7f72003-06-27 21:31:46 +000075
wdenk2262cfe2002-11-18 00:14:45 +000076 }
wdenk8bde7f72003-06-27 21:31:46 +000077
Kumar Gala75fa0022008-02-27 21:51:51 -060078 if (!images->autostart)
79 return ;
80
wdenk2262cfe2002-11-18 00:14:45 +000081#ifdef DEBUG
82 printf ("## Transferring control to Linux (at address %08x) ...\n",
83 (u32)base_ptr);
84#endif
wdenk8bde7f72003-06-27 21:31:46 +000085
wdenk2262cfe2002-11-18 00:14:45 +000086 /* we assume that the kernel is in place */
87 printf("\nStarting kernel ...\n\n");
wdenk8bde7f72003-06-27 21:31:46 +000088
wdenk2262cfe2002-11-18 00:14:45 +000089 boot_zimage(base_ptr);
wdenk8bde7f72003-06-27 21:31:46 +000090
wdenk2262cfe2002-11-18 00:14:45 +000091}