upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
467 B
11 lines
467 B
/* Rubin encoder/decoder header */
|
|
/* work started at : aug 3, 1994 */
|
|
/* last modification : aug 15, 1994 */
|
|
/* $Id: compr_rubin.h,v 1.1 2002/01/16 23:34:32 nyet Exp $ */
|
|
|
|
#define RUBIN_REG_SIZE 16
|
|
#define UPPER_BIT_RUBIN (((long) 1)<<(RUBIN_REG_SIZE-1))
|
|
#define LOWER_BITS_RUBIN ((((long) 1)<<(RUBIN_REG_SIZE-1))-1)
|
|
|
|
void dynrubin_decompress(unsigned char *data_in, unsigned char *cpage_out,
|
|
unsigned long sourcelen, unsigned long dstlen);
|
|
|