common: Add a new lz4.h header file
authorSimon Glass <sjg@chromium.org>
Thu, 14 Nov 2019 19:57:25 +0000 (12:57 -0700)
committerTom Rini <trini@konsulko.com>
Mon, 2 Dec 2019 23:23:11 +0000 (18:23 -0500)
Add a header file to house the lz4 compression function. Add a comment
while we are here, since it not even clear from the name what the function
actuall does.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
common/image.c
include/common.h
include/lz4.h [new file with mode: 0644]
lib/lz4_wrapper.c
test/compression.c

index 992ebbad51ac110e4e9f8cfbb0b5d7c27bdc7b4c..1c8ac2df701a88245dd92fc8bf1a5793563e0f99 100644 (file)
@@ -20,6 +20,7 @@
 
 #include <gzip.h>
 #include <image.h>
+#include <lz4.h>
 #include <mapmem.h>
 
 #if IMAGE_ENABLE_FIT || IMAGE_ENABLE_OF_LIBFDT
index f433db17aef4e98b24e85feca1e57de35fe22f19..1e77ed393e474b728436422e0b66a092e6388093 100644 (file)
@@ -292,9 +292,6 @@ void        wait_ticks    (unsigned long);
 ulong  usec2ticks    (unsigned long usec);
 ulong  ticks2usec    (unsigned long ticks);
 
-/* lib/lz4_wrapper.c */
-int ulz4fn(const void *src, size_t srcn, void *dst, size_t *dstn);
-
 /* lib/uuid.c */
 #include <uuid.h>
 
diff --git a/include/lz4.h b/include/lz4.h
new file mode 100644 (file)
index 0000000..1276fb9
--- /dev/null
@@ -0,0 +1,24 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * Copyright 2019 Google LLC
+ */
+
+#ifndef __LZ4_H
+#define __LZ4_H
+
+/**
+ * ulz4fn() - Decompress LZ4 data
+ *
+ * @src: Source data to decompress
+ * @srcn: Length of source data
+ * @dst: Destination for uncompressed data
+ * @dstn: Returns length of uncompressed data
+ * @return 0 if OK, -EPROTONOSUPPORT if the magic number or version number are
+ *     not recognised or independent blocks are used, -EINVAL if the reserved
+ *     fields are non-zero, or input is overrun, -EENOBUFS if the destination
+ *     buffer is overrun, -EEPROTO if the compressed data causes an error in
+ *     the decompression algorithm
+ */
+int ulz4fn(const void *src, size_t srcn, void *dst, size_t *dstn);
+
+#endif
index 1c68e67452d985a4433759346ce22f5b9645258b..1e1e8d508530d44d5e1eb8e3f68e6f5d28175877 100644 (file)
@@ -6,6 +6,7 @@
 #include <common.h>
 #include <compiler.h>
 #include <image.h>
+#include <lz4.h>
 #include <linux/kernel.h>
 #include <linux/types.h>
 
index 08fef59d0aa1b5959c1d57bb0eda9bb820185773..48dccc0e891ba3734b6703559c3e1ce7ca5f61f3 100644 (file)
@@ -7,6 +7,7 @@
 #include <bootm.h>
 #include <command.h>
 #include <gzip.h>
+#include <lz4.h>
 #include <malloc.h>
 #include <mapmem.h>
 #include <asm/io.h>