blob: 548d886b03d3a00cdb4f7412ec1f3e39d349ba55 [file] [log] [blame]
Mikael Starvik51533b62005-07-27 11:44:44 -07001/*
2 * misc.c
3 *
Mikael Starvik51533b62005-07-27 11:44:44 -07004 * 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 * puts by Nick Holloway 1993, better puts by Martin Mares 1995
Simon Arlott49b4ff32007-10-20 01:08:50 +02009 * adaptation for Linux/CRIS Axis Communications AB, 1999
Mikael Starvik51533b62005-07-27 11:44:44 -070010 *
11 */
12
13/* where the piggybacked kernel image expects itself to live.
14 * it is the same address we use when we network load an uncompressed
15 * image into DRAM, and it is the address the kernel is linked to live
16 * at by vmlinux.lds.S
17 */
18
19#define KERNEL_LOAD_ADR 0x40004000
20
Mikael Starvik51533b62005-07-27 11:44:44 -070021#include <linux/types.h>
Jesper Nilsson66ab3a72009-04-21 11:44:57 +020022
23#ifdef CONFIG_ETRAX_ARCH_V32
Jesper Nilssona5d204b2007-11-30 17:16:09 +010024#include <hwregs/reg_rdwr.h>
25#include <hwregs/reg_map.h>
26#include <hwregs/ser_defs.h>
27#include <hwregs/pinmux_defs.h>
28#ifdef CONFIG_CRIS_MACH_ARTPEC3
29#include <hwregs/clkgen_defs.h>
30#endif
Jesper Nilsson66ab3a72009-04-21 11:44:57 +020031#else
32#include <arch/svinto.h>
33#endif
Mikael Starvik51533b62005-07-27 11:44:44 -070034
35/*
36 * gzip declarations
37 */
38
39#define OF(args) args
40#define STATIC static
41
Jesper Nilsson66ab3a72009-04-21 11:44:57 +020042void *memset(void *s, int c, size_t n);
43void *memcpy(void *__dest, __const void *__src, size_t __n);
Mikael Starvik51533b62005-07-27 11:44:44 -070044
Jesper Nilsson66ab3a72009-04-21 11:44:57 +020045#define memzero(s, n) memset((s), 0, (n))
Mikael Starvik51533b62005-07-27 11:44:44 -070046
47typedef unsigned char uch;
48typedef unsigned short ush;
49typedef unsigned long ulg;
50
51#define WSIZE 0x8000 /* Window size must be at least 32k, */
52 /* and a power of two */
53
54static uch *inbuf; /* input buffer */
55static uch window[WSIZE]; /* Sliding window buffer */
56
57unsigned inptr = 0; /* index of next byte to be processed in inbuf
58 * After decompression it will contain the
59 * compressed size, and head.S will read it.
60 */
61
62static unsigned outcnt = 0; /* bytes in output buffer */
63
64/* gzip flag byte */
65#define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
66#define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
67#define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
68#define ORIG_NAME 0x08 /* bit 3 set: original file name present */
69#define COMMENT 0x10 /* bit 4 set: file comment present */
70#define ENCRYPTED 0x20 /* bit 5 set: file is encrypted */
71#define RESERVED 0xC0 /* bit 6,7: reserved */
72
Jesper Nilsson66ab3a72009-04-21 11:44:57 +020073#define get_byte() (inbuf[inptr++])
Mikael Starvik51533b62005-07-27 11:44:44 -070074
75/* Diagnostic functions */
76#ifdef DEBUG
Jesper Nilsson66ab3a72009-04-21 11:44:57 +020077# define Assert(cond, msg) do { \
78 if (!(cond)) \
79 error(msg); \
80 } while (0)
Mikael Starvik51533b62005-07-27 11:44:44 -070081# define Trace(x) fprintf x
Jesper Nilsson66ab3a72009-04-21 11:44:57 +020082# define Tracev(x) do { \
83 if (verbose) \
84 fprintf x; \
85 } while (0)
86# define Tracevv(x) do { \
87 if (verbose > 1) \
88 fprintf x; \
89 } while (0)
90# define Tracec(c, x) do { \
91 if (verbose && (c)) \
92 fprintf x; \
93 } while (0)
94# define Tracecv(c, x) do { \
95 if (verbose > 1 && (c)) \
96 fprintf x; \
97 } while (0)
Mikael Starvik51533b62005-07-27 11:44:44 -070098#else
Jesper Nilsson66ab3a72009-04-21 11:44:57 +020099# define Assert(cond, msg)
Mikael Starvik51533b62005-07-27 11:44:44 -0700100# define Trace(x)
101# define Tracev(x)
102# define Tracevv(x)
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200103# define Tracec(c, x)
104# define Tracecv(c, x)
Mikael Starvik51533b62005-07-27 11:44:44 -0700105#endif
106
Mikael Starvik51533b62005-07-27 11:44:44 -0700107static void flush_window(void);
108static void error(char *m);
Jesper Nilsson76fdf672010-08-03 18:12:47 +0200109static void aputs(const char *s);
Mikael Starvik51533b62005-07-27 11:44:44 -0700110
111extern char *input_data; /* lives in head.S */
112
Thomas Petazzoni2d6ffcc2008-07-25 01:45:44 -0700113static long bytes_out;
Mikael Starvik51533b62005-07-27 11:44:44 -0700114static uch *output_data;
Thomas Petazzoni2d6ffcc2008-07-25 01:45:44 -0700115static unsigned long output_ptr;
Mikael Starvik51533b62005-07-27 11:44:44 -0700116
Mikael Starvik51533b62005-07-27 11:44:44 -0700117/* the "heap" is put directly after the BSS ends, at end */
118
119extern int _end;
120static long free_mem_ptr = (long)&_end;
Thomas Petazzoni2d6ffcc2008-07-25 01:45:44 -0700121static long free_mem_end_ptr;
Mikael Starvik51533b62005-07-27 11:44:44 -0700122
123#include "../../../../../lib/inflate.c"
124
Mikael Starvik51533b62005-07-27 11:44:44 -0700125/* decompressor info and error messages to serial console */
126
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200127#ifdef CONFIG_ETRAX_ARCH_V32
128static inline void serout(const char *s, reg_scope_instances regi_ser)
Mikael Starvik51533b62005-07-27 11:44:44 -0700129{
130 reg_ser_rs_stat_din rs;
131 reg_ser_rw_dout dout = {.data = *s};
132
133 do {
134 rs = REG_RD(ser, regi_ser, rs_stat_din);
135 }
Simon Arlott49b4ff32007-10-20 01:08:50 +0200136 while (!rs.tr_rdy);/* Wait for transceiver. */
Mikael Starvik51533b62005-07-27 11:44:44 -0700137
138 REG_WR(ser, regi_ser, rw_dout, dout);
139}
Jesper Nilsson76fdf672010-08-03 18:12:47 +0200140#define SEROUT(S, N) \
141 do { \
142 serout(S, regi_ser ## N); \
143 s++; \
144 } while (0)
145#else
146#define SEROUT(S, N) do { \
147 while (!(*R_SERIAL ## N ## _STATUS & (1 << 5))) \
148 ; \
149 *R_SERIAL ## N ## _TR_DATA = *s++; \
150 } while (0)
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200151#endif
Mikael Starvik51533b62005-07-27 11:44:44 -0700152
Jesper Nilsson76fdf672010-08-03 18:12:47 +0200153static void aputs(const char *s)
Mikael Starvik51533b62005-07-27 11:44:44 -0700154{
155#ifndef CONFIG_ETRAX_DEBUG_PORT_NULL
156 while (*s) {
157#ifdef CONFIG_ETRAX_DEBUG_PORT0
Jesper Nilsson76fdf672010-08-03 18:12:47 +0200158 SEROUT(s, 0);
Mikael Starvik51533b62005-07-27 11:44:44 -0700159#endif
160#ifdef CONFIG_ETRAX_DEBUG_PORT1
Jesper Nilsson76fdf672010-08-03 18:12:47 +0200161 SEROUT(s, 1);
Mikael Starvik51533b62005-07-27 11:44:44 -0700162#endif
163#ifdef CONFIG_ETRAX_DEBUG_PORT2
Jesper Nilsson76fdf672010-08-03 18:12:47 +0200164 SEROUT(s, 2);
Mikael Starvik51533b62005-07-27 11:44:44 -0700165#endif
166#ifdef CONFIG_ETRAX_DEBUG_PORT3
Jesper Nilsson76fdf672010-08-03 18:12:47 +0200167 SEROUT(s, 3);
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200168#endif
Mikael Starvik51533b62005-07-27 11:44:44 -0700169 }
Jesper Nilsson76fdf672010-08-03 18:12:47 +0200170#endif /* CONFIG_ETRAX_DEBUG_PORT_NULL */
Mikael Starvik51533b62005-07-27 11:44:44 -0700171}
172
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200173void *memset(void *s, int c, size_t n)
Mikael Starvik51533b62005-07-27 11:44:44 -0700174{
175 int i;
176 char *ss = (char*)s;
177
178 for (i=0;i<n;i++) ss[i] = c;
Jesper Nilssona5d204b2007-11-30 17:16:09 +0100179
180 return s;
Mikael Starvik51533b62005-07-27 11:44:44 -0700181}
182
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200183void *memcpy(void *__dest, __const void *__src, size_t __n)
Mikael Starvik51533b62005-07-27 11:44:44 -0700184{
185 int i;
186 char *d = (char *)__dest, *s = (char *)__src;
187
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200188 for (i = 0; i < __n; i++)
189 d[i] = s[i];
Jesper Nilssona5d204b2007-11-30 17:16:09 +0100190
191 return __dest;
Mikael Starvik51533b62005-07-27 11:44:44 -0700192}
193
194/* ===========================================================================
195 * Write the output window window[0..outcnt-1] and update crc and bytes_out.
196 * (Used for the decompressed data only.)
197 */
198
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200199static void flush_window(void)
Mikael Starvik51533b62005-07-27 11:44:44 -0700200{
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200201 ulg c = crc; /* temporary variable */
202 unsigned n;
203 uch *in, *out, ch;
Mikael Starvik51533b62005-07-27 11:44:44 -0700204
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200205 in = window;
206 out = &output_data[output_ptr];
207 for (n = 0; n < outcnt; n++) {
208 ch = *out = *in;
209 out++;
210 in++;
211 c = crc_32_tab[((int)c ^ ch) & 0xff] ^ (c >> 8);
212 }
213 crc = c;
214 bytes_out += (ulg)outcnt;
215 output_ptr += (ulg)outcnt;
216 outcnt = 0;
Mikael Starvik51533b62005-07-27 11:44:44 -0700217}
218
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200219static void error(char *x)
Mikael Starvik51533b62005-07-27 11:44:44 -0700220{
Jesper Nilsson76fdf672010-08-03 18:12:47 +0200221 aputs("\n\n");
222 aputs(x);
223 aputs("\n\n -- System halted\n");
Mikael Starvik51533b62005-07-27 11:44:44 -0700224
225 while(1); /* Halt */
226}
227
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200228void setup_normal_output_buffer(void)
Mikael Starvik51533b62005-07-27 11:44:44 -0700229{
230 output_data = (char *)KERNEL_LOAD_ADR;
231}
232
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200233#ifdef CONFIG_ETRAX_ARCH_V32
234static inline void serial_setup(reg_scope_instances regi_ser)
Mikael Starvik51533b62005-07-27 11:44:44 -0700235{
236 reg_ser_rw_xoff xoff;
237 reg_ser_rw_tr_ctrl tr_ctrl;
238 reg_ser_rw_rec_ctrl rec_ctrl;
239 reg_ser_rw_tr_baud_div tr_baud;
240 reg_ser_rw_rec_baud_div rec_baud;
241
242 /* Turn off XOFF. */
243 xoff = REG_RD(ser, regi_ser, rw_xoff);
244
245 xoff.chr = 0;
246 xoff.automatic = regk_ser_no;
247
248 REG_WR(ser, regi_ser, rw_xoff, xoff);
249
250 /* Set baudrate and stopbits. */
251 tr_ctrl = REG_RD(ser, regi_ser, rw_tr_ctrl);
252 rec_ctrl = REG_RD(ser, regi_ser, rw_rec_ctrl);
253 tr_baud = REG_RD(ser, regi_ser, rw_tr_baud_div);
254 rec_baud = REG_RD(ser, regi_ser, rw_rec_baud_div);
255
256 tr_ctrl.stop_bits = 1; /* 2 stop bits. */
Jesper Nilssona5d204b2007-11-30 17:16:09 +0100257 tr_ctrl.en = 1; /* enable transmitter */
258 rec_ctrl.en = 1; /* enabler receiver */
Mikael Starvik51533b62005-07-27 11:44:44 -0700259
260 /*
Jesper Nilssona5d204b2007-11-30 17:16:09 +0100261 * The baudrate setup used to be a bit fishy, but now transmitter and
262 * receiver are both set to the intended baud rate, 115200.
263 * The magic value is 29.493 MHz.
Mikael Starvik51533b62005-07-27 11:44:44 -0700264 */
265 tr_ctrl.base_freq = regk_ser_f29_493;
266 rec_ctrl.base_freq = regk_ser_f29_493;
Jesper Nilssona5d204b2007-11-30 17:16:09 +0100267 tr_baud.div = (29493000 / 8) / 115200;
Mikael Starvik51533b62005-07-27 11:44:44 -0700268 rec_baud.div = (29493000 / 8) / 115200;
269
270 REG_WR(ser, regi_ser, rw_tr_ctrl, tr_ctrl);
271 REG_WR(ser, regi_ser, rw_tr_baud_div, tr_baud);
272 REG_WR(ser, regi_ser, rw_rec_ctrl, rec_ctrl);
273 REG_WR(ser, regi_ser, rw_rec_baud_div, rec_baud);
274}
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200275#endif
Mikael Starvik51533b62005-07-27 11:44:44 -0700276
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200277void decompress_kernel(void)
Mikael Starvik51533b62005-07-27 11:44:44 -0700278{
279 char revision;
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200280 char compile_rev;
Mikael Starvik51533b62005-07-27 11:44:44 -0700281
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200282#ifdef CONFIG_ETRAX_ARCH_V32
283 /* Need at least a CRISv32 to run. */
284 compile_rev = 32;
Jesper Nilssona5d204b2007-11-30 17:16:09 +0100285#if defined(CONFIG_ETRAX_DEBUG_PORT1) || \
286 defined(CONFIG_ETRAX_DEBUG_PORT2) || \
287 defined(CONFIG_ETRAX_DEBUG_PORT3)
288 reg_pinmux_rw_hwprot hwprot;
289
290#ifdef CONFIG_CRIS_MACH_ARTPEC3
291 reg_clkgen_rw_clk_ctrl clk_ctrl;
292
293 /* Enable corresponding clock region when serial 1..3 selected */
294
295 clk_ctrl = REG_RD(clkgen, regi_clkgen, rw_clk_ctrl);
296 clk_ctrl.sser_ser_dma6_7 = regk_clkgen_yes;
297 REG_WR(clkgen, regi_clkgen, rw_clk_ctrl, clk_ctrl);
298#endif
299
300 /* pinmux setup for ports 1..3 */
301 hwprot = REG_RD(pinmux, regi_pinmux, rw_hwprot);
302#endif
Mikael Starvik51533b62005-07-27 11:44:44 -0700303
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200304
Mikael Starvik51533b62005-07-27 11:44:44 -0700305#ifdef CONFIG_ETRAX_DEBUG_PORT0
306 serial_setup(regi_ser0);
307#endif
308#ifdef CONFIG_ETRAX_DEBUG_PORT1
Jesper Nilssona5d204b2007-11-30 17:16:09 +0100309 hwprot.ser1 = regk_pinmux_yes;
Mikael Starvik51533b62005-07-27 11:44:44 -0700310 serial_setup(regi_ser1);
311#endif
312#ifdef CONFIG_ETRAX_DEBUG_PORT2
Jesper Nilssona5d204b2007-11-30 17:16:09 +0100313 hwprot.ser2 = regk_pinmux_yes;
Mikael Starvik51533b62005-07-27 11:44:44 -0700314 serial_setup(regi_ser2);
315#endif
316#ifdef CONFIG_ETRAX_DEBUG_PORT3
Jesper Nilssona5d204b2007-11-30 17:16:09 +0100317 hwprot.ser3 = regk_pinmux_yes;
Mikael Starvik51533b62005-07-27 11:44:44 -0700318 serial_setup(regi_ser3);
319#endif
Jesper Nilssona5d204b2007-11-30 17:16:09 +0100320#if defined(CONFIG_ETRAX_DEBUG_PORT1) || \
321 defined(CONFIG_ETRAX_DEBUG_PORT2) || \
322 defined(CONFIG_ETRAX_DEBUG_PORT3)
323 REG_WR(pinmux, regi_pinmux, rw_hwprot, hwprot);
324#endif
325
326 /* input_data is set in head.S */
327 inbuf = input_data;
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200328#else /* CRISv10 */
329 /* Need at least a crisv10 to run. */
330 compile_rev = 10;
331
332 /* input_data is set in head.S */
333 inbuf = input_data;
334
335#ifdef CONFIG_ETRAX_DEBUG_PORT0
336 *R_SERIAL0_XOFF = 0;
337 *R_SERIAL0_BAUD = 0x99;
338 *R_SERIAL0_TR_CTRL = 0x40;
339#endif
340#ifdef CONFIG_ETRAX_DEBUG_PORT1
341 *R_SERIAL1_XOFF = 0;
342 *R_SERIAL1_BAUD = 0x99;
343 *R_SERIAL1_TR_CTRL = 0x40;
344#endif
345#ifdef CONFIG_ETRAX_DEBUG_PORT2
346 *R_GEN_CONFIG = 0x08;
347 *R_SERIAL2_XOFF = 0;
348 *R_SERIAL2_BAUD = 0x99;
349 *R_SERIAL2_TR_CTRL = 0x40;
350#endif
351#ifdef CONFIG_ETRAX_DEBUG_PORT3
352 *R_GEN_CONFIG = 0x100;
353 *R_SERIAL3_XOFF = 0;
354 *R_SERIAL3_BAUD = 0x99;
355 *R_SERIAL3_TR_CTRL = 0x40;
356#endif
357#endif
Mikael Starvik51533b62005-07-27 11:44:44 -0700358
359 setup_normal_output_buffer();
360
361 makecrc();
362
363 __asm__ volatile ("move $vr,%0" : "=rm" (revision));
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200364 if (revision < compile_rev) {
365#ifdef CONFIG_ETRAX_ARCH_V32
Jesper Nilsson76fdf672010-08-03 18:12:47 +0200366 aputs("You need at least ETRAX FS to run Linux 2.6/crisv32\n");
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200367#else
Jesper Nilsson76fdf672010-08-03 18:12:47 +0200368 aputs("You need an ETRAX 100LX to run linux 2.6/crisv10\n");
Jesper Nilsson66ab3a72009-04-21 11:44:57 +0200369#endif
Mikael Starvik51533b62005-07-27 11:44:44 -0700370 while(1);
371 }
372
Jesper Nilsson76fdf672010-08-03 18:12:47 +0200373 aputs("Uncompressing Linux...\n");
Mikael Starvik51533b62005-07-27 11:44:44 -0700374 gunzip();
Jesper Nilsson76fdf672010-08-03 18:12:47 +0200375 aputs("Done. Now booting the kernel\n");
Mikael Starvik51533b62005-07-27 11:44:44 -0700376}