abuf: Support use from tools
authorSimon Glass <sjg@chromium.org>
Sun, 15 Jan 2023 21:15:45 +0000 (14:15 -0700)
committerTom Rini <trini@konsulko.com>
Sat, 11 Feb 2023 17:22:34 +0000 (12:22 -0500)
Update the code slightly so that abuf can be used in U-Boot tools. It will
soon be needed for proftool.

Signed-off-by: Simon Glass <sjg@chromium.org>
lib/abuf.c

index 1635d58..bd27046 100644 (file)
@@ -6,11 +6,14 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
+#ifndef USE_HOSTCC
 #include <common.h>
-#include <abuf.h>
 #include <malloc.h>
 #include <mapmem.h>
 #include <string.h>
+#endif
+
+#include <abuf.h>
 
 void abuf_set(struct abuf *abuf, void *data, size_t size)
 {
@@ -19,10 +22,26 @@ void abuf_set(struct abuf *abuf, void *data, size_t size)
        abuf->size = size;
 }
 
+#ifndef USE_HOSTCC
 void abuf_map_sysmem(struct abuf *abuf, ulong addr, size_t size)
 {
        abuf_set(abuf, map_sysmem(addr, size), size);
 }
+#else
+/* copied from lib/string.c for convenience */
+static char *memdup(const void *src, size_t len)
+{
+       char *p;
+
+       p = malloc(len);
+       if (!p)
+               return NULL;
+
+       memcpy(p, src, len);
+
+       return p;
+}
+#endif
 
 bool abuf_realloc(struct abuf *abuf, size_t new_size)
 {