blob: ba3875b1bc7e1d362947790809ab4796631146ad [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*/
Graeme Russ83088af2011-11-08 02:33:15 +000035int do_bootm_linux(int flag, int argc, char * const argv[],
36 bootm_headers_t *images)
wdenk2262cfe2002-11-18 00:14:45 +000037{
Graeme Russa76fc702011-11-08 02:33:20 +000038 void *base_ptr = NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010039 ulong os_data, os_len;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010040 image_header_t *hdr;
Gabe Black233dbc12011-12-05 12:09:24 +000041 void *load_address;
Graeme Russ3ef96de2008-09-07 07:08:42 +100042
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010043#if defined(CONFIG_FIT)
44 const void *data;
45 size_t len;
46#endif
wdenk8bde7f72003-06-27 21:31:46 +000047
Kumar Gala49c3a862008-10-21 17:25:45 -050048 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
49 return 1;
50
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010051 if (images->legacy_hdr_valid) {
52 hdr = images->legacy_hdr_os;
Graeme Russ83088af2011-11-08 02:33:15 +000053 if (image_check_type(hdr, IH_TYPE_MULTI)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010054 /* if multi-part image, we need to get first subimage */
Graeme Russ83088af2011-11-08 02:33:15 +000055 image_multi_getimg(hdr, 0, &os_data, &os_len);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010056 } else {
57 /* otherwise get image data */
Graeme Russ83088af2011-11-08 02:33:15 +000058 os_data = image_get_data(hdr);
59 os_len = image_get_data_size(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010060 }
61#if defined(CONFIG_FIT)
62 } else if (images->fit_uname_os) {
Graeme Russ83088af2011-11-08 02:33:15 +000063 ret = fit_image_get_data(images->fit_hdr_os,
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010064 images->fit_noffset_os, &data, &len);
65 if (ret) {
Graeme Russ83088af2011-11-08 02:33:15 +000066 puts("Can't get image data/size!\n");
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010067 goto error;
68 }
69 os_data = (ulong)data;
70 os_len = (ulong)len;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010071#endif
Marian Balakowiczf13e7b22008-01-08 18:12:17 +010072 } else {
Graeme Russ83088af2011-11-08 02:33:15 +000073 puts("Could not find kernel image!\n");
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010074 goto error;
Wolfgang Denke6446702006-07-21 11:30:18 +020075 }
76
Graeme Russa76fc702011-11-08 02:33:20 +000077#ifdef CONFIG_CMD_ZBOOT
Graeme Russ83088af2011-11-08 02:33:15 +000078 base_ptr = load_zimage((void *)os_data, os_len,
Gabe Black233dbc12011-12-05 12:09:24 +000079 images->rd_start, images->rd_end - images->rd_start,
80 0, &load_address);
Graeme Russa76fc702011-11-08 02:33:20 +000081#endif
wdenk2262cfe2002-11-18 00:14:45 +000082
83 if (NULL == base_ptr) {
Graeme Russ83088af2011-11-08 02:33:15 +000084 printf("## Kernel loading failed ...\n");
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010085 goto error;
wdenk8bde7f72003-06-27 21:31:46 +000086
wdenk2262cfe2002-11-18 00:14:45 +000087 }
wdenk8bde7f72003-06-27 21:31:46 +000088
wdenk2262cfe2002-11-18 00:14:45 +000089#ifdef DEBUG
Graeme Russ83088af2011-11-08 02:33:15 +000090 printf("## Transferring control to Linux (at address %08x) ...\n",
wdenk2262cfe2002-11-18 00:14:45 +000091 (u32)base_ptr);
92#endif
wdenk8bde7f72003-06-27 21:31:46 +000093
wdenk2262cfe2002-11-18 00:14:45 +000094 /* we assume that the kernel is in place */
95 printf("\nStarting kernel ...\n\n");
wdenk8bde7f72003-06-27 21:31:46 +000096
Gabe Black233dbc12011-12-05 12:09:24 +000097 boot_zimage(base_ptr, load_address);
Marian Balakowiczcd7c5962008-03-12 10:33:00 +010098 /* does not return */
wdenk8bde7f72003-06-27 21:31:46 +000099
Marian Balakowiczcd7c5962008-03-12 10:33:00 +0100100error:
Kumar Gala40d7e992008-08-15 08:24:45 -0500101 return 1;
wdenk2262cfe2002-11-18 00:14:45 +0000102}