]> git.ipfire.org Git - thirdparty/u-boot.git/blame - cmd/lzmadec.c
configs: Disable now unbuildable SPI options for boards
[thirdparty/u-boot.git] / cmd / lzmadec.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
5527f832
PB
2/*
3 * (C) Copyright 2013 Patrice Bouchand <pbfwdlist_gmail_com>
4 * lzma uncompress command in Uboot
5 *
6 * made from existing cmd_unzip.c file of Uboot
7 *
8 * (C) Copyright 2000
9 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5527f832
PB
10 */
11
12#include <common.h>
13#include <command.h>
0eb25b61 14#include <mapmem.h>
5527f832
PB
15#include <asm/io.h>
16
17#include <lzma/LzmaTools.h>
18
19static int do_lzmadec(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
20{
21 unsigned long src, dst;
1bb718cd 22 SizeT src_len = ~0UL, dst_len = ~0UL;
5527f832
PB
23 int ret;
24
25 switch (argc) {
26 case 4:
27 dst_len = simple_strtoul(argv[3], NULL, 16);
28 /* fall through */
29 case 3:
30 src = simple_strtoul(argv[1], NULL, 16);
31 dst = simple_strtoul(argv[2], NULL, 16);
32 break;
33 default:
34 return CMD_RET_USAGE;
35 }
36
37 ret = lzmaBuffToBuffDecompress(map_sysmem(dst, dst_len), &src_len,
38 map_sysmem(src, 0), dst_len);
39
40 if (ret != SZ_OK)
41 return 1;
1bb718cd
SG
42 printf("Uncompressed size: %ld = %#lX\n", (ulong)src_len,
43 (ulong)src_len);
018f5303 44 env_set_hex("filesize", src_len);
5527f832
PB
45
46 return 0;
47}
48
49U_BOOT_CMD(
50 lzmadec, 4, 1, do_lzmadec,
51 "lzma uncompress a memory region",
52 "srcaddr dstaddr [dstsize]"
53);