wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 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 | * |
Graeme Russ | dbf7115 | 2011-04-13 19:43:26 +1000 | [diff] [blame] | 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. |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 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 |
Graeme Russ | dbf7115 | 2011-04-13 19:43:26 +1000 | [diff] [blame] | 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 24 | * MA 02111-1307 USA |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 25 | */ |
| 26 | |
| 27 | #include <common.h> |
| 28 | #include <command.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 29 | #include <image.h> |
Jean-Christophe PLAGNIOL-VILLARD | a31e091 | 2009-04-04 12:49:11 +0200 | [diff] [blame] | 30 | #include <u-boot/zlib.h> |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame^] | 31 | #include <asm/bootparam.h> |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 32 | #include <asm/byteorder.h> |
| 33 | #include <asm/zimage.h> |
| 34 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame^] | 35 | #define COMMAND_LINE_OFFSET 0x9000 |
| 36 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 37 | /*cmd_boot.c*/ |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 38 | int do_bootm_linux(int flag, int argc, char * const argv[], |
| 39 | bootm_headers_t *images) |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 40 | { |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame^] | 41 | struct boot_params *base_ptr = NULL; |
| 42 | ulong os_data, os_len; |
| 43 | image_header_t *hdr; |
| 44 | void *load_address; |
Graeme Russ | 3ef96de | 2008-09-07 07:08:42 +1000 | [diff] [blame] | 45 | |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 46 | #if defined(CONFIG_FIT) |
| 47 | const void *data; |
| 48 | size_t len; |
| 49 | #endif |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 50 | |
Kumar Gala | 49c3a86 | 2008-10-21 17:25:45 -0500 | [diff] [blame] | 51 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
| 52 | return 1; |
| 53 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 54 | if (images->legacy_hdr_valid) { |
| 55 | hdr = images->legacy_hdr_os; |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 56 | if (image_check_type(hdr, IH_TYPE_MULTI)) { |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 57 | /* if multi-part image, we need to get first subimage */ |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 58 | image_multi_getimg(hdr, 0, &os_data, &os_len); |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 59 | } else { |
| 60 | /* otherwise get image data */ |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 61 | os_data = image_get_data(hdr); |
| 62 | os_len = image_get_data_size(hdr); |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 63 | } |
| 64 | #if defined(CONFIG_FIT) |
| 65 | } else if (images->fit_uname_os) { |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 66 | ret = fit_image_get_data(images->fit_hdr_os, |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 67 | images->fit_noffset_os, &data, &len); |
| 68 | if (ret) { |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 69 | puts("Can't get image data/size!\n"); |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 70 | goto error; |
| 71 | } |
| 72 | os_data = (ulong)data; |
| 73 | os_len = (ulong)len; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 74 | #endif |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 75 | } else { |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 76 | puts("Could not find kernel image!\n"); |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 77 | goto error; |
Wolfgang Denk | e644670 | 2006-07-21 11:30:18 +0200 | [diff] [blame] | 78 | } |
| 79 | |
Graeme Russ | a76fc70 | 2011-11-08 02:33:20 +0000 | [diff] [blame] | 80 | #ifdef CONFIG_CMD_ZBOOT |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame^] | 81 | base_ptr = load_zimage((void *)os_data, os_len, &load_address); |
Graeme Russ | a76fc70 | 2011-11-08 02:33:20 +0000 | [diff] [blame] | 82 | #endif |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 83 | |
| 84 | if (NULL == base_ptr) { |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 85 | printf("## Kernel loading failed ...\n"); |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 86 | goto error; |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame^] | 87 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 88 | |
Gabe Black | 69370d1 | 2011-12-05 12:09:26 +0000 | [diff] [blame^] | 89 | if (setup_zimage(base_ptr, (char *)base_ptr + COMMAND_LINE_OFFSET, |
| 90 | 0, images->rd_start, |
| 91 | images->rd_end - images->rd_start)) { |
| 92 | printf("## Setting up boot parameters failed ...\n"); |
| 93 | goto error; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 94 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 95 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 96 | #ifdef DEBUG |
Graeme Russ | 83088af | 2011-11-08 02:33:15 +0000 | [diff] [blame] | 97 | printf("## Transferring control to Linux (at address %08x) ...\n", |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 98 | (u32)base_ptr); |
| 99 | #endif |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 100 | |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 101 | /* we assume that the kernel is in place */ |
| 102 | printf("\nStarting kernel ...\n\n"); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 103 | |
Gabe Black | 233dbc1 | 2011-12-05 12:09:24 +0000 | [diff] [blame] | 104 | boot_zimage(base_ptr, load_address); |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 105 | /* does not return */ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 106 | |
Marian Balakowicz | cd7c596 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 107 | error: |
Kumar Gala | 40d7e99 | 2008-08-15 08:24:45 -0500 | [diff] [blame] | 108 | return 1; |
wdenk | 2262cfe | 2002-11-18 00:14:45 +0000 | [diff] [blame] | 109 | } |