e921863f16114b7f84196ce91b3d1a44f85109e7
2 * LZMA compressed kernel decompressor for bcm947xx boards
4 * Copyright (C) 2005 by Oleg I. Vdovikin <oleg@cs.msu.su>
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.
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.
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
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
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)
30 * 24-Apr-2005 Oleg I. Vdovikin
31 * reordered functions using lds script, removed forward decl
33 * ??-Nov-2005 Mike Baker
34 * reorder the script as an lzma wrapper; do not depend on flash access
37 #include "LzmaDecode.h"
38 #define LOADADDR 0x80100000
40 #define KSEG0 0x80000000
41 #define KSEG1 0xa0000000
43 #define KSEG1ADDR(a) ((((unsigned)(a)) & 0x1fffffffU) | KSEG1)
45 #define Index_Invalidate_I 0x00
46 #define Index_Writeback_Inv_D 0x01
48 #define cache_unroll(base,op) \
49 __asm__ __volatile__( \
60 static __inline__
void blast_icache(unsigned long size
, unsigned long lsize
)
62 unsigned long start
= KSEG0
;
63 unsigned long end
= (start
+ size
);
66 cache_unroll(start
,Index_Invalidate_I
);
71 static __inline__
void blast_dcache(unsigned long size
, unsigned long lsize
)
73 unsigned long start
= KSEG0
;
74 unsigned long end
= (start
+ size
);
77 cache_unroll(start
,Index_Writeback_Inv_D
);
84 static int read_byte(void *object
, unsigned char **buffer
, UInt32
*bufferSize
)
89 return LZMA_RESULT_OK
;
92 static __inline__
unsigned char get_byte(void)
94 unsigned char *buffer
;
97 return read_byte(0, &buffer
, &fake
), *buffer
;
100 static char *buffer
= (char *)0x80C00000;
101 extern char lzma_start
[];
102 extern char lzma_end
[];
104 /* should be the first function */
105 void entry(unsigned long icache_size
, unsigned long icache_lsize
,
106 unsigned long dcache_size
, unsigned long dcache_lsize
)
108 unsigned int i
; /* temp value */
109 unsigned int osize
; /* uncompressed size */
111 ILzmaInCallback callback
;
112 CLzmaDecoderState vs
;
113 callback
.Read
= read_byte
;
119 vs
.Properties
.lc
= i
% 9, i
= i
/ 9;
120 vs
.Properties
.lp
= i
% 5, vs
.Properties
.pb
= i
/ 5;
122 vs
.Probs
= (CProb
*)buffer
;
124 /* skip rest of the LZMA coder property */
125 for (i
= 0; i
< 4; i
++)
128 /* read the lower half of uncompressed size in the header */
129 osize
= ((unsigned int)get_byte()) +
130 ((unsigned int)get_byte() << 8) +
131 ((unsigned int)get_byte() << 16) +
132 ((unsigned int)get_byte() << 24);
134 /* skip rest of the header (upper half of uncompressed size) */
135 for (i
= 0; i
< 4; i
++)
138 /* decompress kernel */
139 if ((i
= LzmaDecode(&vs
, &callback
,
140 (unsigned char*)LOADADDR
, osize
, &osize
)) == LZMA_RESULT_OK
)
142 blast_dcache(dcache_size
, dcache_lsize
);
143 blast_icache(icache_size
, icache_lsize
);
145 /* Jump to load address */
146 ((void (*)(void)) LOADADDR
)();
This page took 0.048306 seconds and 3 git commands to generate.