move target/image/platform to target/linux/platform/image platform directories are...
[openwrt/openwrt.git] / target / linux / generic-2.6 / image / lzma-loader / src / decompress.c
1 /*
2 * LZMA compressed kernel decompressor for bcm947xx boards
3 *
4 * Copyright (C) 2005 by Oleg I. Vdovikin <oleg@cs.msu.su>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 *
21 * Please note, this was code based on the bunzip2 decompressor code
22 * by Manuel Novoa III (mjn3@codepoet.org), although the only thing left
23 * is an idea and part of original vendor code
24 *
25 *
26 * 12-Mar-2005 Mineharu Takahara <mtakahar@yahoo.com>
27 * pass actual output size to decoder (stream mode
28 * compressed input is not a requirement anymore)
29 *
30 * 24-Apr-2005 Oleg I. Vdovikin
31 * reordered functions using lds script, removed forward decl
32 *
33 * ??-Nov-2005 Mike Baker
34 * reorder the script as an lzma wrapper; do not depend on flash access
35 */
36
37 #include "LzmaDecode.h"
38
39 #define KSEG0 0x80000000
40 #define KSEG1 0xa0000000
41
42 #define KSEG1ADDR(a) ((((unsigned)(a)) & 0x1fffffffU) | KSEG1)
43
44 #define Index_Invalidate_I 0x00
45 #define Index_Writeback_Inv_D 0x01
46
47 #define cache_unroll(base,op) \
48 __asm__ __volatile__( \
49 ".set noreorder;\n" \
50 ".set mips3;\n" \
51 "cache %1, (%0);\n" \
52 ".set mips0;\n" \
53 ".set reorder\n" \
54 : \
55 : "r" (base), \
56 "i" (op));
57
58
59 static __inline__ void blast_icache(unsigned long size, unsigned long lsize)
60 {
61 unsigned long start = KSEG0;
62 unsigned long end = (start + size);
63
64 while(start < end) {
65 cache_unroll(start,Index_Invalidate_I);
66 start += lsize;
67 }
68 }
69
70 static __inline__ void blast_dcache(unsigned long size, unsigned long lsize)
71 {
72 unsigned long start = KSEG0;
73 unsigned long end = (start + size);
74
75 while(start < end) {
76 cache_unroll(start,Index_Writeback_Inv_D);
77 start += lsize;
78 }
79 }
80
81 unsigned char *data;
82
83 static int read_byte(void *object, unsigned char **buffer, UInt32 *bufferSize)
84 {
85 *bufferSize = 1;
86 *buffer = data;
87 ++data;
88 return LZMA_RESULT_OK;
89 }
90
91 static __inline__ unsigned char get_byte(void)
92 {
93 unsigned char *buffer;
94 UInt32 fake;
95
96 return read_byte(0, &buffer, &fake), *buffer;
97 }
98
99 static char *buffer = (char *)0x80C00000;
100 extern char lzma_start[];
101 extern char lzma_end[];
102
103 /* should be the first function */
104 void entry(unsigned long icache_size, unsigned long icache_lsize,
105 unsigned long dcache_size, unsigned long dcache_lsize)
106 {
107 unsigned int i; /* temp value */
108 unsigned int osize; /* uncompressed size */
109 volatile unsigned int arg0, arg1, arg2, arg3;
110
111 /* restore argument registers */
112 __asm__ __volatile__ ("ori %0, $12, 0":"=r"(arg0));
113 __asm__ __volatile__ ("ori %0, $13, 0":"=r"(arg1));
114 __asm__ __volatile__ ("ori %0, $14, 0":"=r"(arg2));
115 __asm__ __volatile__ ("ori %0, $15, 0":"=r"(arg3));
116
117 ILzmaInCallback callback;
118 CLzmaDecoderState vs;
119 callback.Read = read_byte;
120
121 data = lzma_start;
122
123 /* lzma args */
124 i = get_byte();
125 vs.Properties.lc = i % 9, i = i / 9;
126 vs.Properties.lp = i % 5, vs.Properties.pb = i / 5;
127
128 vs.Probs = (CProb *)buffer;
129
130 /* skip rest of the LZMA coder property */
131 for (i = 0; i < 4; i++)
132 get_byte();
133
134 /* read the lower half of uncompressed size in the header */
135 osize = ((unsigned int)get_byte()) +
136 ((unsigned int)get_byte() << 8) +
137 ((unsigned int)get_byte() << 16) +
138 ((unsigned int)get_byte() << 24);
139
140 /* skip rest of the header (upper half of uncompressed size) */
141 for (i = 0; i < 4; i++)
142 get_byte();
143
144 /* decompress kernel */
145 if ((i = LzmaDecode(&vs, &callback,
146 (unsigned char*)KERNEL_ENTRY, osize, &osize)) == LZMA_RESULT_OK)
147 {
148 blast_dcache(dcache_size, dcache_lsize);
149 blast_icache(icache_size, icache_lsize);
150
151 /* Jump to load address */
152 ((void (*)(int a0, int a1, int a2, int a3)) KERNEL_ENTRY)(arg0, arg1, arg2, arg3);
153 }
154 }