]> git.sur5r.net Git - u-boot/blob - lib_microblaze/microblaze_linux.c
Merge with git://www.denx.de/git/u-boot.git
[u-boot] / lib_microblaze / microblaze_linux.c
1 /*
2  * (C) Copyright 2007 Michal Simek
3  * (C) Copyright 2004 Atmark Techno, Inc.
4  *
5  * Michal  SIMEK <monstr@monstr.eu>
6  * 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
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
23  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24  * MA 02111-1307 USA
25  */
26
27 #include <common.h>
28 #include <command.h>
29 #include <image.h>
30 #include <zlib.h>
31 #include <asm/byteorder.h>
32
33 DECLARE_GLOBAL_DATA_PTR;
34
35 extern image_header_t header;   /* from cmd_bootm.c */
36 /*cmd_boot.c*/
37 extern int do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]);
38
39 void do_bootm_linux (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[],
40                      ulong addr, ulong * len_ptr, int verify)
41 {
42         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
51         theKernel = (void (*)(char *))ntohl (hdr->ih_ep);
52
53         /* Check if there is an initrd image */
54         if (argc >= 3) {
55                 show_boot_progress (9);
56
57                 addr = simple_strtoul (argv[2], NULL, 16);
58
59                 printf ("## Loading Ramdisk Image at %08lx ...\n", addr);
60
61                 /* Copy header so we can blank CRC field for re-calculation */
62                 memcpy (&header, (char *)addr, sizeof (image_header_t));
63
64                 if (ntohl (hdr->ih_magic) != IH_MAGIC) {
65                         printf ("Bad Magic Number\n");
66                         show_boot_progress (-10);
67                         do_reset (cmdtp, flag, argc, argv);
68                 }
69
70                 data = (ulong) & header;
71                 len = sizeof (image_header_t);
72
73                 checksum = ntohl (hdr->ih_hcrc);
74                 hdr->ih_hcrc = 0;
75
76                 if (crc32 (0, (char *)data, len) != checksum) {
77                         printf ("Bad Header Checksum\n");
78                         show_boot_progress (-11);
79                         do_reset (cmdtp, flag, argc, argv);
80                 }
81
82                 show_boot_progress (10);
83
84                 print_image_hdr (hdr);
85
86                 data = addr + sizeof (image_header_t);
87                 len = ntohl (hdr->ih_size);
88
89                 if (verify) {
90                         ulong csum = 0;
91
92                         printf ("   Verifying Checksum ... ");
93                         csum = crc32 (0, (char *)data, len);
94                         if (csum != ntohl (hdr->ih_dcrc)) {
95                                 printf ("Bad Data CRC\n");
96                                 show_boot_progress (-12);
97                                 do_reset (cmdtp, flag, argc, argv);
98                         }
99                         printf ("OK\n");
100                 }
101
102                 show_boot_progress (11);
103
104                 if ((hdr->ih_os != IH_OS_LINUX) ||
105                     (hdr->ih_arch != IH_CPU_MICROBLAZE) ||
106                     (hdr->ih_type != IH_TYPE_RAMDISK)) {
107                         printf ("No Linux Microblaze Ramdisk Image\n");
108                         show_boot_progress (-13);
109                         do_reset (cmdtp, flag, argc, argv);
110                 }
111
112                 /*
113                  * Now check if we have a multifile image
114                  */
115         } else if ((hdr->ih_type == IH_TYPE_MULTI) && (len_ptr[1])) {
116                 ulong tail = ntohl (len_ptr[0]) % 4;
117
118                 show_boot_progress (13);
119
120                 /* skip kernel length and terminator */
121                 data = (ulong) (&len_ptr[2]);
122                 /* skip any additional image length fields */
123                 for (i = 1; len_ptr[i]; ++i)
124                         data += 4;
125                 /* add kernel length, and align */
126                 data += ntohl (len_ptr[0]);
127                 if (tail) {
128                         data += 4 - tail;
129                 }
130
131                 len = ntohl (len_ptr[1]);
132
133         } else {
134                 /*
135                  * no initrd image
136                  */
137                 show_boot_progress (14);
138
139                 data = 0;
140         }
141
142 #ifdef  DEBUG
143         if (!data) {
144                 printf ("No initrd\n");
145         }
146 #endif
147
148         if (data) {
149                 initrd_start = data;
150                 initrd_end = initrd_start + len;
151         } else {
152                 initrd_start = 0;
153                 initrd_end = 0;
154         }
155
156         show_boot_progress (15);
157
158 #ifdef DEBUG
159         printf ("## Transferring control to Linux (at address %08lx) ...\n",
160                 (ulong) theKernel);
161 #endif
162
163         theKernel (commandline);
164 }