]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/x86/lib/bootm.c
x86: Rename i386 to x86
[people/ms/u-boot.git] / arch / x86 / lib / bootm.c
CommitLineData
2262cfee
WD
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 *
dbf7115a
GR
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
2262cfee
WD
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
dbf7115a
GR
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
2262cfee
WD
25 */
26
27#include <common.h>
28#include <command.h>
2262cfee 29#include <image.h>
a31e091a 30#include <u-boot/zlib.h>
2262cfee
WD
31#include <asm/byteorder.h>
32#include <asm/zimage.h>
33
8bde7f77 34/*cmd_boot.c*/
54841ab5 35int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *images)
2262cfee 36{
d5934ad7
MB
37 void *base_ptr;
38 ulong os_data, os_len;
d5934ad7 39 image_header_t *hdr;
3ef96ded 40
cd7c596e
MB
41#if defined(CONFIG_FIT)
42 const void *data;
43 size_t len;
44#endif
8bde7f77 45
49c3a861
KG
46 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
47 return 1;
48
d5934ad7
MB
49 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) {
cd7c596e
MB
61 ret = fit_image_get_data (images->fit_hdr_os,
62 images->fit_noffset_os, &data, &len);
63 if (ret) {
64 puts ("Can't get image data/size!\n");
65 goto error;
66 }
67 os_data = (ulong)data;
68 os_len = (ulong)len;
d5934ad7 69#endif
f13e7b2e 70 } else {
d5934ad7 71 puts ("Could not find kernel image!\n");
cd7c596e 72 goto error;
e644670b
WD
73 }
74
f13e7b2e 75 base_ptr = load_zimage ((void*)os_data, os_len,
c4f9419c 76 images->rd_start, images->rd_end - images->rd_start, 0);
2262cfee
WD
77
78 if (NULL == base_ptr) {
79 printf ("## Kernel loading failed ...\n");
cd7c596e 80 goto error;
8bde7f77 81
2262cfee 82 }
8bde7f77 83
2262cfee
WD
84#ifdef DEBUG
85 printf ("## Transferring control to Linux (at address %08x) ...\n",
86 (u32)base_ptr);
87#endif
8bde7f77 88
2262cfee
WD
89 /* we assume that the kernel is in place */
90 printf("\nStarting kernel ...\n\n");
2262cfee 91
8bde7f77 92 boot_zimage(base_ptr);
cd7c596e 93 /* does not return */
2262cfee 94
cd7c596e 95error:
40d7e99d 96 return 1;
8bde7f77 97}