1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * (C) Copyright 2000-2004
4 * DENX Software Engineering
11 #include "os_support.h"
21 #include <u-boot/sha1.h>
23 #include "imagetool.h"
28 #define debug(fmt,args...) printf (fmt ,##args)
30 #define debug(fmt,args...)
31 #endif /* MKIMAGE_DEBUG */
33 #define log_debug(fmt, args...) debug(fmt, ##args)
35 static inline void *map_sysmem(ulong paddr, unsigned long len)
37 return (void *)(uintptr_t)paddr;
40 static inline ulong map_to_sysmem(void *ptr)
42 return (ulong)(uintptr_t)ptr;
45 #define ALLOC_CACHE_ALIGN_BUFFER(type, name, size) type name[size]
47 #define MKIMAGE_TMPFILE_SUFFIX ".tmp"
48 #define MKIMAGE_MAX_TMPFILE_LEN PATH_MAX
49 #define MKIMAGE_DEFAULT_DTC_OPTIONS "-I dts -O dtb -p 500"
50 #define MKIMAGE_MAX_DTC_CMDLINE_LEN 2 * MKIMAGE_MAX_TMPFILE_LEN + 35
52 #endif /* _MKIIMAGE_H_ */