blob: a21a21f1f7f9fb0c1106884e17d42121211090d0 [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 *
Graeme Russdbf71152011-04-13 19:43:26 +10008 * 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.
wdenk2262cfe2002-11-18 00:14:45 +000015 *
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
Graeme Russdbf71152011-04-13 19:43:26 +100023 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
wdenk2262cfe2002-11-18 00:14:45 +000025 */
26
27#include <common.h>
28#include <command.h>
wdenk2262cfe2002-11-18 00:14:45 +000029#include <image.h>
Jean-Christophe PLAGNIOL-VILLARDa31e0912009-04-04 12:49:11 +020030#include <u-boot/zlib.h>
wdenk2262cfe2002-11-18 00:14:45 +000031#include <asm/byteorder.h>
32#include <asm/zimage.h>
33
wdenk8bde7f72003-06-27 21:31:46 +000034/*cmd_boot.c*/
Wolfgang Denk54841ab2010-06-28 22:00:46 +020035int do_bootm_linux(int flag, int argc, char * const argv[], 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;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010039 image_header_t *hdr;
Graeme Russ3ef96de2008-09-07 07:08:42 +100040
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010041#if defined(CONFIG_FIT)
42 const void *data;
43 size_t len;
44#endif
wdenk8bde7f72003-06-27 21:31:46 +000045
Kumar Gala49c3a862008-10-21 17:25:45 -050046 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
47 return 1;
48
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) {
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010061 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;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010069#endif
Marian Balakowiczf13e7b22008-01-08 18:12:17 +010070 } else {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010071 puts ("Could not find kernel image!\n");
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010072 goto error;
Wolfgang Denke6446702006-07-21 11:30:18 +020073 }
74
Marian Balakowiczf13e7b22008-01-08 18:12:17 +010075 base_ptr = load_zimage ((void*)os_data, os_len,
Kumar Galac4f94192008-08-15 08:24:37 -050076 images->rd_start, images->rd_end - images->rd_start, 0);
wdenk2262cfe2002-11-18 00:14:45 +000077
78 if (NULL == base_ptr) {
79 printf ("## Kernel loading failed ...\n");
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010080 goto error;
wdenk8bde7f72003-06-27 21:31:46 +000081
wdenk2262cfe2002-11-18 00:14:45 +000082 }
wdenk8bde7f72003-06-27 21:31:46 +000083
wdenk2262cfe2002-11-18 00:14:45 +000084#ifdef DEBUG
85 printf ("## Transferring control to Linux (at address %08x) ...\n",
86 (u32)base_ptr);
87#endif
wdenk8bde7f72003-06-27 21:31:46 +000088
wdenk2262cfe2002-11-18 00:14:45 +000089 /* we assume that the kernel is in place */
90 printf("\nStarting kernel ...\n\n");
wdenk8bde7f72003-06-27 21:31:46 +000091
wdenk2262cfe2002-11-18 00:14:45 +000092 boot_zimage(base_ptr);
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010093 /* does not return */
wdenk8bde7f72003-06-27 21:31:46 +000094
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010095error:
Kumar Gala40d7e992008-08-15 08:24:45 -050096 return 1;
wdenk2262cfe2002-11-18 00:14:45 +000097}