blob: 7cd97995e8ad3dc1e0c6b52c01e55c709685d301 [file] [log] [blame]
wdenk12490652004-04-18 21:13:41 +00001/*
Michal Simek922ce202007-03-11 13:48:24 +01002 * (C) Copyright 2007 Michal Simek
wdenk12490652004-04-18 21:13:41 +00003 * (C) Copyright 2004 Atmark Techno, Inc.
4 *
Michal Simek922ce202007-03-11 13:48:24 +01005 * Michal SIMEK <monstr@monstr.eu>
wdenk12490652004-04-18 21:13:41 +00006 * Yasushi SHOJI <yashi@atmark-techno.com>
7 *
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.
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
Michal Simek922ce202007-03-11 13:48:24 +010018 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenk12490652004-04-18 21:13:41 +000019 * 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
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27#include <common.h>
28#include <command.h>
Michal Simek922ce202007-03-11 13:48:24 +010029#include <image.h>
30#include <zlib.h>
31#include <asm/byteorder.h>
wdenk12490652004-04-18 21:13:41 +000032
Michal Simek922ce202007-03-11 13:48:24 +010033DECLARE_GLOBAL_DATA_PTR;
34
Michal Simek922ce202007-03-11 13:48:24 +010035extern image_header_t header; /* from cmd_bootm.c */
36/*cmd_boot.c*/
37extern int do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]);
38
39void do_bootm_linux (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[],
40 ulong addr, ulong * len_ptr, int verify)
wdenk12490652004-04-18 21:13:41 +000041{
Michal Simek922ce202007-03-11 13:48:24 +010042 ulong len = 0, checksum;
43 ulong initrd_start, initrd_end;
44 ulong data;
45 /* First parameter is mapped to $r5 for kernel boot args */
46 void (*theKernel) (char *);
47 image_header_t *hdr = &header;
48 char *commandline = getenv ("bootargs");
49 int i;
50
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010051 theKernel = (void (*)(char *))image_get_ep (hdr);
Michal Simek922ce202007-03-11 13:48:24 +010052
53 /* Check if there is an initrd image */
54 if (argc >= 3) {
Heiko Schocher8a8ec532007-07-13 09:54:17 +020055 show_boot_progress (9);
Michal Simek922ce202007-03-11 13:48:24 +010056
57 addr = simple_strtoul (argv[2], NULL, 16);
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010058 hdr = (image_header_t *)addr;
Michal Simek922ce202007-03-11 13:48:24 +010059
60 printf ("## Loading Ramdisk Image at %08lx ...\n", addr);
61
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010062 if (!image_check_magic (hdr)) {
Michal Simek922ce202007-03-11 13:48:24 +010063 printf ("Bad Magic Number\n");
Heiko Schocher8a8ec532007-07-13 09:54:17 +020064 show_boot_progress (-10);
Michal Simek922ce202007-03-11 13:48:24 +010065 do_reset (cmdtp, flag, argc, argv);
66 }
67
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010068 if (!image_check_magic (hdr)) {
Michal Simek922ce202007-03-11 13:48:24 +010069 printf ("Bad Header Checksum\n");
Heiko Schocher8a8ec532007-07-13 09:54:17 +020070 show_boot_progress (-11);
Michal Simek922ce202007-03-11 13:48:24 +010071 do_reset (cmdtp, flag, argc, argv);
72 }
73
Heiko Schocher8a8ec532007-07-13 09:54:17 +020074 show_boot_progress (10);
Michal Simek922ce202007-03-11 13:48:24 +010075
76 print_image_hdr (hdr);
77
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010078 data = image_get_data (hdr);
79 len = image_get_data_size (hdr);
Michal Simek922ce202007-03-11 13:48:24 +010080
81 if (verify) {
Michal Simek922ce202007-03-11 13:48:24 +010082 printf (" Verifying Checksum ... ");
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010083 if (!image_check_dcrc (hdr)) {
Michal Simek922ce202007-03-11 13:48:24 +010084 printf ("Bad Data CRC\n");
Heiko Schocher8a8ec532007-07-13 09:54:17 +020085 show_boot_progress (-12);
Michal Simek922ce202007-03-11 13:48:24 +010086 do_reset (cmdtp, flag, argc, argv);
87 }
88 printf ("OK\n");
89 }
90
Heiko Schocher8a8ec532007-07-13 09:54:17 +020091 show_boot_progress (11);
Michal Simek922ce202007-03-11 13:48:24 +010092
Marian Balakowicz41d71ed2008-01-08 18:14:09 +010093 if (!image_check_os (hdr, IH_OS_LINUX) ||
94 !image_check_arch (hdr, IH_ARCH_MICROBLAZE) ||
95 !image_check_type (hdr, IH_TYPE_RAMDISK)) {
Michal Simek922ce202007-03-11 13:48:24 +010096 printf ("No Linux Microblaze Ramdisk Image\n");
Heiko Schocher8a8ec532007-07-13 09:54:17 +020097 show_boot_progress (-13);
Michal Simek922ce202007-03-11 13:48:24 +010098 do_reset (cmdtp, flag, argc, argv);
99 }
100
101 /*
102 * Now check if we have a multifile image
103 */
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100104 } else if (image_check_type (hdr, IH_TYPE_MULTI) && (len_ptr[1])) {
105 ulong tail = image_to_cpu (len_ptr[0]) % 4;
Michal Simek922ce202007-03-11 13:48:24 +0100106
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200107 show_boot_progress (13);
Michal Simek922ce202007-03-11 13:48:24 +0100108
109 /* skip kernel length and terminator */
110 data = (ulong) (&len_ptr[2]);
111 /* skip any additional image length fields */
112 for (i = 1; len_ptr[i]; ++i)
113 data += 4;
114 /* add kernel length, and align */
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100115 data += image_to_cpu (len_ptr[0]);
Michal Simek922ce202007-03-11 13:48:24 +0100116 if (tail) {
117 data += 4 - tail;
118 }
119
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100120 len = image_to_cpu (len_ptr[1]);
Michal Simek922ce202007-03-11 13:48:24 +0100121
122 } else {
123 /*
124 * no initrd image
125 */
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200126 show_boot_progress (14);
Michal Simek922ce202007-03-11 13:48:24 +0100127
128 data = 0;
129 }
130
131#ifdef DEBUG
132 if (!data) {
133 printf ("No initrd\n");
134 }
135#endif
136
137 if (data) {
138 initrd_start = data;
139 initrd_end = initrd_start + len;
140 } else {
141 initrd_start = 0;
142 initrd_end = 0;
143 }
144
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200145 show_boot_progress (15);
Michal Simek922ce202007-03-11 13:48:24 +0100146
147#ifdef DEBUG
148 printf ("## Transferring control to Linux (at address %08lx) ...\n",
149 (ulong) theKernel);
150#endif
151
152 theKernel (commandline);
wdenk12490652004-04-18 21:13:41 +0000153}