add SDHC support in mmc driver
[u-boot-openmoko/mini2440.git] / fs / jffs2 / compr_rtime.c
blob144263c4225fc119bd767c46881fdda8fd486825
1 /*
2 * JFFS2 -- Journalling Flash File System, Version 2.
4 * Copyright (C) 2001 Red Hat, Inc.
6 * Created by Arjan van de Ven <arjanv@redhat.com>
8 * The original JFFS, from which the design for JFFS2 was derived,
9 * was designed and implemented by Axis Communications AB.
11 * The contents of this file are subject to the Red Hat eCos Public
12 * License Version 1.1 (the "Licence"); you may not use this file
13 * except in compliance with the Licence. You may obtain a copy of
14 * the Licence at http://www.redhat.com/
16 * Software distributed under the Licence is distributed on an "AS IS"
17 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
18 * See the Licence for the specific language governing rights and
19 * limitations under the Licence.
21 * The Original Code is JFFS2 - Journalling Flash File System, version 2
23 * Alternatively, the contents of this file may be used under the
24 * terms of the GNU General Public License version 2 (the "GPL"), in
25 * which case the provisions of the GPL are applicable instead of the
26 * above. If you wish to allow the use of your version of this file
27 * only under the terms of the GPL and not to allow others to use your
28 * version of this file under the RHEPL, indicate your decision by
29 * deleting the provisions above and replace them with the notice and
30 * other provisions required by the GPL. If you do not delete the
31 * provisions above, a recipient may use your version of this file
32 * under either the RHEPL or the GPL.
34 * $Id: compr_rtime.c,v 1.2 2002/01/24 22:58:42 rfeany Exp $
37 * Very simple lz77-ish encoder.
39 * Theory of operation: Both encoder and decoder have a list of "last
40 * occurances" for every possible source-value; after sending the
41 * first source-byte, the second byte indicated the "run" length of
42 * matches
44 * The algorithm is intended to only send "whole bytes", no bit-messing.
48 #include <config.h>
49 #if defined(CONFIG_CMD_JFFS2)
51 #include <jffs2/jffs2.h>
53 void rtime_decompress(unsigned char *data_in, unsigned char *cpage_out,
54 u32 srclen, u32 destlen)
56 int positions[256];
57 int outpos;
58 int pos;
59 int i;
61 outpos = pos = 0;
63 for (i = 0; i < 256; positions[i++] = 0);
65 while (outpos<destlen) {
66 unsigned char value;
67 int backoffs;
68 int repeat;
70 value = data_in[pos++];
71 cpage_out[outpos++] = value; /* first the verbatim copied byte */
72 repeat = data_in[pos++];
73 backoffs = positions[value];
75 positions[value]=outpos;
76 if (repeat) {
77 if (backoffs + repeat >= outpos) {
78 while(repeat) {
79 cpage_out[outpos++] = cpage_out[backoffs++];
80 repeat--;
82 } else {
83 for (i = 0; i < repeat; i++)
84 *(cpage_out + outpos + i) = *(cpage_out + backoffs + i);
85 outpos+=repeat;
91 #endif