Merge tag 'tpm-master-28012025' of https://source.denx.de/u-boot/custodians/u-boot-tpm
[u-boot.git] / cmd / unlz4.c
blob2eadc753e6c40ab788cf6445c1513360058ba881
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Copyright (C) 2020
4 * FUJITSU COMPUTERTECHNOLOGIES LIMITED. All rights reserved.
5 */
7 #include <command.h>
8 #include <env.h>
9 #include <mapmem.h>
10 #include <vsprintf.h>
11 #include <u-boot/lz4.h>
13 static int do_unlz4(struct cmd_tbl *cmdtp, int flag, int argc,
14 char *const argv[])
16 unsigned long src, dst;
17 size_t src_len = ~0UL, dst_len = ~0UL;
18 int ret;
20 switch (argc) {
21 case 4:
22 src = hextoul(argv[1], NULL);
23 dst = hextoul(argv[2], NULL);
24 dst_len = hextoul(argv[3], NULL);
25 break;
26 default:
27 return CMD_RET_USAGE;
30 ret = ulz4fn(map_sysmem(src, 0), src_len, map_sysmem(dst, dst_len),
31 &dst_len);
32 if (ret) {
33 printf("Uncompressed err :%d\n", ret);
34 return 1;
37 printf("Uncompressed size: %zd = 0x%zX\n", dst_len, dst_len);
38 env_set_hex("filesize", dst_len);
40 return 0;
43 U_BOOT_CMD(unlz4, 4, 1, do_unlz4,
44 "lz4 uncompress a memory region",
45 "srcaddr dstaddr dstsize\n"
46 "NOTE: Specify the destination size that is sufficiently larger\n"
47 " than the source size.\n"