blob: 7e0fe4d42c7b4f8965c08661206736b6eea8c659 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * misc.c
3 *
4 * This is a collection of several routines from gzip-1.0.3
5 * adapted for Linux.
6 *
7 * malloc by Hannu Savolainen 1993 and Matthias Urlichs 1994
8 *
9 * Modified for ARM Linux by Russell King
10 *
11 * Nicolas Pitre <nico@visuaide.com> 1999/04/14 :
12 * For this code to run directly from Flash, all constant variables must
13 * be marked with 'const' and all other variables initialized at run-time
14 * only. This way all non constant variables will end up in the bss segment,
15 * which should point to addresses in RAM and cleared to 0 on start.
16 * This allows for a much quicker boot time.
17 */
18
19unsigned int __machine_arch_type;
20
Albin Tonnerree7db7b42010-01-08 14:42:43 -080021#define _LINUX_STRING_H_
22
Rusty Russellaa0d3bb2009-03-31 13:05:35 -060023#include <linux/compiler.h> /* for inline */
24#include <linux/types.h> /* for size_t */
25#include <linux/stddef.h> /* for NULL */
26#include <asm/string.h>
Albin Tonnerree7db7b42010-01-08 14:42:43 -080027#include <linux/linkage.h>
28
29#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#ifdef STANDALONE_DEBUG
32#define putstr printf
Russell Kinga0815682006-03-28 10:24:33 +010033#else
34
35static void putstr(const char *ptr);
36
Russell Kinga09e64f2008-08-05 16:14:15 +010037#include <mach/uncompress.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#ifdef CONFIG_DEBUG_ICEDCC
Tony Lindgren7d95ded2006-09-20 13:03:34 +010040
41#ifdef CONFIG_CPU_V6
42
43static void icedcc_putc(int ch)
44{
45 int status, i = 0x4000000;
46
47 do {
48 if (--i < 0)
49 return;
50
51 asm volatile ("mrc p14, 0, %0, c0, c1, 0" : "=r" (status));
52 } while (status & (1 << 29));
53
54 asm("mcr p14, 0, %0, c0, c5, 0" : : "r" (ch));
55}
Jean-Christop PLAGNIOL-VILLARDc633c3c2009-02-25 04:20:40 +010056#elif defined(CONFIG_CPU_XSCALE)
57
58static void icedcc_putc(int ch)
59{
60 int status, i = 0x4000000;
61
62 do {
63 if (--i < 0)
64 return;
65
66 asm volatile ("mrc p14, 0, %0, c14, c0, 0" : "=r" (status));
67 } while (status & (1 << 28));
68
69 asm("mcr p14, 0, %0, c8, c0, 0" : : "r" (ch));
70}
Tony Lindgren7d95ded2006-09-20 13:03:34 +010071
72#else
73
Russell Kingde4533a2006-03-28 10:34:05 +010074static void icedcc_putc(int ch)
75{
76 int status, i = 0x4000000;
77
78 do {
79 if (--i < 0)
80 return;
81
Uwe Zeisbergerb2556da2006-05-02 20:40:56 +010082 asm volatile ("mrc p14, 0, %0, c0, c0, 0" : "=r" (status));
Russell Kingde4533a2006-03-28 10:34:05 +010083 } while (status & 2);
84
Uwe Zeisbergerb2556da2006-05-02 20:40:56 +010085 asm("mcr p14, 0, %0, c1, c0, 0" : : "r" (ch));
Russell Kingde4533a2006-03-28 10:34:05 +010086}
87
Tony Lindgren7d95ded2006-09-20 13:03:34 +010088#endif
89
Russell Kinga0815682006-03-28 10:24:33 +010090#define putc(ch) icedcc_putc(ch)
91#define flush() do { } while (0)
92#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Russell Kinga0815682006-03-28 10:24:33 +010094static void putstr(const char *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Russell Kinga0815682006-03-28 10:24:33 +010096 char c;
97
98 while ((c = *ptr++) != '\0') {
99 if (c == '\n')
100 putc('\r');
101 putc(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 }
Russell Kinga0815682006-03-28 10:24:33 +0100103
104 flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107#endif
108
109#define __ptr_t void *
110
Russell King59f0cb02008-10-27 11:24:09 +0000111#define memzero(s,n) __memzero(s,n)
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113/*
114 * Optimised C version of memzero for the ARM.
115 */
116void __memzero (__ptr_t s, size_t n)
117{
118 union { void *vp; unsigned long *ulp; unsigned char *ucp; } u;
119 int i;
120
121 u.vp = s;
122
123 for (i = n >> 5; i > 0; i--) {
124 *u.ulp++ = 0;
125 *u.ulp++ = 0;
126 *u.ulp++ = 0;
127 *u.ulp++ = 0;
128 *u.ulp++ = 0;
129 *u.ulp++ = 0;
130 *u.ulp++ = 0;
131 *u.ulp++ = 0;
132 }
133
134 if (n & 1 << 4) {
135 *u.ulp++ = 0;
136 *u.ulp++ = 0;
137 *u.ulp++ = 0;
138 *u.ulp++ = 0;
139 }
140
141 if (n & 1 << 3) {
142 *u.ulp++ = 0;
143 *u.ulp++ = 0;
144 }
145
146 if (n & 1 << 2)
147 *u.ulp++ = 0;
148
149 if (n & 1 << 1) {
150 *u.ucp++ = 0;
151 *u.ucp++ = 0;
152 }
153
154 if (n & 1)
155 *u.ucp++ = 0;
156}
157
158static inline __ptr_t memcpy(__ptr_t __dest, __const __ptr_t __src,
159 size_t __n)
160{
161 int i = 0;
162 unsigned char *d = (unsigned char *)__dest, *s = (unsigned char *)__src;
163
164 for (i = __n >> 3; i > 0; i--) {
165 *d++ = *s++;
166 *d++ = *s++;
167 *d++ = *s++;
168 *d++ = *s++;
169 *d++ = *s++;
170 *d++ = *s++;
171 *d++ = *s++;
172 *d++ = *s++;
173 }
174
175 if (__n & 1 << 2) {
176 *d++ = *s++;
177 *d++ = *s++;
178 *d++ = *s++;
179 *d++ = *s++;
180 }
181
182 if (__n & 1 << 1) {
183 *d++ = *s++;
184 *d++ = *s++;
185 }
186
187 if (__n & 1)
188 *d++ = *s++;
189
190 return __dest;
191}
192
193/*
194 * gzip delarations
195 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196#define STATIC static
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198/* Diagnostic functions */
199#ifdef DEBUG
200# define Assert(cond,msg) {if(!(cond)) error(msg);}
201# define Trace(x) fprintf x
202# define Tracev(x) {if (verbose) fprintf x ;}
203# define Tracevv(x) {if (verbose>1) fprintf x ;}
204# define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
205# define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
206#else
207# define Assert(cond,msg)
208# define Trace(x)
209# define Tracev(x)
210# define Tracevv(x)
211# define Tracec(c,x)
212# define Tracecv(c,x)
213#endif
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215static void error(char *m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217extern char input_data[];
218extern char input_data_end[];
219
Albin Tonnerree7db7b42010-01-08 14:42:43 -0800220static unsigned char *output_data;
221static unsigned long output_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223static void error(char *m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
225static void putstr(const char *);
226
Albin Tonnerree7db7b42010-01-08 14:42:43 -0800227static unsigned long free_mem_ptr;
228static unsigned long free_mem_end_ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Thomas Petazzoni2d6ffcc2008-07-25 01:45:44 -0700230#ifdef STANDALONE_DEBUG
231#define NO_INFLATE_MALLOC
232#endif
233
234#define ARCH_HAS_DECOMP_WDOG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Albin Tonnerree7db7b42010-01-08 14:42:43 -0800236#ifdef CONFIG_KERNEL_GZIP
237#include "../../../../lib/decompress_inflate.c"
238#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Albin Tonnerree7db7b42010-01-08 14:42:43 -0800240#ifdef CONFIG_KERNEL_LZO
241#include "../../../../lib/decompress_unlzo.c"
242#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Ben Dooksf8c905d2005-11-08 22:43:05 +0000244#ifndef arch_error
245#define arch_error(x)
246#endif
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248static void error(char *x)
249{
Ben Dooksf8c905d2005-11-08 22:43:05 +0000250 arch_error(x);
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 putstr("\n\n");
253 putstr(x);
254 putstr("\n\n -- System halted");
255
256 while(1); /* Halt */
257}
258
Albin Tonnerree7db7b42010-01-08 14:42:43 -0800259asmlinkage void __div0(void)
260{
261 error("Attempting division by 0!");
262}
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264#ifndef STANDALONE_DEBUG
265
Albin Tonnerree7db7b42010-01-08 14:42:43 -0800266unsigned long
267decompress_kernel(unsigned long output_start, unsigned long free_mem_ptr_p,
268 unsigned long free_mem_ptr_end_p,
269 int arch_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Albin Tonnerree7db7b42010-01-08 14:42:43 -0800271 unsigned char *tmp;
272
273 output_data = (unsigned char *)output_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 free_mem_ptr = free_mem_ptr_p;
Thomas Petazzoni2d6ffcc2008-07-25 01:45:44 -0700275 free_mem_end_ptr = free_mem_ptr_end_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 __machine_arch_type = arch_id;
277
278 arch_decomp_setup();
279
Albin Tonnerree7db7b42010-01-08 14:42:43 -0800280 tmp = (unsigned char *) (((unsigned long)input_data_end) - 4);
281 output_ptr = get_unaligned_le32(tmp);
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 putstr("Uncompressing Linux...");
Albin Tonnerree7db7b42010-01-08 14:42:43 -0800284 decompress(input_data, input_data_end - input_data,
285 NULL, NULL, output_data, NULL, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 putstr(" done, booting the kernel.\n");
287 return output_ptr;
288}
289#else
290
291char output_buffer[1500*1024];
292
293int main()
294{
295 output_data = output_buffer;
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 putstr("Uncompressing Linux...");
Albin Tonnerree7db7b42010-01-08 14:42:43 -0800298 decompress(input_data, input_data_end - input_data,
299 NULL, NULL, output_data, NULL, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 putstr("done.\n");
301 return 0;
302}
303#endif