Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Patrice Bouchand | 5527f83 | 2014-02-15 22:19:57 -0700 | [diff] [blame] | 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. |
Patrice Bouchand | 5527f83 | 2014-02-15 22:19:57 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <common.h> |
| 13 | #include <command.h> |
Simon Glass | c7694dd | 2019-08-01 09:46:46 -0600 | [diff] [blame] | 14 | #include <env.h> |
Joe Hershberger | 0eb25b6 | 2015-03-22 17:08:59 -0500 | [diff] [blame] | 15 | #include <mapmem.h> |
Patrice Bouchand | 5527f83 | 2014-02-15 22:19:57 -0700 | [diff] [blame] | 16 | #include <asm/io.h> |
| 17 | |
| 18 | #include <lzma/LzmaTools.h> |
| 19 | |
| 20 | static int do_lzmadec(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[]) |
| 21 | { |
| 22 | unsigned long src, dst; |
Simon Glass | 1bb718c | 2016-07-22 09:22:46 -0600 | [diff] [blame] | 23 | SizeT src_len = ~0UL, dst_len = ~0UL; |
Patrice Bouchand | 5527f83 | 2014-02-15 22:19:57 -0700 | [diff] [blame] | 24 | int ret; |
| 25 | |
| 26 | switch (argc) { |
| 27 | case 4: |
| 28 | dst_len = simple_strtoul(argv[3], NULL, 16); |
| 29 | /* fall through */ |
| 30 | case 3: |
| 31 | src = simple_strtoul(argv[1], NULL, 16); |
| 32 | dst = simple_strtoul(argv[2], NULL, 16); |
| 33 | break; |
| 34 | default: |
| 35 | return CMD_RET_USAGE; |
| 36 | } |
| 37 | |
| 38 | ret = lzmaBuffToBuffDecompress(map_sysmem(dst, dst_len), &src_len, |
| 39 | map_sysmem(src, 0), dst_len); |
| 40 | |
| 41 | if (ret != SZ_OK) |
| 42 | return 1; |
Simon Glass | 1bb718c | 2016-07-22 09:22:46 -0600 | [diff] [blame] | 43 | printf("Uncompressed size: %ld = %#lX\n", (ulong)src_len, |
| 44 | (ulong)src_len); |
Simon Glass | 018f530 | 2017-08-03 12:22:10 -0600 | [diff] [blame] | 45 | env_set_hex("filesize", src_len); |
Patrice Bouchand | 5527f83 | 2014-02-15 22:19:57 -0700 | [diff] [blame] | 46 | |
| 47 | return 0; |
| 48 | } |
| 49 | |
| 50 | U_BOOT_CMD( |
| 51 | lzmadec, 4, 1, do_lzmadec, |
| 52 | "lzma uncompress a memory region", |
| 53 | "srcaddr dstaddr [dstsize]" |
| 54 | ); |