bootm.c 2.0 KB
Newer Older
W
wdenk 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
/*
 * (C) Copyright 2002
 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
 * Marius Groeger <mgroeger@sysgo.de>
 *
 * Copyright (C) 2001  Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */

#include <common.h>
#include <command.h>
#include <image.h>
#include <zlib.h>
#include <asm/byteorder.h>
#include <asm/zimage.h>

W
wdenk 已提交
31 32
/*cmd_boot.c*/
extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
W
wdenk 已提交
33 34

void do_bootm_linux(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
35
		image_header_t *hdr, int verify)
W
wdenk 已提交
36
{
37
	void *base_ptr;
W
wdenk 已提交
38

39
	ulong os_data, os_len;
W
wdenk 已提交
40
	ulong initrd_start, initrd_end;
W
wdenk 已提交
41

42 43
	get_ramdisk (cmdtp, flag, argc, argv, hdr, verify,
			IH_ARCH_I386, &initrd_start, &initrd_end);
W
wdenk 已提交
44

45
	/* if multi-part image, we need to advance base ptr */
46 47 48 49 50
	if (image_check_type (hdr, IH_TYPE_MULTI)) {
		image_multi_getimg (hdr, 0, &os_data, &os_len);
	} else {
		os_data = image_get_data (hdr);
		os_len = image_get_data_size (hdr);
51 52
	}

53
	base_ptr = load_zimage ((void*)os_data, os_len,
54
			initrd_start, initrd_end - initrd_start, 0);
W
wdenk 已提交
55 56 57 58

	if (NULL == base_ptr) {
		printf ("## Kernel loading failed ...\n");
		do_reset(cmdtp, flag, argc, argv);
W
wdenk 已提交
59

W
wdenk 已提交
60
	}
W
wdenk 已提交
61

W
wdenk 已提交
62 63 64 65
#ifdef DEBUG
	printf ("## Transferring control to Linux (at address %08x) ...\n",
		(u32)base_ptr);
#endif
W
wdenk 已提交
66

W
wdenk 已提交
67 68 69
	/* we assume that the kernel is in place */
	printf("\nStarting kernel ...\n\n");

W
wdenk 已提交
70
	boot_zimage(base_ptr);
W
wdenk 已提交
71

W
wdenk 已提交
72
}